/* ==========================================================================
   Zhetkizu Design System & Theme Variables
   ========================================================================== */

:root {
    /* Brand Colors (Constant in both themes) */
    --primary: #FF5A1F;
    --primary-hover: #E04810;
    --primary-glow: rgba(255, 90, 31, 0.28);
    --secondary: #10B981;
    --secondary-hover: #059669;
    --secondary-glow: rgba(16, 185, 129, 0.25);
    --accent: #FF8A50;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    
    /* Dark Theme Default Variables */
    --bg: #090D16;
    --bg-secondary: #0F172A;
    --bg-alt: rgba(17, 24, 39, 0.4);
    --header-bg: rgba(9, 13, 22, 0.85);
    
    --card-bg: rgba(17, 24, 39, 0.75);
    --card-bg-solid: #111827;
    --card-border: rgba(255, 255, 255, 0.09);
    --card-border-hover: rgba(255, 90, 31, 0.4);
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    --input-bg: rgba(15, 23, 42, 0.7);
    --input-border: rgba(255, 255, 255, 0.12);
    
    --badge-bg: rgba(255, 90, 31, 0.12);
    --badge-border: rgba(255, 90, 31, 0.25);
    --badge-color: #FF8A50;
    
    --footer-bg: #06090F;
    --footer-border: rgba(255, 255, 255, 0.08);
    
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.35);
    --shadow-mockup: 0 30px 60px rgba(0, 0, 0, 0.5);
    --glow-opacity: 0.18;
    
    --mockup-frame: #1E293B;
    --mockup-border: #334155;
    --mockup-bar-bg: #1E293B;
    --mockup-bar-dot: rgba(255, 255, 255, 0.2);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-alt: #F1F5F9;
    --header-bg: rgba(255, 255, 255, 0.92);
    
    --card-bg: #FFFFFF;
    --card-bg-solid: #FFFFFF;
    --card-border: #E2E8F0;
    --card-border-hover: rgba(255, 90, 31, 0.45);
    
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-dim: #94A3B8;
    
    --input-bg: #FFFFFF;
    --input-border: #CBD5E1;
    
    --badge-bg: rgba(255, 90, 31, 0.09);
    --badge-border: rgba(255, 90, 31, 0.22);
    --badge-color: #D94814;
    
    --footer-bg: #0F172A;
    --footer-border: #1E293B;
    
    --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.07);
    --shadow-mockup: 0 20px 50px rgba(15, 23, 42, 0.15);
    --glow-opacity: 0.08;
    
    --mockup-frame: #FFFFFF;
    --mockup-border: #E2E8F0;
    --mockup-bar-bg: #F1F5F9;
    --mockup-bar-dot: #CBD5E1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #1E293B;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.align-center { align-items: center; }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
    padding: 14px 0;
    transition: var(--transition);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}
.logo-accent {
    background: linear-gradient(135deg, #FF7E40 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--primary);
}

/* Nav Dropdown (Wolt style) */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}
.nav-dropdown-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.nav-dropdown.active .nav-dropdown-btn i,
.nav-dropdown:hover .nav-dropdown-btn i {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 260px;
    background: #111827;
    border: 1px solid var(--dark-card-border);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}
[data-theme="light"] .nav-dropdown-menu {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 10px;
    color: var(--text-main);
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.07);
}
[data-theme="light"] .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}
.dropdown-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.dropdown-item.is-active {
    background: rgba(255, 90, 31, 0.08);
}
.dropdown-item.is-active .dropdown-item-title {
    color: var(--primary);
}
.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}
.dropdown-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.theme-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Language Toggle Button */
.lang-toggle {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 0 12px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    gap: 4px;
}
.lang-toggle:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.lang-toggle .lang-opt {
    color: var(--text-dim);
    transition: var(--transition);
}
.lang-toggle .lang-opt.active {
    color: var(--primary);
}
.lang-toggle .lang-div {
    color: var(--text-dim);
    opacity: 0.4;
    font-size: 11px;
}

/* Legal Pages Language Switcher */
.legal-lang-switch {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    margin-top: 18px;
    gap: 4px;
}
.legal-lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.legal-lang-btn:hover {
    color: var(--text-main);
}
.legal-lang-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 2px 8px var(--primary-glow);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    line-height: 1;
}
.btn-primary {
    background: var(--primary);
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 90, 31, 0.4);
}
.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 10px;
}
.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 90px 0;
    overflow: hidden;
}
.hero-bg-glowing {
    position: absolute;
    top: -150px;
    left: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.16) 0%, rgba(255, 90, 31, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.badge-new {
    display: inline-flex;
    align-items: center;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    color: var(--badge-color);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.5s infinite;
}
.hero-title {
    font-size: 52px;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}
.hero-title span {
    color: var(--primary);
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 34px;
    max-width: 580px;
    line-height: 1.6;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}
.hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.badge-store {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.badge-store:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.store-icon {
    font-size: 22px;
    margin-right: 12px;
    color: var(--text-main);
}
.badge-store div {
    display: flex;
    flex-direction: column;
}
.badge-store span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}
.badge-store strong {
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Hero Visual Showcase */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-showcase-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.22) 0%, rgba(255, 90, 31, 0) 70%);
    filter: blur(50px);
    z-index: -1;
}

/* Floating chips on hero */
.hero-floating-badge {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 5s ease-in-out infinite;
}
.hero-floating-badge.badge-top-left {
    top: 30px;
    left: -20px;
}
.hero-floating-badge.badge-bottom-right {
    bottom: 40px;
    right: -20px;
    animation-delay: 2.5s;
}
.floating-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}
.floating-icon.orange { background: linear-gradient(135deg, #FF7E40, var(--primary)); }
.floating-icon.green { background: linear-gradient(135deg, #34D399, var(--secondary)); }
.floating-text h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}
.floating-text p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   Key Stats / Real Numbers Bar
   ========================================================================== */
.stats-bar-section {
    padding: 40px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-box {
    text-align: center;
    padding: 10px 16px;
}
.stat-number {
    font-size: 42px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.stat-number.green {
    color: var(--secondary);
}
.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}
.stat-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Section General
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
}
.section-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.section-header {
    margin-bottom: 56px;
}
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-tag.green {
    color: var(--secondary);
}
.section-title {
    font-size: 38px;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 650px;
    line-height: 1.6;
}
.section-subtitle.centered {
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0 34px 0;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--badge-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-icon-badge.green {
    background: rgba(16, 185, 129, 0.12);
    color: var(--secondary);
}
.feature-item h4 {
    font-size: 17px;
    margin-bottom: 4px;
}
.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ==========================================================================
   Device Mockups (Phone & Browser)
   ========================================================================== */
/* Smartphone Frame */
.phone-mockup {
    position: relative;
    width: 290px;
    border-radius: 42px;
    background: #0F172A;
    border: 8px solid var(--mockup-border);
    box-shadow: var(--shadow-mockup);
    overflow: hidden;
    margin: 0 auto;
}
.phone-mockup.tilt-left {
    transform: rotate(-3deg);
    transition: var(--transition);
}
.phone-mockup.tilt-right {
    transform: rotate(3deg);
    transition: var(--transition);
}
.phone-mockup:hover {
    transform: translateY(-8px) scale(1.02);
}
.phone-screen {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 34px;
}

/* Browser Desktop Frame */
.browser-mockup {
    background: var(--mockup-frame);
    border: 1px solid var(--mockup-border);
    border-radius: 18px;
    box-shadow: var(--shadow-mockup);
    overflow: hidden;
    transition: var(--transition);
}
.browser-mockup:hover {
    transform: translateY(-6px);
}
.browser-header {
    background: var(--mockup-bar-bg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--mockup-border);
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }
.browser-address-bar {
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    max-width: 320px;
}
.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactive Tabs for Restaurant Visuals */
.mockup-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    justify-content: center;
}
.mockup-tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.mockup-tab-btn.active, .mockup-tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ==========================================================================
   B2B Restaurant Highlight Cards & Comparison
   ========================================================================== */
.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--card-border);
}
.comparison-row:last-child {
    border-bottom: none;
}
.comparison-label {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
}
.comparison-val-other {
    color: #EF4444;
    font-weight: 700;
    font-size: 16px;
}
.comparison-val-zhetkizu {
    color: var(--secondary);
    font-weight: 800;
    font-size: 18px;
}

/* ==========================================================================
   Couriers Section Dual Showcase
   ========================================================================== */
.courier-phones-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

/* ==========================================================================
   Customers Section Showcase
   ========================================================================== */
.customer-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.category-pill {
    padding: 20px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    cursor: default;
    transition: var(--transition);
}
.category-pill:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 500px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Ecosystem 4 Pillars Section
   ========================================================================== */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.eco-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.eco-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}
.eco-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--badge-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.eco-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.eco-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}
.eco-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.eco-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Lead Form Section
   ========================================================================== */
.lead-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--card-border);
}
.lead-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.lead-info h2 {
    font-size: 40px;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}
.lead-info p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item i {
    font-size: 18px;
    color: var(--primary);
    width: 24px;
}
.contact-item span, .contact-item a {
    font-size: 15px;
    color: var(--text-main);
    text-decoration: none;
}
.contact-item a:hover {
    color: var(--primary);
}

/* Form Styling */
.lead-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-mockup);
    backdrop-filter: blur(16px);
}
.form-role-tabs {
    display: flex;
    background: var(--bg-alt);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
}
.form-role-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.form-role-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
    padding-right: 44px;
}
.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-main);
    padding: 10px;
}
.spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}
.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--footer-border);
    padding: 50px 0;
    background-color: var(--footer-bg);
    color: #94A3B8;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-brand p {
    color: #94A3B8;
    font-size: 13px;
    margin-top: 6px;
}
.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-links a {
    text-decoration: none;
    color: #94A3B8;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-copy {
    color: #64748B;
    font-size: 13px;
}

/* ==========================================================================
   Wolt-Style Dual Partner & Courier Showcase
   ========================================================================== */
.wolt-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.wolt-banner-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 40px 36px;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.wolt-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.28);
}

.wolt-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.wolt-banner-card:hover .wolt-banner-bg {
    transform: scale(1.05);
}

.wolt-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(6, 9, 15, 0.76) 0%, 
        rgba(6, 9, 15, 0.30) 45%, 
        rgba(6, 9, 15, 0.82) 100%
    );
    z-index: 1;
    transition: background 0.35s ease;
}

.wolt-banner-card:hover .wolt-banner-overlay {
    background: linear-gradient(180deg, 
        rgba(6, 9, 15, 0.68) 0%, 
        rgba(6, 9, 15, 0.20) 45%, 
        rgba(6, 9, 15, 0.74) 100%
    );
}

.wolt-banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.wolt-banner-title {
    font-size: 34px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF !important;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.wolt-banner-desc {
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.wolt-banner-action {
    position: relative;
    z-index: 2;
    margin-top: 36px;
}

.wolt-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 999px;
    backdrop-filter: blur(14px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.wolt-banner-card:hover .wolt-pill-btn {
    background: #FFFFFF;
    color: #0F172A !important;
    border-color: #FFFFFF;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.wolt-pill-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.wolt-banner-card:hover .wolt-pill-btn i {
    transform: translateX(3px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container, .lead-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-4, .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .hero-showcase {
        order: -1;
    }
    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .customer-cards-grid, .wolt-banner-grid {
        grid-template-columns: 1fr;
    }
    .wolt-banner-card {
        min-height: 330px;
        padding: 32px 24px 28px;
    }
    .wolt-banner-title {
        font-size: 26px;
    }
    .wolt-banner-desc {
        font-size: 14px;
    }
    .nav {
        display: none;
    }
    .hero-title {
        font-size: 38px;
    }
    .courier-phones-wrapper {
        flex-direction: column;
    }
    .phone-mockup.tilt-left, .phone-mockup.tilt-right {
        transform: none;
    }
    .stats-bar-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
