:root {
  --purple-dark: #6000cd;
  --purple-light: #8b26ff;
  --purple-soft: #c084fc;
  --navy: #0f172a;
  --navy-deep: #070d1a;
  --bg-light: #f6f7f9;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-body: #525c6b;
  --text-muted: #8896a5;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --wa-green: #25D366;
  --wa-green-hover: #1da851;
  --font-body: 'Libre Franklin', system-ui, sans-serif;
  --font-wa: 'Barlow Condensed', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }

/* ─── TYPOGRAPHY SYSTEM ──────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--purple-soft); }
.eyebrow.muted { color: var(--text-muted); }

.h-display {
  font-family: var(--font-body);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.h-display.on-dark { color: #fff; }
.h-display em { font-style: normal; color: var(--purple-light); }

.h-section {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}
.h-section.on-dark { color: #fff; }
.h-section em { font-style: normal; color: var(--purple-dark); font-weight: 600; }
.h-section.on-dark em { color: var(--purple-soft); }

.lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 600px;
  margin-top: 16px;
}
.lead.on-dark { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.text-center .lead, .text-center .eyebrow { margin-left: auto; margin-right: auto; }

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

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  padding: 16px 30px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-wa:hover {
  background: var(--wa-green-hover);
  box-shadow: 0 6px 22px rgba(37,211,102,0.38);
}
.btn-wa-lg {
  padding: 18px 38px;
  font-size: 19px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.32);
}
.btn-wa-sm {
  padding: 12px 22px;
  font-size: 15px;
}

.wa-icon,
.footer-wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.wa-icon-lg { width: 22px; height: 22px; flex-shrink: 0; }

/* ─── NAV ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark img { width: 14px; height: 14px; }
.nav-logo span { color: var(--purple-soft); font-weight: 400; }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -240px; right: -260px;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(139,38,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(96,0,205,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 64px;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; }
.hero-h1 {
  font-family: var(--font-body);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--purple-soft);
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  padding: 8px 14px 8px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}
.hero-trust-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37,211,102,0.18);
  color: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.hero-trust-dot img { width: 10px; height: 10px; }
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Trust bar */
.trust-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.trust-item:last-child { border-right: none; }
.trust-item .trust-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  display: block;
}
.trust-item .trust-value {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero-img-wrap img { height: 320px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item:last-child { border-bottom: none; }
}

/* ─── PROBLEM ────────────────────────────────────────── */
#problem { background: var(--bg-white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.problem-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
}
.check-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
.check-mark {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(96,0,205,0.12);
  color: var(--purple-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-mark img { width: 10px; height: 10px; }
.problem-close {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.55;
}
.problem-close em { font-style: normal; color: var(--purple-dark); font-weight: 600; }
.problem-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.problem-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-checks { grid-template-columns: 1fr; }
  .problem-visual img { height: 280px; }
}

/* ─── PRODUCT FIT ────────────────────────────────────── */
#product-fit { background: var(--bg-light); }
.fit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.fit-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.fit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15,23,42,0.08);
  border-color: var(--border-strong);
}
.fit-card-img { aspect-ratio: 16/10; overflow: hidden; background: #e2e8f0; }
.fit-card-img img { width: 100%; height: 100%; object-fit: cover; }
.fit-card-body { padding: 24px; }
.fit-card-icon {
  width: 44px; height: 44px;
  background: rgba(96,0,205,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--purple-dark);
}
.fit-card h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.fit-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-body); }

@media (max-width: 880px) { .fit-cards { grid-template-columns: 1fr; } }

/* ─── PRODUCT TYPES ──────────────────────────────────── */
#product-types { background: var(--bg-white); }
.type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 32px;
}
.type-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.type-card:hover {
  border-color: var(--purple-dark);
  box-shadow: 0 0 0 3px rgba(96,0,205,0.06);
}
.type-card-img { aspect-ratio: 16/10; background: #1a1a2e; }
.type-card-img img { width: 100%; height: 100%; object-fit: cover; }
.type-card-body { padding: 24px; }
.type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 12px;
}
.type-badge.muted { color: var(--text-muted); }
.type-card h3 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.type-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-body); }
.type-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.type-cta-row p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 880px) { .type-cards { grid-template-columns: 1fr; } }

/* ─── WHY US ─────────────────────────────────────────── */
#why-us { background: var(--navy); }
.why-us-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.why-intro { position: sticky; top: 100px; }
.why-cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Modern minimal accordion */
.accordion { border-top: 1px solid rgba(255,255,255,0.1); }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
  text-align: left;
}
.acc-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.acc-btn:hover .acc-title { color: #fff; }
.acc-toggle {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.acc-toggle::before,
.acc-toggle::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.7);
  transition: transform 0.3s ease, background 0.25s;
}
.acc-toggle::before { width: 12px; height: 1.5px; }
.acc-toggle::after { width: 1.5px; height: 12px; }
.acc-item.open .acc-toggle {
  background: var(--purple-light);
  border-color: var(--purple-light);
}
.acc-item.open .acc-toggle::before { background: #fff; }
.acc-item.open .acc-toggle::after { transform: scaleY(0); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-body-inner {
  padding: 0 0 24px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 92%;
}

@media (max-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-intro { position: static; }
}

/* ─── TROPHY ─────────────────────────────────────────── */
#trophy { background: var(--bg-light); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 48px 0 40px;
}
.logo-item {
  background: transparent;
  border-radius: 10px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-item img {
  width: 240px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 640px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── PROCESS ────────────────────────────────────────── */
#process { background: var(--bg-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 56px 0 44px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover .step-circle {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96,0,205,0.12);
  border-color: var(--purple-light);
}
.step-circle img { width: 26px; height: 26px; }
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--purple-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-white);
}
.step h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.step p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-steps::before { display: none; }
  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    text-align: left;
    align-items: flex-start;
    gap: 6px 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child { border-bottom: none; }
  .step-circle {
    grid-area: icon;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
  }
  .step-circle img { width: 22px; height: 22px; }
  .step h4 { grid-area: title; margin-bottom: 0; }
  .step p { grid-area: text; }
}

/* ─── FAQ ────────────────────────────────────────────── */
#faq { background: var(--bg-light); }
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 22px 4px;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq-q {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.faq-btn:hover .faq-q { color: var(--purple-dark); }
.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-body);
  transition: transform 0.3s ease, background 0.25s;
}
.faq-toggle::before { width: 11px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 11px; }
.faq-item.open .faq-toggle {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}
.faq-item.open .faq-toggle::before { background: #fff; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 4px 22px;
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 94%;
}

/* ─── FINAL CTA ──────────────────────────────────────── */
#final-cta {
  background: linear-gradient(135deg, #1a0a3d 0%, #2d0a6e 35%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -150px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(139,38,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
#final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(96,0,205,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; text-align: center; }
.final-h2 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.final-h2 em { font-style: normal; color: var(--purple-soft); font-weight: 600; }
.final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 16px;
}
.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.final-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.final-trust-item::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(37,211,102,0.2);
  background-image: url("../../images/icons/check-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.footer-brand-block { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-block .nav-logo { font-size: 19px; }
.footer-brand-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 320px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--wa-green);
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.footer-wa:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── STICKY WHATSAPP ────────────────────────────────── */
#sticky-wa {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: pulse-wa 2.6s ease-in-out infinite;
}
#sticky-wa:hover {
  background: var(--wa-green-hover);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 2px 8px rgba(0,0,0,0.2); }
}
@media (max-width: 480px) {
  #sticky-wa {
    bottom: 14px;
    left: 50%;
    right: auto;
    width: max-content;
    max-width: calc(100% - 36px);
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
    transform: translateX(-50%);
  }
  #sticky-wa:hover { transform: translateX(-50%) scale(1.04); }
}

.cta-center { display: flex; justify-content: center; margin-top: 8px; }

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 68px 0; }
  .section-sm { padding: 56px 0; }

  .nav-inner { justify-content: center; height: 64px; }
  #hero { min-height: auto; padding-top: 64px; }
  .hero-inner {
    gap: 32px;
    padding: 48px 0 44px;
    text-align: center;
  }
  .hero-sub,
  .lead { margin-left: auto; margin-right: auto; }
  .hero-trust {
    align-items: flex-start;
    border-radius: 14px;
    margin-bottom: 28px;
    text-align: left;
  }
  .hero-img-wrap img { height: 260px; }

  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .btn-wa,
  .btn-wa-lg {
    padding: 15px 20px;
    font-size: 16px;
  }
  .cta-center,
  .type-cta-row { width: 100%; }
  .type-cta-row { gap: 14px; }
  .type-cta-row p { text-align: center; }

  .problem-grid,
  .why-us-inner { gap: 32px; }
  .problem-close,
  .why-cta-note { text-align: center; }
  .fit-cards,
  .type-cards { margin-top: 36px; }
  .fit-card-body,
  .type-card-body { padding: 20px; }
  .acc-btn,
  .faq-btn { gap: 16px; }
  .acc-title,
  .faq-q { font-size: 16px; }
  .logo-grid { gap: 18px 16px; }
  .logo-item { height: 90px; }
  .final-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
