/* ============================================
   THE CLINICAL RECRUITER™ — BRAND STYLESHEET
   Color palette matched to logo: steel-navy blues
   ============================================ */

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

:root {
  /* ── Brand Palette (matched to logo) ── */
  --navy:          #0d1b2a;   /* deepest background */
  --navy-mid:      #152236;   /* mid-dark sections */
  --navy-light:    #1e2f42;   /* cards, raised surfaces */
  --steel:         #35516a;   /* logo primary blue */
  --steel-mid:     #3a5872;   /* logo text blue */
  --steel-light:   #506c83;   /* hover/highlights */
  --steel-pale:    #a7c1d2;   /* light accent */
  --ice:           #d5e4ee;   /* very light accent */
  --accent:        #5b8db8;   /* CTA accent — bright steel blue */
  --accent-light:  #7aafd4;   /* hover state */
  --accent-pale:   #e8f2f9;   /* pale background tint */

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --gray-100:      #f0f4f8;
  --gray-200:      #dde5ef;
  --gray-400:      #9bb0c4;
  --gray-600:      #5f7a93;
  --gray-800:      #2c3e50;
  --text-dark:     #0d1b2a;
  --text-medium:   #334d66;
  --text-light:    #5f7a93;

  /* Status */
  --green:  #2d9e6b;
  --red:    #c0392b;

  /* Typography */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-padding:    100px 0;
  --section-padding-sm: 60px 0;
  --container-max:      1200px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(13,27,42,0.10);
  --shadow-md:     0 4px 24px rgba(13,27,42,0.16);
  --shadow-lg:     0 8px 48px rgba(13,27,42,0.24);
  --shadow-accent: 0 4px 24px rgba(91,141,184,0.28);

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Transitions */
  --transition: all 0.25s ease;
}

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

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--text-medium); font-size: 1.05rem; line-height: 1.75; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }
strong { color: var(--navy); font-weight: 600; }

/* --- LAYOUT --- */
.container      { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section        { padding: var(--section-padding); }
.section-sm     { padding: var(--section-padding-sm); }

.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h1, .section-dark h2,
.section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.80); }

.section-navy-light {
  background: var(--navy-light);
  color: var(--white);
}
.section-navy-light h1,
.section-navy-light h2,
.section-navy-light h3 { color: var(--white); }
.section-navy-light p { color: rgba(255,255,255,0.80); }

.section-navy-mid { background: var(--navy-mid); }

.section-gray { background: var(--gray-100); }

.text-center  { text-align: center; }
.text-accent  { color: var(--accent) !important; }
.text-white   { color: var(--white) !important; }
.text-navy    { color: var(--navy) !important; }
.text-steel   { color: var(--steel-pale) !important; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* PRIMARY — bright accent blue */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* SECONDARY — outlined accent */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* DARK */
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* WHITE fill */
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--ice);
  transform: translateY(-2px);
}

/* WHITE outline */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* STEEL outline */
.btn-outline-steel {
  background: transparent;
  color: var(--steel-pale);
  border-color: var(--steel-pale);
}
.btn-outline-steel:hover {
  background: var(--steel-pale);
  color: var(--navy);
}

.btn-lg   { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm   { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(91,141,184,0.12);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes logo white on dark nav */
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--steel-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(91,141,184,0.15);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--accent-light); }

/* --- NOTICE BAR --- */
.notice-bar {
  background: var(--steel-mid);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}
.notice-bar a { color: var(--ice); text-decoration: underline; }
.nav.with-banner { top: 40px; }

/* --- HERO --- */
.hero {
  background: var(--navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(53,81,106,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(91,141,184,0.10) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,141,184,0.12);
  border: 1px solid rgba(91,141,184,0.3);
  color: var(--steel-pale);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 { color: var(--white); margin-bottom: 24px; line-height: 1.15; }
.hero h1 span { color: var(--accent-light); }

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-proof { display: flex; gap: 36px; flex-wrap: wrap; }

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Hero card */
.hero-card {
  background: var(--navy-light);
  border: 1px solid rgba(91,141,184,0.22);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(91,141,184,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.product-ladder { display: flex; flex-direction: column; gap: 12px; }

.product-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.product-tier:hover {
  border-color: rgba(91,141,184,0.45);
  background: rgba(91,141,184,0.08);
  transform: translateX(4px);
}
.product-tier.featured {
  border-color: var(--accent);
  background: rgba(91,141,184,0.12);
}

.tier-info { display: flex; align-items: center; gap: 12px; }

.tier-badge {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.tier-badge.free    { background: rgba(255,255,255,0.08); }
.tier-badge.starter { background: rgba(91,141,184,0.2); }
.tier-badge.pro     { background: var(--accent); }

.tier-name  { font-weight: 600; color: var(--white); font-size: 0.93rem; line-height: 1.2; }
.tier-desc  { font-size: 0.76rem; color: rgba(255,255,255,0.48); margin-top: 2px; }
.tier-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--accent-light); }
.tier-price.free-tag { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* --- PROOF BAR --- */
.proof-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(91,141,184,0.12);
  border-bottom: 1px solid rgba(91,141,184,0.12);
  padding: 18px 0;
}
.proof-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.68);
  font-size: 0.86rem;
  font-weight: 500;
}
.proof-icon { color: var(--accent-light); font-size: 0.95rem; }

/* --- SECTION HEADER --- */
.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; }
.section-dark  .section-eyebrow    { color: var(--steel-pale); }
.section-dark  .section-header p   { color: rgba(255,255,255,0.72); }
.section-navy-light .section-eyebrow { color: var(--accent-light); }
.section-navy-light .section-header p { color: rgba(255,255,255,0.72); }

/* --- RESULT CARDS (replaces step cards) --- */
.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}
.result-card:hover {
  border-color: rgba(91,141,184,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.result-card:hover::before { transform: scaleX(1); }

.result-icon {
  width: 52px; height: 52px;
  background: var(--accent-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.result-card h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.result-card p { font-size: 0.93rem; }

/* --- STEP CARDS (7-step method) --- */
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,141,184,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.step-card:hover {
  border-color: rgba(91,141,184,0.4);
  background: rgba(91,141,184,0.06);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(91,141,184,0.18);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* --- PRODUCT CARDS --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-6px);
}
.product-card.featured {
  border-color: var(--accent);
  position: relative;
}
.product-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 100px;
}

.product-card-badge {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(91,141,184,0.25);
}

.product-card-price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-sub { font-size: 0.88rem; color: var(--text-light); }

.product-card-desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 0;
}

.product-card-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.product-card-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--text-medium);
}
.product-card-features li:last-child { border-bottom: none; }
.feature-check { color: var(--green); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

/* --- AUTHORITY SECTION --- */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.authority-image {
  background: var(--navy-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(91,141,184,0.18);
}

.authority-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(91,141,184,0.12);
}
.authority-photo img { width: 100%; height: 100%; object-fit: cover; }

.authority-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--steel) 0%, var(--accent) 100%);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.authority-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.authority-title {
  color: var(--steel-pale);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.authority-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.auth-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.auth-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.authority-content h2 { margin-bottom: 22px; }
.authority-content p  { margin-bottom: 18px; }

.authority-points { list-style: none; margin: 24px 0; }
.authority-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.authority-points li .check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* --- MODULES GRID (dark bg) --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,141,184,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.module-card:hover {
  border-color: rgba(91,141,184,0.4);
  background: rgba(91,141,184,0.07);
}
.module-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.module-card h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.module-card p { font-size: 0.84rem; color: rgba(255,255,255,0.58); }

/* --- FAQ --- */
.faq-list  { max-width: 800px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid var(--gray-200); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-answer { display: none; padding: 0 0 24px; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.95rem; color: var(--text-medium); }

/* --- QUOTE BLOCK --- */
.quote-block {
  background: var(--navy-light);
  border: 1px solid rgba(91,141,184,0.18);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 40px 0;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 16px;
}
.quote-author { font-size: 0.84rem; color: var(--steel-pale); font-weight: 600; }

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(91,141,184,0.15);
  border-bottom: 1px solid rgba(91,141,184,0.15);
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(91,141,184,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p  { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(53,81,106,0.25) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.70);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,141,184,0.14);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control    { cursor: pointer; }

/* Contact info block */
.contact-info-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-info-block h3 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(91,141,184,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-info-content h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-pale);
  margin-bottom: 4px;
}
.contact-info-content p   { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.contact-info-content a   { color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.contact-info-content a:hover { color: var(--accent-light); }

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 12px; }
.legal-content p  { margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-medium); font-size: 0.95rem; }
.legal-content .last-updated {
  font-size: 0.84rem; color: var(--text-light); margin-bottom: 40px;
  padding: 14px; background: var(--gray-100); border-radius: var(--radius-md);
}

/* --- ALERTS --- */
.alert {
  padding: 15px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.94rem;
  display: none;
}
.alert.show { display: block; }
.alert-success { background: rgba(45,158,107,0.1); border: 1px solid rgba(45,158,107,0.3); color: #1a5e3e; }
.alert-error   { background: rgba(192,57,43,0.1);  border: 1px solid rgba(192,57,43,0.3);  color: #6b1c15; }

/* --- STATS BAND --- */
.stats-band {
  background: var(--navy-mid);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(91,141,184,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 8px;
}

/* --- GUARANTEE BOX --- */
.guarantee-box {
  background: var(--navy-light);
  border: 1px solid rgba(91,141,184,0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.guarantee-icon { font-size: 3rem; flex-shrink: 0; }
.guarantee-box h3 { color: var(--white); margin-bottom: 12px; }
.guarantee-box p  { color: rgba(255,255,255,0.70); font-size: 0.95rem; }

/* --- FOOTER --- */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(91,141,184,0.12);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-pale);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.30); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.80rem; color: rgba(255,255,255,0.30); text-decoration: none; }
.footer-legal a:hover { color: var(--accent-light); }

/* --- STICKY MOBILE CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--accent);
  padding: 14px 20px;
  z-index: 800;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) { .sticky-cta { display: flex; } }
.sticky-cta-text { flex: 1; font-size: 0.84rem; color: var(--white); font-weight: 500; }

/* --- DIVIDERS --- */
.divider      { height: 1px; background: linear-gradient(90deg, transparent, var(--gray-200), transparent); margin: 40px 0; }
.divider-accent { height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin: 40px 0; }

/* --- UTILITIES --- */
.mt-0{margin-top: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-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.hidden { display: none; }

/* --- SCROLL ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid, .authority-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-padding: 70px 0; --section-padding-sm: 44px 0; }
  .nav-links, .nav-cta  { display: none; }
  .nav-hamburger        { display: flex; }
  .hero                 { padding: 120px 0 68px; }
  .products-grid        { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .proof-bar-inner      { gap: 20px; }
  .stats-grid           { grid-template-columns: 1fr 1fr; }
  .stat-item            { border-right: none; border-bottom: 1px solid rgba(91,141,184,0.12); }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-actions         { flex-direction: column; }
  .hero-actions .btn    { width: 100%; justify-content: center; }
  .cta-actions          { flex-direction: column; align-items: center; }
}
