/* ============================================================
   UTKARSH PATH — Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8650A;
  --orange-light: #FDF0E6;
  --orange-dark: #C4540A;
  --navy: #0F2545;
  --navy-light: #1A3A6B;
  --cream: #FDFAF5;
  --text: #1C1C1E;
  --text-muted: #6B6B70;
  --border: rgba(0,0,0,0.08);
  --white: #ffffff;
  --green: #22C55E;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SKIP LINK (keyboard accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── NAV ACTIVE / ARIA-CURRENT ── */
.nav-links a[aria-current="page"],
.nav-links a.nav-active {
  color: var(--text) !important;
  font-weight: 600 !important;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ── LOGO (Version A: logo image tinted to match website palette) ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}
/* CSS filter to shift logo greens → orange/navy tones to match website */
.logo-img--tinted {
  filter: hue-rotate(135deg) saturate(1.4) brightness(0.95);
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text span { color: var(--orange); }

/* ── CIRCULAR AVATAR FRAME WITH ANIMATED RINGS ── */
.avatar-frame--circle {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: unset;
  overflow: visible;
  background: none;
}

.avatar-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 3;
  box-shadow: 0 16px 48px rgba(15,37,69,0.25);
  border: 4px solid #fff;
  animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 16px 48px rgba(15,37,69,0.25); }
  50%       { transform: scale(1.02); box-shadow: 0 20px 60px rgba(15,37,69,0.35); }
}

/* Animated concentric rings */
.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 3s ease-in-out infinite;
}
.avatar-ring--1 {
  width: 280px; height: 280px;
  border-color: rgba(232,101,10,0.35);
  animation-delay: 0s;
}
.avatar-ring--2 {
  width: 310px; height: 310px;
  border-color: rgba(232,101,10,0.2);
  animation-delay: 0.4s;
}
.avatar-ring--3 {
  width: 340px; height: 340px;
  border-color: rgba(232,101,10,0.1);
  animation-delay: 0.8s;
}

@keyframes ringExpand {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 1; }
  50%       { transform: translate(-50%,-50%) scale(1.04); opacity: 0.7; }
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 60px 40px 60px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,37,69,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 1; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: fadeSlideUp 0.5s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}

/* ── HEADLINE ROTATOR ── */
.headline-rotator { position: relative; min-height: 130px; margin-bottom: 16px; }
.headline-rotator h1 {
  position: absolute; top: 0; left: 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  animation: none; margin-bottom: 0;
}
.headline-rotator h1.active { opacity: 1; transform: translateY(0); position: relative; }

h1 {
  font-family: 'Fraunces', serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.5s 0.1s ease both;
}
h1 em { font-style: italic; color: var(--orange); }

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.5s 0.2s ease both;
}

.audience-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.5s 0.25s ease both;
}
.tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  border: 1px solid rgba(232,101,10,0.2);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12.5px; font-weight: 500;
}

.btn-row {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.5s 0.3s ease both;
}
.btn-primary {
  background: var(--orange); color: #fff; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,101,10,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,101,10,0.4);
}
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(15,37,69,0.25);
  padding: 13px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--navy); background: rgba(15,37,69,0.04); }
.btn-secondary svg { width: 16px; height: 16px; }

.stats-row {
  display: flex; gap: 0;
  animation: fadeSlideUp 0.5s 0.35s ease both;
}
.stat { padding: 0 24px 0 0; margin-right: 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.5px;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

/* ── HERO RIGHT ── */
.hero-right {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; position: relative; z-index: 1;
  animation: fadeSlideUp 0.6s 0.15s ease both;
}
/* old frame overridden by avatar-frame--circle above */
.avatar-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}


.float-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow); position: absolute; min-width: 200px;
}
.float-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.float-card-icon.orange { background: var(--orange-light); }
.float-card-icon.blue   { background: #E8F0FB; }
.float-card-text .title { font-size: 13px; font-weight: 600; color: var(--text); }
.float-card-text .sub   { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.card-left  { left: -30px; top: 40px;    animation: floatLeft  3s   ease-in-out infinite; }
.card-right { right: -20px; bottom: 60px; animation: floatRight 3.5s ease-in-out infinite; }

@keyframes floatLeft  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes floatRight { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)}  }

/* ── FEATURES STRIP ── */
.features {
  background: var(--navy);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feature-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.feature-desc  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--white); padding: 64px 60px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-light); border: 2px solid rgba(232,101,10,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  color: var(--orange); margin: 0 auto 16px;
}
.step-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── PPT SLIDER ── */
.slider-section {
  background: var(--white);
  padding: 64px 60px;
  border-top: 1px solid var(--border);
}
.ppt-slide-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.slide { padding: 0; } /* remove text padding since image fills it */
.ppt-slider   { max-width: 700px; margin: 40px auto 0; }
.slides-wrapper { position: relative; min-height: 260px; }
.slide {
  display: none; text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #EEF4FB 0%, #F7F0FF 100%);
  border-radius: 20px; border: 1px solid var(--border);
  animation: slideFadeIn 0.5s ease both;
}
.slide.active { display: block; }
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.slide-icon  { font-size: 48px; margin-bottom: 16px; }
.slide-title {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.5px; margin-bottom: 12px;
}
.slide-text {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; max-width: 520px; margin: 0 auto;
}
.slide-num { margin-top: 20px; font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.1em; }
.slide-progress-bar {
  height: 3px; background: var(--border); border-radius: 2px;
  margin: 20px 0 16px; overflow: hidden;
}
.slide-progress-fill {
  height: 100%; background: var(--orange); border-radius: 2px;
  transition: width 0.4s ease; width: 20%;
}
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.slider-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 18px; cursor: pointer; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.slider-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.05); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s; border: none;
}
.slider-dot.active { background: var(--orange); transform: scale(1.3); }

/* ── TESTIMONIALS ── */
.section-tag {
  font-size: 12px; font-weight: 600; color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.8px; margin-bottom: 40px;
}
.testimonial-section { padding: 64px 60px; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.t-stars  { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.t-text   { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.t-name   { font-size: 13px; font-weight: 600; color: var(--text); }
.t-role   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); padding: 64px 60px; text-align: center; }
.cta-section h2 {
  font-family: 'Fraunces', serif; font-size: 40px; font-weight: 600;
  color: #fff; letter-spacing: -1px; margin-bottom: 12px;
}
.cta-section p { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 28px; }
.cta-btn-white {
  background: #fff; color: var(--navy); border: none;
  padding: 14px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: transform 0.15s;
}
.cta-btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
.footer-main {
  background: #0A1A35;
  padding: 56px 60px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: #fff; letter-spacing: -0.5px;
  margin-bottom: 12px; display: block;
}
.footer-brand .footer-logo span { color: var(--orange); }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.65; max-width: 240px; margin-bottom: 20px;
}
.footer-cta-btn {
  background: var(--orange); color: #fff; border: none;
  padding: 10px 22px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s;
  margin-bottom: 20px; display: inline-block;
}
.footer-cta-btn:hover { background: var(--orange-dark); }
.footer-socials { display: flex; gap: 8px; }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-links span { font-size: 13.5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.social-icon:hover { transform: translateY(-2px); opacity: 0.85; }
.social-ig   { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-yt   { background: #FF0000; }
.social-wa   { background: #25D366; }

/* ── FAQ SECTION ── */
.faq-section {
  padding: 64px 60px;
  background: var(--white);
}
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; gap: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text); text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { color: var(--navy); }
.faq-icon {
  font-size: 20px; font-weight: 400; color: var(--orange);
  flex-shrink: 0; transition: transform 0.25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.7;
}

/* ── TESTIMONIALS HEADER WITH REVIEW BUTTON ── */
.testimonials-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  max-width: 900px; margin: 0 auto 36px;
}
.testimonials-header .section-title { margin-bottom: 0 !important; }
.add-review-btn {
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 9px 18px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.add-review-btn:hover { background: var(--navy); color: #fff; }

/* ── STAR RATING (review modal) ── */
.star-rating { display: flex; gap: 6px; }
.star-btn {
  background: none; border: none; font-size: 26px;
  color: #d1d5db; cursor: pointer; padding: 0;
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
}
.star-btn:hover, .star-btn.active { color: #f59e0b; transform: scale(1.1); }

/* ── MODAL OVERLAY ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,37,69,0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none; align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }

/* ── EXPERT FORM MODAL ── */
.modal-box {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 620px; padding: 40px;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both; margin: auto;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  cursor: pointer; font-size: 14px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: #FEE2E2; color: #DC2626; border-color: #FECACA; }
.modal-header { text-align: center; margin-bottom: 28px; }
.modal-icon   { font-size: 36px; margin-bottom: 10px; }
.modal-title  {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.5px; margin-bottom: 6px;
}
.modal-sub { font-size: 14px; color: var(--text-muted); }

.expert-form { display: flex; flex-direction: column; gap: 16px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 9px;
  padding: 10px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--cream); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.1);
  background: var(--white);
}
.form-group select { appearance: none; cursor: pointer; }
.consent-group { margin-top: 4px; }
.consent-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--orange); flex-shrink: 0; border: none; padding: 0; box-shadow: none;
}
.consent-label span { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.form-submit-btn {
  background: var(--orange); color: #fff; border: none;
  padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer; margin-top: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,101,10,0.3);
}
.form-submit-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,101,10,0.4); }

/* ── THANK YOU MODAL ── */
.thankyou-box {
  background: var(--white); border-radius: 20px;
  padding: 48px 40px; text-align: center;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both; margin: auto;
}
.thankyou-checkmark { width: 64px; height: 64px; margin: 0 auto 20px; }
.thankyou-checkmark svg { width: 64px; height: 64px; }
.check-path {
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: drawCheck 0.6s 0.3s ease forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.thankyou-title {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px;
}
.thankyou-text  { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 10px; }
.thankyou-small { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.thankyou-btn {
  background: var(--orange); color: #fff; border: none;
  padding: 12px 28px; border-radius: 10px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s;
}
.thankyou-btn:hover { background: var(--orange-dark); }

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer; transition: transform 0.2s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }

  /* Mobile nav overlay — fully opaque solid background */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    width: 100%; height: calc(100vh - 64px);
    background: #FDFAF5;          /* solid, not rgba — no transparency */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;                  /* high enough to cover everything */
    padding: 40px 24px;
    list-style: none;
    overflow-y: auto;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 22px !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15,37,69,0.08);
    width: 100%;
    text-decoration: none;
  }
  .nav-links a:hover { color: var(--orange) !important; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { display: none; }

  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    padding: 6px;
    z-index: 1000;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--navy);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
  h1 { font-size: 38px; }
  .hero-sub { max-width: 100%; }
  .audience-tags, .btn-row, .stats-row { justify-content: center; }
  /* Show hero-right on mobile too — circular photo */
  .hero-right { display: flex; margin-top: 32px; }
  .avatar-frame--circle { width: 220px; height: 220px; }
  .avatar-photo { width: 190px; height: 190px; }
  .avatar-ring--1 { width: 205px; height: 205px; }
  .avatar-ring--2 { width: 225px; height: 225px; }
  .avatar-ring--3 { width: 245px; height: 245px; }
  .card-left, .card-right { display: none; }
  .features, .testimonials-grid, .steps { grid-template-columns: 1fr; }
  .features { padding: 40px 24px; }
  .testimonial-section, .how-it-works, .cta-section { padding: 48px 24px; }
  .cta-section h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-main { padding: 40px 24px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
  .slider-section { padding: 48px 24px; }
  .slide { padding: 28px 20px; }
}
@media (min-width: 901px) {
  .nav-hamburger { display: none; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links a { font-size: 19px !important; }
}

/* ── FOCUS VISIBLE (keyboard accessibility) ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
/* ── FAQ + TESTIMONIALS RESPONSIVE ── */
@media (max-width: 820px) {
  .faq-section { padding: 48px 24px; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
}