/* dividi – main.css | Mobile-first, conversion-optimized */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

@supports (padding: max(0px)) {
  html {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --primary: #6d28d9;
  --primary-light: #7c3aed;
  --secondary: #a855f7;
  --secondary-light: #c084fc;

  --bg: #f5f3f9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --surface-subtle: #efedf4;
  --surface-dark: #15111d;
  --surface-dark-soft: #1c1726;

  --border: rgba(42, 23, 84, 0.08);
  --border-strong: rgba(42, 23, 84, 0.14);
  --border-accent: rgba(109, 40, 217, 0.14);

  --text: #181321;
  --text-muted: #554e63;
  --text-soft: #7a728d;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.78);
  --text-on-dark-soft: rgba(255, 255, 255, 0.58);

  --shadow-xs: 0 1px 2px rgba(15, 11, 24, 0.04);
  --shadow-sm: 0 8px 24px rgba(21, 17, 29, 0.06);
  --shadow-md: 0 18px 40px rgba(21, 17, 29, 0.08);
  --shadow-lg: 0 28px 72px rgba(21, 17, 29, 0.12);
  --shadow-xl: 0 36px 96px rgba(21, 17, 29, 0.16);

  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --max-width: 1200px;
  --section-px: clamp(1rem, 4vw, 2rem);
  --section-py: clamp(3.5rem, 8vw, 6rem);
  --header-height: 72px;
  --nav-inline-gap: 1.5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  --duration-fast: 160ms;
  --duration-base: 240ms;
  --duration-slow: 400ms;

  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --glass-highlight: inset 0 1px 0 0 rgba(255, 255, 255, 0.65);
}

/* ── Base ──────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at top center, rgba(124, 58, 237, 0.08), transparent 32%),
    linear-gradient(180deg, #faf9fc 0%, #f5f3f9 100%);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* ── Skip link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: white;
  border-radius: 0 0 var(--radius-xs) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.site-toast {
  position: fixed;
  left: 50%;
  top: calc(env(safe-area-inset-top, 0px) + var(--header-height, 72px) + 0.5rem);
  bottom: auto;
  z-index: 10050;
  width: min(24rem, calc(100vw - 2 * var(--section-px)));
  max-width: calc(100vw - 2 * var(--section-px));
  padding: 0.82rem 1.1rem 0.85rem 1.05rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  box-shadow:
    var(--glass-highlight),
    var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(-50%, calc(-100% - 1.25rem), 0);
  opacity: 0;
  transition:
    transform var(--duration-base) var(--ease-out),
    opacity var(--duration-base) ease;
  -webkit-tap-highlight-color: transparent;
}

.site-toast.site-toast--dividi {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 1rem 1.15rem 1.05rem;
  background:
    linear-gradient(155deg, rgba(250, 245, 255, 0.97) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(253, 242, 248, 0.95) 100%);
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-left: 4px solid var(--primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 0 rgba(109, 40, 217, 0.06),
    0 16px 40px rgba(109, 40, 217, 0.12);
}

.site-toast.site-toast--visible {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
}

.site-toast__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.site-toast--dividi .site-toast__inner {
  align-self: center;
  width: 100%;
}

.site-toast__line {
  margin: 0;
  max-width: 100%;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.site-toast--dividi .site-toast__line {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text);
}

.site-toast__line--muted {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0;
}

.site-toast--dividi .site-toast__line--muted {
  font-family: var(--font-body);
}

.site-toast__actions {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(109, 40, 217, 0.1);
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-toast__ok {
  min-height: 44px;
  min-width: 5.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .site-toast {
    transition-duration: 0.01ms;
  }
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-download-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ── Page wrapper ──────────────────────────────────────── */
.page-wrapper {
  position: relative;
  overflow: clip;
}

@media (min-width: 1024px) {
  .page-wrapper::before,
  .page-wrapper::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    will-change: transform;
  }
  .page-wrapper::before {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -180px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 80%);
    animation: floatOrb 22s infinite alternate var(--ease-in-out);
  }
  .page-wrapper::after {
    width: 520px;
    height: 520px;
    top: 10%;
    right: -220px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 80%);
    animation: floatOrb2 26s infinite alternate-reverse var(--ease-in-out);
  }
  @keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 120px) scale(1.08); }
  }
  @keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 60px) scale(1.04); }
  }
}

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: max(0.75rem, env(safe-area-inset-top)) var(--section-px) 0.75rem;
  background: rgba(245, 243, 249, 0.82);
  border-bottom: 1px solid rgba(24, 19, 33, 0.06);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(245, 243, 249, 0.94);
  border-bottom-color: rgba(24, 19, 33, 0.08);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(21, 17, 29, 0.06);
}

.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--duration-fast) ease;
}
.logo-brand:hover { opacity: 0.8; }
.logo-brand img,
.logo-brand picture { border-radius: 8px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #271a46;
  letter-spacing: -0.02em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--nav-inline-gap);
}

.nav-links {
  display: none;
  align-items: center;
  list-style: none;
  gap: var(--nav-inline-gap);
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--duration-fast) ease;
}
.nav-links a:hover { color: var(--primary); }

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  padding: 3px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xs);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.65rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition:
    background var(--duration-fast) ease,
    color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}
.lang-btn.active {
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(21, 17, 29, 0.08);
}

.nav-download-btn {
  display: none;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-xs);
  transition: background var(--duration-fast) ease;
}
.mobile-menu-toggle:hover { background: rgba(109, 40, 217, 0.06); }
.mobile-menu-toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-base) var(--ease-out);
}
.mobile-menu-toggle .menu-icon-open { opacity: 1; transform: rotate(0deg) scale(1); }
.mobile-menu-toggle .menu-icon-close { opacity: 0; transform: rotate(-45deg) scale(0.7); }
.mobile-menu-toggle.active .menu-icon-open { opacity: 0; transform: rotate(45deg) scale(0.7); }
.mobile-menu-toggle.active .menu-icon-close { opacity: 1; transform: rotate(0deg) scale(1); }

/* Mobile menu drawer */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem 1.1rem;
  border-top: 1px solid var(--border);
  background: rgba(245, 243, 249, 0.98);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 20px 48px rgba(21, 17, 29, 0.08);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-menu-links a,
.mobile-menu-cta {
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    background 140ms ease,
    color 140ms ease;
}
.mobile-menu.open .mobile-menu-links li:nth-child(1) a { opacity: 1; transform: none; transition-delay: 0.04s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) a { opacity: 1; transform: none; transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) a { opacity: 1; transform: none; transition-delay: 0.12s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) a { opacity: 1; transform: none; transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu-links li:nth-child(5) a { opacity: 1; transform: none; transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-cta { opacity: 1; transform: none; transition-delay: 0.24s; }

.mobile-menu-links a {
  display: block;
  padding: 0.7rem 0.5rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.97rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
}
.mobile-menu-links a:hover { background: rgba(109, 40, 217, 0.05); color: var(--primary); }

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.2);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════ */
main section {
  padding: 0 var(--section-px);
}

#features,
#showcase,
#social-proof,
#faq,
#download {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.hero-shell,
.features-grid,
.showcase-container,
.faq-grid,
.cta-shell,
.footer-inner,
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.12);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1f172f;
  margin-bottom: 0.8rem;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.82rem 1.35rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
  will-change: transform;
}
.btn .icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(109, 40, 217, 0.26);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(109, 40, 217, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(24, 19, 33, 0.12);
  box-shadow: none;
}
.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(24, 19, 33, 0.18);
}
.btn-secondary:active { transform: translateY(0); }

.btn-store-light {
  background: white;
  color: #1e0d3a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 12px 32px rgba(0, 0, 0, 0.12);
}
.btn-store-light:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18), 0 20px 40px rgba(0, 0, 0, 0.16);
}
.btn-store-light:active {
  transform: translateY(1px) scale(0.96);
}

.btn-store-light-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-store-light-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px) scale(1.02);
}
.btn-store-light-secondary:active { transform: translateY(1px) scale(0.96); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero-section {
  padding-top: 1rem;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(124, 58, 237, 0.18), transparent 18%),
    linear-gradient(180deg, #181222 0%, #15111d 100%);
  color: var(--text-on-dark);
}

.hero-shell {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0 3.5rem;
}

.hero-copy {
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
  margin: 0 auto 1rem;
  max-width: 13ch;
}

.hero-title-highlight {
  color: #d5b8ff;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin: 0 auto 1.4rem;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 360px;
  margin: 0 auto;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-device-stage {
  position: relative;
  width: min(100%, 280px);
  max-width: 320px;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.hero-device-glow {
  display: block;
  position: absolute;
  inset: auto 8% 8% 8%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.6) 0%, rgba(168, 85, 247, 0.4) 35%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  transform: scaleY(0.5);
}

.hero-image-card-device {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  filter:
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25))
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3))
    drop-shadow(0 50px 100px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 80px rgba(124, 58, 237, 0.15));
  transition: transform 400ms var(--ease-out);
}

.hero-image-card-device:hover {
  transform: translateY(-4px) scale(1.01);
}

.hero-image-card-device-inner {
  overflow: hidden;
  border-radius: 36px;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  background: transparent;
}

.hero-image-card-device-inner picture {
  display: block;
  line-height: 0;
}

.hero-image-card-device img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0;
}


.hero-download-btn {
  width: auto;
  max-width: 240px;
}

.hero-secondary-btn {
  min-width: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-on-dark);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 1.65rem 1.5rem 1.55rem;
  background: var(--surface-solid);
  border: 1px solid rgba(24, 19, 33, 0.07);
  border-radius: 24px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.035),
    0 10px 28px rgba(21, 17, 29, 0.06),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-fast) ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, transparent 55%);
  z-index: -1;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.55), rgba(168, 85, 247, 0.35) 60%, transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left center;
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.04),
    0 18px 38px rgba(109, 40, 217, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(109, 40, 217, 0.2);
}
.feature-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(168, 85, 247, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(109, 40, 217, 0.14);
  margin-bottom: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 4px 12px rgba(109, 40, 217, 0.1);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}
.feature-card:hover .feature-icon {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(109, 40, 217, 0.18);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.62;
  max-width: 40ch;
}

/* ═══════════════════════════════════════════════════════
   SHOWCASE (Bento Grid)
   ═══════════════════════════════════════════════════════ */
.showcase-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background:
    radial-gradient(circle at top center, rgba(124, 58, 237, 0.12), transparent 24%),
    linear-gradient(180deg, #17121f 0%, #120f19 100%);
  color: var(--text-on-dark);
}

.showcase-bento {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.showcase-section .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.showcase-section .section-title {
  color: var(--text-on-dark);
}

.showcase-section .section-subtitle {
  color: var(--text-on-dark-muted);
}

.bento-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 20px 40px -10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-fast) ease;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 12px -2px rgba(0, 0, 0, 0.12),
    0 4px 8px -2px rgba(0, 0, 0, 0.08),
    0 30px 60px -12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.95);
}

.bento-card-copy h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.bento-card-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.bento-card-widget {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Widget: Balance */
.widget-balance {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.06), rgba(192, 132, 252, 0.05));
  border: 1px solid rgba(109, 40, 217, 0.08);
}
.widget-balance-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.widget-balance-amount {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.widget-balance-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Widget: Badges */
.widget-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.widget-badge-paid {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.widget-badge-pending {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.widget-badge-fixed {
  background: rgba(109, 40, 217, 0.08);
  color: var(--primary);
}
.widget-badge-variable {
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
}
.widget-badge-shared {
  background: rgba(109, 40, 217, 0.08);
  color: var(--primary);
  align-self: flex-start;
}

/* Widget: Transactions */
.widget-transactions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.widget-tx-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.widget-due-chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.widget-tx {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.06);
}
.widget-tx-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
}
.widget-tx-icon svg { width: 16px; height: 16px; }
.widget-tx-icon-home { background: rgba(109, 40, 217, 0.08); color: var(--primary); }
.widget-tx-icon-food { background: rgba(236, 72, 153, 0.08); color: var(--secondary); }
.widget-tx-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.widget-tx-amount {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* Widget: expense division (joint — like app Gastos) */
.widget-division {
  padding: 0.75rem 1rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(24, 16, 46, 0.08);
  box-shadow: 0 1px 3px rgba(24, 16, 46, 0.04);
}
.widget-division-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.widget-division-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.widget-division-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.widget-division-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.35rem;
  border-radius: 10px;
  background: rgba(109, 40, 217, 0.12);
  color: #7c3aed;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.widget-division-avatar-alt {
  background: rgba(236, 72, 153, 0.12);
  color: #db2777;
}
.widget-division-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.widget-division-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.widget-division-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-size: 0.72rem;
  line-height: 1.35;
}
.widget-division-paid span,
.widget-division-pending span {
  font-weight: 600;
  color: var(--text-soft);
}
.widget-division-paid strong {
  font-weight: 800;
  color: #16a34a;
  font-variant-numeric: tabular-nums;
}
.widget-division-pending strong {
  font-weight: 800;
  color: #d97706;
  font-variant-numeric: tabular-nums;
}

/* Widget: Budget Bars */
.widget-budget-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(192, 132, 252, 0.08));
  border: 1px solid rgba(109, 40, 217, 0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.widget-budget-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.widget-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}
.widget-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.widget-bar-value {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}
.widget-bar-value-over { color: #dc2626; }
.widget-bar-track {
  height: 8px;
  border-radius: 4px;
  background: rgba(109, 40, 217, 0.06);
  overflow: hidden;
}
.widget-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 600ms var(--ease-out);
}
.widget-bar-fill-red { background: linear-gradient(90deg, #ef4444, #dc2626); }
.widget-bar-fill-yellow { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.widget-bar-fill-green { background: linear-gradient(90deg, #34d399, #10b981); }

/* Widget: Credit Card */
.widget-credit-card {
  max-width: 280px;
  aspect-ratio: 1.586;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--secondary-light));
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.widget-credit-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.widget-cc-chip {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  margin-bottom: auto;
}
.widget-cc-number {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}
.widget-cc-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Widget: Quick Access (Joint Account) */
.widget-quick-access {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.06);
  overflow-x: auto;
}
.widget-qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
  padding: 0.45rem 0.2rem;
  border-radius: 10px;
  transition: background var(--duration-fast) ease;
}
.widget-qa-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-soft);
  flex-shrink: 0;
}
.widget-qa-item span {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.widget-qa-item-active {
  background: rgba(109, 40, 217, 0.08);
}
.widget-qa-item-active svg { color: var(--primary); }
.widget-qa-item-active span { color: var(--primary); font-weight: 700; }
.widget-qa-item-highlight svg { color: var(--primary); opacity: 0.7; }
.widget-qa-item-highlight span { color: var(--primary); font-weight: 600; }

.bento-joint .bento-card-widget {
  position: relative;
}
.bento-joint .widget-quick-access {
  position: relative;
  overflow: visible;
}
.bento-joint .widget-quick-access::before,
.bento-joint .widget-quick-access::after {
  content: '';
  position: absolute;
  width: 1.5px;
  background: var(--primary);
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
}
.bento-joint .widget-quick-access::before {
  left: 10%;
  bottom: calc(100% + 1px);
  height: calc(0.75rem - 2px);
}
.bento-joint .widget-quick-access::after {
  left: 50%;
  top: calc(100% + 1px);
  height: calc(0.75rem - 2px);
}
.bento-joint .widget-division {
  position: relative;
  border-left: 2.5px solid var(--primary);
}
.bento-joint .widget-transfer-tip {
  position: relative;
  border-left: 2.5px solid var(--primary);
  border-left-color: rgba(109, 40, 217, 0.5);
}

/* Widget: Transfer Tip */
.widget-transfer-tip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.06), rgba(192, 132, 252, 0.05));
  border: 1px solid rgba(109, 40, 217, 0.1);
}
.widget-transfer-tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(109, 40, 217, 0.1);
  flex-shrink: 0;
}
.widget-transfer-tip-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.widget-transfer-tip-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.widget-transfer-tip-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.widget-transfer-tip-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.widget-transfer-tip-value strong {
  font-weight: 800;
  color: var(--primary);
}

/* Widget: Budget subcategories */
.widget-bar-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
  margin-top: 0.35rem;
  padding-left: 0.1rem;
}
.widget-bar-subs span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.widget-bar-subs span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-soft);
  opacity: 0.4;
}

/* Widget: Budget Adjust CTA */
.widget-budget-adjust {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 0.25rem;
  pointer-events: none;
}
.widget-budget-adjust svg {
  width: 14px;
  height: 14px;
}

/* Widget: Goal Card */
.widget-goal-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.08);
}
.widget-goal-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.widget-goal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.1);
  flex-shrink: 0;
}
.widget-goal-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.widget-goal-info {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.widget-goal-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}
.widget-goal-subtitle {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.widget-goal-amount {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.widget-goal-saved-label {
  font-size: 0.68rem;
  color: var(--text-soft);
}
.widget-goal-saved {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.widget-goal-remaining {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.widget-goal-progress {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.widget-goal-bar-track {
  height: 10px;
  border-radius: 5px;
  background: rgba(109, 40, 217, 0.08);
  overflow: hidden;
}
.widget-goal-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--primary), #06b6d4);
  transition: width 600ms var(--ease-out);
}
.widget-goal-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.widget-goal-motivation {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
}
.widget-goal-pct {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
}

.widget-goal-deadline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-xs);
  background: rgba(109, 40, 217, 0.05);
}
.widget-goal-deadline svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}
.widget-goal-deadline span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.widget-goal-deadline strong {
  font-weight: 700;
  color: var(--text);
}

.widget-goal-completed {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-xs);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.12);
}
.widget-goal-completed svg {
  width: 16px;
  height: 16px;
  color: #16a34a;
  flex-shrink: 0;
}
.widget-goal-completed span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-goal-completed strong {
  color: #16a34a;
}

/* Widget: Grouped Transactions (Cards) */
.widget-grouped-tx {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.widget-tx-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.widget-tx-group-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.widget-tx-group-badge-personal {
  background: rgba(109, 40, 217, 0.1);
  color: var(--primary);
}
.widget-tx-group-badge-joint {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.widget-tx-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.widget-tx-icon-media { background: rgba(6, 182, 212, 0.08); color: #0891b2; }
.widget-tx-icon-health { background: rgba(34, 197, 94, 0.08); color: #16a34a; }

/* Widget: Cards Columns (card+tx left, chart right) */
.widget-cards-columns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.widget-cards-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Widget: Category Chart */
.widget-category-chart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.06);
}
.widget-category-chart-header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 100%;
}
.widget-category-chart-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}
.widget-category-chart-total {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.widget-donut-ring {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.widget-category-legend {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  min-width: 0;
}
.widget-category-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  margin-right: 0.2rem;
  vertical-align: middle;
}
.widget-category-legend strong {
  font-weight: 700;
  color: var(--text-soft);
  margin-left: 0.1rem;
}

/* Widget: Smart Columns (Copiar Gastos + Evolução) */
.widget-smart-columns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* -- Copiar Gastos -- */
.widget-copy-expenses {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.widget-copy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-copy-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.widget-copy-month {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.widget-copy-summary {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-copy-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.widget-copy-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.widget-copy-badge-var {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}
.widget-copy-badge-fix {
  background: rgba(109, 40, 217, 0.1);
  color: var(--primary);
}
.widget-copy-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
}
.widget-copy-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
}
.widget-copy-val {
  margin-left: auto;
  color: var(--text-muted);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.widget-copy-badge-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.widget-copy-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.58rem;
  font-weight: 600;
  color: #d97706;
}
.widget-copy-hint svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.widget-copy-hint-always {
  color: var(--primary);
}
.widget-copy-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.widget-copy-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.45rem;
  margin-top: 0.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-copy-total strong {
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.widget-copy-cta {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary-light));
  margin-top: 0.25rem;
}

/* -- Evolução de Gastos -- */
.widget-evolution {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.widget-evo-header {
  display: flex;
  align-items: center;
}
.widget-evo-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.widget-evo-months {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.widget-evo-months span {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-transform: lowercase;
}
.widget-evo-month-active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}
.widget-evo-metrics {
  display: flex;
  gap: 0.5rem;
}
.widget-evo-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
}
.widget-evo-metric-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-evo-metric-value {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.widget-evo-chart {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.widget-evo-svg {
  width: 100%;
  height: auto;
}
.widget-evo-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-evo-legend {
  display: flex;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-evo-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  margin-right: 0.2rem;
  vertical-align: middle;
}

/* Widget: Offline (panel7) */
.bento-offline .bento-card-widget {
  gap: 0.75rem;
}

.bento-new-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(109, 40, 217, 0.12));
  border: 1px solid rgba(236, 72, 153, 0.2);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.widget-offline-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(109, 40, 217, 0.14);
}
.widget-offline-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(109, 40, 217, 0.12);
  flex-shrink: 0;
}
.widget-offline-chip-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.widget-offline-chip-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.widget-offline-chip-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.widget-offline-chip-counter {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.widget-sync-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.95rem 1rem 0.85rem;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(24, 16, 46, 0.08);
  box-shadow: 0 1px 3px rgba(24, 16, 46, 0.04);
}
.widget-sync-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.widget-sync-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), #ec4899);
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(236, 72, 153, 0.22);
}
.widget-sync-icon svg {
  width: 18px;
  height: 18px;
}
.widget-sync-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.widget-sync-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.widget-sync-step {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}
.widget-sync-current {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-xs);
  background: rgba(109, 40, 217, 0.05);
  border: 1px solid rgba(109, 40, 217, 0.08);
}
.widget-sync-current-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  flex-shrink: 0;
}
.widget-sync-current-icon svg {
  width: 14px;
  height: 14px;
}
.widget-sync-current-body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.widget-sync-current-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}
.widget-sync-current-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-soft);
}
.widget-sync-progress-track {
  height: 8px;
  border-radius: 4px;
  background: rgba(109, 40, 217, 0.08);
  overflow: hidden;
}
.widget-sync-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), #ec4899);
  transition: width 600ms var(--ease-out);
}
.widget-sync-done {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════ */
.social-proof-section {
  position: relative;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: linear-gradient(180deg, #f6f3fb 0%, #efeaf7 100%);
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(900px, 110%);
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(124, 58, 237, 0.14) 0%,
    rgba(124, 58, 237, 0.05) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.social-proof-section > * {
  position: relative;
  z-index: 1;
}

.social-proof-rating {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: -0.25rem auto 2.25rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--surface-solid);
  border: 1px solid rgba(24, 19, 33, 0.08);
  box-shadow:
    0 1px 3px rgba(24, 19, 33, 0.04),
    0 14px 30px rgba(109, 40, 217, 0.08);
  width: fit-content;
  max-width: calc(100% - 2 * var(--section-px));
}

.social-proof-rating-left {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    rgba(236, 72, 153, 0.1)
  );
}

.social-proof-rating-score {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.social-proof-rating-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: var(--primary);
}

.social-proof-rating-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-proof-rating-divider {
  width: 1px;
  height: 18px;
  background: rgba(24, 19, 33, 0.12);
}

.social-proof-rating-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.005em;
}

/* Wall of marquee testimonials */

.testimonials-wall {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: calc(100% + 2 * var(--section-px));
  margin-left: calc(-1 * var(--section-px));
  margin-right: calc(-1 * var(--section-px));
  padding: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.testimonials-wall-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.testimonials-wall-track {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  width: max-content;
  padding: 0.25rem 0;
  animation-name: testimonials-marquee;
  animation-duration: 55s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.testimonials-wall-row--reverse .testimonials-wall-track {
  animation-duration: 68s;
  animation-direction: reverse;
}

@keyframes testimonials-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 0.5rem), 0, 0);
  }
}

.testimonials-wall:hover .testimonials-wall-track,
.testimonials-wall:focus-within .testimonials-wall-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-wall-track {
    animation: none;
    transform: none;
  }

  .testimonials-wall {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .testimonials-wall::-webkit-scrollbar {
    display: none;
  }
}

/* Testimonial cards — calm, premium, consistent */

.testimonial-card {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  padding: 1.35rem 1.45rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(24, 19, 33, 0.07);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(24, 19, 33, 0.04),
    0 8px 22px rgba(24, 19, 33, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition:
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow:
    0 2px 4px rgba(24, 19, 33, 0.04),
    0 16px 36px rgba(109, 40, 217, 0.12);
}

.testimonial-card[data-clone='true'] {
  pointer-events: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.testimonial-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(24, 19, 33, 0.06);
}

.testimonial-avatar--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: rgba(109, 40, 217, 0.12);
  color: #7c3aed;
}

.testimonial-avatar--icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.testimonial-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #2d2839;
  font-weight: 500;
  font-style: normal;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-source::before {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

/* Footer CTA */

.social-proof-footer {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.social-proof-footer-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color var(--duration-base) var(--ease-out);
}

.social-proof-footer-link:hover {
  color: var(--primary-hover, var(--secondary));
}

.social-proof-footer-plain {
  color: inherit;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--bg);
}

.faq-grid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 19, 33, 0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(21, 17, 29, 0.03);
  transition:
    background var(--duration-base) ease,
    box-shadow var(--duration-base) ease,
    border-color var(--duration-base) ease;
}
.faq-item:hover {
  border-color: rgba(109, 40, 217, 0.18);
  box-shadow: 0 6px 18px rgba(21, 17, 29, 0.06);
}
.faq-item[open] {
  background: #ffffff;
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow:
    0 12px 32px rgba(109, 40, 217, 0.1),
    0 1px 3px rgba(21, 17, 29, 0.04);
}
.faq-item[open]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary-light));
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--duration-fast) ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(109, 40, 217, 0.14);
  background-color: rgba(109, 40, 217, 0.09);
  background-image:
    linear-gradient(var(--primary), var(--primary)),
    linear-gradient(var(--primary), var(--primary));
  background-size: 12px 2px, 2px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition:
    background-color var(--duration-base) ease,
    border-color var(--duration-base) ease;
}
.faq-item summary:hover::after {
  background-color: rgba(109, 40, 217, 0.14);
  border-color: rgba(109, 40, 217, 0.22);
}
.faq-item[open] summary::after {
  background-color: var(--primary);
  border-color: var(--primary);
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 12px 2px;
  background-position: center;
  background-repeat: no-repeat;
}
.faq-item summary:hover { color: var(--primary); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-slow) var(--ease-out);
}
.faq-item[open] .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════ */
.cta-section {
  padding-top: 2rem;
  padding-bottom: var(--section-py);
}

.cta-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent 28%),
    linear-gradient(145deg, #17121f 0%, #20172d 100%);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.cta-shell::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -100px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 68%);
  pointer-events: none;
}
.cta-shell::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.cta-copy .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.4rem;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 0.8rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 auto;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.btn-cta-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  box-shadow: 0 14px 32px rgba(109, 40, 217, 0.22);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}
.btn-cta-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(109, 40, 217, 0.28);
}
.btn-cta-download:active {
  transform: translateY(0);
}

.cta-trust-badges {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.cta-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-trust-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.cta-legal {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  font-size: 0.84rem;
}
.cta-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}
.cta-legal a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: #f2f0f6;
  color: var(--text);
  padding: 3rem var(--section-px) 1.5rem;
  border-top: 1px solid rgba(24, 19, 33, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand { max-width: 340px; }
.footer-brand .logo-text { color: #3d2170; }
.footer-tagline {
  color: var(--text-soft);
  margin-top: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.15rem;
}
.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--duration-fast) ease;
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(24, 19, 33, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-disclaimer {
  margin: 0;
  max-width: min(32rem, 100%);
  padding-inline: 0.5rem;
  color: var(--text-soft);
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.footer-copyright {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(24, 19, 33, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  transition:
    background var(--duration-fast) ease,
    color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}
.footer-social-icon:hover {
  background: rgba(109, 40, 217, 0.08);
  color: var(--primary);
  border-color: rgba(109, 40, 217, 0.18);
}
.footer-social-icon svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--duration-base) ease,
    visibility var(--duration-base) ease,
    transform var(--duration-base) var(--ease-out),
    background var(--duration-fast) ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--surface-solid); box-shadow: var(--shadow-lg); }
.back-to-top svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════════════ */

/* Elementos sempre visíveis por padrão */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Animação suave quando JS adiciona a classe active */
.reveal.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 480ms var(--ease-out),
    transform 480ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion - desabilitar animações */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.animate-on-scroll,
  .reveal.animate-on-scroll.active {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════ */
.pricing-hero-section {
  padding: clamp(3.25rem, 8vw, 5.5rem) var(--section-px) 2.25rem;
  text-align: center;
}

.pricing-hero-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #1f172f;
  margin: 0.65rem auto 1rem;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
}

.pricing-hero-title-line {
  color: #1f172f;
  display: inline;
}

.pricing-hero-brand {
  color: #1f172f;
  display: inline;
  font-weight: 800;
}

.pricing-hero-price-lead {
  font-weight: 800;
}

.pricing-title-highlight {
  display: inline;
  background: linear-gradient(135deg, var(--primary), var(--secondary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-hero-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.pricing-hero-inner p:not(.section-eyebrow) {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 0;
}

.pricing-hero-section .reveal,
.pricing-section .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  animation: none;
  will-change: auto;
}

.pricing-section {
  padding: 0 var(--section-px) var(--section-py);
}

.pricing-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.pricing-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 19, 33, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: none;
  border-radius: inherit;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  border-color: rgba(109, 40, 217, 0.18);
  background: linear-gradient(160deg, rgba(109, 40, 217, 0.07), rgba(192, 132, 252, 0.05));
}

.pricing-card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pricing-badge-free {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.pricing-badge-premium {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(192, 132, 252, 0.08));
  color: var(--primary);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.pricing-name-premium {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.pricing-name-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
  line-height: 1.1;
}

.pricing-price-period {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-soft);
  vertical-align: baseline;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2316a34a'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-features li.feature-limit::before {
  background-color: rgba(245, 158, 11, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d97706'%3E%3Cpath d='M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z'/%3E%3C/svg%3E");
}

.pricing-feature-pair-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  text-align: left;
}

.pricing-feature-pair-note {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-soft);
  font-weight: 500;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.pricing-cta:hover {
  transform: translateY(-1px);
}

.pricing-cta-free {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: 1px solid rgba(24, 19, 33, 0.12);
  box-shadow: var(--shadow-sm);
}

.pricing-cta-free:hover {
  box-shadow: var(--shadow-md);
}

.pricing-cta-premium {
  background: var(--primary);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.2);
}

.pricing-cta-premium:hover {
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.24);
}

.pricing-transition {
  max-width: 840px;
  margin: 2.75rem auto 0;
  padding: 2rem 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 19, 33, 0.09);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.pricing-transition h2,
.pricing-value-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1f172f;
  margin: 0.65rem 0 0.85rem;
  text-wrap: balance;
}

.pricing-transition p:last-child,
.pricing-value-header p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.pricing-detail-grid,
.pricing-value-grid {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .pricing-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricing-detail-card {
  height: 100%;
  padding: 1.45rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 19, 33, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-detail-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.28;
  color: #1f172f;
  letter-spacing: -0.02em;
}

.pricing-detail-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing-value-section {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.pricing-value-header {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.pricing-value-card {
  height: 100%;
  padding: 1.35rem 1.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 19, 33, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-value-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 0.65rem;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-value-title {
  display: block;
  margin: 0 0 0.5rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.32;
  color: #1f172f;
  letter-spacing: -0.02em;
}

.pricing-value-card p {
  margin: 0;
  padding: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing-value-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 0.25rem;
}

.pricing-value-cta .pricing-value-cta-btn {
  width: auto;
  max-width: min(100%, 22rem);
  min-width: min(100%, 12.5rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pricing-note {
  text-align: center;
  max-width: 800px;
  margin: 2.25rem auto 0;
  padding: 0 0.25rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.pricing-note-line {
  display: block;
}

.pricing-note-line + .pricing-note-line {
  margin-top: 0.35em;
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --header-height: 76px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-cards {
    grid-column: span 2;
  }
  .bento-smart {
    grid-column: span 2;
  }
  .bento-offline {
    grid-column: span 2;
  }
  .bento-offline .bento-card-widget {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 0.85rem;
    align-items: stretch;
  }
  .bento-offline .widget-offline-chip {
    align-self: stretch;
  }

  .cta-shell {
    padding: 3.5rem 3rem;
  }

  .footer-inner {
    grid-template-columns: 1.5fr repeat(4, auto);
    gap: 3rem;
  }

  .hero-ctas {
    max-width: none;
    align-items: center;
  }

  /* Hero melhorado para tablet */
  .hero-shell {
    gap: 2.5rem;
    padding: 2rem 0 3rem;
  }

  .hero-device-stage {
    width: min(100%, 300px);
    max-width: 340px;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — iPad/Tablet Grande (820px - 1023px)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 820px) and (max-width: 1023px) {
  :root { --header-height: 72px; }

  .hero-section {
    padding-top: 0.5rem;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 1.5rem;
    align-items: center;
    min-height: auto;
    padding: 1.5rem 0 2.5rem;
  }

  .hero-copy {
    text-align: left;
    max-width: none;
  }

  .hero-copy h1 {
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(2rem, 4vw, 2.6rem);
    max-width: 14ch;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
    max-width: 38ch;
  }

  .hero-ctas {
    margin: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }



  .showcase-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .bento-joint,
  .bento-cards,
  .bento-offline {
    grid-column: span 2;
  }

  .bento-personal,
  .bento-budget,
  .bento-goals,
  .bento-smart {
    grid-column: span 1;
  }

  .bento-card {
    padding: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --header-height: 80px; }

  .nav-links { display: flex; }
  .nav-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 1.2rem;
    white-space: nowrap;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 24px rgba(109, 40, 217, 0.18);
    transition:
      transform var(--duration-fast) var(--ease-out),
      box-shadow var(--duration-fast) var(--ease-out);
  }
  .nav-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(109, 40, 217, 0.22);
  }
  .nav-download-btn:active { transform: translateY(0); }

  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }

  /* Hero desktop refinements */
  .hero-section { padding-top: 1rem; }
  .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
    min-height: min(calc(100vh - var(--header-height)), 880px);
    min-height: min(calc(100dvh - var(--header-height)), 880px);
    padding: 2rem 0 3rem;
  }
  .hero-copy {
    text-align: left;
    max-width: 36rem;
  }
  .hero-copy h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: 15ch;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
  }
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.05rem;
    max-width: 42ch;
  }
  .hero-ctas {
    margin: 0;
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
    max-width: none;
  }
  .hero-download-btn {
    max-width: none;
    min-width: 180px;
  }
  .hero-secondary-btn {
    min-width: 180px;
  }

  .showcase-bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  .bento-joint { grid-column: span 7; }
  .bento-personal { grid-column: span 5; }
  .bento-budget { grid-column: span 5; }
  .bento-goals { grid-column: span 5; }
  .bento-cards { grid-column: span 7; }
  .bento-smart { grid-column: span 7; }
  .bento-offline { grid-column: span 12; }

  .bento-offline {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: center;
  }
  .bento-offline .bento-card-copy {
    display: flex;
    flex-direction: column;
  }
  .bento-offline .bento-card-widget {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 1rem;
    align-items: stretch;
  }
  .bento-offline .widget-offline-chip {
    align-self: stretch;
  }

  .widget-smart-columns {
    flex-direction: row;
    align-items: stretch;
  }
  .widget-copy-expenses,
  .widget-evolution {
    flex: 1;
    min-width: 0;
  }

  .widget-cards-columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .widget-cards-left {
    flex: 1;
    min-width: 0;
  }
  .widget-cards-left .widget-grouped-tx {
    flex-direction: column;
  }
  .widget-category-chart {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
  }
  .widget-category-chart-header {
    width: 100%;
  }
  .widget-category-legend {
    width: 100%;
  }

  .bento-card {
    padding: 2rem;
  }

  .cta-shell {
    padding: 4rem 3.5rem;
  }

  .feature-card,
  .bento-card,
  .testimonial-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .back-to-top { display: flex; }

  main { padding-bottom: 0; }
  body { margin-bottom: 0; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Mobile adjustments (< 768px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  body { margin-bottom: 85px; }

  main { padding-bottom: 1rem; }

  /* Hero mobile refinements */
  .hero-section {
    padding-top: 1.25rem;
  }

  .hero-shell {
    gap: 1.5rem;
    padding: 1.75rem 0 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    max-width: 14ch;
  }


  .hero-ctas {
    max-width: 320px;
  }

  /* Features section mobile */
  .features-section {
    padding-top: calc(var(--section-py) * 0.8);
    padding-bottom: calc(var(--section-py) * 0.8);
  }

  .features-grid {
    gap: 0.75rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  /* Showcase section mobile */
  .showcase-section {
    padding-top: calc(var(--section-py) * 0.8);
    padding-bottom: calc(var(--section-py) * 0.8);
  }

  .showcase-bento {
    gap: 0.875rem;
  }

  .bento-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  /* Social proof mobile */
  .social-proof-section {
    padding-top: calc(var(--section-py) * 0.8);
    padding-bottom: calc(var(--section-py) * 0.8);
  }

  .social-proof-rating {
    gap: 0.7rem;
    padding: 0.5rem 0.9rem 0.5rem 0.55rem;
  }

  .social-proof-rating-left {
    gap: 0.4rem;
    padding: 0.2rem 0.5rem;
  }

  .social-proof-rating-score {
    font-size: 1rem;
  }

  .social-proof-rating-stars svg {
    width: 13px;
    height: 13px;
  }

  .social-proof-rating-label {
    font-size: 0.78rem;
  }

  .testimonials-wall {
    gap: 0.85rem;
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 5%,
      #000 95%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 5%,
      #000 95%,
      transparent 100%
    );
  }

  .testimonials-wall-track {
    gap: 0.75rem;
    animation-duration: 45s;
  }

  .testimonials-wall-row--reverse .testimonials-wall-track {
    animation-duration: 55s;
  }

  .testimonial-card {
    width: 280px;
    padding: 1.15rem 1.2rem 1rem;
    border-radius: 18px;
    gap: 0.7rem;
  }

  .testimonial-card blockquote {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .testimonial-author-name {
    font-size: 0.85rem;
  }

  .social-proof-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  /* FAQ mobile */
  .faq-section {
    padding-top: calc(var(--section-py) * 0.8);
    padding-bottom: calc(var(--section-py) * 0.8);
  }

  .faq-item summary {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer-inner p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
  }

  /* CTA mobile */
  .cta-section {
    padding-top: 1.5rem;
    padding-bottom: calc(var(--section-py) * 0.8);
  }

  .cta-shell {
    padding: 2.5rem 1.25rem;
    margin: 0 0.5rem;
    border-radius: 24px;
  }

  /* Pricing page mobile */
  .pricing-hero-inner {
    max-width: 100%;
    padding: 0;
  }

  .pricing-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    max-width: 100%;
  }

  .pricing-hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }

  .pricing-hero-inner .pricing-hero-eyebrow.section-eyebrow {
    flex-direction: column;
    gap: 0.12rem;
    align-items: center;
    text-align: center;
  }

  .pricing-hero-eyebrow-line {
    display: block;
    line-height: 1.25;
    text-align: center;
  }

  /* Footer mobile */
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-inner {
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand {
    margin: 0 auto;
  }
  .footer-col { align-items: center; }

  /* Typography adjustments */
  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}
