/* ============================================
   LUNAS CRM — Landing Page
   Aesthetic: Midnight Fintech
   ============================================ */

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

:root {
  --blue: #0066FF;
  --blue-light: #4F8DFF;
  --blue-dark: #0050cc;
  --blue-soft: rgba(0, 102, 255, 0.12);
  --blue-glow: rgba(0, 102, 255, 0.35);
  --midnight: #07111F;
  --midnight-light: #10203A;
  --midnight-lighter: #2E4261;
  --surface: #F8FBFF;
  --surface-alt: #EEF4FB;
  --surface-strong: #D9E7F6;
  --white: #ffffff;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #E5EEF9;
  --text-on-dark-muted: #9FB1CB;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --emerald: #25D366;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: #E2E8F0;
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 6px;
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 28px 64px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 40px var(--blue-glow);
  --shadow-deep: 0 30px 90px rgba(4, 15, 31, 0.45);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1280px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 40%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), #60a5fa, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(0, 102, 255, 0.34);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: rgba(0, 102, 255, 0.28);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #24d465, var(--emerald));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover {
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
  transform: translateY(-2px);
}

.btn svg { width: 20px; height: 20px; }

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.header.scrolled {
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  color: var(--white);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.logo span { color: var(--blue-light); font-weight: 400; }

.brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.brand-logo--header {
  width: 172px;
}

.brand-logo--footer {
  width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
  min-height: 44px !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--midnight);
  overflow: hidden;
  padding: 152px 0 112px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(96, 165, 253, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(0, 102, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content { max-width: 610px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(79, 141, 255, 0.22);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,102,255,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,102,255,0); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  margin-bottom: 28px;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-trust span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-stat-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.84rem;
  color: var(--text-on-dark);
  margin-top: 4px;
}

.hero-stat-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-top: 10px;
}

/* Hero Image (mockup) */
.hero-visual {
  position: relative;
  perspective: 1200px;
  padding: 28px 0 76px;
}

.hero-mockup {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(7, 17, 31, 0.88);
  box-shadow: var(--shadow-deep);
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.hero-mockup img {
  width: 100%;
  display: block;
}

.hero-mockup-bar {
  height: 38px;
  background: rgba(7, 17, 31, 0.96);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.hero-mockup-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-bar .dot:nth-child(1) { background: #ff5f57; }
.hero-mockup-bar .dot:nth-child(2) { background: #ffbd2e; }
.hero-mockup-bar .dot:nth-child(3) { background: #28c840; }

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 102, 255, 0.15);
  top: 10%;
  right: -5%;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(96, 165, 253, 0.1);
  bottom: 15%;
  left: 5%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 40px rgba(4, 15, 31, 0.24);
}

.hero-floating-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.35;
}

.hero-floating-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  margin-top: 8px;
}

.hero-floating-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.hero-floating-card-top {
  top: 0;
  left: -26px;
}

.hero-floating-card-bottom {
  right: -18px;
  bottom: 0;
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  margin: -62px 0 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 50px rgba(4, 15, 31, 0.36);
}

.hero-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-panel-header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--white);
  margin-top: 4px;
}

.hero-panel-kicker {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.hero-panel-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(79, 141, 255, 0.14);
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-panel-list {
  display: grid;
  gap: 14px;
}

.hero-panel-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel-item:first-child { border-top: 0; padding-top: 0; }
.hero-panel-item:last-child { padding-bottom: 0; }

.hero-panel-item > span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 141, 255, 0.14);
  color: var(--blue-light);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.hero-panel-item p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-top: 5px;
}

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-panel-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark);
  font-size: 0.78rem;
  font-weight: 500;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

/* ============================================
   PROOF STRIP
   ============================================ */
.proof-strip {
  padding: 28px 0 36px;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 1) 0%, rgba(8, 24, 40, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-strip .container {
  display: grid;
  gap: 20px;
}

.proof-strip-copy p {
  text-align: center;
  color: var(--text-on-dark-muted);
  font-size: 0.98rem;
}

.bank-carousel {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.bank-carousel-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: bank-marquee 34s linear infinite;
}

.bank-carousel:hover .bank-carousel-marquee {
  animation-play-state: paused;
}

.bank-logo-card {
  flex: 0 0 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 96px;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.bank-logo-card--wordmark {
  flex-basis: 242px;
}

.bank-logo-card img {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.bank-logo-card--wordmark img {
  width: min(100%, 170px);
  max-width: none;
  height: auto;
  max-height: 54px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.bank-logo-card--dsv img {
  width: 84px;
  height: 84px;
}

.bank-logo-card--hub {
  flex-basis: 196px;
}

.bank-logo-card--hub img {
  width: min(100%, 112px);
  height: auto;
  max-height: 64px;
}

.bank-logo-card--drex img {
  width: min(100%, 176px);
  max-height: 50px;
}

.bank-logo-card--picpay img {
  width: min(100%, 156px);
  max-height: 46px;
}

.bank-logo-card--hand {
  flex-basis: 228px;
}

.bank-logo-card--hand img {
  width: min(100%, 164px);
  max-height: 56px;
}

.bank-logo-card--zili img {
  width: min(100%, 126px);
  max-height: 50px;
}

.bank-logo-card span {
  display: none;
}

@keyframes bank-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

/* ============================================
   OPS
   ============================================ */
.ops {
  padding: 104px 0 32px;
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--white) 70%);
}

.ops-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.ops-header .section-subtitle {
  margin: 0 auto;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ops-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 1) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
}

.ops-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.ops-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.ops-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.ops-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.ops-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ops-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--success));
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.features-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

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

.feature-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, 1) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: rgba(0, 102, 255, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.feature-icon.blue { background: rgba(0, 102, 255, 0.08); color: var(--blue); }
.feature-icon.green { background: rgba(16, 185, 129, 0.08); color: var(--success); }
.feature-icon.orange { background: rgba(245, 158, 11, 0.08); color: var(--warning); }
.feature-icon.purple { background: rgba(139, 92, 246, 0.08); color: #8B5CF6; }
.feature-icon.red { background: rgba(239, 68, 68, 0.08); color: var(--error); }
.feature-icon.teal { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================
   SHOWCASE (CRM Visual)
   ============================================ */
.showcase {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.showcase-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 80px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.showcase-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.showcase-item.reversed { direction: rtl; }
.showcase-item.reversed > * { direction: ltr; }

.showcase-text .section-label { margin-bottom: 12px; }

.showcase-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.showcase-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.showcase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.showcase-tag svg { width: 14px; height: 14px; color: var(--blue); }

.showcase-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--white);
}

.showcase-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-image:hover img {
  transform: scale(1.02);
}

/* ============================================
   BANKS
   ============================================ */
.banks {
  position: relative;
  padding: 120px 0;
  background: var(--midnight);
  color: var(--white);
  overflow: hidden;
}

.banks::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 141, 255, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 26%);
  pointer-events: none;
}

.banks .container {
  position: relative;
  z-index: 1;
}

.banks-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.banks-header .section-label { color: var(--blue-light); }
.banks-header .section-subtitle { color: var(--text-on-dark-muted); }

.banks-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
  margin: 0 auto 28px;
  padding: 28px;
  max-width: 1100px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.banks-story-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banks-story-copy h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  margin-bottom: 14px;
}

.banks-story-copy p {
  color: var(--text-on-dark-muted);
  line-height: 1.75;
}

.banks-story-points {
  display: grid;
  gap: 14px;
}

.banks-story-point {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.banks-story-point strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.banks-story-point span {
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.banks-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.banks-logo-tile {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.banks-logo-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 141, 255, 0.22);
  transform: translateY(-2px);
}

.banks-logo-tile img {
  width: auto;
  max-width: 96px;
  max-height: 56px;
  object-fit: contain;
}

.banks-logo-tile--dsv img {
  max-width: 96px;
  max-height: 60px;
}

.banks-logo-tile--wide img {
  max-width: 146px;
  max-height: 46px;
}

.banks-logo-tile--v8-logo img {
  max-width: 124px;
  max-height: 34px;
}

.banks-logo-tile--novosaque-logo img {
  max-width: 128px;
  max-height: 32px;
}

.banks-logo-tile--prata-logo img {
  max-width: 104px;
  max-height: 38px;
}

.banks-logo-tile--presenca-logo img {
  max-width: 128px;
  max-height: 34px;
}

.banks-logo-tile--c6-logo img {
  max-width: 114px;
  max-height: 36px;
}

.banks-logo-tile--quali img {
  max-width: 134px;
  max-height: 48px;
}

.banks-logo-tile--hub-logo img {
  max-width: 110px;
  max-height: 62px;
}

.banks-logo-tile--drex img {
  max-width: 154px;
  max-height: 42px;
}

.banks-logo-tile--picpay img {
  max-width: 138px;
  max-height: 40px;
}

.banks-logo-tile--hand-logo img {
  max-width: 142px;
  max-height: 48px;
}

.banks-logo-tile--zili-logo img {
  max-width: 116px;
  max-height: 46px;
}

.banks-logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.bg-facta { background: linear-gradient(135deg, #10B981, #059669); }
.bg-fintech { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.bg-quali { background: linear-gradient(135deg, #EC4899, #DB2777); }
.bg-hub { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.bg-drex { background: linear-gradient(135deg, #EF4444, #DC2626); }

.featured-banks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto 42px;
}

.featured-bank {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.featured-bank:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 141, 255, 0.2);
  transform: translateY(-2px);
}

.featured-bank-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-bank-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.18);
}

.featured-bank-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-bank-icon-fallback {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(79, 141, 255, 0.18));
  color: var(--blue-light);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.featured-bank h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 2px;
}

.featured-bank p {
  color: var(--text-on-dark-muted);
  font-size: 0.86rem;
}

.featured-bank-badge {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark);
  font-size: 0.76rem;
  font-weight: 500;
}

.banks-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.bank-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.bank-tab:hover { border-color: rgba(255, 255, 255, 0.2); color: var(--white); }

.bank-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.bank-panel[hidden] { display: none !important; }
.bank-panel:not([hidden]) { display: grid; }

.bank-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.bank-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
}

.bank-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.bank-card-icon.has-logo {
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 8px 18px rgba(7, 17, 31, 0.18);
}

.bank-card-icon.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-card-icon.bg-v8 { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.bank-card-icon.bg-ns { background: linear-gradient(135deg, #F59E0B, #D97706); }
.bank-card-icon.bg-facta { background: linear-gradient(135deg, #10B981, #059669); }
.bank-card-icon.bg-fintech { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.bank-card-icon.bg-prata { background: linear-gradient(135deg, #94A3B8, #64748B); }
.bank-card-icon.bg-dsv { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.bank-card-icon.bg-quali { background: linear-gradient(135deg, #EC4899, #DB2777); }
.bank-card-icon.bg-zili { background: linear-gradient(135deg, #F97316, #EA580C); }
.bank-card-icon.bg-hand { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.bank-card-icon.bg-hub { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.bank-card-icon.bg-presenca { background: linear-gradient(135deg, #22C55E, #16A34A); }
.bank-card-icon.bg-drex { background: linear-gradient(135deg, #EF4444, #DC2626); }
.bank-card-icon.bg-picpay { background: linear-gradient(135deg, #22C55E, #15803D); }
.bank-card-icon.bg-c6 { background: linear-gradient(135deg, #1E1E1E, #404040); }

.bank-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bank-card .bank-type {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banks-footer {
  text-align: center;
  max-width: 760px;
  margin: 32px auto 0;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
}

.banks-count {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.banks-count-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banks-count-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-light);
}

.banks-count-label {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

/* ============================================
   VIDEO DEMO
   ============================================ */
.demo {
  padding: 120px 0;
  background: linear-gradient(180deg, #0c1628 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.demo .section-label {
  color: var(--blue);
}

.demo .section-title {
  color: #ffffff;
}

.demo .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.demo-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}

.demo-video {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 102, 255, 0.08);
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-video-bar {
  height: 40px;
  background: #1e293b;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-video-bar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-video-bar .dot:nth-child(1) { background: #ff5f57; }
.demo-video-bar .dot:nth-child(2) { background: #ffbd2e; }
.demo-video-bar .dot:nth-child(3) { background: #28c840; }

.demo-video-title {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

.demo-video video {
  width: 100%;
  display: block;
}

.demo-alt {
  background: #1a2332;
}

.demo-alt::before {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

/* ============================================
   MORE FEATURES
   ============================================ */
.more-features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.more-features-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.more-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.more-item:hover {
  background: var(--white);
  transform: translateX(4px);
}

.more-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 102, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f5f9ff 0%, #eef4fb 100%);
}

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

.pricing-header .section-subtitle {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card-main,
.pricing-included {
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.pricing-card-main {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #07111f 0%, #0d1b31 60%, #15315e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(4, 15, 31, 0.3);
  color: var(--white);
}

.pricing-card-main::after {
  content: '';
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 141, 255, 0.42) 0%, rgba(79, 141, 255, 0) 70%);
  pointer-events: none;
}

.pricing-badge,
.pricing-included-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blue-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 26px 0 6px;
  font-family: var(--font-display);
  line-height: 0.95;
}

.pricing-currency,
.pricing-cents {
  color: var(--text-on-dark-muted);
  font-weight: 700;
}

.pricing-currency {
  font-size: 1.3rem;
  padding-top: 10px;
}

.pricing-amount strong {
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  letter-spacing: -0.06em;
}

.pricing-cents {
  font-size: 1.6rem;
  padding-top: 10px;
}

.pricing-period {
  margin-bottom: 28px;
  color: var(--text-on-dark);
  font-size: 1rem;
}

.pricing-table {
  display: grid;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--text-on-dark);
}

.pricing-row + .pricing-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-row span {
  color: var(--text-on-dark-muted);
}

.pricing-row strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: right;
}

.pricing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pricing-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-actions .btn-outline:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}

.pricing-included {
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card-hover);
}

.pricing-included-head {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.pricing-included-badge {
  justify-self: flex-start;
  background: var(--blue-soft);
  color: var(--blue);
}

.pricing-included-head p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-perk {
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--white) 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.pricing-perk strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.pricing-perk span {
  display: block;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 120px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.cta-copy {
  max-width: 620px;
}

.cta .section-label {
  color: var(--blue-light);
}

.cta .section-label::before {
  background: var(--blue-light);
}

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

.cta p {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--font-display);
  color: var(--text-on-dark-muted);
}

.cta-phone span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-phone a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  transition: color var(--transition);
}

.cta-phone a:hover { color: var(--blue-light); }

.cta .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.cta-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(4, 15, 31, 0.28);
}

.cta-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 141, 255, 0.14);
  color: var(--blue-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cta-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.cta-checklist li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--success));
  box-shadow: 0 0 0 5px rgba(79, 141, 255, 0.14);
}

.cta-card-foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-card-foot strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
}

.cta-card-foot p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: #07101c;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--white);
}

.footer-logo span { color: var(--text-on-dark-muted); font-weight: 400; }

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 96px; }
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-content {
    max-width: none;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 700px; margin: 0 auto; }
  .hero-mockup { transform: none; }
  .hero-mockup:hover { transform: none; }
  .hero-panel { margin: -56px auto 0; }
  .hero-floating-card-top { left: 18px; }
  .hero-floating-card-bottom { right: 18px; }
  .ops-grid { grid-template-columns: 1fr; }
  .banks-story {
    grid-template-columns: 1fr;
  }
  .banks-logo-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .featured-banks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-item { grid-template-columns: 1fr; gap: 32px; }
  .showcase-item.reversed { direction: ltr; }
  .banks-grid { grid-template-columns: repeat(3, 1fr); }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-copy {
    max-width: none;
    text-align: center;
  }
  .cta-actions { justify-content: center; }
  .cta-phone { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .brand-logo--header { width: 152px; }
  .brand-logo--footer { width: 138px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hero { padding: 112px 0 72px; min-height: auto; }
  .hero-subtitle { font-size: 1.02rem; }
  .hero-trust { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .hero-visual { padding: 0; }
  .hero-panel { margin-top: 18px; padding: 22px; }
  .hero-floating-card {
    position: static;
    max-width: none;
  }
  .hero-floating-card-top { margin-bottom: 14px; }
  .hero-floating-card-bottom { margin-top: 14px; }
  .proof-strip { padding: 26px 0 30px; }
  .bank-carousel {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .bank-carousel-marquee {
    animation: none;
    padding-bottom: 6px;
  }
  .banks-story { padding: 22px; }
  .banks-logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-banks { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .banks-grid { grid-template-columns: repeat(2, 1fr); }
  .banks-tabs { flex-wrap: wrap; }
  .more-grid { grid-template-columns: 1fr; }
  .pricing-card-main,
  .pricing-included { padding: 26px; }
  .pricing-perks { grid-template-columns: 1fr; }
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-row strong { text-align: left; }

  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .pricing-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .brand-logo--header { width: 140px; }
  .brand-logo--footer { width: 130px; }
  .hero-panel-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bank-logo-card {
    flex-basis: 170px;
    min-height: 86px;
    padding: 14px 18px;
  }
  .bank-logo-card img {
    width: 58px;
    height: 58px;
  }
  .bank-logo-card--wordmark {
    flex-basis: 214px;
  }
  .bank-logo-card--wordmark img {
    width: min(100%, 148px);
    max-height: 46px;
  }
  .bank-logo-card--dsv img {
    width: 72px;
    height: 72px;
  }
  .bank-logo-card--hub {
    flex-basis: 182px;
  }
  .bank-logo-card--hub img {
    width: min(100%, 98px);
    max-height: 58px;
  }
  .bank-logo-card--drex img {
    width: min(100%, 154px);
    max-height: 46px;
  }
  .bank-logo-card--picpay img {
    width: min(100%, 140px);
    max-height: 42px;
  }
  .bank-logo-card--hand {
    flex-basis: 198px;
  }
  .bank-logo-card--hand img {
    width: min(100%, 148px);
    max-height: 50px;
  }
  .bank-logo-card--zili img {
    width: min(100%, 112px);
    max-height: 44px;
  }
  .banks-logo-wall { grid-template-columns: 1fr; }
  .banks-logo-tile {
    min-height: 104px;
    padding: 18px 16px;
  }
  .pricing {
    padding: 92px 0;
  }
  .pricing-amount strong { font-size: 3.5rem; }
  .pricing-currency,
  .pricing-cents { font-size: 1.1rem; }
  .pricing-currency,
  .pricing-cents { padding-top: 8px; }
  .featured-bank-brand {
    align-items: flex-start;
    flex-direction: column;
  }
  .banks-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .bank-carousel-marquee {
    animation: none;
  }
}
