/* ============================================================
   FraudGuardians — Global Stylesheet
   ============================================================ */

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

:root {
  --navy:        #1B3461;
  --navy-dark:   #0D1F3C;
  --navy-mid:    #243E72;
  --gold:        #C8A84B;
  --gold-light:  #E2C97E;
  --gold-pale:   #F5EDD3;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #EEF1F8;
  --gray-200:    #DDE2EE;
  --gray-400:    #8A96A8;
  --gray-600:    #4A5568;
  --text:        #1E2B3C;
  --text-mid:    #3D4F63;
  --text-light:  #5A6B82;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 4px rgba(13,31,60,.08);
  --shadow:      0 4px 16px rgba(13,31,60,.10);
  --shadow-lg:   0 8px 32px rgba(13,31,60,.14);
  --shadow-gold: 0 4px 20px rgba(200,168,75,.25);

  --transition:  .2s ease;

  --max-w:       1140px;
  --section-pad: 96px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-dark);
  line-height: 1.25;
  letter-spacing: -.01em;
}

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

p { color: var(--text-mid); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy-dark); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header p { font-size: 1.05rem; margin-top: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.75);
}

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

.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: var(--radius-lg); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -.01em;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 18px; height: 18px; fill: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--navy); }

.nav__cta { margin-left: 12px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1E4080 100%);
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,168,75,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content .eyebrow { color: var(--gold-light); }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__trust-text {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__trust-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* Hero Card */
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero__card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__card-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200,168,75,.25);
}

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

.exposure-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.exposure-item__icon {
  width: 32px; height: 32px;
  background: rgba(200,168,75,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.exposure-item__text { flex: 1; }
.exposure-item__label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  display: block;
}
.exposure-item__sub {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}
.exposure-item__badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-high { background: rgba(220,53,69,.2); color: #ff8b96; }
.badge-medium { background: rgba(255,193,7,.2); color: #ffd454; }
.badge-low { background: rgba(40,167,69,.2); color: #6fcf97; }

.hero__card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__card-footer-text { font-size: .8rem; color: rgba(255,255,255,.45); }
.hero__card-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.hero__card-score span { font-size: .85rem; color: rgba(255,255,255,.4); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 32px 24px;
}
.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat__label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ── What We Find ── */
.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.find-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.find-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.find-card__icon {
  width: 48px; height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.find-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.find-card p { font-size: .9rem; }

.find-card__examples {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--text-light);
  border: 1px solid var(--gray-200);
}

/* ── Why It Matters ── */
.matters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.matters__visual {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.attack-scenario {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.attack-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.attack-step:last-child { border-bottom: none; padding-bottom: 0; }
.attack-step:first-child { padding-top: 0; }

.attack-step__num {
  width: 28px; height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.attack-step__content h4 { font-size: .9rem; margin-bottom: 4px; }
.attack-step__content p { font-size: .83rem; color: var(--text-light); }

.matters__points { display: flex; flex-direction: column; gap: 28px; }

.matter-point { display: flex; gap: 20px; }
.matter-point__icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.matter-point h3 { font-size: 1rem; margin-bottom: 6px; }
.matter-point p { font-size: .9rem; }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--gray-200) 0, var(--gray-200) 8px, transparent 8px, transparent 16px);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.step-card__num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--off-white);
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .9rem; }

.step-card__time {
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ── Sample Findings ── */
.sample-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.sample-report {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sample-report__header {
  background: var(--navy-dark);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sample-report__title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
}
.sample-report__badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.sample-report__body { padding: 32px; }

.sample-employee {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.sample-employee__avatar {
  width: 48px; height: 48px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.sample-employee__info h4 { font-size: .95rem; margin-bottom: 2px; }
.sample-employee__info p { font-size: .82rem; color: var(--text-light); }
.sample-employee__risk {
  margin-left: auto;
  text-align: right;
}
.risk-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc3545;
  line-height: 1;
}
.risk-label { font-size: .72rem; color: var(--text-light); margin-top: 2px; }

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

.finding-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.finding-item--high { border-color: rgba(220,53,69,.2); background: rgba(220,53,69,.03); }
.finding-item--medium { border-color: rgba(255,193,7,.25); background: rgba(255,193,7,.03); }

.finding-item__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.finding-item--high .finding-item__dot { background: #dc3545; }
.finding-item--medium .finding-item__dot { background: #f59e0b; }

.finding-item__body { flex: 1; }
.finding-item__type {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.finding-item__value {
  font-size: .9rem;
  color: var(--text);
  font-family: 'Courier New', monospace;
  margin: 4px 0;
}
.finding-item__source { font-size: .78rem; color: var(--text-light); }

.finding-item__sev {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  align-self: flex-start;
}
.sev-high { background: rgba(220,53,69,.12); color: #c0392b; }
.sev-medium { background: rgba(245,158,11,.12); color: #b7791f; }

.sample-report__footer {
  background: var(--off-white);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
}
.sample-report__disclaimer { font-size: .78rem; color: var(--gray-400); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card--featured {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.pricing-card--featured h3,
.pricing-card--featured h2 { color: var(--white); }
.pricing-card--featured p,
.pricing-card--featured .pricing-includes li { color: rgba(255,255,255,.65); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}

.pricing-card h3 { font-size: 1rem; margin-bottom: 12px; color: var(--text-light); font-family: 'Inter', sans-serif; font-weight: 600; }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-card--featured .pricing-price { color: var(--gold); }

.pricing-period { font-size: .82rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-card--featured .pricing-period { color: rgba(255,255,255,.45); }

.pricing-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 20px 0;
}
.pricing-card--featured .pricing-divider { background: rgba(255,255,255,.12); }

.pricing-includes {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-mid);
}
.pricing-includes li::before {
  content: '✓';
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.industry-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.industry-card__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.industry-card h3 { font-size: .95rem; margin-bottom: 4px; }
.industry-card p { font-size: .82rem; color: var(--text-light); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,168,75,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 16px auto 36px; }
.cta-section .btn-primary { padding: 18px 40px; font-size: 1rem; }
.cta-guarantee {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  padding: 60px 24px 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  margin-top: 14px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--gold-light); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .82rem; }
.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ── About Page ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gray-100);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid var(--gray-200);
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card__title { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: .88rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.value-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: .9rem; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { font-size: 1.8rem; margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-method__icon {
  width: 44px; height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method h4 { font-size: .9rem; margin-bottom: 4px; }
.contact-method p { font-size: .88rem; margin-bottom: 0; }
.contact-method a { color: var(--navy); font-weight: 500; }
.contact-method a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,52,97,.1);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }

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

.form-consent { font-size: .8rem; color: var(--text-light); margin-top: 14px; text-align: center; }
.form-consent a { color: var(--navy); text-decoration: underline; }

/* ── Legal Pages ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .updated { font-size: .85rem; color: var(--text-light); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 16px; font-size: .95rem; }
.legal-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.legal-content li { font-size: .95rem; margin-bottom: 8px; color: var(--text-mid); }
.legal-content a { color: var(--navy); text-decoration: underline; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── Audit scope block (contact page left column) ── */
.audit-scope { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 28px; }

.audit-scope__block {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.audit-scope__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 12px;
}
.audit-scope__icon { font-size: 1rem; }

.audit-scope__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.audit-scope__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-mid);
}
.audit-scope__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.audit-delivery-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.delivery-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.delivery-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.delivery-item strong { display: block; font-size: .88rem; color: var(--navy-dark); margin-bottom: 3px; }
.delivery-item p { font-size: .82rem; color: var(--text-light); margin: 0; }

/* ── Form section headers ── */
.form-section { margin-bottom: 28px; }

.form-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}

.form-section__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
}

.form-section__note {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 20px;
}

.form-section__desc {
  font-size: .84rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.55;
}

.form-section--delivery {
  background: var(--gold-pale);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: var(--radius-lg);
  padding: 20px 20px 4px;
  margin-bottom: 28px;
}
.form-section--delivery .form-section__header {
  border-bottom-color: rgba(200,168,75,.25);
}
.form-section--delivery .form-section__title { color: var(--navy-dark); }

/* ── Field hint text ── */
.field-hint {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 5px;
  line-height: 1.45;
}

.req { color: var(--gold); font-weight: 700; }

/* ── Employee slots ── */
.employee-slot {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 18px 8px;
  margin-bottom: 10px;
}

.employee-slot--optional {
  border-style: dashed;
  border-color: var(--gray-200);
}

.employee-slot__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 14px;
}

.employee-slot__optional {
  font-size: .68rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--gray-200);
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.employee-slot__remove {
  margin-left: auto;
  background: none;
  border: none;
  font-size: .75rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition);
}
.employee-slot__remove:hover { color: #c0392b; text-decoration: underline; }

/* ── Add employee button ── */
.add-employee-trigger { margin-bottom: 10px; }

.btn-add-employee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: transparent;
  border: 1.5px dashed var(--gray-400);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.btn-add-employee:hover {
  border-color: var(--navy);
  background: var(--gray-100);
}
.add-optional { color: var(--text-light); font-weight: 400; }

/* ── Form trust copy ── */
/* ── Form submission result messages ── */
.form-result {
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: var(--radius);
}
.form-result--success {
  color: #1e7e34;
  background: #eafaf1;
  border: 1px solid #b7e4c7;
}
.form-result--error {
  color: #c0392b;
  background: #fdf3f2;
  border: 1px solid #f5c6c2;
}

/* ── Form trust copy ── */
.form-trust-copy {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.6;
  text-align: center;
  border: 1px solid var(--gray-200);
}

/* ── Audit subsections (What We Find) ── */
.audit-subsections { display: flex; flex-direction: column; gap: 56px; }

.audit-subsection__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-200);
}

.audit-subsection__icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.audit-subsection__icon--emp { background: var(--navy-mid); }

.audit-subsection__meta h3 { font-size: 1.2rem; margin-bottom: 4px; }
.audit-subsection__meta p { font-size: .875rem; color: var(--text-light); margin: 0; }

.find-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Plan components (replaces pricing tiers) ── */
.plan-components {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.plan-component {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.plan-component__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
}

.plan-component__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-component__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.45;
}
.plan-component__list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .8rem;
}

/* ── Plan note (CTA block below components) ── */
.plan-note {
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}
.plan-note p {
  color: rgba(255,255,255,.68);
  font-size: .975rem;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.72;
}

/* ── Pricing: free callout ── */
.pricing-free-callout {
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-bottom: 32px;
}

.pricing-free-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.pricing-free-callout__label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-free-callout__left h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pricing-free-callout__left > p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 20px;
}

.pricing-free-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pricing-free-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.pricing-free-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-free-callout__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.pricing-free-callout__right p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin: 0;
}

/* ── Pricing divider label ── */
.pricing-divider-label {
  text-align: center;
  margin: 8px 0 36px;
  position: relative;
}
.pricing-divider-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--gray-200);
}
.pricing-divider-label span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Hero micro-copy ── */
.hero__microcopy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ── Stats source citation ── */
.stat__source {
  font-size: .68rem;
  color: rgba(255,255,255,.28);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* ── Steps CTA (below the 3-step grid) ── */
.steps-cta {
  text-align: center;
  margin-top: 48px;
}
.steps-cta p {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--text-light);
}

/* ── Lifecycle / Protection Cycle ── */
.lifecycle-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin: 0 auto;
}

.lifecycle-phase {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.lifecycle-phase--featured {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-lg);
}
.lifecycle-phase--featured h3 { color: var(--white); }
.lifecycle-phase--featured p { color: rgba(255,255,255,.65); }
.lifecycle-phase--featured .lifecycle-phase__num { color: var(--gold); }
.lifecycle-phase--featured .lifecycle-phase__detail {
  background: rgba(200,168,75,.15);
  color: var(--gold-light);
  border-color: rgba(200,168,75,.2);
}

.lifecycle-phase__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.lifecycle-phase__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 12px;
}

.lifecycle-phase__content h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.lifecycle-phase__content p {
  font-size: .875rem;
  line-height: 1.65;
}

.lifecycle-phase__detail {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-light);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 4px 10px;
}

.lifecycle-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 40px;
  color: var(--gray-400);
}
.lifecycle-connector svg { width: 20px; height: 20px; flex-shrink: 0; }

.lifecycle-note {
  text-align: center;
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.lifecycle-note p {
  font-size: .9rem;
  color: var(--text-mid);
  margin: 0;
}

/* ── Pricing description text ── */
.pricing-description {
  font-size: .875rem;
  color: var(--text-light);
  margin: 8px 0 0;
  line-height: 1.55;
}

/* ── Pricing sample note ── */
.pricing-sample-note {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: var(--radius-lg);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-sample-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-sample-note__inner div {
  font-size: .9rem;
  color: var(--text-mid);
  flex: 1;
  min-width: 200px;
}
.pricing-sample-note__inner strong {
  color: var(--navy-dark);
}

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

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.faq-item + .faq-item { margin-top: 8px; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: .975rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%231B3461' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}
.faq-item[open] .faq-question { color: var(--navy); }

.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--gray-100);
  margin-top: 0;
}
.faq-answer p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-top: 16px;
  margin-bottom: 0;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer a { color: var(--navy); text-decoration: underline; }

/* ── Contact commitments (replacing old trust strip) ── */
.contact-commitments {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: var(--text-mid);
}
.commitment-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

.contact-email-direct {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: .88rem;
  color: var(--text-light);
}
.contact-email-direct a { color: var(--navy); font-weight: 500; }
.contact-email-direct a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .find-grid { grid-template-columns: repeat(2, 1fr); }
  .find-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .lifecycle-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lifecycle-connector {
    padding: 8px 0;
    margin-top: 0;
    transform: rotate(90deg);
  }
  .pricing-free-callout__inner { flex-direction: column; gap: 28px; }
  .pricing-free-callout__right { width: 100%; }
  .pricing-free-callout__right .btn { width: 100%; justify-content: center; }
  .plan-components { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav__mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
  }
  .nav__mobile a {
    padding: 14px 0;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-mid);
    border-bottom: 1px solid var(--gray-100);
    display: block;
  }
  .nav__mobile .btn { margin-top: 16px; text-align: center; justify-content: center; }

  .hero { padding: 120px 20px 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Show the card on mobile — hide the lower-priority items */
  .exposure-item--secondary { display: none; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }

  .find-grid { grid-template-columns: 1fr; }
  .matters-grid { grid-template-columns: 1fr; }
  .matters__visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .sample-report__header { flex-direction: column; gap: 12px; text-align: center; }
  .sample-employee { flex-wrap: wrap; }
  .sample-employee__risk { margin-left: 0; }
  .lifecycle-grid { grid-template-columns: 1fr; }
  .lifecycle-connector { transform: rotate(90deg); margin: 4px auto; }
  .find-grid--3 { grid-template-columns: 1fr; }
  .audit-subsection__header { flex-direction: column; gap: 12px; }
  .pricing-free-callout { padding: 28px 20px; }
  .pricing-free-callout__right .btn { width: 100%; justify-content: center; }
  .plan-components { grid-template-columns: 1fr; }
  .plan-note { padding: 28px 20px; }
  .plan-note .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
}
