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

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

:root {
  --black: #1c1c1c;
  --red: #e83636;
  --red-light: #ef7777;
  --gray: #f2f2f2;
  --white: #ffffff;
  --text-muted: #6b6b6b;
  --border: #e0e0e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'pacambeu', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
body.fade-in {
  animation: pageFadeIn 0.35s ease both;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-links {
  flex: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo-img {
  height: 120px;
  width: auto;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: 24px;
}

.nav-links a {
  color: rgba(28,28,28,0.6);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: 'pacambeu', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: rgba(28,28,28,0.7);
  border: 1.5px solid rgba(28,28,28,0.2);
}

.btn-ghost:hover { border-color: var(--black); color: var(--black); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover { background: #cc2d2d; transform: translateY(-1px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover { background: #333; }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 18px 42px; font-size: 17px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,54,54,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-shape-2 {
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,54,54,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,54,54,0.08);
  border: 1px solid rgba(232,54,54,0.25);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-eyebrow span { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}

.hero-trust-avatars span:first-child { margin-left: 0; background: #e83636; }
.hero-trust-avatars span:nth-child(2) { background: #c52d2d; }
.hero-trust-avatars span:nth-child(3) { background: #ef7777; color: var(--black); }

/* ─── HERO CARD ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-mockup {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, #e83636 0%, #c52020 100%);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 40px 80px rgba(232,54,54,0.3), 0 20px 40px rgba(0,0,0,0.4);
  transform: rotate(-4deg);
}

.card-mockup-2 {
  position: absolute;
  width: 300px;
  height: 188px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px;
  top: 30px;
  left: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: rotate(2deg);
}

.card-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border-radius: 5px;
  margin-bottom: 28px;
}

.card-number {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-logo-sm {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  text-align: right;
  line-height: 1.1;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-badge.badge-1 { bottom: -30px; left: -30px; transform: rotate(3deg); }
.floating-badge.badge-2 { top: -20px; right: -40px; transform: rotate(-3deg); }

.badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.badge-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.badge-value { font-size: 14px; font-weight: 700; color: var(--black); }

/* ─── SECTIONS ─── */
section { padding: 100px 48px; }

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

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}

h2 em { font-style: normal; color: var(--red); }

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ─── LOGOS BAR ─── */
.logos-bar {
  background: var(--gray);
  padding: 40px 48px;
}

.logos-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 16px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.05em;
}

/* ─── FEATURES ─── */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.feature-card.dark {
  background: var(--black);
  color: var(--white);
}

.feature-card.red {
  background: var(--red);
  color: var(--white);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-card.dark .feature-icon { background: rgba(255,255,255,0.1); }
.feature-card.red .feature-icon { background: rgba(255,255,255,0.2); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

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

.feature-card.dark p, .feature-card.red p { color: rgba(255,255,255,0.7); }

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}

.feature-card.dark .feature-link,
.feature-card.red .feature-link { color: var(--white); }

.feature-link::after { content: '→'; }

/* ─── SPLIT SECTION ─── */
.split {
  background: var(--black);
  color: var(--white);
}

.split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.split h2 { color: var(--white); }
.split .section-sub { color: rgba(255,255,255,0.6); }

.split-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-box {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
}

.stat-box .num {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box .num span { color: var(--red); }

.stat-box .label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* ─── PRODUCTS TABS ─── */
.products { background: var(--gray); }

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  background: rgba(0,0,0,0.06);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
}

.tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-family: 'pacambeu', sans-serif;
}

.tab.active { background: var(--white); color: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tab-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tab-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tab-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

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

.tab-visual {
  background: var(--black);
  border-radius: 24px;
  padding: 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Full-bleed image tab */
.tab-content--hero {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 560px;
}

.tab-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  background: #f8f8f8;
}

.tab-hero-gradient { display: none; }

.tab-features--hero {
  position: relative;
  z-index: 1;
  max-width: 50%;
  padding: 48px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.app-balance-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.app-balance {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.app-change {
  font-size: 13px;
  color: #4ade80;
  font-weight: 600;
}

.app-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.app-action-btn {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.app-transactions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-txn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px 16px;
}

.txn-left { display: flex; align-items: center; gap: 12px; }

.txn-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(232,54,54,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.txn-name { font-size: 13px; font-weight: 600; color: var(--white); }
.txn-date { font-size: 11px; color: rgba(255,255,255,0.4); }

.txn-amount { font-size: 14px; font-weight: 700; }
.txn-amount.neg { color: rgba(255,255,255,0.7); }
.txn-amount.pos { color: #4ade80; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--gray);
  border-radius: 20px;
  padding: 32px;
}

.stars {
  font-size: 16px;
  margin-bottom: 16px;
  color: #f59e0b;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 80px 48px;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-white {
  background: var(--white);
  color: var(--red);
}

.btn-white:hover { background: var(--gray); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
  color: rgba(255,255,255,0.45);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal { font-size: 13px; color: rgba(255,255,255,0.35); }

.footer-badges {
  display: flex;
  gap: 10px;
}

.fdic-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 60vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg-shape { top: -100px; right: -150px; width: 500px; height: 500px; }

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 { max-width: 700px; }
.page-hero .hero-sub { max-width: 560px; }

/* Split hero layout (personal page) */
.page-hero--split {
  min-height: 80vh;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 3px solid var(--red);
}

.page-hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  z-index: 0;
}

.page-hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.6) 8%, rgba(255,255,255,0.2) 16%, rgba(255,255,255,0) 24%);
}

.page-hero-inner--split {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.page-hero-content { padding: 100px 0 80px; max-width: 540px; }

.page-hero--split h1 { max-width: 100%; }
.page-hero--split .hero-sub { max-width: 100%; }

/* Keep h1 white inside sections that stay dark */
.split h1 { color: var(--white); }

/* ─── PRICING ─── */
.pricing { background: var(--gray); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  align-content: start;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}

.pricing-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.pricing-card.featured {
  background: var(--black);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.5); }

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-price sup { font-size: 24px; vertical-align: super; letter-spacing: 0; }
.pricing-price sub { font-size: 16px; color: var(--text-muted); font-weight: 400; letter-spacing: 0; }

.pricing-card.featured .pricing-price sub { color: rgba(255,255,255,0.5); }

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.55); }

.pricing-badge--empty { visibility: hidden; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(232,54,54,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before { background: rgba(232,54,54,0.25); }

/* ─── FAQ ─── */
.faq { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-family: 'pacambeu', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--red);
  font-weight: 300;
}

.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px 22px;
}

/* ─── INTRO ANIMATION ─── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease;
}

#intro-logo {
  display: flex;
  align-items: center;
  gap: 0;
}


#intro-icon {
  height: 64px;
  width: auto;
  --intro-offset: 0px;
  /* Paused until JS measures words width and sets --intro-offset */
  animation: introIconSequence 1.8s ease forwards;
  animation-play-state: paused;
  /* gap: -20px; */
}

/*
 * Sequence:
 *  0–6%   : fade in at screen center (translateX offset keeps it centered)
 *  6–22%  : hold at center so user sees the upright icon
 *  22–52% : slide left to natural flex position
 *  52–58% : brief pause before rotation
 *  58–90% : rotate 90° clockwise
 * 90–100% : hold final state
 */
@keyframes introIconSequence {
  0%   { opacity: 0; transform: translateX(var(--intro-offset)) rotate(0deg);  animation-timing-function: ease; }
  6%   { opacity: 1; transform: translateX(var(--intro-offset)) rotate(0deg);  animation-timing-function: ease; }
  22%  {              transform: translateX(var(--intro-offset)) rotate(0deg);  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  52%  {              transform: translateX(0)                   rotate(0deg);  animation-timing-function: ease-in-out; }
  58%  {              transform: translateX(0)                   rotate(0deg);  animation-timing-function: cubic-bezier(0.34, 1.08, 0.64, 1); }
  90%  {              transform: translateX(0)                   rotate(90deg); animation-timing-function: ease; }
  100% {              transform: translateX(0)                   rotate(90deg); }
}

#intro-words {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: -10px;
}

.intro-word {
  height: 30px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateX(-18px);
}

@keyframes introWordSlide {
  to { opacity: 1; transform: translateX(0); }
}

#page-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .split-inner { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .tab-content { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .page-hero--split { padding: 0 24px; min-height: 60vh; }
  .page-hero-inner--split { min-height: 60vh; }
  .page-hero-gradient { background: linear-gradient(to right, #ffffff 50%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0) 100%); }
}

/* ─── ACCOUNT CREATION MODAL ─── */
.ac-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ac-modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 32px 48px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.ac-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ac-progress {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.ac-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  color: var(--black);
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-close:hover { background: var(--border); }
.ac-progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: 99px;
  transition: width 0.4s ease;
  width: 0%;
}

.ac-logo { margin-top: -22px; margin-bottom: -22px; margin-left: -12px; text-align: left; display: block; }

.ac-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.ac-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.15;
}

.ac-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.ac-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  flex: 1;
}
.ac-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.ac-field input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.ac-field input:focus { border-color: var(--red); }
.ac-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.ac-select:focus { border-color: var(--red); }

.ac-row {
  display: flex;
  gap: 12px;
}

.ac-btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.ac-btn-primary:hover { background: #c52020; }

.ac-btn-back {
  width: 100%;
  padding: 12px;
  background: none;
  color: var(--text-muted);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ac-btn-back:hover { color: var(--black); }

.ac-legal {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.ac-legal a { color: var(--red); text-decoration: none; }

.ac-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,54,54,0.07);
  color: var(--red);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Plan selection */
.ac-plans { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }

.ac-plan {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ac-plan:hover { border-color: var(--red); }
.ac-plan-selected { border-color: var(--red); background: rgba(232,54,54,0.04); }

.ac-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.ac-plan-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.ac-plan-name { font-size: 16px; font-weight: 700; color: var(--black); }
.ac-plan-price { font-size: 22px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
.ac-plan-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.ac-plan-check { font-size: 22px; color: var(--border); transition: color 0.2s; }
.ac-plan-selected .ac-plan-check { color: var(--red); }

.ac-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ac-plan-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ac-plan-features li i { color: var(--red); font-size: 11px; }

/* Fund options */
.ac-fund-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }

.ac-fund-option {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ac-fund-option:hover { border-color: var(--red); }
.ac-fund-selected { border-color: var(--red); background: rgba(232,54,54,0.04); }
.ac-fund-option > i { font-size: 20px; color: var(--red); width: 24px; text-align: center; }
.ac-fund-name { font-size: 14px; font-weight: 700; color: var(--black); }
.ac-fund-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Success step */
.ac-step-success { text-align: center; padding: 12px 0; }
.ac-success-icon { font-size: 56px; color: var(--red); margin-bottom: 20px; }
.ac-step-success .ac-title { font-size: 32px; }
.ac-step-success .ac-sub { max-width: 360px; margin: 0 auto 28px; }

.ac-success-details {
  background: var(--gray);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}
.ac-success-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.ac-success-row i { color: var(--red); width: 18px; text-align: center; }

/* ─── FONT AWESOME ICON STYLING ─── */
.feature-icon i { font-size: 22px; color: var(--red); }
.feature-card.dark .feature-icon i { color: rgba(255,255,255,0.9); }
.feature-card.red .feature-icon i { color: rgba(255,255,255,0.9); }
.tab-feature-icon i { font-size: 20px; color: var(--red); }
.txn-icon i { font-size: 16px; color: var(--red); }
.badge-icon i { font-size: 16px; color: var(--white); }
.app-action-btn i { font-size: 13px; color: rgba(255,255,255,0.8); }

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  section { padding: 64px 16px; }
  .hero { padding: 100px 16px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .logos-bar { padding: 32px 16px; }
  .logos-row { gap: 24px; }
  .cta-banner { padding: 60px 16px; }
  footer { padding: 48px 16px 28px; }
}
