
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/fonts/Inter-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("./assets/fonts/SpaceGrotesk-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/IBMPlexMono-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/IBMPlexMono-SemiBold.woff2") format("woff2");
}

:root {
  --bg: #f6f7f5;
  --panel: #ffffff;
  --panel-soft: #f0f2ef;

  --line: #d3dbd4;
  --line-strong: #8d978f;

  --ink: #14201b;
  --ink-soft: #5b6b63;

  --ink-faint: #616e66;

  --accent: #c8ff00;
  --accent-dark: #5c7a00;
  --accent-soft: #eef1e6;
  --on-accent: var(--ink);

  --secondary: #150b33;
  --secondary-soft: #54208c;
  --on-secondary: #f6f2f8;
  --on-secondary-soft: #cbb3da;

  --shopee: #ea501f;
  --braip: #6d36fb;

  --success: #16a34a;
  --success-soft: #dcfce7;
  --success-dark: #166534;

  --radius: 18px;
  --radius-md: 12px;

  --radius-btn: 6px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --shadow: 0 1px 2px rgba(20, 32, 27, 0.04), 0 8px 24px -12px rgba(20, 32, 27, 0.1);
  --shadow-lg: 0 12px 32px -12px rgba(20, 11, 41, 0.28);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --header-h: 72px;
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 104px);
  --tap: 44px;

  --focus-ring: 0 0 0 3px rgba(84, 32, 140, 0.18), 0 0 0 1.5px var(--secondary-soft);
  --focus-ring-dark: 0 0 0 3px rgba(200, 255, 0, 0.28), 0 0 0 1.5px var(--accent);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.14;
  text-wrap: balance;
}
p { text-wrap: pretty; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}
.section--dark :focus-visible,
.cta-final :focus-visible,
.trust-strip :focus-visible { box-shadow: var(--focus-ring-dark); }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-family: var(--font-sans);
  line-height: 1.2;
  border-radius: var(--radius-btn);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  text-align: center;
}
.btn svg { flex-shrink: 0; transition: transform 0.15s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 24px -10px rgba(200, 255, 0, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(200, 255, 0, 0.65); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 6px 14px -8px rgba(200, 255, 0, 0.6); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--secondary-soft); color: var(--secondary-soft); background: rgba(84, 32, 140, 0.04); }
.btn-outline:active { transform: translateY(1px); }
.section--dark .btn-outline,
.cta-final .btn-outline { color: var(--on-secondary); border-color: rgba(255, 255, 255, 0.28); }
.section--dark .btn-outline:hover,
.cta-final .btn-outline:hover { color: var(--accent); border-color: var(--accent); background: rgba(200, 255, 0, 0.08); }

.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 40px; }
.btn-md { padding: 12px 20px; font-size: 14px; min-height: var(--tap); }
.btn-lg { padding: 15px 26px; font-size: 15.5px; min-height: 52px; }

.link-ghost {
  display: inline-flex; align-items: center;
  font-weight: 600; font-size: 14px; color: var(--ink-soft);
  transition: color 0.15s ease;
}
.link-ghost:hover { color: var(--ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 245, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-mobile-actions { display: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: var(--tap); height: var(--tap); margin-right: -10px; border-radius: var(--radius-sm);
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 56px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: -20% -10% auto -10%; height: 640px;
  background: radial-gradient(60% 60% at 20% 10%, rgba(200, 255, 0, 0.16), transparent 70%),
    radial-gradient(50% 50% at 85% 0%, rgba(84, 32, 140, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(20, 32, 27, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--panel); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.pill-badge--dark { background: var(--secondary); color: var(--on-secondary); border-color: transparent; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px var(--success-soft); flex-shrink: 0; }

.hero-copy h1 { font-size: clamp(33px, 4.8vw, 56px); margin: 20px 0 20px; font-weight: 700; }
.text-accent { background: linear-gradient(180deg, transparent 62%, var(--accent) 62%); }
.hero-lead { font-size: clamp(16px, 1.3vw, 17.5px); line-height: 1.62; color: var(--ink-soft); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-fineprint { margin-top: 16px; font-size: 12.5px; line-height: 1.5; color: var(--ink-faint); font-family: var(--font-mono); }

.hero-visual { position: relative; height: 460px; }
.mock-card {
  position: absolute; background: var(--panel); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.mock-card--main { top: 0; left: 4%; width: 88%; padding: 0 0 24px; animation: float-slow 6s ease-in-out infinite; }
.mock-topbar { display: flex; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--panel-soft); }
.mock-body { padding: 18px 22px 0; }
.mock-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--secondary-soft); font-weight: 600; }
.mock-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 4px 0 16px; }
.mock-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-soft); }
.mock-row strong { color: var(--ink); font-weight: 600; text-align: right; }
.mock-status { color: var(--success-dark); }
.mock-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.mock-chip { font-size: 11.5px; font-weight: 700; padding: 7px 12px; border-radius: var(--radius-pill); background: var(--panel-soft); color: var(--ink-soft); }
.mock-chip--accent { background: var(--accent); color: var(--on-accent); }

.mock-card--bubble {
  bottom: 78px; right: -2%; width: 250px; padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
  animation: float-slow 6s ease-in-out infinite 1.4s;
}
.bubble-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.mock-card--bubble strong { display: block; font-size: 13px; line-height: 1.3; }
.mock-card--bubble p { font-size: 12px; line-height: 1.4; color: var(--ink-soft); margin-top: 2px; }

.mock-card--price {
  bottom: 0; left: -2%; padding: 16px 20px; background: var(--secondary); border: none;
  animation: float-slow 6s ease-in-out infinite 0.7s;
}
.mock-card--price .mock-eyebrow { color: var(--accent); }
.mock-price { font-family: var(--font-mono); font-size: 26px; font-weight: 700; color: #fff; margin-top: 4px; line-height: 1.1; }
.mock-price-hint { font-size: 11.5px; color: var(--on-secondary-soft); margin-top: 4px; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.trust-strip { background: var(--ink); overflow: hidden; padding: 13px 0; }
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: rgba(246, 247, 245, 0.82); text-transform: uppercase; text-align: center;
}
.trust-strip-inner span[aria-hidden] { color: var(--accent); }

.section { padding: var(--section-y) 0; }
.section--soft { background: var(--panel-soft); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head--dark { max-width: 720px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--secondary-soft); font-weight: 600;
}
.eyebrow--on-dark { color: var(--accent); }
.section-head h2 { font-size: clamp(27px, 3.2vw, 38px); margin: 14px 0 14px; font-weight: 700; }
.section-lead { font-size: clamp(15px, 1.2vw, 16.5px); color: var(--ink-soft); line-height: 1.65; }
.section-lead--on-dark { color: rgba(246, 242, 248, 0.72); }

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px clamp(32px, 6vw, 88px);
  align-items: end;
}
.section-head--split .eyebrow { grid-column: 1; }
.section-head--split h2 { grid-column: 1; margin-bottom: 0; max-width: 16ch; }
.section-head--split .section-lead {
  grid-column: 2; grid-row: 2; max-width: 46ch;
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 2px solid var(--line);
  padding-block: 4px;
}
.section--dark .section-head--split .section-lead { border-left-color: rgba(255, 255, 255, 0.18); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.step-card {
  --stagger: 0px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2.2vw, 28px);
  margin-top: var(--stagger);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 10px; background: var(--secondary); color: var(--accent);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 18px;
}
.step-card h3 { font-size: clamp(17px, 1.5vw, 19px); margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 1.8vw, 22px); }
.feature-card {
  grid-column: span 6;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 32px) clamp(20px, 2vw, 28px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:nth-child(1), .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 5; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--secondary-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card h3 { font-size: clamp(16px, 1.4vw, 18px); margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; max-width: 52ch; }

.security-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}
.security-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2.2vw, 28px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.security-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.security-card h3 { font-size: clamp(17px, 1.6vw, 19px); margin-bottom: 9px; }
.security-card p { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); max-width: 46ch; }

.security-card--lead {
  grid-row: span 2;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--secondary); border-color: transparent; color: var(--on-secondary);
  padding: clamp(30px, 3.2vw, 42px) clamp(24px, 2.8vw, 34px);
}
.security-card--lead:hover { border-color: transparent; }
.security-card--lead h3 { font-size: clamp(20px, 2.1vw, 25px); margin-bottom: 12px; }
.security-card--lead p { font-size: clamp(14.5px, 1.3vw, 16px); color: var(--on-secondary-soft); max-width: 42ch; }
.security-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--secondary-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.security-card--lead .security-icon { background: rgba(200, 255, 0, 0.14); color: var(--accent); }
.security-note {
  margin-top: clamp(20px, 2.4vw, 28px);
  font-size: 13.5px; line-height: 1.6; color: var(--ink-faint); max-width: 76ch;
}

.price-grid { display: grid; grid-template-columns: 1.32fr 0.88fr; gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.price-table {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px clamp(20px, 2.4vw, 30px); box-shadow: var(--shadow);
}
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row strong { display: block; font-size: 15px; margin-bottom: 3px; line-height: 1.35; }
.price-row span:not(.price-value) { font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.price-value { font-family: var(--font-mono); font-weight: 700; font-size: 18px; white-space: nowrap; color: var(--secondary-soft); }
.price-value small { font-size: 11px; color: var(--ink-faint); font-weight: 500; }

.price-callout {
  background: var(--secondary); color: var(--on-secondary); border-radius: var(--radius);
  padding: clamp(26px, 2.8vw, 34px) clamp(22px, 2.4vw, 30px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  justify-content: center;
}
.price-callout h3 { font-size: clamp(19px, 1.8vw, 22px); margin-top: 4px; }
.price-callout p { font-size: 14px; color: var(--on-secondary-soft); line-height: 1.65; }
.price-callout .btn { margin-top: 4px; }

.section--dark { background: var(--secondary); color: var(--on-secondary); }
.integration-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(16px, 2vw, 24px); align-items: start; }
.integration-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: clamp(24px, 2.8vw, 34px) clamp(22px, 2.4vw, 30px);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.integration-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.2); }
.integration-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.integration-logo {
  width: 46px; height: 46px; border-radius: 12px; background: #fff;
  padding: 9px; object-fit: contain; flex-shrink: 0;
}
.integration-head h3 { font-size: clamp(18px, 1.7vw, 20px); margin-bottom: 5px; }
.integration-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); }
.integration-tag--shopee { background: rgba(234, 80, 31, 0.18); color: #ff9c72; }
.integration-tag--braip { background: rgba(109, 54, 251, 0.22); color: #b79dff; }
.integration-card > p { font-size: 14.5px; line-height: 1.65; color: rgba(246, 242, 248, 0.78); margin-bottom: 18px; }
.integration-list { display: flex; flex-direction: column; gap: 10px; }
.integration-list li { position: relative; padding-left: 20px; font-size: 13.5px; line-height: 1.55; color: rgba(246, 242, 248, 0.85); }
.integration-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}

.integration-proof { margin-top: clamp(40px, 5vw, 64px); }
.integration-proof-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(246, 242, 248, 0.55); text-align: center; margin-bottom: 22px;
}
.proof-shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }
.proof-shot {
  background: var(--panel); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease;
}
.proof-shot:hover { transform: translateY(-4px); }
.proof-shot-bar { display: flex; gap: 6px; padding: 12px 14px; background: var(--panel-soft); }
.proof-shot-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.proof-shot img { width: 100%; display: block; }
.proof-shot figcaption {
  padding: 14px 18px 18px; font-size: 13px; line-height: 1.5; color: var(--ink-soft); border-top: 1px solid var(--line);
}

.cta-final { position: relative; padding: clamp(56px, 7vw, 96px) 0; overflow: hidden; background: var(--ink); }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(200, 255, 0, 0.14), transparent 70%);
}
.cta-final-grid {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.65fr; gap: clamp(32px, 5vw, 56px); align-items: center;
}
.cta-final-copy h2 { font-size: clamp(28px, 4vw, 42px); color: #fff; }
.cta-final-copy p { font-size: clamp(15px, 1.3vw, 16.5px); color: rgba(246, 247, 245, 0.72); max-width: 46ch; margin-top: 14px; }
.cta-final-copy .btn { margin-top: 26px; }

.cta-final-phone { display: flex; justify-content: center; }
.phone-frame {
  width: clamp(190px, 18vw, 236px); border-radius: 34px; background: #0c0c10; padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(-3deg);
  animation: float-slow 7s ease-in-out infinite;
}
.phone-frame img { width: 100%; border-radius: 24px; display: block; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--line-strong); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; min-height: var(--tap); text-align: left; font-size: 15px; font-weight: 600; line-height: 1.4;
}
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink-soft); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--secondary-soft); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.68; max-width: 66ch; }

.site-footer { background: var(--panel-soft); border-top: 1px solid var(--line); }

.footer-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px clamp(24px, 4vw, 48px);
  padding-block: clamp(32px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.footer-cta h3 { font-size: clamp(19px, 2vw, 24px); }
.footer-cta p { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }

.footer-top {
  display: flex; flex-wrap: wrap;
  gap: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  padding-block: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
}
.footer-brand { flex: 1 1 260px; min-width: 240px; max-width: 340px; }
.footer-brand p { margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; max-width: 34ch; }
.brand--footer { margin-bottom: 4px; }
.footer-col { flex: 1 1 150px; min-width: 140px; display: flex; flex-direction: column; gap: 2px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 12px; font-family: var(--font-mono); font-weight: 600; }
.footer-col a {
  font-size: 14px; color: var(--ink-soft); padding-block: 7px;
  transition: color 0.15s ease; width: fit-content;
}
.footer-col a:hover { color: var(--secondary-soft); }

.trust-logos {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 20px clamp(28px, 4vw, 56px);
  margin-top: clamp(24px, 3vw, 34px);
  padding: clamp(22px, 2.6vw, 30px) clamp(24px, 3vw, 36px);
  background: var(--secondary);
  border-radius: var(--radius);
}
.trust-logos-heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.4;
  color: var(--on-secondary); max-width: 44ch; flex: 1 1 300px;
}
.trust-logos-icons { display: flex; align-items: center; gap: clamp(24px, 3.5vw, 44px); flex-wrap: wrap; }
.trust-logos-icons img {
  height: clamp(24px, 2.8vw, 30px); width: auto; max-width: 96px;
  object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.85;
  transition: opacity 0.2s ease;
}
.trust-logos-icons img:hover { opacity: 1; }
.footer-security-label {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint);
}
.footer-security-logos { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.footer-security-inline { margin-top: 24px; }
.footer-security-inline .footer-security-label { display: block; margin-bottom: 12px; }
.mono-logo {
  height: 24px; width: auto; max-width: 80px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.45); opacity: 0.5;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.mono-logo:hover { opacity: 0.85; filter: grayscale(1) brightness(0.25); }

.footer-social { margin-top: 22px; }
.footer-social .footer-security-label { display: block; margin-bottom: 10px; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: var(--tap); padding-right: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: color 0.15s ease;
}
.footer-social-link:hover { color: var(--secondary-soft); }
.footer-social-link svg { width: 24px; height: 24px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--line); padding-block: 24px 30px;
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px 32px;
}
.footer-legal p { font-size: 12.5px; color: var(--ink-soft); }
.footer-cnpj { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); margin-top: 3px; }
.footer-address {
  display: block; margin-top: 6px;
  font-style: normal; font-size: 12px; line-height: 1.55; color: var(--ink-faint);
  max-width: 52ch;
}
.footer-bottom-end { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-copyright { font-size: 12px; color: var(--ink-faint); }
.footer-top-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  transition: color 0.15s ease;
}
.footer-top-link:hover { color: var(--secondary-soft); }
.footer-top-link svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.footer-top-link:hover svg { transform: translateY(-2px); }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--s-sticky-h, 0px);
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  padding: 18px 24px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); max-width: 62ch; }
.cookie-banner-title { font-weight: 700; color: var(--ink); }
.cookie-banner p a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

@media (max-width: 1080px) {
  .feature-card:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; margin-top: 8px; }
  .steps, .price-grid, .integration-grid, .proof-shots, .cta-final-grid,
  .security-grid { grid-template-columns: 1fr; }
  .security-card--lead { grid-row: auto; }
  .step-card, .steps .step-card { --stagger: 0px !important; }
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
  .section-head--split h2 { max-width: 22ch; }
  .section-head--split .section-lead {
    grid-column: 1; grid-row: auto; padding-left: 16px; max-width: 60ch;
  }
  .cta-final-grid { justify-items: start; }
  .cta-final-phone { order: -1; justify-content: flex-start; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; --gutter: 20px; }

  .main-nav, .header-actions .link-ghost { display: none; }
  .nav-toggle { display: flex; }
  .header-row { gap: 12px; }

  .feature-card:nth-child(n) { grid-column: span 12; }
  .footer-top { gap: 28px 24px; }
  .footer-brand { flex: 1 1 100%; max-width: 46ch; }
  .footer-col { flex: 1 1 42%; min-width: 130px; }

  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; }

  .hero-visual {
    height: auto; margin-top: 32px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .hero-visual .mock-card {
    position: static; width: 100%; left: auto; right: auto; top: auto; bottom: auto;
    animation: none;
  }
  .mock-card--bubble { width: 100%; align-items: center; }
  .mock-card--price { display: flex; flex-direction: column; }

  .proof-shots {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .proof-shots::-webkit-scrollbar { display: none; }
  .proof-shot { flex: 0 0 88%; scroll-snap-align: center; }
  .proof-shot:hover { transform: none; }

  .price-row { align-items: flex-start; gap: 14px; }

  .footer-cta { flex-direction: column; align-items: stretch; }
  .footer-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-end { align-items: flex-start; }
  .footer-col a { min-height: var(--tap); display: flex; align-items: center; padding-block: 8px; }
  .brand--footer, .footer-top-link { min-height: var(--tap); }
  .footer-top-link { padding-block: 12px; }

  .cookie-banner { justify-content: flex-start; padding: 16px 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

@media (max-width: 400px) {
  .brand { font-size: 17px; }
  .header-actions .btn-sm { padding: 10px 12px; font-size: 12.5px; }
}

.site-header.nav-open .main-nav {
  display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--panel);
  flex-direction: column; align-items: stretch;
  padding: 16px var(--gutter) 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  gap: 2px;
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.site-header.nav-open .main-nav a {
  padding-block: 13px; font-size: 15.5px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.site-header.nav-open .main-nav .nav-mobile-actions {
  display: grid; gap: 10px; margin-top: 16px;
}
.site-header.nav-open .main-nav .nav-mobile-actions a { border-bottom: none; padding-block: 12px; }
