:root {
  --pink: #ff8fe0;
  --lilac: #b879ff;
  --mint: #9eead6;
  --peach: #ffbcab;
  --bg: #0e0a15;
  --bg-alt: #120d1a;
  --hairline: rgba(255,255,255,0.09);
  --text: #f8f6fc;
  --muted: #c3bdd4;
  --muted2: #9a93ad;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* ---------- language bar ---------- */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}
.lang-bar {
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  padding: 6px 0;
}
.lang-bar-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.lang-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.55);
}
.lang-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(0,0,0,0.6);
  cursor: pointer;
}
.lang-btn.active {
  background: #0e0a15;
  color: white;
}

/* ---------- header ---------- */
.site-header {
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.logo {
  font-family: 'Wellfleet', serif;
  font-size: 20px;
  color: var(--pink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo-img { height: 22px; width: auto; display: block; }
.logo-img.small { height: 16px; }
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.nav a:hover { color: var(--text); }

@media (max-width: 700px) {
  .nav { display: none; }
}

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  color: #33115c;
  text-decoration: none;
}
.btn-primary.small { padding: 9px 18px; font-size: 13px; }
.btn-primary.full { width: 100%; text-align: center; border: none; cursor: pointer; }
.btn-ghost {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: underline;
  margin-left: 18px;
}
.btn-plan {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--text);
  text-decoration: none;
}
.btn-plan.featured {
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  color: #33115c;
  border: none;
  font-weight: 700;
}

/* ---------- sections ---------- */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--hairline);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--pink);
}
.accent {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 400;
}
h1, h2 {
  font-family: 'Spectral', serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 18px;
}
h1 { font-size: 40px; }
h2 { font-size: 28px; margin-bottom: 32px; }
.lead {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 24px;
}

/* ---------- hero / before-after slider ---------- */
.cta-row { margin-bottom: 36px; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid var(--hairline);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ba-before { background: #17121f; }
.ba-after {
  background: #17121f;
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: var(--text);
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '\2194';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  background: var(--pink);
  color: #4b1528;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.ba-pill {
  position: absolute;
  top: 14px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: var(--text);
}
.ba-pill.before { left: 14px; }
.ba-pill.after { right: 14px; background: var(--pink); color: #4b1528; }
.ba-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  color: var(--muted);
}

.ba-caption a.inline-link {
  color: var(--pink);
  text-decoration: underline;
}

/* ---------- speed section ---------- */
.speed-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 700px) { .speed-grid { grid-template-columns: 1fr; } }
.speed-compare { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.speed-compare-row {
  display: grid;
  grid-template-columns: 140px 1fr 34px;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.speed-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.speed-bar-fill { height: 100%; border-radius: 999px; }
.speed-bar-fill.slow { background: var(--peach); }
.speed-bar-fill.fast { background: var(--mint); }
.speed-score { font-weight: 700; font-size: 13px; text-align: right; }
.speed-score.slow { color: var(--peach); }
.speed-score.fast { color: var(--mint); }
.speed-note { font-size: 12px; color: var(--muted2); margin-top: 14px; font-style: italic; }

.speed-score-card {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.speed-ring { position: relative; width: 140px; height: 140px; }
.speed-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 8; }
.ring-fill {
  fill: none;
  stroke: var(--mint);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 13;
}
.speed-ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.speed-ring-num { font-family: 'Spectral', serif; font-size: 34px; font-weight: 600; color: var(--text); }
.speed-ring-sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.speed-metrics {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.speed-metrics div { display: flex; flex-direction: column; gap: 4px; }
.speed-metrics strong { color: var(--text); font-size: 14px; }
.speed-metrics strong.good { color: var(--mint); }
.seo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 700px) { .seo-grid { grid-template-columns: 1fr; } }
.myth-box {
  border-left: 2px solid var(--peach);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
  background: rgba(255,188,171,0.04);
  border-radius: 0 10px 10px 0;
}
.rank-mock {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 18px;
}
.rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}
.rank-row:last-child { border-bottom: none; }
.rank-pos {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.rank-you { background: var(--mint); color: #04342c; }
.rank-other { background: rgba(255,255,255,0.06); color: var(--muted2); }
.rank-note { margin-left: auto; font-size: 11px; }
.rank-note.good { color: var(--mint); }
.rank-note.muted { color: var(--muted2); }

/* ---------- maintenance section ---------- */
.maint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 44px;
}
@media (max-width: 700px) {
  .maint-grid { grid-template-columns: 1fr; row-gap: 28px; }
}
.maint-col { padding: 0 20px; border-left: 1px solid var(--hairline); }
.maint-col:first-child { border-left: none; padding-left: 0; }
@media (max-width: 700px) { .maint-col { border-left: none; padding-left: 0; } }
.maint-icon { color: var(--pink); font-size: 18px; margin-bottom: 12px; }
.maint-col h3 { font-family: 'Inter'; font-size: 14.5px; font-weight: 600; margin: 0 0 6px; }
.maint-col p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- story card (RBC Sitel) ---------- */
.story-card {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 26px;
  background: rgba(255,255,255,0.015);
}
.story-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.story-avatar {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--peach);
  color: #4a1b0c;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.story-title { font-weight: 600; font-size: 15px; margin: 0; }
.story-sub { font-size: 12.5px; color: var(--muted); margin: 2px 0 0; }
.story-badge {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184,121,255,0.12);
  color: var(--lilac);
  white-space: nowrap;
}
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .story-grid { grid-template-columns: 1fr; row-gap: 20px; } }
.story-step { padding: 0 16px; border-left: 1px solid var(--hairline); }
.story-step:first-child { border-left: none; padding-left: 0; }
@media (max-width: 700px) { .story-step { border-left: none; padding-left: 0; } }
.story-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: #04342c;
  font-weight: 700;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.story-step h4 { font-size: 13.5px; margin: 0 0 6px; }
.story-step p { font-size: 12.5px; color: var(--muted); margin: 0; }
.story-checks {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.check-pill {
  font-size: 12px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(158,234,214,0.1);
  color: var(--mint);
}

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }
.plan {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 1px solid rgba(255,143,224,0.5);
  background: rgba(255,143,224,0.03);
}
.plan-badge {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pink);
  color: #4b1528;
  margin-bottom: 14px;
}
.plan h3 { font-family: 'Inter'; font-size: 17px; font-weight: 600; margin: 0 0 3px; color: var(--text); }
.plan-sub { font-size: 12.5px; color: var(--muted2); margin: 0 0 14px; }
.price { font-size: 28px; font-weight: 700; color: var(--text); margin: 0 0 4px; }
.price span { font-size: 13px; font-weight: 500; color: var(--muted); }
.plan hr { border: none; border-top: 1px solid var(--hairline); margin: 16px 0; }
.plan ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.plan li { font-size: 13px; color: var(--text); padding: 5px 0; }
.plan li.off { color: var(--muted2); }
.plan li::before { content: '\2713 '; color: var(--mint); }
.plan li.off::before { content: '\2013 '; color: var(--muted2); }
.plans-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 18px; }
.plans-note a { color: var(--pink); text-decoration: underline; }

/* ---------- case studies ---------- */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
@media (max-width: 700px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 18px;
}
.placeholder-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px;
  background: #17121f;
  border: 1px dashed var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted2);
  text-align: center;
  padding: 10px;
  margin-bottom: 14px;
}
.case-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid var(--hairline);
}
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(184,121,255,0.12);
  color: var(--lilac);
  margin-bottom: 10px;
}
.case-card h3 { font-family: 'Inter'; font-size: 15px; font-weight: 600; margin: 0 0 8px; }
.case-card p { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.case-checks { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--mint); }
.case-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
}
.case-link:hover { text-decoration: underline; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--hairline);
  display: block;
}
.about-copy p { font-size: 15px; color: var(--muted); margin: 0 0 12px; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter';
  font-size: 15px;
  font-weight: 500;
  padding: 18px 28px 18px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--pink);
  font-size: 18px;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 13.5px;
  color: var(--muted);
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 18px;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { font-size: 13.5px; color: var(--muted); margin: 8px 0; }
.contact-form { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 12px;
}
.contact-form input,
.contact-form textarea {
  background: #17121f;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  font-family: 'Inter';
  font-size: 13.5px;
}
.contact-form button { margin-top: 18px; }

/* ---------- footer ---------- */
.site-footer { padding: 28px 0; }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.copyright { font-size: 12px; color: var(--muted2); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
