﻿/* ═══════════════════════════════════════════════════════════════════════════
   REGTRIX — Premium Landing Page Stylesheet
   Modern · Elegant · High-converting
   Better than Sanetrix. Made with ♥
   ═══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   CSS VARIABLES — Design System
   ══════════════════════════════════════════ */
:root {
  /* Colors - Dark Theme (Default) */
  --c-bg:           #0c0a14;
  --c-bg-alt:       #100e1a;
  --c-surface:      #161424;
  --c-card:         rgba(22, 20, 36, 0.85);
  --c-card-solid:   #161424;
  --c-border:       rgba(245, 158, 11, 0.10);
  --c-border-2:     rgba(245, 158, 11, 0.25);
  --c-border-glow:  rgba(245, 158, 11, 0.4);
  
  /* Brand Colors */
  --c-primary:      #f59e0b;
  --c-primary-light:#fbbf24;
  --c-primary-dark: #d97706;
  --c-accent:       #a78bfa;
  --c-accent-2:     #e879f9;
  --c-success:      #10b981;
  --c-warning:      #f59e0b;
  --c-error:        #ef4444;
  
  /* Text */
  --c-text:         #f1f0f5;
  --c-text-secondary: #9d97b0;
  --c-text-muted:   #6b6581;
  
  /* Gradients */
  --grad-hero:      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 158, 11, 0.12), transparent),
                    linear-gradient(180deg, #0c0a14 0%, #100e1a 100%);
  --grad-primary:   linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  --grad-accent:    linear-gradient(135deg, #f59e0b 0%, #a78bfa 100%);
  --grad-card:      linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(167, 139, 250, 0.04) 100%);
  --grad-glow:      radial-gradient(circle at center, rgba(245, 158, 11, 0.20) 0%, transparent 70%);
  
  /* Effects */
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:      0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg:      0 8px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow:    0 0 40px rgba(245, 158, 11, 0.2);
  --shadow-glow-lg: 0 0 80px rgba(245, 158, 11, 0.3);
  
  /* Borders */
  --r:              12px;
  --r-lg:           16px;
  --r-xl:           24px;
  --r-2xl:          32px;
  
  /* Animation */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  
  /* Spacing */
  --section-gap:    120px;
  --container-max:  1200px;
}

/* Light Theme */
[data-theme="light"] {
  --c-bg:           #f9f7f4;
  --c-bg-alt:       #f3f0ea;
  --c-surface:      #ffffff;
  --c-card:         rgba(255, 255, 255, 0.9);
  --c-card-solid:   #ffffff;
  --c-border:       rgba(217, 119, 6, 0.10);
  --c-border-2:     rgba(217, 119, 6, 0.20);
  --c-border-glow:  rgba(217, 119, 6, 0.3);
  --c-text:         #1c1917;
  --c-text-secondary: #57534e;
  --c-text-muted:   #a8a29e;
  --c-primary:      #d97706;
  --c-primary-light:#f59e0b;
  --c-primary-dark: #b45309;
  --grad-hero:      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(217, 119, 6, 0.08), transparent),
                    linear-gradient(180deg, #f9f7f4 0%, #f3f0ea 100%);
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md:      0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:      0 8px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow:    0 0 40px rgba(217, 119, 6, 0.08);
  --shadow-glow-lg: 0 0 80px rgba(217, 119, 6, 0.12);
}

/* Logo gradient darker in light mode for contrast against cream bg */
[data-theme="light"] #logoGrad stop:first-child {
  stop-color: #d97706;
}
[data-theme="light"] #logoGrad stop:last-child {
  stop-color: #b45309;
}

/* Phone mockup in light mode */
[data-theme="light"] .app-phone {
  background: #2a2838;
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}

[data-theme="light"] .app-phone__notch {
  background: #2a2838;
}

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

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

body.landing-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--c-primary);
  color: white;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════ */
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--c-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: var(--c-bg);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: padding 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.l-nav.scrolled {
  padding: 0.75rem 0;
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-md);
}

.l-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.l-nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.l-nav__logo {
  height: 36px;
  width: auto;
  color: var(--c-text);
}

.l-nav__brand-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.l-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.l-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  position: relative;
}

.l-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.l-nav__links a:hover {
  color: var(--c-text);
}

.l-nav__links a:hover::after {
  width: 100%;
}

.l-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--r);
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.btn-nav-ghost {
  color: var(--c-text-secondary);
}

.btn-nav-ghost:hover {
  color: var(--c-text);
  background: var(--c-border);
}

.btn-nav-primary {
  color: white;
  background: var(--grad-primary);
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.l-nav__theme {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: transparent;
  color: var(--c-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1;
  transition: all 0.2s var(--ease);
}

.l-nav__theme:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: rgba(245, 158, 11, 0.1);
}

.l-nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  align-items: center;
  justify-content: center;
}

.l-nav__hamburger:hover {
  background: var(--c-card);
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

/* Animated Background Orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.20) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(0, 20px) scale(0.95); }
  75% { transform: translate(-20px, -10px) scale(1.02); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--c-text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s var(--ease) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s var(--ease) 0.1s both;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--c-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.6s var(--ease) 0.2s both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
}

.btn-hero-primary {
  color: white;
  background: var(--grad-primary);
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.5);
}

.btn-hero-secondary {
  color: var(--c-text);
  background: var(--c-card);
  border: 1px solid var(--c-border);
}

.btn-hero-secondary:hover {
  border-color: var(--c-primary);
  background: rgba(245, 158, 11, 0.1);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary-light);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ══════════════════════════════════════════
   HERO VISUAL / MOCK DASHBOARD
   ══════════════════════════════════════════ */
.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.hero-visual__frame {
  position: relative;
  background: var(--c-card-solid);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow-lg);
}

/* Browser Chrome */
.mock-browser {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #10b981; }

.mock-url {
  flex: 1;
  background: var(--c-surface);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-url i {
  color: var(--c-success);
}

/* Mock App */
.mock-app {
  display: flex;
  min-height: 480px;
}

.mock-sidebar {
  width: 220px;
  background: var(--c-bg-alt);
  border-right: 1px solid var(--c-border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-sidebar-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-sidebar-logo i {
  color: var(--c-primary);
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--r);
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: all 0.2s var(--ease);
}

.mock-nav-item i {
  width: 20px;
  text-align: center;
}

.mock-nav-item.active {
  background: var(--grad-card);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.mock-content {
  flex: 1;
  padding: 1.5rem;
  overflow: hidden;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mock-greeting {
  font-size: 1.25rem;
  font-weight: 600;
}

.mock-date {
  color: var(--c-text-muted);
  font-size: 0.875rem;
}

.mock-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mock-kpi {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 1rem;
}

.mock-kpi__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.mock-kpi__icon.amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.mock-kpi__icon.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.mock-kpi__icon.blue { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.mock-kpi__icon.purple { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }

.mock-kpi__value {
  font-size: 1.5rem;
  font-weight: 700;
}

.mock-kpi__label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.mock-charts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}

.mock-chart {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 1rem;
}

.mock-chart__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mock-flow {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mock-flow__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.mock-pill--success {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}

.mock-pill--warning {
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
}

.mock-order-card {
  padding: 0.95rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
}

.mock-order-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.mock-order-card__number {
  font-size: 0.84rem;
  font-weight: 700;
}

.mock-order-card__channel {
  font-size: 0.74rem;
  color: var(--c-text-muted);
}

.mock-order-card__amount {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-primary-light);
  white-space: nowrap;
}

.mock-order-card__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mock-step {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: center;
  padding: 0.45rem 0.4rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-secondary);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
}

.mock-step.done {
  color: var(--c-text);
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
}

.mock-chart__sublist {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mock-chart__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
  color: var(--c-text-muted);
}

.mock-chart__row strong {
  color: var(--c-text);
  text-align: right;
}

.mock-activity {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-top: 1rem;
}

.mock-activity__card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 1rem;
}

.mock-activity__title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.mock-activity__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mock-activity__item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.mock-activity__item strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

.mock-activity__item span:last-child {
  display: block;
  font-size: 0.74rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
}

.mock-dot--success { background: #10b981; }
.mock-dot--amber { background: #f59e0b; }
.mock-dot--blue { background: #a78bfa; }

.mock-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mock-coverage__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  font-size: 0.72rem;
  color: var(--c-text-secondary);
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.mock-bar {
  flex: 1;
  background: var(--grad-primary);
  border-radius: 4px 4px 0 0;
  min-height: 10px;
  transition: height 1s var(--ease-spring);
}

.mock-bar.animate {
  animation: growBar 1s var(--ease-spring) both;
}

@keyframes growBar {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}

/* ══════════════════════════════════════════
   AUDIENCE STRIP
   ══════════════════════════════════════════ */
.audience-strip {
  padding: 3rem 1.5rem;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.audience-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.audience-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
  transition: all 0.3s var(--ease);
}

.audience-chip:hover {
  border-color: var(--c-primary);
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

.audience-chip i {
  color: var(--c-primary);
}

/* ══════════════════════════════════════════
   TRUST BADGES
   ══════════════════════════════════════════ */
.trust-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.trust-section__label {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all 0.3s var(--ease);
  opacity: 0.6;
}

.trust-logo:hover {
  opacity: 1;
  color: var(--c-text);
}

.trust-logo i {
  font-size: 1.5rem;
}

/* ══════════════════════════════════════════
   SECTIONS BASE
   ══════════════════════════════════════════ */
.section {
  padding: var(--section-gap) 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section--full {
  max-width: none;
}

.section-center {
  text-align: center;
}

/* ══════════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.feature-card {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-card__icon--blue { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.feature-card__icon--green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.feature-card__icon--purple { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.feature-card__icon--cyan { background: rgba(34, 211, 238, 0.15); color: #e879f9; }
.feature-card__icon--amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.feature-card__icon--red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   REGIONS / PAYMENTS SECTION
   ══════════════════════════════════════════ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.region-card {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: left;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.region-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.region-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-primary-light);
}

.region-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.region-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.region-card__desc {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.region-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.region-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  font-size: 0.8rem;
  color: var(--c-text-secondary);
}

/* ══════════════════════════════════════════
   UNIFIED FLOW SECTION
   ══════════════════════════════════════════ */
.unified-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.unified-copy__subtitle {
  margin: 0;
  max-width: 100%;
}

.unified-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.unified-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.unified-point__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.14);
  color: var(--c-primary-light);
}

.unified-point strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.unified-point span {
  color: var(--c-text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

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

.unified-board {
  width: 100%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.unified-lane {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.25rem;
}

.unified-lane__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.unified-lane__header i {
  color: var(--c-primary);
}

.unified-card-mini {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.unified-card-mini + .unified-card-mini {
  margin-top: 0.8rem;
}

.unified-card-mini__title {
  font-weight: 600;
}

.unified-card-mini__desc {
  font-size: 0.88rem;
  color: var(--c-text-secondary);
}

.unified-link {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.unified-link__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-glow), transparent);
}

.unified-link__badge {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--grad-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   MOBILE APP SECTION
   ══════════════════════════════════════════ */
.app-section {
  padding: var(--section-gap) 1.5rem;
  overflow: hidden;
}

.app-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-section__content .section-eyebrow,
.app-section__content .section-title,
.app-section__content .section-subtitle {
  text-align: left;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  font-size: 0.85rem;
  color: var(--c-text);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.app-feature:hover {
  border-color: var(--c-border-2);
  transform: translateY(-2px);
}

.app-feature i {
  color: var(--c-primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.app-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--c-card-solid);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-text);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.app-badge:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.app-badge--soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.app-badge__icon {
  font-size: 1.5rem;
}

.app-badge__label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-secondary);
  line-height: 1;
}

.app-badge__store {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.app-badge__coming {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  font-weight: 700;
}

/* Phone mockup */
.app-section__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.app-phone {
  width: 260px;
  height: 520px;
  background: #1a1828;
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  padding: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

.app-phone__notch {
  width: 100px;
  height: 24px;
  background: #1a1828;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.app-phone__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f0d1a 0%, #161424 100%);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-phone__status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 4px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.5;
}

.app-phone__status-icons {
  display: flex;
  gap: 4px;
  font-size: 9px;
}

.app-phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.app-phone__content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-phone__stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.app-phone__mini-stat {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.app-phone__mini-stat-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary-light);
}

.app-phone__mini-stat-label {
  display: block;
  font-size: 9px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.app-phone__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}

.app-phone__item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-phone__nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}

.app-phone__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  color: var(--c-text-muted);
}

.app-phone__nav-item i {
  font-size: 14px;
}

.app-phone__nav-item--active {
  color: var(--c-primary);
}

.app-phone__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════
   IDEAL FOR SECTION
   ══════════════════════════════════════════ */
.ideal-section {
  padding-top: calc(var(--section-gap) * 0.9);
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ideal-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: left;
  transition: all 0.4s var(--ease);
}

.ideal-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ideal-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--c-primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ideal-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.ideal-card__desc {
  color: var(--c-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ideal-card__list {
  list-style: none;
}

.ideal-card__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--c-text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.ideal-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}

/* ══════════════════════════════════════════
   STICKY SCROLL SECTION (Apple-style)
   ══════════════════════════════════════════ */
.sticky-section {
  position: relative;
  min-height: 300vh;
}

.sticky-visual {
  position: sticky;
  top: 100px;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-visual__content {
  width: 100%;
  max-width: 900px;
  background: var(--c-card-solid);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all 0.5s var(--ease);
}

.sticky-steps {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.sticky-step {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.sticky-step.active {
  opacity: 1;
  transform: translateY(0);
}

.sticky-step__content {
  max-width: 400px;
}

.sticky-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--grad-primary);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.sticky-step__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sticky-step__desc {
  font-size: 1.1rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   INFINITE SCROLL MODULES
   ══════════════════════════════════════════ */
.modules-section {
  padding: var(--section-gap) 0;
  overflow: hidden;
  background: var(--c-bg-alt);
}

.modules-section__header {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.modules-scroll {
  position: relative;
  padding: 1rem 0;
}

.modules-scroll::before,
.modules-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.modules-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg-alt), transparent);
}

.modules-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg-alt), transparent);
}

.modules-track {
  display: flex;
  gap: 1rem;
  animation: scrollLeft 60s linear infinite;
  width: max-content;
}

.modules-track--reverse {
  animation-name: scrollRight;
}

.modules-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.module-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}

.module-chip:hover {
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.module-chip i {
  color: var(--c-primary);
}

/* ══════════════════════════════════════════
   INVOICING SECTION (Country Cards)
   ══════════════════════════════════════════ */
.invoicing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.invoicing-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.invoicing-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.invoicing-card__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.country-flag {
  display: block;
  width: 46px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
}

.invoicing-card__country {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.invoicing-card__type {
  font-size: 0.9rem;
  color: var(--c-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.invoicing-card__provider {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-bg-alt);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ══════════════════════════════════════════
   IMPACT STATS
   ══════════════════════════════════════════ */
.impact-section {
  padding: var(--section-gap) 1.5rem;
  background: var(--grad-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.impact-stat {
  text-align: center;
}

.impact-stat__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-stat__label {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════ */
.pricing-section {
  padding: var(--section-gap) 1.5rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.pricing-toggle__label {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.pricing-toggle__label.active {
  color: var(--c-text);
  font-weight: 600;
}

.pricing-toggle__switch {
  width: 56px;
  height: 30px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--ease);
}

.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--grad-primary);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-spring);
}

.pricing-toggle__switch.annual::after {
  transform: translateX(26px);
}

.pricing-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--c-success);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.pricing-card {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: var(--grad-card);
  border-color: var(--c-primary);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  background: var(--grad-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card__currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text-secondary);
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--c-text-secondary);
}

.pricing-card__features li i {
  color: var(--c-success);
  margin-top: 0.2rem;
}

.pricing-card__features li.disabled {
  color: var(--c-text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-card__features li.disabled i {
  color: var(--c-text-muted);
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
}

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

.btn-pricing-primary:hover {
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-pricing-secondary {
  color: var(--c-text);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
}

.btn-pricing-secondary:hover {
  border-color: var(--c-primary);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-gap) 1.5rem;
  background: var(--c-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 3rem auto 0;
}

.testimonial-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-success);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  padding: var(--section-gap) 1.5rem;
  text-align: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: var(--grad-glow);
  opacity: 0.5;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner__desc {
  font-size: 1.1rem;
  color: var(--c-text-secondary);
  margin-bottom: 2rem;
}

.cta-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.9rem;
}

.cta-step__icon {
  width: 28px;
  height: 28px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.l-footer {
  padding: 4rem 1.5rem 2rem;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
}

.l-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.l-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.l-footer__brand {
  max-width: 280px;
}

.l-footer__brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.l-footer__logo {
  height: 30px;
  width: auto;
}

.l-footer__brand-name i {
  color: var(--c-primary);
}

.l-footer__brand p {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.l-footer__social {
  display: flex;
  gap: 0.75rem;
}

.l-footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.l-footer__social a:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: rgba(245, 158, 11, 0.1);
}

.l-footer__col-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--c-text);
}

.l-footer__links {
  list-style: none;
}

.l-footer__links li {
  margin-bottom: 0.75rem;
}

.l-footer__links a {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.l-footer__links a:hover {
  color: var(--c-primary);
}

.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.l-footer__badges {
  display: flex;
  gap: 1rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.75rem;
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease);
}

.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; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .unified-section,
  .features-grid,
  .region-grid,
  .invoicing-grid,
  .testimonials-grid,
  .ideal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unified-section {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card--featured {
    transform: none;
  }
  
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .pricing-card__features li {
    justify-content: center;
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .l-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mock-sidebar {
    display: none;
  }
  
  .mock-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mock-charts {
    grid-template-columns: 1fr;
  }

  .mock-activity {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }
  
  .l-nav__links,
  .l-nav__actions .btn-nav-ghost {
    display: none;
  }
  
  .l-nav__hamburger {
    display: flex;
  }
  
  .btn-nav {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .l-nav__theme {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero__ctas {
    flex-direction: column;
  }

  .mock-order-card__top,
  .mock-chart__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .mock-order-card__steps {
    grid-template-columns: 1fr;
  }
  
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid,
  .region-grid,
  .invoicing-grid,
  .testimonials-grid,
  .ideal-grid {
    grid-template-columns: 1fr;
  }

  .unified-board {
    padding: 1rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .audience-strip__inner {
    gap: 0.75rem;
  }
  
  .audience-chip {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .l-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .l-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cta-steps {
    flex-direction: column;
  }
  
  .cta-banner__actions {
    flex-direction: column;
  }

  /* App section responsive */
  .app-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .app-section__content .section-eyebrow,
  .app-section__content .section-title,
  .app-section__content .section-subtitle {
    text-align: center;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .app-badges {
    justify-content: center;
  }

  .app-phone {
    width: 220px;
    height: 440px;
  }

  .app-section__visual {
    order: -1;
  }
}

/* ══════════════════════════════════════════
   MOBILE MENU — Fullscreen on .open
   ══════════════════════════════════════════ */

/* Auth items hidden on desktop */
.l-nav__mauth {
  display: none;
}

/* When open: fullscreen overlay */
.l-nav__links.open {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 997;
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  animation: menuFadeIn 0.25s ease;
}

.l-nav__links.open li {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.l-nav__links.open li a {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-text-secondary);
  text-decoration: none;
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.l-nav__links.open li a::after {
  display: none;
}
.l-nav__links.open li a:hover {
  color: var(--c-primary);
  background: rgba(245, 158, 11, 0.08);
}

/* Auth items visible in open menu */
.l-nav__links.open .l-nav__mauth {
  display: list-item;
  margin-top: 0.5rem;
}
.l-nav__links.open .l-nav__mauth a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  border: 1px solid var(--c-border-2);
  max-width: 240px;
  margin: 0 auto;
}
.l-nav__links.open .l-nav__mauth a:hover {
  border-color: var(--c-primary);
  color: var(--c-text);
  background: transparent;
}

/* CTA button */
.l-nav__links.open .l-nav__mauth--cta a {
  color: #fff;
  background: var(--grad-primary);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}
.l-nav__links.open .l-nav__mauth--cta a:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.35);
  transform: translateY(-1px);
}

/* Hamburger z-index when menu is open */
.l-nav__hamburger {
  position: relative;
  z-index: 999;
}

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