*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1d3a;
  --navy-mid: #132849;
  --navy-light: #1e3a6e;
  --green: #1db954;
  --green-dark: #169940;
  --green-wa: #25d366;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-light: #eef1f6;
  --gray-mid: #94a3b8;
  --gray-text: #64748b;
  --text-dark: #0b1d3a;
  --text-body: #334155;
  --accent-light: #e8f5ee;
  --font-head: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
nav.scrolled {
  border-color: #e2e8f0;
  box-shadow: 0 1px 20px rgba(11, 29, 58, 0.07);
}
.nav-brand {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-decoration: none;
}
.nav-logo {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav-logo span {
  color: var(--green-wa);
}
.nav-tagline {
  display: block;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--green-wa);
  color: white;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 110, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 110, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(29, 185, 84, 0.15) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid rgba(29, 185, 84, 0.3);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}
.hero-micro {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  color: var(--white);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-left: 4px solid var(--green-wa);
  border-radius: 8px;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 8px 12px;
  font-weight: 700;
  line-height: 1.35;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--green-wa);
  color: white;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}
.cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}
.cta-note strong {
  color: white;
  font-weight: 700;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat {
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ─── SECTIONS SHARED ─── */
section {
  padding: 90px 5%;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 520px;
  line-height: 1.6;
  font-weight: 300;
}

/* ─── PROBLEM ─── */
#problem {
  background: var(--off-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.problem-card {
  background: white;
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid #e8edf5;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.08);
}
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ─── SOLUTION ─── */
#solution {
  background: var(--white);
}
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .solution-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solution-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #e8edf5;
  transition:
    border-color 0.2s,
    background 0.2s;
  cursor: default;
}
.solution-item:hover {
  border-color: var(--green);
  background: var(--accent-light);
}
.solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.section-icon-image {
  object-fit: contain;
  display: block;
}
.solution-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.solution-item p {
  font-size: 14px;
  color: var(--gray-text);
}
.solution-visual {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.solution-visual::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(29, 185, 84, 0.2) 0%,
    transparent 70%
  );
  top: -50px;
  right: -50px;
}
.flow-diagram {
  position: relative;
  z-index: 1;
}
.flow-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.flow-box .dot-green {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-arrow {
  text-align: center;
  color: rgba(29, 185, 84, 0.6);
  font-size: 20px;
  margin: 4px 0;
}
.demo-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 6px 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.chat-demo {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.chat-demo h4 {
  font-family: var(--font-head);
  font-size: 16px;
  color: white;
  margin-bottom: 14px;
}
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-bubble.user {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}
.chat-bubble.system {
  align-self: flex-end;
  background: var(--accent-light);
  color: var(--navy);
}

/* ─── SERVICES ─── */
#services {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(29, 185, 84, 0.15) 0%,
    transparent 70%
  );
  top: -40px;
  right: -40px;
}
.service-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 20px;
}
.service-card-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid rgba(29, 185, 84, 0.25);
  color: var(--green);
  border-radius: 50px;
}

/* ─── HOW IT WORKS ─── */
#howitworks {
  background: var(--white);
}
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 700px) {
  .steps-wrap {
    grid-template-columns: 1fr;
  }
}
.steps-wrap::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  z-index: 0;
}
@media (max-width: 700px) {
  .steps-wrap::before {
    display: none;
  }
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--green);
}
.step h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ─── WHATSAPP CTA ─── */
#wa-cta {
  background: var(--navy);
  text-align: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
#wa-cta::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(29, 185, 84, 0.18) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#wa-cta h2 {
  color: white;
  position: relative;
}
#wa-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 500px;
  margin: 14px auto 36px;
  position: relative;
  font-weight: 300;
}
#wa-cta .btn-primary {
  font-size: 18px;
  padding: 17px 36px;
  margin: 0 auto;
  position: relative;
}
.cta-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.urgency-line {
  font-size: 14px;
  font-weight: 700;
  color: #b8f5cb;
  letter-spacing: 0.2px;
}
.cta-explain {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
  line-height: 1.6;
}
.founder-note {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.guarantee-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.6;
}

/* ─── TRUST ─── */
#trust {
  background: var(--off-white);
}
.trust-badges,
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.trust-badges {
  margin-bottom: 34px;
}
.trust-badge {
  background: white;
  border-radius: 8px;
  padding: 20px 24px 28px;
  text-align: left;
  border: 1px solid #e8edf5;
}
.trust-card-image {
  width: calc(100% + 48px);
  max-width: none;
  height: 190px;
  object-fit: cover;
  display: block;
  margin: -20px -24px 18px;
  border-radius: 8px 8px 0 0;
}
.trust-badge h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.trust-badge p {
  font-size: 14px;
  color: var(--gray-text);
}
.why-wrap {
  margin-bottom: 50px;
}
.why-card {
  background: white;
  border-radius: 8px;
  padding: 24px 22px;
  border: 1px solid #e8edf5;
}
.why-card .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon-image {
  object-fit: contain;
  display: block;
}
.why-card .icon img,
.solution-icon img {
  max-width: 100%;
  max-height: 100%;
}
.why-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-text);
}
.pricing-anchor {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: white;
  border-radius: 8px;
  padding: 28px;
  border: 1px solid #e8edf5;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 64px;
  color: var(--green);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.3;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 24px;
  font-style: normal;
}
.testimonial-metric {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.author-role {
  font-size: 13px;
  color: var(--gray-text);
}

/* ─── FAQ ─── */
#faq {
  background: var(--white);
}
.faq-wrap {
  max-width: 720px;
  margin: 50px auto 0;
}
.faq-item {
  border-bottom: 1px solid #e8edf5;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  user-select: none;
}
.faq-q:hover {
  color: var(--navy-light);
}
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-light);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a-inner {
  padding-bottom: 20px;
}

/* ─── FINAL CTA ─── */
#final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(29, 185, 84, 0.12) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#final-cta h2 {
  color: white;
  position: relative;
}
#final-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 560px;
  margin: 14px auto 40px;
  position: relative;
  font-weight: 300;
}
.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  background: #070f1f;
  padding: 36px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.footer-logo span {
  color: var(--green-wa);
}
footer p,
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-meta {
  display: grid;
  gap: 4px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-copy {
  white-space: nowrap;
}

/* ─── PRIVACY POLICY ─── */
.policy-page {
  background: var(--white);
  padding-top: 68px;
}
.policy-hero {
  background: var(--navy);
  color: white;
  padding: 96px 5% 64px;
}
.policy-hero h1 {
  color: white;
  max-width: 760px;
}
.policy-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}
.policy-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}
.policy-content {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 68px;
  padding-bottom: 80px;
}
.policy-section {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 34px;
}
.policy-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.policy-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}
.policy-section p,
.policy-section li {
  font-size: 16px;
  color: var(--text-body);
}
.policy-section p + p {
  margin-top: 14px;
}
.policy-section ul {
  margin: 14px 0 0 20px;
  display: grid;
  gap: 8px;
}
.policy-section a {
  color: var(--green-dark);
  font-weight: 700;
}

/* ─── STICKY WA BUTTON ─── */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: wa-pulse 3s infinite;
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
  animation: none;
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8);
  }
}
.wa-sticky svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}
.wa-sticky:hover .wa-tooltip {
  opacity: 1;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  section {
    padding: 70px 5%;
  }
  .hero-stats {
    gap: 24px;
  }
  .steps-wrap {
    gap: 36px;
  }
  .step {
    padding: 0;
  }
  .hero-btns,
  .final-btns {
    width: 100%;
  }
  .btn-primary,
  .btn-secondary,
  .nav-cta {
    width: 100%;
  }
  nav {
    gap: 12px;
    padding: 0 4%;
  }
  .nav-logo {
    font-size: 17px;
  }
  .nav-tagline {
    max-width: 210px;
    font-size: 10.5px;
    white-space: normal;
  }
  nav .nav-cta {
    flex: 0 1 auto;
    min-width: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    gap: 0;
    font-size: 0;
    white-space: nowrap;
  }
  nav .nav-cta .icon-image-sm {
    width: 18px;
    height: 18px;
  }
  .hero-content {
    max-width: 100%;
  }
  #hero {
    padding-bottom: 72px;
  }
  .solution-visual,
  .service-card,
  .testimonial,
  .trust-badge {
    padding-left: 22px;
    padding-right: 22px;
  }
  .trust-card-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-copy {
    white-space: normal;
  }
  .policy-hero {
    padding-top: 82px;
  }
  .policy-content {
    padding-top: 52px;
    padding-bottom: 60px;
  }
  .policy-section h2 {
    font-size: 22px;
  }
}

.icon-image {
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: contain;
}

.icon-image-sm {
  width: 16px;
  height: 16px;
}

.wa-sticky-icon {
  width: 28px;
  height: 28px;
}
