/* =========================================
   Datalynz — Main Stylesheet
   Mixed Theme: dark hero/footer, light sections
   ========================================= */

:root {
  /* Brand palette */
  --indigo-deep:    #221a55;
  --indigo-dark:    #3d2e93;
  --indigo:         #4637ac;
  --lavender:       #8989ed;
  --white:          #ffffff;
  --emerald:        #10b981;
  --crimson:        #ef4444;
  --amber:          #f59e0b;

  /* Page (light sections) */
  --bg-base:        #F7F8FF;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-elevated:    #EEF0FF;
  --bg-glass:       rgba(70,55,172,0.06);
  --bg-glass-hover: rgba(70,55,172,0.10);

  /* Hero/Footer (dark) */
  --brand-gradient: linear-gradient(135deg, #221a55 0%, #3d2e93 55%, #4637ac 100%);

  /* Text (for light sections) */
  --text-primary:   #221a55;
  --text-secondary: #4B5279;
  --text-muted:     #7C7FA6;

  /* Borders */
  --border:         rgba(70,55,172,0.12);
  --border-bright:  rgba(70,55,172,0.25);

  /* Typography */
  --font-sans:      'Neue Montreal', 'Inter', system-ui, sans-serif;
  --font-display:   'Neue Montreal', 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(34,26,85,0.08);
  --shadow-md:   0 4px 20px rgba(34,26,85,0.12);
  --shadow-lg:   0 16px 48px rgba(34,26,85,0.16);
  --shadow-card: 0 2px 12px rgba(34,26,85,0.08), 0 1px 3px rgba(34,26,85,0.05);

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases used in inline styles / other pages */
  --primary:       #4637ac;
  --primary-hover: #3d2e93;
  --accent:        #10b981;
  --danger:        #ef4444;
  --warning:       #f59e0b;
  --gradient-brand: linear-gradient(135deg, #4637ac 0%, #8989ed 100%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Noise Overlay ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ── Container ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Glass card utility ── */
.glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #4637ac, #3d2e93);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(70,55,172,0.35);
    letter-spacing: 0.01em;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(70,55,172,0.5);
    background: linear-gradient(135deg, #3d2e93, #221a55);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
    color: var(--indigo);
    border-color: var(--indigo);
    background: var(--bg-glass);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-bright);
}
.btn-outline:hover {
    border-color: var(--indigo);
    color: var(--indigo);
    background: var(--bg-glass);
}

/* Ghost/outline on dark bg (hero, footer, cta) */
.btn-ghost-white {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}
.btn-xl {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-lg);
    letter-spacing: 0.01em;
}
.btn-block {
    width: 100%;
    justify-content: center;
}

/* ── Logo ── */
.navbar-logo {
    height: 32px;
    width: auto;
    display: block;
    transition: opacity var(--transition);
}
.navbar-logo:hover { opacity: 0.85; }
.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.navbar-brand { gap: 0; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 16px 0;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 1px 12px rgba(34,26,85,0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(70,55,172,0.12);
    box-shadow: 0 2px 20px rgba(34,26,85,0.12);
    padding: 12px 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon svg { display: block; }
.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--indigo);
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--indigo);
    background: var(--bg-glass);
}
.nav-link i { font-size: 10px; transition: var(--transition); }
.has-dropdown:hover .nav-link i { transform: rotate(180deg); }
.nav-chevron { font-size: 10px; transition: transform 0.25s ease; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 300px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 48px rgba(34,26,85,0.14), 0 2px 8px rgba(34,26,85,0.06);
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: var(--text-secondary);
}
.dropdown-item:hover { background: var(--bg-glass); color: var(--text-primary); }
.dropdown-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: var(--indigo);
    transition: var(--transition);
}
.dropdown-item:hover .dropdown-icon {
    background: rgba(70,55,172,0.10);
    border-color: rgba(70,55,172,0.25);
}
.dropdown-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); }
.dropdown-item span { display: block; font-size: 12px; margin-top: 2px; color: var(--text-muted); }

.navbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Hamburger button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-left: auto;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
}
.hamburger:hover { background: var(--bg-glass); }
.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active .ham-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .ham-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Drawer overlay ── */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(34,26,85,0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

/* ── Mobile Drawer (slide-in from right) ── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    width: min(340px, 90vw);
    background: #ffffff;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 40px rgba(34,26,85,0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.drawer-close:hover {
    color: var(--crimson);
    border-color: rgba(239,68,68,0.3);
    background: rgba(239,68,68,0.07);
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.drawer-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 12px 6px;
}
.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}
.drawer-link:hover, .drawer-link:active {
    color: var(--indigo);
    background: var(--bg-glass);
}
.drawer-link-sub {
    font-size: 14px;
    padding: 10px 14px 10px 20px;
    color: var(--text-secondary);
}
.drawer-link-sub:hover { color: var(--indigo); }
.drawer-link-icon {
    width: 34px;
    height: 34px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--indigo);
    flex-shrink: 0;
    transition: var(--transition);
}
.drawer-link-icon.sub {
    width: 28px;
    height: 28px;
    font-size: 11px;
    background: transparent;
    border-color: transparent;
}
.drawer-link:hover .drawer-link-icon {
    background: rgba(70,55,172,0.10);
    border-color: rgba(70,55,172,0.22);
}
.drawer-arrow {
    margin-left: auto;
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.6;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    background: var(--bg-base);
}

/* ── Section Base ── */
section { padding: 96px 0; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(70,55,172,0.08);
    border: 1px solid rgba(70,55,172,0.18);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--indigo);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-badge i { font-size: 10px; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.section-title .gradient-text {
    background: linear-gradient(135deg, #4637ac, #8989ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #4637ac, #8989ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-subtitle { margin: 16px auto 0; }

/* ── Hero Section (dark gradient) ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #221a55 0%, #3d2e93 50%, #4637ac 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-gradient-1 {
    position: absolute;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(137,137,237,0.22) 0%, transparent 60%);
    top: -300px; left: -200px;
    border-radius: 50%;
}
.hero-gradient-2 {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(70,55,172,0.25) 0%, transparent 65%);
    bottom: -100px; right: -100px;
    border-radius: 50%;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
    opacity: 0.4;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 28px;
}
.hero-eyebrow .pulse-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: #ffffff;
}
.hero-title .line-accent {
    background: linear-gradient(135deg, #8989ed, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
/* Hero primary CTA: white bg, indigo text */
.hero-actions .btn-primary {
    background: #ffffff;
    color: var(--indigo);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-actions .btn-primary:hover {
    background: #f0eeff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
/* Hero ghost CTA: white border, white text */
.hero-actions .btn-outline,
.hero-actions .btn-ghost {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}
.hero-actions .btn-outline:hover,
.hero-actions .btn-ghost:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.6);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.trust-item i { color: #10b981; font-size: 14px; }

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: dashFloat 5s ease-in-out infinite;
}
@keyframes dashFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Dashboard mockup: glass on dark hero */
.hero-dashboard {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 60px rgba(70,55,172,0.2);
    opacity: 0;
    transform: translateY(40px) scale(0.97);
}
.dash-loaded {
    animation: dashIn 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes dashIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.db-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}
.db-dots { display: flex; gap: 6px; }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot:nth-child(1) { background: #FF5F57; }
.db-dot:nth-child(2) { background: #FEBC2E; }
.db-dot:nth-child(3) { background: #28C840; }
.db-title { flex: 1; text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); }
.db-body { padding: 20px; }
.db-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.db-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 14px;
}
.db-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.db-stat-value { font-size: 22px; font-weight: 700; font-family: var(--font-display); color: #ffffff; }
.db-stat-change { font-size: 11px; margin-top: 4px; }
.db-stat-change.up { color: #10b981; }
.db-stat-change.down { color: #ef4444; }
.db-stat-change.neutral { color: rgba(255,255,255,0.45); }

.db-chart-area {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}
.db-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.db-chart-header span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); }
.db-chart-badge {
    font-size: 10px;
    padding: 2px 8px;
    background: rgba(16,185,129,0.2);
    color: #10b981;
    border-radius: 100px;
    border: 1px solid rgba(16,185,129,0.35);
}
.db-sparkline {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-top: 8px;
}
.db-bar {
    flex: 1;
    background: linear-gradient(135deg, #4637ac, #8989ed);
    border-radius: 3px 3px 0 0;
    opacity: 0.75;
    transition: opacity 0.2s;
    animation: growBar 1s ease forwards;
    transform-origin: bottom;
}
.db-bar:hover { opacity: 1; }
@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
.db-table {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.db-table-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    transition: background 0.2s;
    color: rgba(255,255,255,0.8);
}
.db-table-row:last-child { border-bottom: none; }
.db-table-row:hover { background: rgba(255,255,255,0.06); }
.db-table-row.header { color: rgba(255,255,255,0.45); font-weight: 600; font-size: 11px; }
.db-retailer-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.db-retailer-name { flex: 1; font-weight: 500; }
.db-price { font-weight: 700; font-family: var(--font-display); }
.db-change { font-size: 11px; padding: 2px 6px; border-radius: 4px; }
.db-change.positive { background: rgba(16,185,129,0.2); color: #10b981; }
.db-change.negative { background: rgba(239,68,68,0.2); color: #ef4444; }
.db-change.neutral { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.45); }

/* Floating badges */
.hero-float-badge {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-float-badge.badge-1 { top: 20%; right: -40px; animation: floatA 4s 0.5s ease-in-out infinite; }
.hero-float-badge.badge-2 { bottom: 20%; left: -50px; animation: floatA 4s 1.5s ease-in-out infinite; }
@keyframes floatA {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.float-icon {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.float-icon.green { background: rgba(16,185,129,0.25); color: #10b981; }
.float-icon.blue { background: rgba(137,137,237,0.25); color: #8989ed; }
.float-icon.purple { background: rgba(70,55,172,0.25); color: #8989ed; }

/* Hero entrance animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(28px);
}
.hero-loaded .hero-eyebrow     { animation: heroIn 0.7s 0.1s  cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-loaded .hero-title       { animation: heroIn 0.8s 0.22s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-loaded .hero-description { animation: heroIn 0.7s 0.35s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-loaded .hero-actions     { animation: heroIn 0.7s 0.46s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-loaded .hero-trust       { animation: heroIn 0.7s 0.56s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Trusted Bar (light) ── */
.trusted-bar {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}
.logos-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.logos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.logo-item {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.55;
    letter-spacing: -0.01em;
    transition: var(--transition);
}
.logo-item:hover { opacity: 1; color: var(--indigo); }
.logos-track .logo-item i { font-size: 5px; margin-right: 6px; opacity: 0.5; }

/* ── Stats Bar (light) ── */
.stats-bar {
    padding: 48px 0;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #4637ac, #8989ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* ── Features Section (light) ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.feature-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(34,26,85,0.12);
}
.feature-card.featured {
    background: linear-gradient(145deg, rgba(70,55,172,0.06) 0%, rgba(137,137,237,0.04) 100%);
    border-color: rgba(70,55,172,0.2);
}
.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #4637ac, #3d2e93);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(70,55,172,0.3);
}
.feature-icon-wrap { margin-bottom: 20px; }
.feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}
.feature-list li i { color: var(--emerald); font-size: 11px; flex-shrink: 0; }

/* ── Value Section (light) ── */
.value-section {
    padding: 96px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.value-checks { display: flex; flex-direction: column; gap: 24px; }
.value-check-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.vc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4637ac, #3d2e93);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(70,55,172,0.25);
}
.value-check-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.value-check-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.value-card-stack { display: flex; flex-direction: column; gap: 16px; }
.vcard {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.vcard:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-bright);
}
.vcard-icon {
    width: 44px;
    height: 44px;
    background: rgba(70,55,172,0.10);
    color: var(--indigo);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.vcard-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.vcard-text span { font-size: 12px; color: var(--text-muted); }

/* ── How It Works (light) ── */
.how-section {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--indigo) 0%, var(--lavender) 100%);
    opacity: 0.2;
    z-index: 0;
}
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.step-icon {
    width: 72px;
    height: 72px;
    background: rgba(70,55,172,0.08);
    border: 2px solid rgba(70,55,172,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--indigo);
    transition: var(--transition);
    margin-bottom: 0;
}
.step-card:hover .step-icon {
    background: linear-gradient(135deg, #4637ac, #3d2e93);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(70,55,172,0.3);
}
.step-num {
    position: absolute;
    bottom: -4px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #4637ac, #3d2e93);
    color: white;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #F7F8FF;
}
.step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Markets Section (light) ── */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.market-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.market-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.market-flag { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.market-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--text-primary); }
.market-stats { font-size: 12px; color: var(--text-muted); }
.market-count {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4637ac, #8989ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

/* ── Testimonials (light) ── */
.testimonials { background: var(--bg-elevated); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(70,55,172,0.05);
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars { color: #F59E0B; font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4637ac, #8989ed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA Section (dark gradient) ── */
.cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #221a55 0%, #3d2e93 55%, #4637ac 100%);
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(137,137,237,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}
.cta-box .section-badge {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
    color: #ffffff;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #ffffff;
}
.cta-title .gradient-text {
    background: linear-gradient(135deg, #8989ed, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-title-accent {
    background: linear-gradient(135deg, #8989ed, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
/* CTA primary: white bg, indigo text */
.cta-actions .btn-primary {
    background: #ffffff;
    color: var(--indigo);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-actions .btn-primary:hover {
    background: #f0eeff;
    transform: translateY(-2px);
}
/* CTA outline: white border */
.cta-actions .btn-outline {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}
.cta-actions .btn-outline:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.6);
}

/* ── Pricing Section ── */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.pricing-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-card.popular {
    background: linear-gradient(145deg, #4637ac 0%, #3d2e93 100%);
    border-color: #4637ac;
    transform: scale(1.04);
    color: white;
}
.pricing-card.popular * { color: white !important; }
.pricing-card.popular .pricing-plan { color: rgba(255,255,255,0.65) !important; }
.pricing-card.popular .pricing-desc { color: rgba(255,255,255,0.72) !important; }
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,0.82) !important; }
.pricing-card.popular .pricing-features li.disabled { opacity: 0.4; }
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
}
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-size: 1.4rem; font-weight: 700; padding-bottom: 6px; color: var(--text-secondary); }
.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}
.pricing-period { font-size: 13px; color: var(--text-muted); padding-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.pricing-features li i { color: var(--emerald); margin-top: 2px; font-size: 12px; flex-shrink: 0; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--text-muted); }
.pricing-cta { display: block; text-align: center; }

/* ── Page Header ── */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #221a55 0%, #3d2e93 55%, #4637ac 100%);
    color: #ffffff;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(137,137,237,0.25) 0%, transparent 70%);
}
.page-header .section-title { color: #ffffff; }
.page-header .section-badge {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
    color: #ffffff;
}

/* ── Footer (dark gradient) ── */
.footer {
    background: linear-gradient(135deg, #221a55 0%, #3d2e93 55%, #4637ac 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.65);
}
.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at top, rgba(137,137,237,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.footer-col h4 { color: rgba(255,255,255,0.9); }
.footer-col ul li a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: #ffffff; }
.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .navbar-brand { margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; }

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}
.newsletter-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #ffffff; }
.newsletter-content p { font-size: 13px; color: rgba(255,255,255,0.5); }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 440px; }
.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: #ffffff; }
.footer-badges { display: flex; gap: 12px; }
.badge-item { font-size: 11px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 5px; }
.badge-item i { color: var(--emerald); }

/* ── Cards ── */
.card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
    border-color: var(--indigo);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(70,55,172,0.10);
}
.form-control.error { border-color: var(--crimson); }
.form-error { font-size: 12px; color: var(--crimson); margin-top: 6px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Alerts ── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.alert-success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: #059669; }
.alert-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #dc2626; }
.alert-info { background: rgba(70,55,172,0.08); border: 1px solid rgba(70,55,172,0.2); color: var(--indigo); }

/* ── Tags / Badges ── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.tag-green { background: rgba(16,185,129,0.12); color: #059669; border: 1px solid rgba(16,185,129,0.25); }
.tag-blue { background: rgba(70,55,172,0.08); color: var(--indigo); border: 1px solid rgba(70,55,172,0.2); }
.tag-purple { background: rgba(137,137,237,0.12); color: var(--indigo-dark); border: 1px solid rgba(137,137,237,0.25); }
.tag-red { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }

/* ── Scroll Reveal Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
                transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}
[data-animate][data-delay="50"]  { transition-delay: 0.05s; }
[data-animate][data-delay="100"] { transition-delay: 0.10s; }
[data-animate][data-delay="150"] { transition-delay: 0.15s; }
[data-animate][data-delay="200"] { transition-delay: 0.20s; }
[data-animate][data-delay="250"] { transition-delay: 0.25s; }
[data-animate][data-delay="300"] { transition-delay: 0.30s; }
[data-animate][data-delay="400"] { transition-delay: 0.40s; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #4637ac, #8989ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ── Logos Section ── */
.logos-section { padding: 64px 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .navbar-nav, .navbar-actions { display: none; }
    .hamburger { display: flex; }
    section { padding: 64px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .markets-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-newsletter { flex-direction: column; align-items: flex-start; }
    .newsletter-form { max-width: 100%; width: 100%; }
    .hero-float-badge { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.4rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .markets-grid { grid-template-columns: 1fr 1fr; }
    .db-stats { grid-template-columns: 1fr 1fr 1fr; }
}
