/* ============================================================
   HelpMyFlight.com — Global Stylesheet
   Get Flight Help LLC
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --navy:        #0b1929;
  --navy-mid:    #152845;
  --navy-light:  #1e3a5f;
  --cta:         #1a4fa3;
  --cta-dark:    #113b80;
  --cta-light:   #eaf1fb;
  --gold:        #b8881e;
  --gold-bright: #d4a030;
  --gold-light:  #f7efd6;
  --white:       #ffffff;
  --surface:     #f8f9fc;
  --surface-2:   #f0f3f8;
  --border:      #e2e8f0;
  --border-dark: #c8d4e3;
  --text:        #0b1929;
  --muted:       #536580;
  --muted-light: #7a90a8;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1180px;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-xs:   0 1px 3px rgba(11,25,41,.06);
  --shadow-sm:   0 2px 8px rgba(11,25,41,.08);
  --shadow-md:   0 4px 20px rgba(11,25,41,.10);
  --shadow-lg:   0 8px 36px rgba(11,25,41,.13);
  --transition:  .18s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--cta); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: var(--font); font-size: 1rem; }
address { font-style: normal; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); letter-spacing: -0.015em; }
h4 { font-size: .95rem; font-weight: 600; letter-spacing: 0; }
p  { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--gray { background: var(--surface); }
.section--gray2 { background: var(--surface-2); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.accent-bar {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gold-bright);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
  box-shadow: 0 2px 10px rgba(26,79,163,.3);
}
.btn-primary:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  box-shadow: 0 4px 18px rgba(26,79,163,.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--cta);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--cta);
  color: var(--cta);
  background: var(--cta-light);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.btn-gold {
  background: var(--gold-bright);
  color: var(--navy);
  border-color: var(--gold-bright);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(184,136,30,.3);
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(184,136,30,.4);
}

.btn-lg { padding: .95rem 2.1rem; font-size: .975rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .825rem; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.logo:hover .logo-mark { background: var(--cta); }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: block;
}
.logo-wordmark em {
  font-style: normal;
  color: var(--gold-bright);
}
.logo-tagline {
  font-size: .65rem;
  font-weight: 500;
  color: var(--muted-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.footer-logo .logo-wordmark { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,.45); }

/* Desktop nav */
.site-nav {
  display: none;
  align-items: center;
  gap: .15rem;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover { background: var(--surface); color: var(--navy); text-decoration: none; }
.site-nav a[aria-current="page"] { background: var(--cta-light); color: var(--cta); font-weight: 600; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.btn-header-cta {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--cta);
  color: var(--white);
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .01em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26,79,163,.25);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-header-cta:hover {
  background: var(--cta-dark);
  box-shadow: 0 4px 16px rgba(26,79,163,.35);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: 1.5px solid var(--border-dark);
  border-radius: 7px;
  padding: .5rem .6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--transition);
}
.nav-toggle:hover { border-color: var(--navy); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: .2rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  padding: .7rem .85rem;
  border-radius: 7px;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--surface); text-decoration: none; }
.mobile-nav .divider { height: 1px; background: var(--border); margin: .5rem 0; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: .65rem; }

/* ── Sticky Mobile CTA ──────────────────────────────────── */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(11,25,41,.25);
}
.sticky-call-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color var(--transition);
}
.sticky-call-link:hover { color: var(--gold-bright); text-decoration: none; }
.sticky-call-link svg { flex-shrink: 0; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 50%, rgba(26,79,163,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(184,136,30,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(184,136,30,.12);
  border: 1px solid rgba(184,136,30,.3);
  color: var(--gold-bright);
  font-size: .75rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  margin-bottom: 1.35rem;
  line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--gold-bright); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2.25rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-trust {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .02em;
}
.trust-item svg { color: var(--gold-bright); flex-shrink: 0; }

/* ── Section Heading ────────────────────────────────────── */
.section-heading { margin-bottom: 3rem; }
.section-heading.centered { text-align: center; }
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: .65rem;
  display: block;
}
.section-heading h2 { margin-bottom: .85rem; }
.section-heading p { font-size: 1.075rem; color: var(--muted); max-width: 580px; line-height: 1.7; }
.section-heading.centered p { margin: 0 auto; }

/* ── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.35rem;
  margin-top: 2.75rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--cta);
  text-decoration: none;
  color: var(--text);
}
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--cta-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon svg { color: var(--cta); }
.service-card h3 { font-size: 1.05rem; margin-bottom: .45rem; color: var(--navy); }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.1rem; flex: 1; }
.service-card-link {
  font-size: .825rem;
  font-weight: 600;
  color: var(--cta);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  letter-spacing: .01em;
}

/* ── Steps ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2.75rem;
}
.step-item { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.step-num {
  width: 46px;
  height: 46px;
  background: var(--gold-bright);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(184,136,30,.3);
}
.step-item h3 { font-size: 1.075rem; margin-bottom: .1rem; }
.step-item p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Feature Two-Column ─────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.feature-content h2 { margin-bottom: 1rem; }
.feature-content p { color: var(--muted); margin-bottom: 1.35rem; line-height: 1.75; }
.feature-list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--cta-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a4fa3'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-panel {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  color: var(--white);
}
.feature-panel h3 { color: var(--white); margin-bottom: .5rem; }
.feature-panel > p { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 0; }
.feature-panel-list { display: flex; flex-direction: column; gap: 1.35rem; margin-top: 1.75rem; }
.feature-panel-item { display: flex; gap: 1rem; align-items: flex-start; }
.panel-icon {
  width: 42px; height: 42px;
  background: rgba(184,136,30,.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.panel-icon svg { color: var(--gold-bright); }
.feature-panel-item h4 { color: var(--white); font-size: .9rem; margin-bottom: .2rem; font-weight: 600; }
.feature-panel-item p { color: rgba(255,255,255,.55); font-size: .83rem; margin: 0; line-height: 1.55; }

/* ── Reasons Grid ───────────────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.reason-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  border-top: 3px solid var(--gold-bright);
}
.reason-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.reason-card p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 2.25rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--border-dark); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  transition: background var(--transition);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { background: var(--surface); }
.faq-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--cta-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cta);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .2s, background .2s, color .2s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--cta);
  color: var(--white);
}
.faq-answer {
  padding: .25rem 1.4rem 1.4rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer p { margin-top: .85rem; margin-bottom: 0; }
.faq-answer ul { margin-top: .6rem; padding-left: 1.25rem; list-style: disc; }
.faq-answer li { margin-bottom: .4rem; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  border-top: 3px solid var(--gold-bright);
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.cta-text h2 { color: var(--white); margin-bottom: .75rem; max-width: 580px; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Disclaimer ─────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.disclaimer-bar p {
  font-size: .78rem;
  color: var(--muted-light);
  text-align: center;
  margin: 0;
  line-height: 1.65;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo { margin-bottom: 1.25rem; }
.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.55);
}
.footer-entity { margin-top: 1rem; }
.footer-entity-name {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
  margin-bottom: .4rem;
}
.footer-address {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li a {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  font-size: .78rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  color: rgba(255,255,255,.45);
}
.footer-legal a { color: rgba(255,255,255,.45); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }
.footer-disclaimer { font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.65; max-width: 600px; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  font-size: .8rem;
}
.breadcrumb li + li::before { content: '›'; color: var(--muted-light); margin-right: .35rem; }
.breadcrumb a { color: var(--cta); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--muted); font-weight: 500; }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 720px; }
.page-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.075rem;
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Content Two-Column ─────────────────────────────────── */
.content-body { padding: 4rem 0; }
.content-cols { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
.content-main h2 { margin-bottom: .9rem; margin-top: 2.75rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-bottom: .65rem; margin-top: 2rem; }
.content-main p { color: var(--muted); line-height: 1.75; }
.content-main ul, .content-main ol { padding-left: 1.5rem; color: var(--muted); margin-bottom: 1.1rem; }
.content-main li { margin-bottom: .45rem; font-size: .95rem; line-height: 1.65; }
.content-main ul { list-style: disc; }
.content-main ol { list-style: decimal; }

/* Sidebar */
.sidebar-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  margin-bottom: 1.35rem;
  position: sticky;
  top: 86px;
}
.sidebar-card h3 {
  font-size: .95rem;
  margin-bottom: .9rem;
  padding-bottom: .75rem;
  border-bottom: 1.5px solid var(--border);
  color: var(--navy);
}
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: .6rem; }
.phone-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin: .85rem 0;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.phone-link:hover { color: var(--cta); text-decoration: none; }
.sidebar-links { display: flex; flex-direction: column; gap: .45rem; margin-top: 1rem; }
.sidebar-links a { font-size: .85rem; color: var(--cta); font-weight: 500; }
.sidebar-links a:hover { text-decoration: underline; }

/* ── Info / Warn Boxes ──────────────────────────────────── */
.info-box {
  background: var(--cta-light);
  border-left: 4px solid var(--cta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.35rem;
  margin: 1.75rem 0;
  font-size: .9rem;
  color: var(--navy);
  line-height: 1.65;
}
.info-box strong { display: block; margin-bottom: .25rem; font-size: .875rem; }
.warn-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.35rem;
  margin: 1.75rem 0;
  font-size: .9rem;
  color: var(--navy);
  line-height: 1.65;
}
.warn-box strong { display: block; margin-bottom: .25rem; font-size: .875rem; }

/* ── Contact Form ───────────────────────────────────────── */
.contact-form { max-width: 680px; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.form-group label {
  display: block;
  font-size: .825rem;
  font-weight: 600;
  margin-bottom: .45rem;
  color: var(--navy);
  letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(26,79,163,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Value / About Cards ────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.value-card {
  padding: 1.65rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--gold-bright);
}
.value-card h3 { font-size: 1rem; margin-bottom: .45rem; }
.value-card p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Legal Pages ────────────────────────────────────────── */
.legal-content { padding: 3.5rem 0 5rem; max-width: 760px; }
.legal-content h2 { margin-top: 2.75rem; margin-bottom: .9rem; font-size: 1.25rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 2rem; margin-bottom: .65rem; }
.legal-content p, .legal-content li { color: var(--muted); font-size: .9rem; line-height: 1.75; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-meta {
  font-size: .8rem;
  color: var(--muted-light);
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .site-nav { display: flex; }
  .btn-header-cta { display: flex; }
  .nav-toggle { display: none; }
  .sticky-call { display: none; }
  body { padding-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .content-cols { grid-template-columns: 1fr 310px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .cta-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 3rem; }
  .cta-text { flex: 1; }
  .cta-actions { flex-shrink: 0; flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
}

@media (max-width: 767px) {
  body { padding-bottom: 68px; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 3.5rem 0; }
}

@media (min-width: 1024px) {
  .hero { padding: 7rem 0 6rem; }
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr; }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .sticky-call, .cta-banner, .site-footer { display: none; }
}
