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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1e2d40;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw
}

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

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

ul {
  list-style: none
}

:root {
  --navy: #1a3a6b;
  --navy-dark: #122b52;
  --navy-light: #2a5298;
  --green: #059669;
  --green-mid: #10b981;
  --green-light: #d1fae5;
  --teal: #0891b2;
  --teal-light: #cffafe;
  --indigo: #4f46e5;
  --indigo-light: #e0e7ff;
  --amber: #d97706;
  --amber-light: #fef3cd;
  --red: #dc2626;
  --red-light: #fee2e2;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --bg-gray: #f7f9fc;
  --bg-white: #fff;
  --border: #e2eaf4;
  --text: #1e2d40;
  --text-muted: #64748b;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(26, 58, 107, .06);
  --shadow: 0 4px 24px rgba(26, 58, 107, .10);
  --shadow-md: 0 8px 40px rgba(26, 58, 107, .14);
  --shadow-lg: 0 16px 60px rgba(26, 58, 107, .18);
  --transition: all .28s cubic-bezier(.4, 0, .2, 1);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px
}

.text-center {
  text-align: center
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--navy)
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--navy)
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text)
}

h4 {
  font-size: .975rem;
  font-weight: 600;
  color: var(--text)
}

p {
  color: var(--text-muted);
  line-height: 1.75
}

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(26, 58, 107, .07);
  border-radius: 99px
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .12)
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 14px auto 52px;
  line-height: 1.8
}

.section-sub.light {
  color: rgba(255, 255, 255, .68)
}

.section-white {
  padding: 100px 0;
  background: var(--bg-white)
}

.section-gray {
  padding: 100px 0;
  background: var(--bg-gray)
}

.section-navy {
  padding: 96px 0;
  background: var(--navy)
}

.section-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f2347 100%)
}

.section-benefits {
  padding: 64px 0;
  background: #0d7a5f
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition)
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: var(--transition)
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26, 58, 107, .04);
  transform: translateY(-2px)
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 18px 42px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35)
}

.btn-wpp:hover {
  background: #1fba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .45)
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 58, 107, .07);
  border: 1px solid rgba(26, 58, 107, .14);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, .4)
  }

  50% {
    opacity: .7;
    transform: scale(.85);
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0)
  }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition)
}

.nav.scrolled {
  box-shadow: var(--shadow)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

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

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-menu a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition)
}

.nav-menu a:hover {
  color: var(--navy)
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: var(--transition) !important
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px)
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--navy);
  padding: 4px
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #eef4ff 0%, #f7f9fc 55%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px
}

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

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-sub {
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-image {
  position: relative
}

.hero-image>img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg)
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(to bottom, transparent 50%, rgba(18, 43, 82, .3) 100%)
}

/* ── ALERT BAR ── */
.alert-bar {
  background: #fffbeb;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 14px 0
}

.alert-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.alert-inner i {
  color: var(--amber);
  font-size: 1.15rem;
  flex-shrink: 0
}

.alert-inner p {
  color: #78350f;
  font-size: .875rem;
  font-weight: 500;
  flex: 1;
  margin: 0
}

.alert-inner a {
  color: #78350f;
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
  border-bottom: 1px dotted
}

.alert-inner a:hover {
  color: var(--amber)
}

/* ── STAT CARDS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px
}

.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.stat-card:hover::before {
  transform: scaleX(1)
}

.stat-card:nth-child(1) {
  --card-accent: var(--navy)
}

.stat-card:nth-child(2) {
  --card-accent: var(--teal)
}

.stat-card:nth-child(3) {
  --card-accent: var(--green)
}

.stat-card:nth-child(4) {
  --card-accent: var(--indigo)
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  transition: var(--transition)
}

.stat-card:hover .stat-card-icon {
  transform: scale(1.1) rotate(-4deg)
}

.stat-card:nth-child(1) .stat-card-icon {
  background: rgba(26, 58, 107, .09);
  color: var(--navy)
}

.stat-card:nth-child(2) .stat-card-icon {
  background: var(--teal-light);
  color: var(--teal)
}

.stat-card:nth-child(3) .stat-card-icon {
  background: var(--green-light);
  color: var(--green)
}

.stat-card:nth-child(4) .stat-card-icon {
  background: var(--indigo-light);
  color: var(--indigo)
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px
}

.stat-card span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5
}

/* ── HIGHLIGHT TITLE ── */
.highlight-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--navy)
}

.highlight-title em {
  font-style: normal;
  position: relative;
  color: var(--navy);
  white-space: nowrap
}

.highlight-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--teal) 100%);
  border-radius: 2px
}

/* ── PROBLEM CARDS ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column
}

.problem-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--prob-color, var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.problem-card:nth-child(1) {
  --prob-color: var(--red)
}

.problem-card:nth-child(2) {
  --prob-color: var(--amber)
}

.problem-card:nth-child(3) {
  --prob-color: var(--purple)
}

.problem-card:nth-child(4) {
  --prob-color: var(--indigo)
}

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

.problem-card:hover::before {
  transform: scaleX(1)
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  transition: var(--transition)
}

.problem-card:hover .problem-icon {
  transform: scale(1.08) rotate(-5deg)
}

.problem-icon.red {
  background: var(--red-light);
  color: var(--red)
}

.problem-icon.amber {
  background: var(--amber-light);
  color: var(--amber)
}

.problem-icon.purple {
  background: var(--purple-light);
  color: var(--purple)
}

.problem-icon.indigo {
  background: var(--indigo-light);
  color: var(--indigo)
}

.problem-card h4 {
  margin-bottom: 10px
}

.problem-card p {
  font-size: .875rem;
  margin: 0;
  line-height: 1.65
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--svc-color, var(--navy));
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 4px 0 0 4px;
  transition: transform .35s ease
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--svc-color, var(--navy)) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease
}

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

.service-card:hover::before {
  transform: scaleY(1)
}

.service-card:hover::after {
  opacity: 1
}

.service-card.featured {
  border: 1px solid var(--border)
}

.service-card:nth-child(1) {
  --svc-color: var(--navy)
}

.service-card:nth-child(2) {
  --svc-color: var(--teal)
}

.service-card:nth-child(3) {
  --svc-color: var(--green)
}

.service-card:nth-child(4) {
  --svc-color: var(--indigo)
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 58, 107, .08);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  transition: var(--transition)
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg)
}

.service-icon.blue {
  background: rgba(26, 58, 107, .09);
  color: var(--navy)
}

.service-icon.teal {
  background: var(--teal-light);
  color: var(--teal)
}

.service-icon.green {
  background: var(--green-light);
  color: var(--green)
}

.service-icon.indigo {
  background: var(--indigo-light);
  color: var(--indigo)
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px
}

.service-card>p {
  font-size: .9rem;
  margin-bottom: 22px
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--text)
}

.service-list li i {
  font-size: 1rem;
  flex-shrink: 0
}

.service-card:nth-child(1) .service-list li i {
  color: var(--navy)
}

.service-card:nth-child(2) .service-list li i {
  color: var(--teal)
}

.service-card:nth-child(3) .service-list li i {
  color: var(--green)
}

.service-card:nth-child(4) .service-list li i {
  color: var(--indigo)
}

/* ── BENEFITS ── */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  padding: 10px 22px;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
  cursor: default
}

.benefit-pill:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-2px)
}

.benefit-pill i {
  color: #6ee7b7;
  font-size: 1rem;
  flex-shrink: 0
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 52px;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  z-index: 0
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
  position: relative;
  z-index: 1
}

.step-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .3);
  border-color: rgba(255, 255, 255, .18)
}

.step-number {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(255, 255, 255, .07);
  padding: 4px 12px;
  border-radius: 99px;
  transition: var(--transition)
}

.step-card:hover .step-number {
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .12)
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: var(--transition)
}

.step-card:hover .step-icon {
  transform: scale(1.12) rotate(-5deg)
}

.step-card:nth-child(1) .step-icon {
  background: rgba(26, 82, 217, .25);
  color: #93c5fd;
  border-color: rgba(147, 197, 253, .25)
}

.step-card:nth-child(2) .step-icon {
  background: rgba(8, 145, 178, .25);
  color: #67e8f9;
  border-color: rgba(103, 232, 249, .25)
}

.step-card:nth-child(3) .step-icon {
  background: rgba(5, 150, 105, .25);
  color: #6ee7b7;
  border-color: rgba(110, 231, 183, .25)
}

.step-card:nth-child(4) .step-icon {
  background: rgba(124, 58, 237, .25);
  color: #c4b5fd;
  border-color: rgba(196, 181, 253, .25)
}

.step-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px
}

.step-card p {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  margin: 0;
  line-height: 1.7
}

/* ── SCIENCE ── */
.science-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch
}

.science-content {
  display: flex;
  flex-direction: column
}

.science-content h2 {
  margin-bottom: 16px
}

.science-content>p {
  margin-bottom: 36px;
  font-size: 1rem
}

.science-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1
}

.science-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition)
}

.science-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--item-color, var(--border))
}

.science-item:nth-child(1) {
  --item-color: rgba(26, 58, 107, .2)
}

.science-item:nth-child(2) {
  --item-color: rgba(8, 145, 178, .2)
}

.science-item:nth-child(3) {
  --item-color: rgba(5, 150, 105, .2)
}

.science-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition)
}

.science-item:hover .science-item-icon {
  transform: scale(1.1)
}

.science-item:nth-child(1) .science-item-icon {
  background: rgba(26, 58, 107, .09);
  color: var(--navy)
}

.science-item:nth-child(2) .science-item-icon {
  background: var(--teal-light);
  color: var(--teal)
}

.science-item:nth-child(3) .science-item-icon {
  background: var(--green-light);
  color: var(--green)
}

.science-item strong {
  display: block;
  font-size: .925rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px
}

.science-item span {
  font-size: .84rem;
  color: var(--text-muted)
}

.science-image {
  position: relative;
  display: flex;
  flex-direction: column
}

.science-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  flex: 1
}

.science-image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md)
}

.science-image-badge i {
  color: var(--green-mid);
  font-size: 1.4rem
}

.science-image-badge strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff
}

.science-image-badge span {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 1px
}

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center
}

.about-image {
  position: relative
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: var(--shadow-lg)
}

.about-chips {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  white-space: nowrap
}

.about-chips span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(26, 58, 107, .06);
  padding: 4px 10px;
  border-radius: 99px
}

.about-chips span i {
  color: var(--green);
  font-size: .9rem
}

.about-logo-wrap {
  margin-bottom: 16px
}

.about-logo {
  height: 52px;
  width: auto;
  object-fit: contain
}

.about-content h2 {
  margin-bottom: 4px
}

.about-crp {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.5
}

.about-content>p {
  margin-bottom: 16px
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border)
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums
}

.about-stat span {
  font-size: .8rem;
  color: var(--text-muted)
}

.about-stat strong[data-target] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease
}

.about-stat strong[data-target].counted {
  opacity: 1;
  transform: translateY(0)
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition)
}

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

.testimonial-stars {
  display: flex;
  gap: 3px
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: .9rem
}

.testimonial-card>p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
  flex: 1
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0
}

.testimonial-author strong {
  display: block;
  font-size: .875rem;
  color: var(--text)
}

.testimonial-author span {
  display: block;
  font-size: .75rem;
  color: var(--text-muted)
}

/* ── FAQ ── */
.faq-container {
  max-width: 780px
}

.faq-list {
  margin-top: 52px
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-item:first-child {
  border-top: 1px solid var(--border)
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: var(--transition)
}

.faq-q:hover {
  color: var(--navy)
}

.faq-q i {
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s ease
}

.faq-item.open .faq-q i {
  transform: rotate(45deg)
}

.faq-item.open .faq-q {
  color: var(--navy)
}

.faq-a {
  display: none;
  padding-bottom: 22px
}

.faq-a p {
  font-size: .95rem;
  margin: 0
}

.faq-item.open .faq-a {
  display: block
}

/* ── CTA ── */
.section-cta h2.white {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.cta-note {
  margin-top: 20px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.cta-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid)
}

/* ── FOOTER ── */
footer {
  background: #0c1e38;
  padding: 72px 0 0
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px
}

.footer-logo-wrap {
  margin-bottom: 16px
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 8px
}

.footer-brand .footer-crp {
  font-size: .75rem;
  color: rgba(255, 255, 255, .25)
}

.footer-links h5,
.footer-contact h5 {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.footer-links a,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .45);
  padding: 5px 0;
  transition: var(--transition)
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-mid);
  transform: translateX(3px)
}

.footer-contact a i {
  font-size: 1rem
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .28);
  margin: 0
}

.footer-bottom a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  transition: var(--transition)
}

.footer-bottom a:hover {
  color: var(--green-mid)
}

/* ── WPP FLOAT ── */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: var(--transition)
}

.wpp-float:hover {
  background: #1fba5a;
  transform: scale(1.1)
}

/* ── SCROLL REVEAL ── */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

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

.reveal-delay-1 {
  transition-delay: .08s
}

.reveal-delay-2 {
  transition-delay: .16s
}

.reveal-delay-3 {
  transition-delay: .24s
}

.reveal-delay-4 {
  transition-delay: .32s
}

/* ── RESPONSIVE TABLET ── */
@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px
  }

  .hero-image {
    max-width: 560px;
    margin: 0 auto
  }

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

  .problems-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .science-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .science-image {
    min-height: 340px
  }

  .science-image-badge {
    right: 12px;
    bottom: 12px
  }

  .about-inner {
    grid-template-columns: 1fr
  }

  .about-image {
    max-width: 420px;
    margin-bottom: 24px
  }

  .about-chips {
    position: static;
    transform: none;
    margin-top: 16px;
    width: 100%
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-grid::before {
    display: none
  }
}

/* ── RESPONSIVE MOBILE ── */
@media(max-width:768px) {

  .section-white,
  .section-gray,
  .section-navy,
  .section-cta,
  .section-benefits {
    padding: 64px 0
  }

  .nav-logo-img {
    height: 36px
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow)
  }

  .nav-menu.open {
    display: flex
  }

  .nav-menu a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    font-size: .95rem
  }

  .nav-menu a:last-child {
    border-bottom: none
  }

  .nav-cta {
    margin: 8px 16px !important;
    border-radius: var(--radius-sm) !important;
    justify-content: center
  }

  .nav-toggle {
    display: block
  }

  .hero-sub {
    font-size: 1rem
  }

  .hero-actions {
    flex-direction: column
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .problems-grid {
    grid-template-columns: 1fr
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .steps-grid::before {
    display: none
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .about-stats {
    gap: 16px
  }

  .about-logo {
    height: 40px
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center
  }

  .alert-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .benefits-grid {
    gap: 8px
  }

  .benefit-pill {
    font-size: .82rem;
    padding: 8px 16px
  }

  .wpp-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px
  }

  .science-items {
    gap: 12px
  }

  .about-chips {
    flex-wrap: wrap;
    justify-content: flex-start
  }
}

/* ── FATORES DE RISCO (Os 13 fatores) ── */
.fatores-section {
  margin-top: 64px
}

.fatores-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px
}

.fatores-sub {
  font-size: .95rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px
}

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

.fator-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: var(--transition)
}

.fator-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  transform: translateY(-3px)
}

.fator-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  min-width: 28px;
  text-align: center
}

.fator-card span {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4
}

/* ── SERVICES CTA ── */
.services-cta {
  margin-top: 48px;
  text-align: center
}

/* ── STEPS NOTE (destaque diferencial) ── */
.steps-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 40px
}

.steps-note-icon {
  font-size: 1.4rem;
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 2px
}

.steps-note strong {
  display: block;
  font-size: .975rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.steps-note p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin: 0
}

/* ── FATORES RESPONSIVE ── */
@media(max-width:1024px) {
  .fatores-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .fatores-grid {
    grid-template-columns: 1fr
  }

  .steps-note {
    flex-direction: column;
    gap: 10px
  }
}