/* ============================================================
   Foundational Waves Therapy LLC — Stylesheet
   Brand: Navy #1B3A6B · Gold #E8A820 · Sky #4A9FD4
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #122849;
  --sky:        #4A9FD4;
  --sky-light:  #EDF5FC;
  --sky-mid:    #C8E4F5;
  --gold:       #E8A820;
  --gold-hover: #c9901a;
  --gold-light: #FEF6DC;
  --text:       #2D3748;
  --text-muted: #718096;
  --white:      #FFFFFF;
  --warm-white: #FAFAF8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --radius:    12px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.75;
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section[id] {
  scroll-margin-top: 72px;
}

/* ── Gradient accent bar under section h2s ──────────────────── */
.section h2 {
  position: relative;
  padding-bottom: 0.25rem;
}

.section h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  border-radius: 2px;
  margin-top: 0.9rem;
}

/* Center the bar for centered sections */
.cta-content h2::after,
.centered-bar::after {
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll-reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.bg-light {
  background-color: var(--white);
}

.bg-navy {
  background-color: var(--navy);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background 0.2s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, #f0b822 0%, var(--gold) 60%, #d4950e 100%);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d49810 0%, #b8820c 100%);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-icon {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo-text {
  height: 75px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--sky);
}

.btn-nav {
  background-color: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  transition: background 0.2s !important, box-shadow 0.2s !important;
}

.btn-nav:hover {
  background-color: var(--sky) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(74, 159, 212, 0.4) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  padding: 5rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #122849 0%, #1B3A6B 100%);
}

/* Right-side photo with mask fade */
.hero-photo {
  position: absolute;
  top: 0; bottom: 0;
  left: 40%; right: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay darkens the left text area for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 40, 73, 0.95) 0%,
    rgba(18, 40, 73, 0.75) 35%,
    rgba(18, 40, 73, 0.2) 55%,
    transparent 70%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
  font-weight: 300;
  max-width: 560px;
}

.hero-sub:last-of-type {
  margin-bottom: 2.4rem;
}

.page-hero-content .hero-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* ── Hero Buttons ──────────────────────────────────────────── */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text);
}

.about-logo {
  width: 210px;
  height: 210px;
  object-fit: contain;
  border-radius: 50%;
  /* Gold ring effect */
  box-shadow:
    0 0 0 5px var(--warm-white),
    0 0 0 9px var(--gold),
    var(--shadow-md);
}

/* ── Who I Work With ────────────────────────────────────────── */
.section-intro {
  font-size: 1.08rem;
  max-width: 680px;
  margin-bottom: 2rem;
  color: var(--text);
}

.section-footnote {
  margin-top: 2rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 680px;
}

/* ── Clean List ────────────────────────────────────────────── */
.clean-list {
  margin-top: 0.5rem;
  padding: 0;
}

.clean-list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
  padding: 0.2rem 0;
}

.clean-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--gold), var(--sky));
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.clean-list-2col {
  columns: 2;
  column-gap: 3rem;
}

.clean-list-2col li {
  break-inside: avoid;
}

.who-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}

.who-item span:last-child {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}

/* ── Services ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--sky-mid);
  border-left: 4px solid var(--sky);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--sky-light);
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  color: var(--text);
}

/* ── Approach ───────────────────────────────────────────────── */
.bg-navy {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #1e4480 60%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative glow behind text */
.bg-navy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.approach-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.approach-content h2 {
  color: var(--white);
  text-align: center;
}

.approach-content h2::after {
  margin-left: auto;
  margin-right: auto;
}

.approach-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.approach-pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 3rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
}

.pillar span {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* ── Fees ───────────────────────────────────────────────────── */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
  align-items: stretch;
}

.fee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 58, 107, 0.08);
  position: relative;
}

.fee-card-featured {
  background: var(--navy);
  border: none;
  box-shadow:
    0 0 0 2px var(--gold),
    var(--shadow-lg);
  transform: scale(1.04);
  z-index: 1;
}


.fee-card-featured h3 {
  color: var(--white);
}

.fee-card-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.fee-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.fee-amount {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.75rem 0;
  line-height: 1;
}

.fee-card h3 {
  font-size: 1.05rem;
}

.fee-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #1e4480 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 32, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}


.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 3rem 0 2.5rem;
  border-top: 3px solid rgba(74, 159, 212, 0.25);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  height: 80px;
  width: auto;
  opacity: 0.9;
}

.footer-logo-text {
  height: 60px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.8;
}

/* ── Contact Page ───────────────────────────────────────────── */

.page-hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-dark) 0%, #1e4277 45%, #2458a8 100%);
  padding: 4.5rem 0;
  overflow: hidden;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-section {
  background: var(--warm-white);
  padding-top: 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* Form */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 58, 107, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.required {
  color: #c0392b;
}

.optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--warm-white);
  border: 1.5px solid #d0dff0;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bec5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(74, 159, 212, 0.18);
  background: var(--white);
}

.btn-submit {
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem;
  margin-top: 0.5rem;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success / error states */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.form-success h2 {
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.form-error-msg {
  background: #fff3f3;
  border: 1.5px solid #f5c6cb;
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  margin-bottom: 1.25rem;
  color: #c0392b;
  font-size: 0.95rem;
}

.form-error-msg a {
  color: #c0392b;
  font-weight: 700;
  text-decoration: underline;
}

/* Per-field validation */
.field-error {
  display: none;
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 0.35rem;
  font-weight: 600;
}

.field-error.visible {
  display: block;
}

.input-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

/* Sidebar */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}

.aside-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  color: var(--white);
}

.aside-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.aside-card-light {
  background: var(--white);
  border: 1px solid rgba(27, 58, 107, 0.1);
  box-shadow: var(--shadow-sm);
}

.aside-card-light h3 {
  color: var(--navy);
}

.aside-card-light p {
  color: var(--text);
}

.aside-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.aside-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Email link in sidebar */
.aside-email {
  display: inline-block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  word-break: break-all;
  margin-top: 0.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aside-email:hover {
  color: var(--sky);
}

/* Active nav on contact page */
.active-nav {
  background-color: var(--sky) !important;
}

/* Active nav link highlight for non-button items */
.active-nav-link {
  color: var(--sky) !important;
}

/* ── Outline Button ────────────────────────────────────────── */
.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Section CTA (centered button below grids) ───────────── */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── How It Works Steps ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.25rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* ── Service Detail Pages ────────────────────────────────── */
.service-detail {
  max-width: 760px;
}

.service-detail h2 {
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-detail ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0;
  padding: 0;
}

.service-detail li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--text);
  padding: 0.5rem 0;
}

.service-detail li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(27, 58, 107, 0.06);
}

.faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

/* ── About Page ──────────────────────────────────────────── */
.about-bio {
  max-width: 760px;
}

.about-bio p {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 920px) {
  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 99;
    border-bottom: 1px solid rgba(27, 58, 107, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 5rem 0 5.5rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-buttons {
    align-items: center;
  }

  .hero-glow {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-logo {
    margin: 0 auto;
    width: 170px;
    height: 170px;
  }

  /* Fees */
  .fees-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .fee-card-featured {
    transform: scale(1);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail ul {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }

  .form-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .clean-list-2col {
    columns: 1;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .section h2::after {
    margin-top: 0.75rem;
  }
}
