/* ============================================================
   MAGICPAY — styles.css
   Premium dark | Gold accent | Inter | Mobile-first
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  /* Dark theme (default) */
  --bg:            #030303;
  --bg-alt:        #070707;
  --bg-alt2:       #090909;
  --bg-card:       #0A0A0A;
  --bg-card-elev:  #0D0D0D;
  --border:        #242424;
  --border-subtle: #191919;
  --border-hover:  #3a3a3a;

  --text-primary:  #F7F7F7;
  --text-secondary:#A3A3A3;
  --text-muted:    #737373;

  --gold:          #D4AF37;
  --gold-light:    #E3C45B;
  --gold-glow:     rgba(212,175,55,0.08);
  --green:         #22C55E;
  --red:           #EF4444;

  --accent-glow:   rgba(255,255,255,0.05);

  --btn-primary-bg:    #ffffff;
  --btn-primary-text:  #0a0a0a;
  --btn-outline-border:#343434;

  --navbar-bg:     rgba(3,3,3,0.85);
  --shadow-card:   0 1px 3px rgba(0,0,0,0.6), 0 8px 32px rgba(0,0,0,0.4);
  --shadow-btn:    0 4px 20px rgba(255,255,255,0.15);

  --radius-sm:  7px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --transition: 0.22s ease;
}

[data-theme="light"] {
  --bg:            #ffffff;
  --bg-alt:        #f8f8f8;
  --bg-alt2:       #f5f5f5;
  --bg-card:       #ffffff;
  --bg-card-elev:  #fafafa;
  --border:        #e4e4e4;
  --border-subtle: #eeeeee;
  --border-hover:  #cccccc;

  --text-primary:  #111111;
  --text-secondary:#555555;
  --text-muted:    #909090;

  --gold:          #B08E23;
  --gold-light:    #96781a;
  --gold-glow:     rgba(176,142,35,0.08);

  --accent-glow:   rgba(0,0,0,0.04);

  --btn-primary-bg:    #111111;
  --btn-primary-text:  #ffffff;
  --btn-outline-border:#cfcfcf;

  --navbar-bg:     rgba(255,255,255,0.88);
  --shadow-card:   0 1px 3px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.08);
  --shadow-btn:    0 4px 20px rgba(0,0,0,0.15);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.gold  { color: var(--gold); }
.green { color: var(--green); }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- HELPERS ---- */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-weight: 600;
}
.btn--primary:hover {
  opacity: 0.88;
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}

.btn--ghost { color: var(--text-primary); background: transparent; }
.btn--ghost:hover { opacity: 0.7; }

.btn--outline {
  color: var(--text-primary);
  border: 1px solid var(--btn-outline-border);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--border-hover);
  background: var(--accent-glow);
}

.btn--lg { padding: 13px 26px; font-size: 15px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), border-color var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.navbar__logo-img { width: 150px; height: 64px; object-fit: contain; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: space-between;
  padding-left: 36px;
}
.navbar__nav-group { display: flex; align-items: center; gap: 2px; }

.navbar__item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 450;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar__item:hover { color: var(--text-primary); background: var(--accent-glow); }

.navbar__item--rewards { color: var(--text-primary); font-weight: 600; gap: 7px; }
.navbar__item--rewards::after {
  content: 'NOVO';
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}

.navbar__actions { display: flex; align-items: center; gap: 8px; }

.navbar__right { display: flex; align-items: center; gap: 8px; margin-left: 16px; }

.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--accent-glow); color: var(--text-primary); }

[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--accent-glow); }
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.hero__social-proof p { font-size: 13px; color: var(--text-secondary); }
.hero__avatars { display: flex; }
.hero__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card-elev);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; }

.hero__dashboard-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
  animation: heroFloat 6s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.hero__dashboard-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__dashboard-card { animation: none; }
}
.hero__dashboard-img { width: 100%; height: auto; display: block; }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 0 0 40px; background: var(--bg); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 28px;
  border-right: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: var(--bg-card-elev); }

.stats__icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--text-primary);
}

.stats__value {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  line-height: 1.1;
}
.stats__value--text { font-size: 20px; }
.stats__label { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/* ============================================================
   MEIOS DE PAGAMENTO
   ============================================================ */
.payments {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.payments__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 24px;
}

.payments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all var(--transition);
}
.pay-card:hover { background: var(--bg-card-elev); border-color: var(--border-hover); transform: translateY(-2px); }

.pay-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-primary);
  margin-bottom: 16px;
  background: var(--bg-alt);
}
.pay-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.pay-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.payments__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: all var(--transition);
}
.mini-card:hover { border-color: var(--border); background: var(--bg-card-elev); }
.mini-card__icon { color: var(--text-secondary); flex-shrink: 0; margin-top: 2px; }
.mini-card h4 { font-size: 13.5px; font-weight: 600; margin-bottom: 4px; }
.mini-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   FLOW / TECNOLOGIA
   ============================================================ */
.flow { padding: 96px 0; background: var(--bg); }

.flow__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.flow__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 20px 0 28px;
}

.flow__steps {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.flow__arrow {
  color: var(--text-muted);
  align-self: center;
  font-size: 15px;
  flex-shrink: 0;
}

.flow-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.flow-step:hover { background: var(--bg-card-elev); }
.flow-step--active {
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}

.flow-step__num {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
  background: var(--bg-alt);
}
.flow-step__num--gold { color: var(--gold); border-color: var(--gold); }

.flow-step h4 { font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.flow-step p { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }

.flow-step__visual {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 0 4px;
}

.flow-chip {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 12px;
}
.flow-chip__row {
  display: block;
  width: 60%; height: 5px;
  border-radius: 3px;
  background: var(--border);
  margin-bottom: 8px;
}
.flow-chip strong { font-size: 14px; font-weight: 700; }

.flow-step__brain { color: var(--gold); }
.flow-step__check { color: var(--green); }

.flow-step__routes { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.flow-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 11.5px;
}
.flow-route span { color: var(--text-secondary); }
.flow-route strong { font-weight: 600; }
.flow-route--best { border-color: var(--gold); }
.flow-route--best span, .flow-route--best strong { color: var(--gold); }

.flow-spinner {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  border-top-color: var(--text-primary);
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.flow-step__hint { font-size: 11px; color: var(--text-muted); margin: 0 !important; }
.flow-step__hint--green { color: var(--green); font-weight: 600; }

/* Retry bar */
.flow__retry {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: 0 0 28px var(--gold-glow);
  padding: 22px 26px;
  margin-bottom: 32px;
}

.flow__retry-label { display: flex; gap: 14px; align-items: center; flex: 1; min-width: 260px; }
.flow__retry-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
  background: var(--bg-alt);
}
.flow__retry-label h4 { font-size: 14.5px; font-weight: 600; }
.flow__retry-label p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

.flow__retry-chain { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.retry-node {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 14px;
}
.retry-node span { font-size: 10px; color: var(--text-muted); }
.retry-node strong { font-size: 12.5px; font-weight: 600; }
.retry-node em { font-size: 10px; font-style: normal; color: var(--gold); }
.retry-node--ok {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--green);
  border-color: var(--green);
  padding: 12px 16px;
}
.retry-node--ok strong { color: var(--green); }

/* Feature cards */
.flow__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all var(--transition);
}
.feature-card:hover { background: var(--bg-card-elev); border-color: var(--border-hover); }

.feature-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 16px;
  background: var(--bg-alt);
}
.feature-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.feature-card > p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

.feature-card__list { display: flex; flex-direction: column; gap: 8px; }
.feature-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: var(--text-secondary);
}
.feature-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

/* ============================================================
   API
   ============================================================ */
.api {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.api__inner {
  display: grid;
  grid-template-columns: 280px 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.api__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 18px 0 24px;
}

.api__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.api__tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 6px;
  padding: 5px 10px;
}
.api__tags .api__tag--gold { color: var(--gold); border-color: var(--gold); }

.api__editor {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.api__editor-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card-elev);
}
.api__editor-method {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
}
.api__editor-path { font-size: 12.5px; font-weight: 500; color: var(--text-primary); font-family: 'SF Mono', Menlo, Consolas, monospace; }
.api__editor-lang {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
}

.api__code {
  padding: 20px;
  overflow-x: auto;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.c-kw  { color: var(--gold); }
.c-str { color: var(--gold-light); }
.c-fn  { color: var(--text-primary); }
.c-num { color: var(--green); }

.api__side { display: flex; flex-direction: column; gap: 14px; }
.api-side-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}
.api-side-card:hover { background: var(--bg-card-elev); border-color: var(--border-hover); }
.api-side-card__icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-primary);
  flex-shrink: 0;
  background: var(--bg-alt);
}
.api-side-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.api-side-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   APP
   ============================================================ */
.app { padding: 96px 0; background: var(--bg-alt2); }

.app__inner {
  display: grid;
  grid-template-columns: 300px 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.app__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 18px 0 26px;
}

.app__buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; max-width: 220px; }
.app__buttons .btn { justify-content: flex-start; }

.app__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  transition: opacity var(--transition);
  display: inline-block;
}
.app__link:hover { opacity: 0.75; }

/* Phones */
.app__phones {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.phone {
  width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-card);
  position: relative;
  flex-shrink: 0;
}
.phone--second { margin-top: 32px; }

.phone__notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 16px;
  background: var(--bg);
  border-radius: 10px;
  z-index: 2;
}

.phone__screen {
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 38px 16px 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone__header { display: flex; align-items: center; margin-bottom: 16px; }
.phone__header--between { justify-content: space-between; }
.phone__header strong { font-size: 14px; }
.phone__logo { height: 30px; width: auto; object-fit: contain; }

.phone__label { font-size: 10.5px; color: var(--text-muted); margin-bottom: 4px; }
.phone__label--chart { margin-top: 16px; display: flex; justify-content: space-between; }
.phone__label--chart .green { font-size: 10px; }
.phone__balance { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }

.phone__btn {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 12px;
  width: fit-content;
}

.phone__chart { width: 100%; height: 56px; color: var(--text-primary); margin: 4px 0 12px; }

.phone__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.phone__stats > div {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}
.phone__stats span { font-size: 9px; color: var(--text-muted); }
.phone__stats strong { font-size: 14px; font-weight: 700; }
.phone__stats em { font-size: 9px; font-style: normal; }

.phone__nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.phone__nav-dot { width: 18px; height: 4px; border-radius: 2px; background: var(--border); }
.phone__nav-dot--active { background: var(--text-primary); }

.phone__tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.phone__tab {
  font-size: 9.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3px 9px;
}
.phone__tab--active { color: var(--btn-primary-text); background: var(--btn-primary-bg); border-color: transparent; font-weight: 600; }

.phone__notifs { display: flex; flex-direction: column; gap: 8px; }
.phone-notif {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 10px;
}
.phone-notif__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  margin-top: 4px;
}
.phone-notif__dot--green { background: var(--green); }
.phone-notif__dot--gold  { background: var(--gold); }
.phone-notif__dot--red   { background: var(--red); }
.phone-notif > div { flex: 1; min-width: 0; }
.phone-notif strong { display: block; font-size: 10px; font-weight: 600; }
.phone-notif span { display: block; font-size: 9px; color: var(--text-muted); line-height: 1.4; }
.phone-notif em { font-size: 8.5px; font-style: normal; color: var(--text-muted); flex-shrink: 0; }

.phone__more { margin-top: auto; padding-top: 12px; text-align: center; font-size: 10px; color: var(--text-secondary); }

/* App benefits */
.app__benefits { display: flex; flex-direction: column; gap: 14px; }
.app-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all var(--transition);
}
.app-benefit:hover { background: var(--bg-card-elev); border-color: var(--border-hover); }
.app-benefit__icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
  background: var(--bg-alt);
}
.app-benefit h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.app-benefit p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   INTEGRAÇÕES
   ============================================================ */
.integrations {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.integrations__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.integrations__all { margin-top: 16px; }

.integrations__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.int-tab {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  background: var(--bg-card);
  transition: all var(--transition);
}
.int-tab:hover { color: var(--text-primary); border-color: var(--border-hover); }
.int-tab--active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
  font-weight: 600;
}

.int-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.int-panel--active { display: grid; }

.int-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  transition: all var(--transition);
}
.int-card:hover { background: var(--bg-card-elev); border-color: var(--border-hover); }
.int-card--wide { grid-column: 1 / -1; min-height: 150px; }

.int-card__badge {
  position: absolute;
  top: -10px; left: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 5px;
  padding: 3px 9px;
}

.int-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.int-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }

.int-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: opacity var(--transition);
}
.int-card__link:hover { opacity: 0.7; }

.int-card__logo {
  margin-top: auto;
  align-self: flex-end;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1;
}
.int-card__logo small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: right;
}

.int-card--soon h4 { color: var(--gold); }

/* ============================================================
   CTA GOLD
   ============================================================ */
.cta-gold { padding: 40px 0 96px; background: var(--bg); }

.cta-gold__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 44px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: 0 0 40px var(--gold-glow), inset 0 0 60px rgba(212,175,55,0.03);
}

.cta-gold__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
  background: var(--bg-alt);
}

.cta-gold__text { flex: 1; min-width: 240px; }
.cta-gold__text h2 {
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.cta-gold__text p { font-size: 14px; color: var(--text-secondary); }

/* ============================================================
   FINAL — 4 BLOCOS
   ============================================================ */
.final {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.final__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.final-block h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.3;
  margin-bottom: 22px;
}

/* models */
.final-block__models { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  transition: all var(--transition);
}
.model-card:hover { background: var(--bg-card-elev); border-color: var(--border-hover); }
.model-card svg { color: var(--gold); margin-bottom: 10px; }
.model-card h5 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.model-card p { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* steps */
.final-block__steps { display: flex; flex-direction: column; gap: 14px; }
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all var(--transition);
}
.step-item:hover { background: var(--bg-card-elev); }
.step-item__num {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1.2;
  flex-shrink: 0;
}
.step-item h5 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.step-item p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* quotes */
.final-block__quotes { display: flex; flex-direction: column; gap: 12px; }
.quote-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all var(--transition);
}
.quote-item:hover { background: var(--bg-card-elev); }
.quote-item > p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.quote-item__author { display: flex; align-items: center; gap: 10px; }
.quote-item__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-item__author strong { display: block; font-size: 12.5px; font-weight: 600; }
.quote-item__author em { font-size: 11px; font-style: normal; color: var(--text-muted); }

/* faq */
.final-block__faq { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 16px;
  color: var(--text-primary);
  transition: background var(--transition);
}
.faq-item__q:hover { background: var(--bg-card-elev); }
.faq-item__q span {
  color: var(--gold);
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-item__q span { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__a p {
  padding: 0 16px 14px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border-subtle); }

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.footer__slogan {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text-primary); }

.footer__divider { width: 100%; height: 1px; background: var(--border-subtle); }

.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--text-primary); }

/* ============================================================
   PÁGINAS LEGAIS (Termos de Uso / Privacidade)
   ============================================================ */
.legal-hero {
  padding: 128px 0 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.legal-hero__title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.legal-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.legal-hero__updated {
  font-size: 13px;
  color: var(--text-muted);
}
.legal-hero__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: var(--gold-glow);
  border-radius: 5px;
  padding: 3px 9px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0 96px;
}

/* Sumário lateral */
.legal-toc {
  position: sticky;
  top: 96px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 18px 6px 18px 18px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
}
.legal-toc h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-toc a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 10px;
  margin-right: 12px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}
.legal-toc a:hover { color: var(--text-primary); background: var(--accent-glow); }
.legal-toc a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-glow);
  font-weight: 500;
}

/* Conteúdo */
.legal-content { min-width: 0; max-width: 820px; }

.legal-content section { margin-bottom: 48px; scroll-margin-top: 96px; }

.legal-content h2 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-content h2 span { color: var(--gold); margin-right: 8px; }

.legal-content h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin: 22px 0 10px;
}

.legal-content p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content p strong { color: var(--text-primary); font-weight: 600; }

.legal-content ul {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-content ul li strong { color: var(--text-primary); font-weight: 600; }

/* Caixa de destaque (ex.: antifraude) */
.legal-callout {
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: 0 0 28px var(--gold-glow);
  padding: 22px 24px;
  margin: 20px 0 24px;
}
.legal-callout--danger { border-color: rgba(239,68,68,0.5); box-shadow: none; }
.legal-callout h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 10px;
}
.legal-callout h4 svg { color: var(--gold); flex-shrink: 0; }
.legal-callout--danger h4 svg { color: var(--red); }
.legal-callout p { font-size: 13.5px; margin-bottom: 10px; }
.legal-callout p:last-child { margin-bottom: 0; }

/* Tabela simples */
.legal-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0 20px;
  font-size: 13.5px;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  line-height: 1.6;
  vertical-align: top;
}
.legal-table th {
  background: var(--bg-card-elev);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 12.5px;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table-wrap { overflow-x: auto; }

/* Navegação entre documentos */
.legal-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 960px) {
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; max-height: none; }
}
@media (max-width: 600px) {
  .legal-hero { padding: 104px 0 36px; }
  .legal-layout { padding: 40px 0 64px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up--delay { transition-delay: 0.15s; }

/* ============================================================
   RESPONSIVE — NOTEBOOK (≤ 1360px)
   ============================================================ */
@media (max-width: 1360px) {
  /* Fluxo: intro em cima, etapas com largura total */
  .flow__inner { grid-template-columns: 1fr; gap: 36px; }
  .flow__intro { max-width: 640px; }
}

/* ============================================================
   RESPONSIVE — DESKTOP MÉDIO (≤ 1200px)
   ============================================================ */
@media (max-width: 1200px) {
  /* Pagamentos: título em cima, cards com largura total */
  .payments__top { grid-template-columns: 1fr; gap: 32px; }

  .api__inner { grid-template-columns: 1fr 1.4fr; }
  .api__intro { grid-column: 1 / -1; max-width: 560px; }

  .app__inner { grid-template-columns: 1fr 1fr; }
  .app__intro { grid-column: 1 / -1; max-width: 560px; }

  .final__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — NOTEBOOK PEQUENO / TABLET LANDSCAPE (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  /* Navbar: menu hamburger (o menu completo não cabe) */
  .navbar__nav { display: none; }
  .hamburger { display: flex; }

  .navbar__nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .navbar__nav-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .navbar__item {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    justify-content: flex-start;
  }
  .navbar__actions {
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 10px;
  }
  .navbar__actions .btn { width: 100%; justify-content: center; }

  .navbar__inner { position: relative; justify-content: center; }
  .navbar__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .navbar__right { position: absolute; right: 20px; }

  /* Fluxo: etapas quebram em 3 + 2 */
  .flow__steps { flex-wrap: wrap; }
  .flow-step { flex: 1 1 calc(33% - 20px); min-width: 180px; }
  .flow__arrow { display: none; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  /* Hero */
  .hero__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero__desc { max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__social-proof { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__dashboard-card { animation: none; }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }
  .stats__item:nth-child(3) { border-right: 1px solid var(--border-subtle); }

  /* Payments */
  .payments__grid { grid-template-columns: repeat(2, 1fr); }
  .payments__row { grid-template-columns: repeat(2, 1fr); }

  /* Flow */
  .flow-step { flex: 1 1 calc(50% - 10px); }
  .flow__features { grid-template-columns: repeat(2, 1fr); }
  .flow__retry-chain { justify-content: flex-start; }

  /* API */
  .api__inner { grid-template-columns: 1fr; }
  .api__side { flex-direction: row; flex-wrap: wrap; }
  .api-side-card { flex: 1 1 240px; }

  /* App */
  .app__inner { grid-template-columns: 1fr; }
  .app__phones { flex-wrap: wrap; }

  /* Integrations */
  .int-panel { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .hero { padding: 104px 0 56px; }
  .hero__title { letter-spacing: -0.8px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item {
    padding: 20px 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .stats__value { font-size: 20px; }
  .stats__value--text { font-size: 16px; }
  .stats__label { font-size: 11.5px; }

  .payments { padding: 64px 0; }
  .payments__grid { grid-template-columns: 1fr; }
  .payments__row { grid-template-columns: 1fr; }

  .flow { padding: 64px 0; }
  .flow-step { flex: 1 1 100%; }
  .flow__retry { flex-direction: column; align-items: flex-start; }
  .flow__features { grid-template-columns: 1fr; }

  .api { padding: 64px 0; }
  .api__code { font-size: 11px; }

  .app { padding: 64px 0; }
  .phone { width: 200px; }
  .phone--second { margin-top: 0; }

  .integrations { padding: 64px 0; }
  .int-panel { grid-template-columns: 1fr; }

  .cta-gold { padding: 24px 0 64px; }
  .cta-gold__inner { flex-direction: column; text-align: center; padding: 32px 24px; }

  .final { padding: 64px 0; }
  .final__grid { grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__bottom-links { justify-content: center; gap: 12px; }
}
