/* ================================================================
   MyEventTix — Main Stylesheet
   Premium SaaS Landing Page
   ================================================================ */

/* ── Google Fonts Fallback Import ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
    /* ── Logo Brand Colors ──────────────────────
       Primary teal  : #00B5AA  (the "tix" accent)
       Dark navy     : #1A3A5C  (the "myevent" text)
    ──────────────────────────────────────────── */
    --primary:          #00B5AA;
    --primary-hover:    #009E94;
    --primary-dark:     #1A3A5C;
    --primary-light:    #E0F7F6;
    --primary-glow:     rgba(0, 181, 170, 0.25);

    /* Accent */
    --green:    #10B981;
    --blue:     #1A3A5C;
    --orange:   #F59E0B;
    --teal-mid: #2BC5B8;

    /* Gradients */
    --grad-primary:  linear-gradient(135deg, #1A3A5C 0%, #00B5AA 100%);
    --grad-hero:     linear-gradient(135deg, #071828 0%, #0D2640 100%);
    --grad-subtle:   linear-gradient(135deg, #F0FAFA 0%, #E8F4F8 100%);
    --grad-card:     linear-gradient(135deg, rgba(0,181,170,0.06) 0%, rgba(26,58,92,0.04) 100%);

    /* Text */
    --text-dark:    #0A1929;
    --text-body:    #374151;
    --text-muted:   #6B7280;
    --text-light:   #9CA3AF;
    --text-white:   #FFFFFF;

    /* Backgrounds */
    --bg-white:     #FFFFFF;
    --bg-light:     #F9FAFB;
    --bg-alt:       #F0FAFA;
    --bg-hero:      #071828;
    --bg-dark:      #071828;
    --bg-footer:    #040F1A;

    /* Border */
    --border:       #E5E7EB;
    --border-light: #F3F4F6;
    --border-card:  rgba(0, 181, 170, 0.15);

    /* Shadows */
    --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm:    0 4px 12px rgba(0,0,0,0.07);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
    --shadow-purple:0 8px 32px rgba(0,181,170,0.25);
    --shadow-card:  0 4px 24px rgba(0,181,170,0.12);

    /* Radius */
    --r-sm:  8px;
    --r:     12px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-2xl: 48px;
    --r-full:9999px;

    /* Transitions */
    --ease:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-fast: all 0.15s ease;
    --ease-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --section-pad: 100px;
    --header-h:     76px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; touch-action: pan-y pinch-zoom; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    touch-action: pan-y;
}

/* Keeps section tops clear of the fixed header for native/browser-driven
   anchor jumps (direct links, refresh with a #hash, back/forward). */
section[id] {
    scroll-margin-top: var(--header-h);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
}

/* Prevent iOS auto-zoom on input focus (font-size must be >= 16px) */
input, select, textarea {
    font-size: 16px !important;
}

/* Hard clip — prevents ANY child from causing horizontal scroll.
   position:fixed children (header, back-to-top) are not affected
   because their containing block is the viewport, not this div. */
.site-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; transition: var(--ease); }
ul  { list-style: none; padding: 0; margin: 0; }

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.section-padding { padding: var(--section-pad) 0; }

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header .navbar {
    padding: 18px 0;
    background: transparent;
    transition: var(--ease);
}

/* Scrolled state → glassmorphism */
.site-header.scrolled .navbar {
    background: rgba(7, 24, 40, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    /* Invert dark logo to white so it's visible on dark header */
    filter: brightness(0) invert(1);
    transition: height 0.3s ease, opacity 0.2s ease;
}

.brand-logo-img:hover { opacity: 0.85; }

/* Shrink slightly when scrolled */
.site-header.scrolled .brand-logo-img { height: 36px; }

/* Nav links */
.nav-center-links .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px !important;
    border-radius: var(--r-full);
    transition: var(--ease);
}

.nav-center-links .nav-link:hover,
.nav-center-links .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-text-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 10px;
}

.nav-text-link:hover { color: #fff; }

.btn-nav-outline {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--r-full);
    background: transparent;
    transition: var(--ease);
}

.btn-nav-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.btn-nav-primary {
    background: var(--grad-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--r-full);
    border: none;
    box-shadow: var(--shadow-purple);
    transition: var(--ease);
}

.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,181,170,0.35);
    color: #fff;
}

/* Custom hamburger */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.toggler-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: var(--ease);
    transform-origin: center;
}

.custom-toggler.is-open .toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.custom-toggler.is-open .toggler-line:nth-child(2) { opacity: 0; }
.custom-toggler.is-open .toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.custom-toggler:focus { box-shadow: none; outline: none; }

/* Mobile menu */
@media (max-width: 991px) {
    .site-header .navbar { background: rgba(7,24,40,0.95) !important; }

    #navbarMain {
        background: rgba(7,24,40,0.98);
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 16px 0 24px;
        margin-top: 12px;
    }

    .nav-center-links { margin-bottom: 16px; }
    .nav-center-links .nav-link { padding: 10px 16px !important; border-radius: var(--r-sm); }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
        gap: 8px;
    }

    .nav-text-link, .btn-nav-outline, .btn-nav-primary {
        text-align: center;
        width: 100%;
        display: block;
        padding: 10px 20px;
    }
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    background: var(--grad-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}

/* Animated blobs */
.hero-bg-elements { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    transition: transform 0.8s ease;
}

.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,181,170,0.6) 0%, transparent 70%);
    top: -200px; left: -100px;
}

.hero-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(43,197,184,0.4) 0%, transparent 70%);
    bottom: -150px; right: -100px;
}

.hero-blob-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(26,58,92,0.45) 0%, transparent 70%);
    top: 30%; left: 40%;
}

/* Dot grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ================================================================
   COMING SOON SECTION
   ================================================================ */
.coming-soon-section {
    position: relative;
    background: var(--grad-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.coming-soon-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}

.coming-soon-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 32px;
    filter: brightness(0) invert(1);
}

.coming-soon-badge { background: rgba(0,181,170,0.2); color: #5EDBD5; border: 1px solid rgba(0,181,170,0.35); }

.coming-soon-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.coming-soon-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 32px;
}

.coming-soon-contact {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #5EDBD5;
}

.coming-soon-contact:hover { color: #fff; }

/* Hero content */
.hero-section .row { padding: 60px 0 80px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,170,0.2);
    border: 1px solid rgba(0,181,170,0.4);
    color: #5EDBD5;
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px; height: 7px;
    background: #00B5AA;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero {
    background: var(--grad-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--r-full);
    border: none;
    box-shadow: 0 8px 32px rgba(0,181,170,0.4);
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,181,170,0.5);
    color: #fff;
}

.btn-outline-hero {
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--r-full);
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
}

.btn-outline-hero:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(7,24,40,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }

.trust-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.trust-text strong { color: rgba(255,255,255,0.9); }

/* ─── DASHBOARD MOCKUP ─── */
.hero-visual { position: relative; }

.dashboard-mockup {
    position: relative;
    margin-top: 20px;
}

.mockup-browser {
    background: #0E1E2F;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.mockup-browser-bar {
    background: #091729;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.browser-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green  { background: #28C840; }

.browser-url {
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-full);
    padding: 4px 14px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    flex: 1;
    text-align: center;
    font-family: monospace;
}

.mockup-content {
    display: flex;
    min-height: 360px;
}

/* Sidebar */
.mockup-sidebar {
    width: 160px;
    background: #0D2035;
    padding: 16px 0;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.04);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 12px;
}

.sidebar-logo i { color: #00B5AA; font-size: 0.875rem; }
.sidebar-logo span { color: #fff; font-size: 0.75rem; font-weight: 700; }

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: var(--ease);
    border-radius: 0 var(--r-full) var(--r-full) 0;
    margin-right: 8px;
}

.sidebar-item i { font-size: 0.75rem; width: 14px; }
.sidebar-item:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05); }
.sidebar-item.active { color: #00B5AA; background: rgba(43,197,184,0.15); }

/* Main area */
.mockup-main { flex: 1; padding: 16px; overflow: hidden; }

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

.mockup-greeting { color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 600; }

.mockup-avatar {
    width: 26px; height: 26px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
}

/* Stat cards */
.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.mockup-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-sm);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.stat-green  { background: rgba(16,185,129,0.2); color: #10B981; }
.stat-blue   { background: rgba(59,130,246,0.2); color: #3B82F6; }
.stat-purple { background: rgba(43,197,184,0.2); color: #00B5AA; }
.stat-orange { background: rgba(245,158,11,0.2); color: #F59E0B; }

.stat-info { flex: 1; min-width: 0; }
.stat-value { display: block; font-size: 0.75rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 2px; }
.stat-label { font-size: 0.55rem; color: rgba(255,255,255,0.4); white-space: nowrap; }

.stat-trend {
    font-size: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
}
.stat-trend.up   { color: #10B981; }
.stat-trend.down { color: #F59E0B; }

/* Chart */
.mockup-chart-area { background: rgba(255,255,255,0.03); border-radius: var(--r-sm); padding: 10px; }
.chart-title { font-size: 0.625rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; font-weight: 600; }

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    background: rgba(43,197,184,0.35);
    border-radius: 3px 3px 0 0;
    min-height: 4px;
    transition: background 0.3s ease;
}

.chart-bar.active { background: var(--grad-primary); }
.chart-bar-wrap:hover .chart-bar { background: rgba(43,197,184,0.6); }
.chart-bar-wrap span { font-size: 0.5rem; color: rgba(255,255,255,0.3); }

/* Floating notification cards */
.float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: float-bob 4s ease-in-out infinite;
}

.float-card-1 { bottom: 60px; left: -40px; min-width: 190px; }
.float-card-2 { top: 30px;    right: -20px; min-width: 210px; animation-delay: 0.5s; }

@keyframes float-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.fc-icon {
    width: 36px; height: 36px;
    background: rgba(0,181,170,0.25);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B5AA;
    font-size: 1rem;
    flex-shrink: 0;
}
.fc-icon.fc-green { background: rgba(16,185,129,0.2); color: #10B981; }

.fc-text strong { display: block; font-size: 0.8125rem; font-weight: 600; color: #fff; }
.fc-text span   { font-size: 0.6875rem; color: rgba(255,255,255,0.55); }

.fc-status {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    margin-left: auto;
    animation: pulse-dot 1.5s infinite;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fade-in 1s 1.5s both;
}

.scroll-indicator span { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; }

.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel {
    width: 4px; height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%   { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.stats-section {
    background: var(--bg-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 48px;
    flex: 1 1 180px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.features-section  { background: var(--bg-light); overflow: hidden; }

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 24px;
    height: 100%;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0,181,170,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.feature-icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 18px;
    position: relative;
    transition: var(--ease-spring);
}

.feature-card:hover .feature-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-purple);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ================================================================
   SOLUTIONS SECTION
   ================================================================ */
.solutions-section { background: var(--bg-white); overflow: hidden; }

.solution-card {
    background: var(--bg-alt);
    border: 1px solid transparent;
    border-radius: var(--r-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--ease);
    cursor: default;
}

.solution-card:hover {
    background: var(--bg-white);
    border-color: rgba(0,181,170,0.2);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.solution-icon {
    width: 64px; height: 64px;
    background: var(--grad-primary);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-purple);
    transition: var(--ease-spring);
}

.solution-card:hover .solution-icon { transform: scale(1.08) rotate(4deg); }

.solution-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.solution-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ================================================================
   BROWSE EVENTS SECTION
   ================================================================ */
.browse-events-section { background: var(--bg-light); overflow: hidden; }

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

.browse-event-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--ease);
}

.browse-event-card:hover {
    border-color: rgba(0,181,170,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.browse-event-img {
    height: 160px;
    background-color: var(--primary-light);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
}

.browse-event-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.browse-event-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.browse-event-date i { margin-right: 5px; }

.browse-event-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.browse-event-venue {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.browse-event-venue i { margin-right: 5px; color: var(--text-light); }

.browse-event-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.browse-event-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.browse-event-btn {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.browse-event-btn i { margin-left: 4px; transition: var(--ease-fast); }
.browse-event-btn:hover i { transform: translateX(3px); }

/* Loading skeleton */
.browse-event-skeleton .browse-event-img,
.browse-skel-line {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--border) 37%, var(--border-light) 63%);
    background-size: 400% 100%;
    animation: browseSkelShimmer 1.4s ease infinite;
}

.browse-skel-line { height: 12px; border-radius: 6px; margin-bottom: 10px; }
.browse-skel-line.w-60 { width: 60%; }
.browse-skel-line.w-80 { width: 80%; }
.browse-skel-line.w-40 { width: 40%; }

@keyframes browseSkelShimmer {
    0%   { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

.browse-events-empty,
.browse-events-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}

.browse-events-empty i,
.browse-events-error i {
    font-size: 2rem;
    color: var(--border);
    margin-bottom: 14px;
    display: block;
}

@media (max-width: 991px) {
    .browse-events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .browse-events-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-it-works-section { background: var(--bg-light); overflow: hidden; }

.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    justify-content: center;
}

.step-item {
    flex: 1 1 200px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(0,181,170,0.2));
}

.step-number-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-circle {
    width: 62px; height: 62px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: var(--shadow-purple);
    transition: var(--ease-spring);
    position: relative;
    z-index: 1;
}

.step-item:hover .step-circle { transform: scale(1.1); box-shadow: 0 12px 36px rgba(0,181,170,0.35); }

.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px; height: 20px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-light);
    z-index: 2;
}

.step-item h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   DASHBOARD PREVIEW SECTION
   ================================================================ */
.dashboard-section { background: var(--bg-dark); overflow: hidden; }

.dashboard-section .section-title { color: #fff; }
.dashboard-section .section-subtitle { color: rgba(255,255,255,0.55); }
.dashboard-section .section-badge { background: rgba(0,181,170,0.2); color: #5EDBD5; border: 1px solid rgba(0,181,170,0.35); }

.dashboard-preview-card {
    background: #0E1E2F;
    border-radius: var(--r-xl);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.dashboard-preview-header {
    background: #0D2035;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dashboard-preview-header .dot-row { display: flex; gap: 6px; }
.dashboard-preview-header .browser-url { flex: 0 1 300px; text-align: center; }

.dp-content { padding: 24px; }

.dp-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dp-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-md);
    padding: 20px;
    text-align: center;
    transition: var(--ease);
}

.dp-stat:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,181,170,0.3);
}

.dp-stat-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin: 0 auto 12px;
}

.dp-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.dp-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.dp-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--r-full);
    margin-top: 6px;
}

.dp-stat-badge.up   { background: rgba(16,185,129,0.15); color: #10B981; }
.dp-stat-badge.down { background: rgba(245,158,11,0.15); color: #F59E0B; }
.dp-stat-badge.info { background: rgba(59,130,246,0.15); color: #60A5FA; }

.dp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.dp-events-panel, .dp-payment-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--r-md);
    padding: 16px;
}

.dp-panel-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-event-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dp-event-row:last-child { border-bottom: none; padding-bottom: 0; }

.dp-event-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dp-event-name { font-size: 0.75rem; color: rgba(255,255,255,0.7); flex: 1; }
.dp-event-tickets { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

.dp-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dp-payment-row:last-child { border-bottom: none; }
.dp-payment-method { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.dp-payment-status {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--r-full);
}
.dp-payment-status.approved  { background: rgba(16,185,129,0.15); color: #10B981; }
.dp-payment-status.pending   { background: rgba(245,158,11,0.15);  color: #F59E0B; }
.dp-payment-status.completed { background: rgba(59,130,246,0.15);  color: #60A5FA; }

/* ================================================================
   BUYER EXPERIENCE
   ================================================================ */
.buyer-section { background: var(--bg-white); overflow: hidden; }

.buyer-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.buyer-step {
    flex: 1 1 160px;
    max-width: 180px;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

.buyer-step:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 22px;
    right: -14px;
    color: rgba(0,181,170,0.3);
    font-size: 0.875rem;
    z-index: 1;
}

.buyer-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 auto 14px;
    transition: var(--ease-spring);
}

.buyer-step:hover .buyer-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-purple);
}

.buyer-step h5 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.buyer-step p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ================================================================
   PRICING SECTION
   ================================================================ */
.pricing-section { background: var(--bg-alt); overflow: hidden; }

/* Toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
}

.toggle-label.active { color: var(--text-dark); font-weight: 600; }

.toggle-switch {
    position: relative;
    width: 52px; height: 28px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: var(--ease);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 4px; left: 4px;
    transition: var(--ease);
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.yearly-badge {
    display: none;
    background: rgba(16,185,129,0.15);
    color: var(--green);
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    align-items: center;
    gap: 4px;
}

/* Pricing cards */
.pricing-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    height: 100%;
    position: relative;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(0,181,170,0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: var(--bg-dark);
    border-color: rgba(0,181,170,0.5);
    box-shadow: 0 0 0 4px rgba(0,181,170,0.1), var(--shadow-lg);
}

.pricing-card.featured:hover {
    border-color: rgba(43,197,184,0.7);
    box-shadow: 0 0 0 4px rgba(0,181,170,0.15), var(--shadow-purple);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    padding: 4px 18px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-purple);
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.plan-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-card.featured .price-amount { color: #fff; }

.price-free { color: var(--primary); }

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.plan-billing-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 28px;
    min-height: 20px;
}

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

.plan-features {
    flex: 1;
    margin-bottom: 28px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-body);
}

.pricing-card.featured .plan-feature {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.05);
}

.plan-feature:last-child { border-bottom: none; }

.plan-feature i {
    color: var(--green);
    font-size: 0.875rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-feature i.unavail { color: var(--border); }

.btn-plan {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: var(--r-full);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--ease);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-plan:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-plan-featured {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: var(--r-full);
    font-size: 0.9375rem;
    font-weight: 600;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    transition: var(--ease);
    box-shadow: var(--shadow-purple);
}

.btn-plan-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,181,170,0.45);
    color: #fff;
}

/* Enterprise / Fixed-price card */
.pricing-card-enterprise {
    background: var(--bg-white);
    border: 1.5px solid rgba(26,58,92,0.25);
    position: relative;
}

.pricing-card-enterprise:hover {
    border-color: rgba(26,58,92,0.5);
    box-shadow: 0 8px 32px rgba(26,58,92,0.15);
    transform: translateY(-4px);
}

.plan-badge-enterprise {
    background: linear-gradient(135deg, #1A3A5C, #2C5282);
    color: #fff;
}

.price-enterprise { color: var(--primary-dark); }

.pricing-card-enterprise .plan-name  { color: var(--primary-dark); }
.pricing-card-enterprise .plan-desc  { color: var(--text-muted); }
.pricing-card-enterprise .plan-billing-note { color: var(--text-muted); }

.btn-plan-enterprise {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: var(--r-full);
    font-size: 0.9375rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1A3A5C, #2C5282);
    color: #fff;
    border: none;
    transition: var(--ease);
    box-shadow: 0 8px 24px rgba(26,58,92,0.25);
}

.btn-plan-enterprise:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26,58,92,0.35);
    color: #fff;
}

/* ================================================================
   STRIPE ACCOUNT SECTION
   ================================================================ */
.stripe-section { background: var(--bg-light); overflow: hidden; }

/* Steps */
.stripe-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stripe-step {
    display: flex;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
}

.stripe-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0,181,170,0.4), rgba(0,181,170,0.05));
}

.stripe-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,181,170,0.35);
    position: relative;
    z-index: 1;
}

.stripe-step-body { padding-top: 8px; }

.stripe-step-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.stripe-step-body p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

.stripe-step-body a { color: var(--primary); font-weight: 600; }
.stripe-step-body code {
    background: rgba(0,181,170,0.1);
    color: var(--primary-dark);
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 0.8125rem;
    font-family: monospace;
}

/* Info card */
.stripe-info-card {
    background: var(--bg-dark);
    border: 1.5px solid rgba(0,181,170,0.2);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.stripe-info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,181,170,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stripe-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stripe-logo-wrap {
    width: 52px;
    height: 52px;
    background: #635BFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
}

.stripe-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.stripe-info-sub {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

/* Benefits */
.stripe-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.stripe-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.stripe-benefit i {
    width: 36px;
    height: 36px;
    background: rgba(0,181,170,0.12);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.stripe-benefit div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stripe-benefit strong {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.stripe-benefit span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* Payout note */
.stripe-payout-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 24px;
}

.stripe-payout-note i {
    color: rgba(255,255,255,0.3);
    font-size: 0.875rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.stripe-payout-note p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    line-height: 1.65;
}

/* CTA button */
.btn-stripe-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--r-full);
    background: var(--grad-primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    transition: var(--ease);
    box-shadow: var(--shadow-purple);
}

.btn-stripe-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,181,170,0.45);
    color: #fff;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section { background: var(--bg-white); overflow: hidden; }

.faq-wrapper { max-width: 760px; margin: 0 auto; }

.accordion-item {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--r-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--ease);
}

.accordion-item:hover { border-color: rgba(0,181,170,0.2) !important; }

.accordion-button {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    background: var(--bg-white) !important;
    padding: 20px 24px;
    gap: 12px;
}

.accordion-button:focus { box-shadow: none !important; }

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background: var(--bg-alt) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300B5AA'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 24px 20px;
    background: var(--bg-alt) !important;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,181,170,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: rgba(255,255,255,0.55); max-width: 420px; }
.contact-section .section-badge { background: rgba(0,181,170,0.2); color: #5EDBD5; border: 1px solid rgba(0,181,170,0.35); }

/* Info list */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,181,170,0.15);
    border: 1px solid rgba(0,181,170,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

a.contact-info-value:hover { color: var(--primary); }

/* Features strip */
.contact-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}

.contact-feature i { color: var(--green); font-size: 0.75rem; }

/* Form card */
.contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    position: relative;
}

/* Fields */
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.2px;
}

.contact-field .req { color: var(--primary); }

.contact-field input,
.contact-field select,
.contact-field textarea {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #fff;
    outline: none;
    transition: var(--ease);
    width: 100%;
}

.contact-field select option {
    background: #0D2035;
    color: #fff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(0,181,170,0.6);
    background: rgba(0,181,170,0.07);
    box-shadow: 0 0 0 3px rgba(0,181,170,0.12);
}

.contact-field.is-invalid input,
.contact-field.is-invalid select,
.contact-field.is-invalid textarea {
    border-color: rgba(239,68,68,0.6);
}

.contact-field textarea { resize: vertical; min-height: 130px; }

.field-error {
    font-size: 0.75rem;
    color: #F87171;
    display: none;
}

.contact-field.is-invalid .field-error { display: block; }

.field-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

/* Submit button */
.btn-contact-submit {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: var(--r-full);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    background: var(--grad-primary);
    color: #fff;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: var(--shadow-purple);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,181,170,0.45);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success state */
.contact-success {
    text-align: center;
    padding: 20px 0;
}

.contact-success-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-success p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.btn-contact-reset {
    background: transparent;
    border: 1.5px solid rgba(0,181,170,0.4);
    border-radius: var(--r-full);
    color: var(--primary);
    padding: 10px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
}

.btn-contact-reset:hover {
    background: rgba(0,181,170,0.1);
    border-color: var(--primary);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--bg-footer); overflow: hidden; }

.footer-main { padding: 80px 0 50px; }

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo:hover { opacity: 0.9; }

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    /* Invert dark logo to white so it's visible on dark footer */
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}

.footer-logo:hover .footer-logo-img { opacity: 0.8; }

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 300px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: var(--ease);
}

.footer-email:hover { color: #00B5AA; }

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

.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: var(--ease);
}

.social-link:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: var(--ease);
}

.footer-links ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 3px; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-copyright a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.footer-copyright a:hover { color: var(--primary); }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    transition: var(--ease);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-sep { color: rgba(255,255,255,0.15); }

/* ================================================================
   FLOATING ELEMENTS
   ================================================================ */

/* Floating CTA */
.floating-cta-btn {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--r-full);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0,181,170,0.4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn:hover {
    color: #fff;
    box-shadow: 0 12px 40px rgba(0,181,170,0.55);
    transform: translateY(-3px);
}

/* Back to top */
.back-to-top-btn {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 900;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-sm);
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── 1200px ── */
@media (max-width: 1199px) {
    .hero-section .row { padding: 40px 0 60px; }
    .float-card-1 { left: -10px; }
    .float-card-2 { right: -10px; }
}

/* ── 992px (tablet landscape) ── */
@media (max-width: 991px) {
    :root { --section-pad: 70px; }

    /* Hero */
    .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-visual { margin-top: 50px; }
    .float-card  { display: none; }
    .scroll-indicator { display: none; }

    /* Stats */
    .stat-item    { padding: 16px 24px; }
    .stat-divider { display: none; }

    /* How it works */
    .step-item:not(:last-child)::after { display: none; }
    .steps-wrapper {
        gap: 32px;
        justify-content: center;
    }
    .step-item {
        flex: 0 0 calc(33.333% - 24px);
        max-width: calc(33.333% - 24px);
    }

    /* Buyer experience */
    .buyer-step:not(:last-child)::after { display: none; }
    .buyer-steps {
        gap: 24px;
        flex-wrap: wrap;
    }
    .buyer-step {
        flex: 0 0 calc(33.333% - 18px);
        max-width: calc(33.333% - 18px);
    }

    /* Dashboard */
    .dp-grid { grid-template-columns: 1fr; }

    /* Pricing */
    .pricing-card.featured       { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }

    /* Footer */
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal        { justify-content: center; }

    /* Stripe section */
    .stripe-info-card { margin-top: 0; }
}

/* ── 768px (tablet portrait) ── */
@media (max-width: 767px) {
    :root { --section-pad: 60px; }

    /* Hero */
    .hero-section .row    { padding: 20px 0 40px; }
    .hero-buttons         { flex-direction: row; flex-wrap: wrap; align-items: center; }
    .btn-hero,
    .btn-outline-hero     { font-size: 0.9rem; padding: 11px 22px; }
    .hero-trust           { justify-content: center; }

    /* Stats */
    .stats-wrapper        { flex-direction: column; gap: 0; }
    .stat-divider         { width: 60px; height: 1px; margin: 0 auto; }

    /* Dashboard mockup */
    .mockup-sidebar       { width: 110px; }
    .mockup-stats         { grid-template-columns: 1fr; }
    .mockup-browser       { border-radius: 10px; }

    /* How it works — 2 cols on tablet portrait */
    .step-item {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    /* Buyer — 2 cols */
    .buyer-step {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    /* Dashboard section */
    .dp-stats-row { grid-template-columns: 1fr 1fr; }

    /* Pricing */
    .pricing-card-enterprise { margin-top: 8px; }

    /* Contact form */
    .contact-form-card { padding: 28px 20px; }

    /* Stripe section */
    .stripe-step-num { width: 34px; height: 34px; font-size: 0.8rem; }
    .stripe-info-card { padding: 24px; }

    /* Footer */
    .footer-main          { padding: 60px 0 40px; }
    .footer-copyright     { font-size: 0.75rem; }
}

/* ── 576px (mobile) ── */
@media (max-width: 575px) {
    :root { --section-pad: 50px; }

    /* Hero */
    .hero-title           { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .hero-subtitle        { font-size: 1rem; }
    .hero-trust           { flex-direction: column; align-items: flex-start; gap: 8px; }
    .btn-hero,
    .btn-outline-hero     { font-size: 0.875rem; padding: 10px 20px; }

    /* Mockup */
    .mockup-sidebar       { display: none; }
    .mockup-stats         { grid-template-columns: 1fr; }

    /* How it works — 1 col on mobile */
    .step-item {
        flex: 0 0 100%;
        max-width: 280px;
    }

    /* Buyer — 1 col on mobile */
    .buyer-step {
        flex: 0 0 100%;
        max-width: 240px;
    }

    /* Pricing */
    .pricing-toggle-wrap  { flex-direction: column; gap: 8px; }

    /* Contact */
    .contact-info-list    { gap: 16px; }
    .contact-form-card    { padding: 22px 16px; }

    /* Stripe */
    .stripe-info-card     { padding: 20px 16px; }
    .stripe-info-header   { gap: 12px; }
    .stripe-logo-wrap     { width: 42px; height: 42px; font-size: 1.4rem; }

    /* Footer */
    .footer-links ul li   { margin-bottom: 8px; }
    .footer-social        { gap: 8px; }

    /* Floating CTA + Back to top — right-side stack on mobile */
    .floating-cta-btn span  { display: inline; font-size: 0.8rem; }
    .floating-cta-btn       { padding: 10px 16px; bottom: 80px; right: 16px; }
    .back-to-top-btn        { bottom: 24px; right: 16px; }

    /* Legal pages */
    .legal-toc ol         { columns: 1; }
    .legal-page-nav       { flex-direction: column; }
    .cookie-table-wrap    { font-size: 0.8125rem; }
}

/* ── 400px (small phones) ── */
@media (max-width: 400px) {
    .hero-title           { font-size: 1.65rem; }
    .section-title        { font-size: clamp(1.5rem, 7vw, 2rem); }
    .contact-form-card    { padding: 18px 14px; }
    .nav-actions          { gap: 6px; }
}

/* ================================================================
   AOS — PREVENT HORIZONTAL OVERFLOW ON MOBILE
   ================================================================ */
@media (max-width: 991px) {
    /* Force any horizontal AOS slides to vertical to stop scroll bleed */
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translate3d(0, 30px, 0) !important;
    }
    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        transform: translate3d(0, 0, 0) !important;
    }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
    .site-header, .floating-cta-btn, .back-to-top-btn, .scroll-indicator { display: none !important; }
}
