@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600&display=swap");

/* ==========================================================================
   RESET & SYSTEM VARIABLE SYSTEM
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Codes from User/Figma */
  --navy: #0a1525;
  --navy2: #112244;
  --blue: #3d6ef5;
  --blue2: #2a55d5;
  --white: #ffffff;
  --off: #f4f6ff;
  --muted: #596075;
  --light-border: #dde2f0;

  /* Functional mappings */
  --primary: var(--blue);
  --primary-hover: var(--blue2);
  --charcoal: var(--navy);
  --charcoal-light: var(--muted);
  --bg-off-white: var(--off);
  --border-light: var(--light-border);
  --secondary: #00c950;

  /* Gradients */
  --gradient-cyan-blue: linear-gradient(
    180deg,
    #0e5269 0%,
    rgba(0, 101, 128, 0.83) 100%
  );
  --gradient-orange-red: linear-gradient(135deg, #ff8a33 0%, #ff4a4a 100%);
  --gradient-green-blue: linear-gradient(270deg, #0db02b 0%, #28a9e2 100%);
  --gradient-hero: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);

  /* Typography */
  --font-serif: "Poppins", sans-serif;
  --font-sans: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif; /* Default body to Poppins */
  --font-sora: "Poppins", sans-serif;

  /* Spacing */
  --container-width: 1400px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: url("./public/background.jpeg") center center / cover no-repeat fixed;
  background-color: #000; /* Fallback */
}
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-gradient-orange-red {
  background: var(--gradient-orange-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green-blue {
  background: var(--gradient-green-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 60, 184, 0.3);
}

.btn-outline {
  border: 2px solid var(--border-light);
  color: var(--charcoal);
  background-color: transparent;
  
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-gradient {
  background: var(--gradient-orange-red);
  color: var(--white);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 74, 74, 0.4);
}

/* ==========================================================================
   ANNOUNCEMENT BANNER
   ========================================================================== */
.announcement-banner {
  background-color: #0f1d36;
  color: var(--white);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header-nav {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--charcoal);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
 
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  color: var(--white);
  padding: 50px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 80% 30%,
    rgba(25, 60, 184, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: black;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color:black;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: black;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-icon {
  font-size: 24px;
  color:black;
  margin-bottom: 12px;
  display: block;
}

.hero-stat-item h3 {
  font-size: 1.8rem;
  font-family: var(--font-sans);
  margin-bottom: 4px;
}

.hero-stat-item p {
  font-size: 0.9rem;
  color: black;
}

.hero-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-form-card {
  width: 100%;
  max-width: 480px;
  background: rgba(17, 34, 68, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-form-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-form-card p {
  font-size: 0.95rem;
  color: var(--off);
  opacity: 0.85;
  margin-bottom: 28px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: var(--off);
  opacity: 0.4;
}

.form-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 110, 245, 0.2);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   SECTION DIVIDER
   ========================================================================== */
.section-divider {
 
  padding: 30px 0;
  text-align: center;
  font-size: 1.5rem;
  color: var(--charcoal-light);
  letter-spacing: 8px;
}

/* ==========================================================================
   HOOK SECTION
   ========================================================================== */
.hook-section {

}

.hook-header {
  text-align: center;
  margin-bottom: 64px;
}

.hook-header h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--charcoal);
}

.hook-header p {
  font-size: 1.15rem;
  color: var(--charcoal-light);
}

.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hook-col {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 48px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.hook-col.wisdom {
  border-color: rgba(25, 60, 184, 0.2);
  box-shadow: 0 15px 40px rgba(25, 60, 184, 0.04);
}

.hook-number {
  position: absolute;
  top: 36px;
  right: 48px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
}

.hook-col.wisdom .hook-number {
  color: rgba(25, 60, 184, 0.08);
}

.hook-col h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hook-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hook-item {
  display: flex;
  gap: 16px;
  font-size: 1.05rem;
}

.hook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.hook-icon.negative i {
  color: #ef4444;
  font-size: 20px;
}

.hook-icon.positive i {
  color: #10b981;
  font-size: 20px;
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.list-icon i {
  font-size: 8px;
}

.list-icon.negative i {
  color: #f97316;
}

.list-icon.positive i {
  color: #10b981;
}

.hook-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

/* ==========================================================================
   DIFFERENTIATORS SECTION
   ========================================================================== */
.diff-section {

}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.diff-card {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  background-color: var(--white);
  transition: var(--transition);
  height: 100%;
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
}

.diff-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-color: var(--bg-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.diff-card:hover .diff-icon-box {
  background-color: var(--primary);
  color: var(--white);
}

.diff-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.diff-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.diff-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff5f7; */
  margin-bottom: 20px;
}

.diff-icon-box i {
  font-size: 32px;
  /* color: #f05871; */
}
/* ==========================================================================
   EXPERIENCE SECTION
   ========================================================================== */
.experience-section {

}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.exp-visual {
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.exp-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.exp-quote-card {
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 350px;
  background-color: var(--white);
  border-left: 8px solid var(--blue);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

.exp-quote {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.4;
  margin-bottom: 16px;
  font-style: italic;
  color: var(--navy);
}

.exp-author {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: 1px;
}

.exp-content h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--charcoal);
}

.exp-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-timeline-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 99px;
  transition: var(--transition);
}

.exp-timeline-item:hover {
  border-color: var(--blue);
  transform: translateX(6px);
}

.exp-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--off);
  border: 1px solid var(--light-border);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: var(--transition);
}

.exp-timeline-item:hover .exp-check {

  color: var(--white);
  border-color: var(--blue);
}

.exp-item-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--charcoal);
}

/* .exp-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f05871;
  color: #fff;
  flex-shrink: 0;
} */

.exp-check i {
  font-size: 14px;
}

/* ==========================================================================
   TICKER / MARQUEE BAR
   ========================================================================== */
.ticker-bar {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  gap: 60px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.ticker-star {
  color: var(--secondary);
  font-size: 1.2rem;
}
.ticker-star i {
  font-size: 12px;
  color: #f5b301;
}

/* ==========================================================================
   "IS THIS JOURNEY FOR YOU?" SECTION
   ========================================================================== */
.who-section {

}

.who-header {
  text-align: center;
  margin-bottom: 64px;
}

.who-header h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.who-card {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
  
}

.who-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
background-color: white;
}

.who-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(25, 60, 184, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.who-card:hover .who-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
}

.who-info h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.who-info p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.who-icon-wrapper i {
  font-size: 32px;
  /* color: #f05871; */
}

.who-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff5f7;
}

/* ==========================================================================
   CURRICULUM SECTION (ACCORDION)
   ========================================================================== */
.curriculum-section {

}

.curr-header {
  text-align: center;
  margin-bottom: 64px;
}

.curr-header h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.curr-header p {
  font-size: 1.2rem;
  color: var(--charcoal-light);
}

.curr-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(25, 60, 184, 0.05);
}

.accordion-header {
  width: 100%;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--charcoal-light);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-content-inner {
  padding: 0 36px 36px 36px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  color: var(--charcoal-light);
  font-size: 1rem;
}

.accordion-content-inner ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-content-inner li {
  display: flex;
  gap: 12px;
}

.accordion-content-inner li::before {
  content: "Рюд";
  color: var(--secondary);
}

.accordion-arrow i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow i {
  transform: rotate(180deg);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {

}

.test-header {
  text-align: center;
  margin-bottom: 64px;
}

.test-header h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--charcoal);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.test-card {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 36px;
  background-color: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.test-stars {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.test-quote {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

.test-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(25, 60, 184, 0.1);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.test-author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.test-author-info p {
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.test-stars i {
  color: #f5b301;
  font-size: 16px;
}

/* ==========================================================================
   REGISTRATION BOX SECTION
   ========================================================================== */
.reg-section {

}

.reg-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 64px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reg-info h2 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  margin-bottom: 32px;
}

.reg-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.reg-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.15rem;
}

.reg-list-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reg-cta {
  background: var(--bg-off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
}

.reg-tag {
  display: inline-block;
  background-color: rgba(255, 138, 51, 0.1);
  color: #ff8a33;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.reg-cta h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.reg-cta button {
  width: 100%;
  margin-bottom: 16px;
}

.reg-footer-text {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

/* ==========================================================================
   FAQ & FOOTER SECTION
   ========================================================================== */
.faq-section {

  padding-bottom: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header h2 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  font-size: 3rem;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer styling */
footer {
  background-color: #f0f3fc;
  color: var(--charcoal);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--border-light);
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--charcoal);
  font-size: 1.3rem;
  line-height: 1;
}

.footer-contact-text p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-col h3 {
  font-size: 1.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
  opacity: 1;
  padding-left: 4px;
}

.footer-right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Map Card */
.footer-map-card {
  width: 100%;
  max-width: 530px;
  height: 200px;
  background-color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(61, 110, 245, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-map-card h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-map-card p {
  font-size: 0.85rem;
  color: var(--off);
  opacity: 0.8;
  margin: 0;
}

.footer-map-btn {
  align-self: flex-start;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-map-btn:hover {
  background: var(--blue2);
  transform: translateY(-2px);
}

.footer-socials-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(10, 21, 37, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  color: #ffffff;
  font-size: 16px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes float-reverse {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  :root {
    --container-width: 720px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    animation: float 7s ease-in-out infinite;
  }

  .hook-grid {
    grid-template-columns: 1fr;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .exp-quote-card {
    width: calc(100% - 60px);
    left: 30px;
    bottom: -30px;
    padding: 30px;
  }

  .exp-img {
    height: 480px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .reg-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-width: 540px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    transform: none;
    background-color: var(--white);
    padding: 30px;
    border-bottom: 1px solid var(--border-light);
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav-desktop-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero-title,
  .hook-header h2,
  .who-header h2,
  .curr-header h2,
  .test-header h2,
  .faq-header h2,
  .exp-content h2,
  .hospital-header h2,
  .reg-card h2,
  .test-card h4 {
    font-size: 1.6rem;
  }

  p,
  .hero-subtitle,
  .exp-item-text,
  .reg-info p,
  .accordion-content-inner p,
  .test-quote,
  .footer-col p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hospital-header h2 {
    font-size: 1.2rem;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .exp-quote-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: -20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .exp-img {
    height: 380px;
  }

  .exp-timeline-item {
    padding: 20px 24px;
    gap: 16px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --container-width: 100%;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero-title,
  .hook-header h2,
  .who-header h2,
  .curr-header h2,
  .test-header h2,
  .faq-header h2,
  .exp-content h2,
  .hospital-header h2,
  .reg-card h2,
  .test-card h4 {
    font-size: 1.4rem;
  }

  p,
  .hero-subtitle,
  .exp-item-text,
  .reg-info p,
  .accordion-content-inner p,
  .test-quote,
  .footer-col p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons button {
    width: 100%;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hospital-header h2 {
    font-size: 1.1rem;
  }

  .hook-col {
    padding: 30px 20px;
  }

  .exp-img {
    height: 280px;
  }

  .exp-quote-card {
    padding: 20px;
  }

  .exp-quote {
    font-size: 1.35rem;
  }

  .exp-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .exp-check {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hero-form-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   HOSPITAL PARTNERS TIE-UPS
   ========================================================================== */
.hospital-section {
  background-color: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hospital-header {
  text-align: center;
  margin-bottom: 48px;
}

.hospital-header h2 {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--navy);
}

.hospital-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hospital-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-logos 20s linear infinite;
  align-items: center;
}

.hospital-logo-item {
  width: 180px;
  height: 90px;
  background-color: var(--off);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: var(--transition);
}

.hospital-logo-item:hover {
  border-color: var(--blue);
  background-color: var(--white);
  transform: translateY(-2px);
}

.hospital-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes marquee-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   IMAGE BANNER SECTION
========================================================================== */

.image-banner-section {
  padding: 80px 0;
}

.image-banner-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* Large Tablets */
@media (max-width: 1024px) {
  .image-banner-section {
    padding: 60px 0;
  }

  .image-banner {
    border-radius: 18px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .image-banner-section {
    padding: 50px 0;
  }

  .image-banner-section .container {
    padding: 0 16px;
  }

  .image-banner {
    border-radius: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .image-banner-section {
    padding: 40px 0;
  }

  .image-banner-section .container {
    padding: 0 12px;
  }

  .image-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}
/* ==========================================================================
   QUOTE SECTION
========================================================================== */

.quote-section {
  padding: 100px 20px;
  text-align: center;
}

.quote-text {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: #0f4b4a;
  letter-spacing: -0.5px;
}

/* Tablet */
@media (max-width: 768px) {
  .quote-section {
    padding: 70px 20px;
  }

  .quote-text {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .quote-section {
    padding: 50px 16px;
  }

  .quote-text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}