:root {
  --navy: #0b1f4e;
  --blue: #1355c7;
  --blue-mid: #1a6bef;
  --sky: #3b9eff;
  --sky-light: #e8f3ff;
  --teal: #0ec4c4;
  --teal-soft: #e0fafa;
  --white: #ffffff;
  --off: #f5f8ff;
  --gray-2: #e2e8f4;
  --gray-4: #94a3b8;
  --gray-6: #4a5568;
  --gray-8: #1a2236;
  --green: #22d872;
  --amber: #f59e0b;
  --shadow-s: 0 2px 10px rgba(11, 31, 78, .10);
  --shadow-m: 0 8px 32px rgba(11, 31, 78, .14);
  --shadow-l: 0 24px 64px rgba(11, 31, 78, .20);
  --r: 14px;
}

*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--gray-8);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* NAV */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-2);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: var(--shadow-m);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(19, 85, 199, .35);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

.logo-text span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--gray-6);
  font-weight: 500;
  font-size: .92rem;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  border: none;
  border-radius: 50px;
  padding: .55rem 1.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(19, 85, 199, .3);
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19, 85, 199, .4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 199;
  background: white;
  padding: 1.2rem 6%;
  border-bottom: 1px solid var(--gray-2);
  box-shadow: var(--shadow-m);
  flex-direction: column;
  gap: .5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--gray-6);
  font-weight: 500;
  text-decoration: none;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-2);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding-top: 68px;
  background: linear-gradient(160deg, #ddeeff 0%, #eef6ff 45%, #f5f8ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-blob1 {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 158, 255, .18), transparent 70%);
  pointer-events: none;
}

.hero-blob2 {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 196, 196, .14), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(19, 85, 199, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 85, 199, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid rgba(19, 85, 199, .2);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-s);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% {
    box-shadow: 0 0 0 0 rgba(34, 216, 114, .5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 216, 114, 0);
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-mid);
}

.hero h1 strong {
  font-style: italic;
  color: var(--teal);
}

.hero p.lead {
  
  font-size: 1.05rem;
  color: var(--gray-6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 490px;
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border: none;
  border-radius: 50px;
  padding: .8rem 1.8rem;
  font-family: inherit;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 6px 20px rgba(19, 85, 199, .35);
  transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(19, 85, 199, .45);
}

.btn-secondary {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50px;
  padding: .78rem 1.8rem;
  font-family: inherit;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s;
}

.btn-secondary:hover {
  background: var(--sky-light);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.trust-avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.trust-avatars span:nth-child(2) {
  background: linear-gradient(135deg, var(--sky), var(--blue-mid));
}

.trust-text {
  font-size: .85rem;
  color: var(--gray-6);
}

.trust-text strong {
  color: var(--navy);
}

/* MOCKUP */

.hero-visual {
  position: relative;
}

.mockup-shell {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-l);
  border: 1px solid var(--gray-2);
  overflow: hidden;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mockup-bar {
  background: var(--navy);
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-title {
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  margin-left: auto;
}

.mockup-body {
  padding: 1.2rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-bottom: .8rem;
}

.metric-box {
  border-radius: 10px;
  padding: .7rem .5rem;
  text-align: center;
  border: 1px solid var(--gray-2);
}

.metric-box.blue {
  background: #eff6ff;
}

.metric-box.teal {
  background: #e0fafa;
}

.metric-box.green {
  background: #e8fff3;
}

.metric-box.amber {
  background: #fffbeb;
}

.metric-num {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.metric-box.blue .metric-num {
  color: var(--blue);
}

.metric-box.teal .metric-num {
  color: var(--teal);
}

.metric-box.green .metric-num {
  color: var(--green);
}

.metric-box.amber .metric-num {
  color: var(--amber);
}

.metric-lbl {
  font-size: .58rem;
  color: var(--gray-4);
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.panels-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.mini-panel {
  border-radius: 10px;
  border: 1px solid var(--gray-2);
  background: var(--off);
  padding: .75rem;
}

.mini-panel-title {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: .5rem;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .3rem;
}

.mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mini-text {
  font-size: .62rem;
  color: var(--gray-6);
}

.activity-item {
  display: flex;
  gap: .4rem;
  margin-bottom: .3rem;
  align-items: flex-start;
}

.activity-time {
  font-size: .6rem;
  font-weight: 700;
  color: var(--blue);
  width: 28px;
  flex-shrink: 0;
}

.activity-desc {
  font-size: .62rem;
  color: var(--gray-6);
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: .6rem .9rem;
  box-shadow: var(--shadow-m);
  border: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}

.float-card.card1 {
  top: -22px;
  right: 8%;
  animation-delay: .8s;
  z-index:1;
}

.float-card.card2 {
  bottom: -18px;
  left: 0;
  animation-delay: 1.6s;
}

.float-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

/* LOGOS BAND */

.logo-img {
  width: 180px;
  height: auto;
  display: block;
}

.logos-band {
  background: var(--navy);
  padding: 1.6rem 6%;
  overflow: hidden;
}

.logos-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.logos-label {
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  font-weight: 600;
}

.logos-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logos-list span {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  font-size: .88rem;
}

/* SECTIONS */

section {
  padding: 5rem 6%;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--blue);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--blue-mid);
}

.section-sub {
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--gray-6);
  line-height: 1.7;
  max-width: 580px;
}

.text-center {
  text-align: center important!;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* FEATURES */

.features-section {
  background: var(--off);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: var(--r);
  padding: 1.6rem;
  border: 1px solid var(--gray-2);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .88rem;
  color: var(--gray-6);
  line-height: 1.65;
}

/* HOW */

.how-section {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(19, 85, 199, .3);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.step-card p {
  font-size: .88rem;
  color: var(--gray-6);
  line-height: 1.65;
}

/* BENEFITS */

.benefits-section {
  background: var(--off);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.benefits-img-area {
  position: relative;
}

.benefits-screen {
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-l);
  border: 1px solid var(--gray-2);
  overflow: hidden;
}

.bs-header {
  background: var(--navy);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bs-body {
  padding: 1.1rem;
}

.bs-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .5rem;
  margin-bottom: .7rem;
}

.bs-kpi {
  background: var(--off);
  border-radius: 8px;
  padding: .6rem;
  text-align: center;
  border: 1px solid var(--gray-2);
}

.bs-kpi-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
}

.bs-kpi-lbl {
  font-size: .6rem;
  color: var(--gray-4);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.bs-bar-row {
  margin-bottom: .55rem;
}

.bs-bar-lbl {
  font-size: .65rem;
  font-weight: 600;
  color: var(--gray-6);
  margin-bottom: .25rem;
  display: flex;
  justify-content: space-between;
}

.bs-bar-bg {
  height: 8px;
  background: var(--gray-2);
  border-radius: 4px;
  overflow: hidden;
}

.bs-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.bs-alert {
  background: #fffbeb;
  border-radius: 8px;
  padding: .55rem .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .4rem;
  border: 1px solid #fde68a;
}

.bs-alert-icon {
  font-size: .9rem;
}

.bs-alert-text {
  font-size: .65rem;
  color: var(--gray-6);
}

.bs-alert.green {
  background: #e8fff3;
  border-color: #86efac;
}

.bs-alert.blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.float-stat {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: .6rem 1rem;
  box-shadow: var(--shadow-m);
  border: 1px solid var(--gray-2);
}

.float-stat.fs1 {
  top: -20px;
  right: -20px;
}

.float-stat.fs2 {
  bottom: -20px;
  left: -20px;
}

.float-stat .num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}

.float-stat .lbl {
  font-size: .68rem;
  color: var(--gray-4);
  font-weight: 600;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}

.benefit-item p {
  font-size: .87rem;
  color: var(--gray-6);
  line-height: 1.6;
}

/* MODULES */

.modules-section {
  background: white;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.module-card {
  border-radius: var(--r);
  padding: 1.2rem;
  border: 1.5px solid var(--gray-2);
  text-align: center;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.module-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-s);
  transform: translateY(-3px);
}

.module-emoji {
  font-size: 2rem;
  margin-bottom: .7rem;
}

.module-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}

.module-card p {
  font-size: .78rem;
  color: var(--gray-6);
  line-height: 1.55;
}

/* TESTIMONIALS */

.testimonials-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a6e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 158, 255, .12), transparent 70%);
  pointer-events: none;
}

.testimonials-section .section-tag {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-section .section-sub {
  color: rgba(255, 255, 255, .65);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r);
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.stars {
  color: #fbbf24;
  font-size: .9rem;
  margin-bottom: .8rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: .92rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: white;
  font-size: .9rem;
}

.testi-role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* FAQ */

.faq-section {
  background: var(--off);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  border-radius: var(--r);
  border: 1.5px solid var(--gray-2);
  overflow: hidden;
  background: white;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  transition: background .2s;
}

.faq-question:hover {
  background: var(--sky-light);
}

.faq-question .chevron {
  font-size: .8rem;
  transition: transform .3s;
  color: var(--blue);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .87rem;
  color: var(--gray-6);
  line-height: 1.7;
  padding: 0 1.3rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: .2rem 1.3rem 1.2rem;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-item.open {
  border-color: var(--blue);
}

/* CTA */

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1050c0 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5.5rem 6%;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-section .section-tag {
  background: rgba(255, 255, 255, .15);
  color: white;
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: white;
  max-width: 680px;
  margin: 0 auto .8rem;
  position: relative;
  z-index: 1;
}

.cta-section .section-sub {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--blue);
  border: none;
  border-radius: 50px;
  padding: .85rem 2.2rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
  transition: transform .2s;
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 50px;
  padding: .83rem 2.2rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, .1);
}

/* FOOTER */

footer {
  background: var(--gray-8);
  color: rgba(255, 255, 255, .65);
  padding: 3rem 6% 1.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.2rem;
}

.footer-brand .logo-text {
  color: white;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-top: .8rem;
  color: rgba(255, 255, 255, .5);
  max-width: 280px;
}

.footer-col h5 {
  color: white;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .82rem;
}

.footer-bottom .social {
  display: flex;
  gap: .5rem;
}

.footer-bottom .social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: background .2s;
}

.footer-bottom .social a:hover {
  background: var(--blue);
}

/* WHATSAPP FLOAT BTN */

.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}

.wa-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .35);
  animation: waPulse 2s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .6);
}

.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.wa-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width:1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:768px) {
  .nav-links,.nav-cta.desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3.5rem 6%;
  }

  .hero-visual {
    display: none;
  }

  .hero p.lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid,.benefits-grid,.faq-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,.modules-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .float-stat {
    display: none;
  }

  section {
    padding: 3.5rem 6%;
  }

  .wa-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .wa-btn svg {
    width: 28px;
    height: 28px;
  }
}
