/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6c5ce7;
  --primary-hover: #5746d6;
  --primary-light: rgba(108, 92, 231, 0.1);
  --brand-gold: #e89800;
  --ink: #111118;
  --dark: #111118;
  --dark-surface: #ffffff;
  --text: #2c2d36;
  --text-muted: #65667a;
  --text-light: #6f717f;
  --heading: #111118;
  --surface: #ffffff;
  --bg: #fafafc;
  --bg-muted: #f1f3f9;
  --border: #e6e8f0;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(28, 28, 42, 0.04), 0 4px 12px rgba(28, 28, 42, 0.05);
  --shadow-md: 0 8px 28px rgba(28, 28, 42, 0.08);
}

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 100% 70% at 50% -15%, rgba(108, 92, 231, 0.08), transparent 55%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 232, 240, 0.95);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.navbar-brand:hover {
  text-decoration: none;
}

.navbar-brand-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: block;
}

.navbar-brand-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.navbar-brand-oto {
  color: var(--heading);
}

.navbar-brand-mkt {
  color: var(--brand-gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover { color: var(--heading); text-decoration: none; }

.navbar-links a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
  padding: 4px 0;
  line-height: 1;
}

.nav-back:hover {
  color: var(--heading);
  text-decoration: none;
}

.nav-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--primary-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(108, 92, 231, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 1px solid rgba(28, 28, 42, 0.12);
}

.btn-outline:hover {
  background: rgba(108, 92, 231, 0.06);
  text-decoration: none;
  border-color: rgba(108, 92, 231, 0.35);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 14px;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 24px 100px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-light);
  border: 1px solid rgba(108, 92, 231, 0.22);
  border-radius: 999px;
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* Legal entity — homepage above-the-fold visibility (business verification). */
.hero-operator {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.45;
  margin: -8px auto 22px;
  max-width: 560px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-operator strong {
  font-weight: 700;
  color: var(--heading);
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.68;
  margin: 0 auto 12px;
  max-width: 560px;
}

.hero-fees {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.68;
  margin: 0 auto 36px;
  max-width: 560px;
}

.hero-fees strong {
  font-weight: 700;
  color: var(--brand-gold);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ===== Section ===== */
.section {
  padding: 96px 24px;
}

.section-dark {
  background: linear-gradient(180deg, #f3f0ff 0%, #fafafc 48%, #f4f6fb 100%);
  border-top: 1px solid rgba(230, 232, 240, 0.85);
  border-bottom: 1px solid rgba(230, 232, 240, 0.85);
}

.section-light {
  background: var(--surface);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  color: var(--heading);
}

.section-dark .section-header h2 { color: var(--heading); }

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.58;
}

.section-dark .section-header p { color: var(--text-muted); }

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  color: var(--heading);
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: rgba(108, 92, 231, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  color: var(--heading);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-group {
  padding: 0;
}

.faq-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 20px 28px 12px;
  background: var(--primary-light);
  border-bottom: 1px solid var(--border);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 28px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.45;
  transition: background 0.15s;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question .faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-col-left {
  border-right: 1px solid var(--border);
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.58;
}

/* ===== Footer ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-operator {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.45;
  margin: 0 0 8px;
}

.footer-merchant {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 42em;
}

.footer-merchant a {
  color: var(--primary);
  text-decoration: none;
}

.footer-merchant a:hover {
  text-decoration: underline;
}

.footer-copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

/* ===== Legal Pages ===== */
.legal-hero {
  padding: 120px 24px 48px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

.legal-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.legal-owner-notice {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  padding: 16px 20px;
  margin-bottom: 32px;
  background: rgba(108, 92, 231, 0.07);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius);
}

.legal-owner-notice a {
  font-weight: 600;
  color: var(--primary);
}

.about-page-lede {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-page-copy {
  margin-bottom: 16px;
}

.about-page-copy:last-child {
  margin-bottom: 0;
}

.about-services-list li {
  margin-bottom: 12px;
}

.about-services-list li:last-child {
  margin-bottom: 0;
}

.about-services-list strong {
  color: var(--heading);
  font-weight: 600;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ===== Contact page ===== */
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.75;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card strong {
  color: var(--dark);
  font-weight: 600;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: rgba(108, 92, 231, 0.35);
  box-shadow: 0 8px 28px rgba(108, 92, 231, 0.1);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.18);
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 10px;
}

.pricing-total {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-split {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.pricing-duration {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing-blurb {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 16px;
  padding: 12px 14px;
  background: rgba(108, 92, 231, 0.07);
  border: 1px solid rgba(108, 92, 231, 0.22);
  border-radius: 10px;
  flex: 1;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.pricing-includes {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-includes-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 10px;
  text-align: center;
}

.pricing-includes-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 28px;
}

.pricing-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-includes-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 15px;
  color: #444;
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}

.pricing-includes-list li:last-child {
  border-bottom: none;
}

.pricing-includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.85;
}

/* ===== Pricing page (dual product — above fold) ===== */
.section-inner--wide {
  max-width: 1200px;
}

.pricing-page-hero {
  padding: 84px 24px 16px;
  background: var(--bg);
  text-align: center;
}

.pricing-page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.pricing-page-hero p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-page-main {
  padding: 20px 24px 48px;
}

.pricing-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.pricing-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
}

.pricing-block-head {
  margin-bottom: 14px;
}

.pricing-block-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-block-head h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.35px;
  color: var(--heading);
  margin-bottom: 6px;
}

.pricing-block-head p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.pricing-block-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pricing-grid--compact {
  gap: 10px;
}

.pricing-card--compact {
  padding: 14px 12px;
}

.pricing-card--compact .pricing-name {
  font-size: 11px;
  margin-bottom: 6px;
}

.pricing-card--compact .pricing-total {
  font-size: 24px;
  margin-bottom: 4px;
}

.pricing-card--compact .pricing-split,
.pricing-card--compact .pricing-duration {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pricing-card--compact .pricing-badge {
  top: 10px;
  right: 10px;
  font-size: 9px;
  padding: 3px 8px;
}

.pricing-card--compact .pricing-cta {
  font-size: 13px;
  padding: 8px 10px;
  min-height: 36px;
}

.pricing-includes-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pricing-includes--block {
  max-width: none;
  margin: 0;
}

.pricing-includes--block .pricing-includes-title {
  font-size: 22px;
  text-align: left;
  margin-bottom: 16px;
}

.pricing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

.pricing-cta-row .btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--heading);
}

.pricing-cta-row .btn-outline:hover {
  border-color: rgba(108, 92, 231, 0.35);
  color: var(--primary-hover);
}

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

  .pricing-dual,
  .pricing-includes-dual {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-page-hero {
    padding: 80px 16px 12px;
  }

  .pricing-page-hero h1 {
    font-size: 28px;
  }

  .pricing-page-main {
    padding: 16px 16px 40px;
  }

  .pricing-block {
    padding: 16px 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid--compact {
    grid-template-columns: 1fr;
  }

  .pricing-includes-title {
    font-size: 24px;
  }

  .pricing-includes--block .pricing-includes-title {
    font-size: 20px;
  }

  .pricing-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-cta-row .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Sticky WhatsApp (marketing home) ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.wa-float:hover {
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.wa-float:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 999px;
}

.wa-float__label {
  background: #fff;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.wa-float__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.wa-float__icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .navbar-links { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .navbar-links a { font-size: 12px; }
  .navbar-brand-text { font-size: 18px; }

  .hero { padding: 110px 16px 72px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.8px; }
  .hero-operator {
    font-size: 14px;
    padding: 10px 16px;
    margin-top: -4px;
  }
  .hero p,
  .hero-lead,
  .hero-fees { font-size: 16px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }

  .section { padding: 64px 16px; }
  .section-header h2 { font-size: 26px; }

  .steps-grid,
  .steps-grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 24px 16px; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-col-left { border-right: none; border-bottom: 1px solid var(--border); }
  .faq-question { padding: 16px 20px; }
  .faq-answer { padding: 0 20px 16px; }
  .faq-group-title { padding: 16px 20px 10px; }

  .cta-section h2 { font-size: 26px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

  .legal-hero { padding: 100px 16px 36px; }
  .legal-hero h1 { font-size: 28px; }
  .legal-content { padding: 40px 16px 72px; }
  .legal-content h2 { font-size: 20px; }

  .wa-float {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .wa-float__label {
    font-size: 13px;
    padding: 10px 14px;
  }

  .wa-float__icon {
    width: 52px;
    height: 52px;
  }

  .wa-float__icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== Start campaign modal (hero + CTA) ===== */
.cta-start-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(30, 32, 48, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cta-start-modal-backdrop[hidden] {
  display: none;
}

.cta-start-modal {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.cta-start-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.cta-start-modal-close:hover {
  background: var(--primary-light);
  color: var(--heading);
}

.cta-start-modal h2 {
  color: var(--heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 32px 12px 0;
  line-height: 1.25;
}

.cta-start-modal-lead {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.45;
}

.cta-start-modal-copy {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.cta-start-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366 !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.modal-cta-whatsapp:hover {
  background: #20bd5a !important;
  text-decoration: none !important;
}

.modal-wa-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.modal-cta-browser {
  width: 100%;
  background: var(--surface) !important;
  color: var(--heading) !important;
  border: 1px solid var(--border) !important;
  text-decoration: none !important;
  border-radius: 10px !important;
}

.modal-cta-browser:hover {
  background: var(--primary-light) !important;
  border-color: rgba(108, 92, 231, 0.35) !important;
  text-decoration: none !important;
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .section-header h2 { font-size: 22px; }
  .cta-section h2 { font-size: 22px; }
}

/* ===== Creatives gallery (/creatives/) ===== */
.creatives-hero-narrow p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.creatives-section {
  padding: 0 24px 88px;
  max-width: 1320px;
  margin: 0 auto;
}

.creatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

.creatives-grid-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 28, 37, 0.09);
  border: 1px solid var(--border);
  background: var(--bg);
}

.creatives-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: contain;
}

@media (max-width: 768px) {
  .creatives-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
