/* ============================================================
   HIREFLOW VA — styles.css
   Mobile-first, shared across all pages
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --teal:       #00C2B5;
  --navy:       #1B3A6B;
  --dark-navy:  #0D1F3C;
  --light-teal: #E6FAF9;
  --mid-gray:   #7A8FA6;
  --white:      #FFFFFF;

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 12px 48px rgba(0, 0, 0, 0.18);

  --transition: 0.25s ease;

  --max-width:  1160px;
  --section-gap: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark-navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--mid-gray); font-size: 1rem; }

.text-white p,
.text-white h1,
.text-white h2,
.text-white h3 { color: var(--white); }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: var(--section-gap); }
.section--sm { padding-block: 48px; }
.section--lg { padding-block: 120px; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.centered { text-align: center; }
.centered .section-sub { margin-inline: auto; }

.grid-2 {
  display: grid;
  gap: 32px;
}

.grid-3 {
  display: grid;
  gap: 28px;
}

.grid-4 {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: #00afa3; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: #142d55; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.card--teal { background: var(--light-teal); border-color: rgba(0,194,181,0.2); }
.card--navy { background: var(--navy); color: var(--white); border-color: transparent; }
.card--navy h3, .card--navy p { color: var(--white); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card-icon--navy { background: rgba(255,255,255,0.15); }

.card h3 { margin-bottom: 10px; }

/* ── Badge / Pill ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-teal  { background: rgba(0,194,181,0.12); color: #008f84; }
.badge-navy  { background: rgba(27,58,107,0.1);  color: var(--navy); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 56px;
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
  margin-block: 20px;
}
.divider--center { margin-inline: auto; }

/* ── ─────────────────────────────────────────────────────────── */
/*    NAVIGATION                                                   */
/* ── ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  font-family: var(--font-heading);
}

.nav__logo-sub {
  font-size: 0.68rem;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-navy);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover { color: var(--teal); background: var(--light-teal); }
.nav__link.active { color: var(--teal); font-weight: 600; }

.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__hamburger:hover { background: var(--light-teal); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  gap: 4px;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav__mobile-link:hover { background: var(--light-teal); color: var(--teal); }
.nav__mobile-link.active { color: var(--teal); background: var(--light-teal); }

.nav__mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

@media (min-width: 860px) {
  .nav__links    { display: flex; }
  .nav__hamburger { display: none; }
}

/* ── ─────────────────────────────────────────────────────────── */
/*    HERO                                                         */
/* ── ─────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #142d55 60%, #1a4a5e 100%);
  position: relative;
  overflow: hidden;
  padding-block: 80px 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(0,194,181,0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(0,194,181,0.10) 0%, transparent 45%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,181,0.15);
  border: 1px solid rgba(0,194,181,0.35);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__eyebrow span { color: var(--teal); }

.hero h1 { color: var(--white); margin-bottom: 12px; }
.hero h1 em { color: var(--teal); font-style: normal; }

.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__visual {
  display: none;
}

.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.hero__card-bg {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 100%;
  height: 100%;
  background: rgba(0,194,181,0.15);
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
}

.hero__card-main {
  position: relative;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #008f84);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__card-name { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.hero__card-role { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.hero__card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.skill-pill {
  background: rgba(0,194,181,0.2);
  color: var(--teal);
  border: 1px solid rgba(0,194,181,0.3);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hero__card-match {
  background: rgba(0,194,181,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__match-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.hero__match-value { font-size: 1.1rem; font-weight: 700; color: var(--teal); }

@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1fr 420px; }
  .hero__visual { display: block; }
  .hero { padding-block: 100px 120px; }
}

/* ── ─────────────────────────────────────────────────────────── */
/*    SECTION: TRUST BAR                                          */
/* ── ─────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--light-teal);
  padding-block: 28px;
  border-block: 1px solid rgba(0,194,181,0.2);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-item__icon {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── ─────────────────────────────────────────────────────────── */
/*    FEATURES                                                     */
/* ── ─────────────────────────────────────────────────────────── */
.features { background: var(--white); }

/* ── ─────────────────────────────────────────────────────────── */
/*    HOW IT WORKS (teaser / full)                                 */
/* ── ─────────────────────────────────────────────────────────── */
.hiw { background: var(--dark-navy); }
.hiw h2, .hiw .section-label, .hiw .section-sub { color: var(--white); }
.hiw .section-sub { color: rgba(255,255,255,0.6); }

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}

.step-card:hover {
  background: rgba(0,194,181,0.08);
  border-color: rgba(0,194,181,0.3);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: rgba(0,194,181,0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 { color: var(--white); margin-bottom: 8px; }
.step-card p  { color: rgba(255,255,255,0.55); }

/* ── ─────────────────────────────────────────────────────────── */
/*    PRICING TEASER / FULL                                        */
/* ── ─────────────────────────────────────────────────────────── */
.pricing-section { background: #f8fbff; }

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.plan-card--featured {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(0,194,181,0.18);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-price__amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  line-height: 1;
}

.plan-price__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--mid-gray);
  align-self: flex-start;
  padding-top: 6px;
}

.plan-price__period {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 28px;
  min-height: 40px;
}

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-navy);
}

.plan-feature__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card .btn { width: 100%; justify-content: center; }

/* ── ─────────────────────────────────────────────────────────── */
/*    TESTIMONIALS                                                 */
/* ── ─────────────────────────────────────────────────────────── */
.testimonials { background: var(--white); }

.testimonial-card {
  background: var(--light-teal);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0,194,181,0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--dark-navy);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name  { font-size: 0.9rem; font-weight: 700; color: var(--dark-navy); }
.testimonial-title { font-size: 0.78rem; color: var(--mid-gray); }

.stars { color: #F5A623; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 8px; }

/* ── ─────────────────────────────────────────────────────────── */
/*    CTA SECTION                                                  */
/* ── ─────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0,194,181,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── ─────────────────────────────────────────────────────────── */
/*    PAGE HERO (inner pages)                                      */
/* ── ─────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #142d55 100%);
  padding-block: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(0,194,181,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero__inner { position: relative; z-index: 1; }
.page-hero .section-label { display: block; margin-bottom: 10px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }

/* ── ─────────────────────────────────────────────────────────── */
/*    ABOUT PAGE SPECIFICS                                         */
/* ── ─────────────────────────────────────────────────────────── */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}

.team-name  { font-size: 1.05rem; font-weight: 700; color: var(--dark-navy); margin-bottom: 4px; }
.team-role  { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.team-bio   { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; }

.values-grid { display: grid; gap: 24px; }

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-item h4 { margin-bottom: 4px; color: var(--dark-navy); }
.value-item p  { font-size: 0.9rem; }

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ─────────────────────────────────────────────────────────── */
/*    BOOK A CALL PAGE                                            */
/* ── ─────────────────────────────────────────────────────────── */
.book-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .book-layout { grid-template-columns: 1fr 480px; }
}

.book-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark-navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,194,181,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8FA6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-note { font-size: 0.78rem; color: var(--mid-gray); text-align: center; margin-top: 14px; }

.book-aside { display: flex; flex-direction: column; gap: 24px; }

.aside-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

.aside-card h4 { margin-bottom: 16px; color: var(--dark-navy); }

.aside-list { display: flex; flex-direction: column; gap: 12px; }

.aside-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.aside-item__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--light-teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── ─────────────────────────────────────────────────────────── */
/*    FAQ ACCORDION                                               */
/* ── ─────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin-inline: auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--teal); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  gap: 16px;
  transition: color var(--transition);
}

.faq-item.open .faq-question { color: var(--teal); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ── ─────────────────────────────────────────────────────────── */
/*    FOOTER                                                       */
/* ── ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark-navy);
  padding-block: 64px 32px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 56px;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
}

.footer__brand { }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-body);
}

.footer__logo-name { font-size: 1rem; font-weight: 700; color: var(--white); font-family: var(--font-heading); }

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--teal); }

.footer__contact { display: flex; flex-direction: column; gap: 10px; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer__contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--teal); }

/* ── ─────────────────────────────────────────────────────────── */
/*    UTILITY HELPERS                                              */
/* ── ─────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0  { margin-bottom: 0; }

.bg-light { background: #f8fbff; }
.bg-teal-light { background: var(--light-teal); }

.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-gray  { color: var(--mid-gray); }
.text-white { color: var(--white); }
.text-dark  { color: var(--dark-navy); }

/* ── ─────────────────────────────────────────────────────────── */
/*    ANIMATIONS                                                   */
/* ── ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

/* ── ─────────────────────────────────────────────────────────── */
/*    RESPONSIVE TWEAKS                                            */
/* ── ─────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  :root { --section-gap: 96px; }
  .container { padding-inline: 32px; }
}

@media (min-width: 1200px) {
  :root { --section-gap: 112px; }
  .container { padding-inline: 40px; }
}

/* ── Success state for form ─────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.form-success h3 { margin-bottom: 12px; }
.form-success p  { margin-bottom: 24px; }
