/* Premium Style Sheet with Advanced Web Animations (Wow-Effect Update) */

/* ==========================================================================
   1. RESET & VARIABLE DEFINITIONS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-deep: #060a08;              /* Deepest graphite-green */
    --bg-dark: #0d1511;              /* Primary dark green-gray */
    --bg-card: #121c17;              /* Secondary dark green-gray for cards */
    --bg-light: #f3f6f4;             /* Light gray background */
    --bg-white: #ffffff;             /* Plain white */
    
    /* Text Colors */
    --text-light: #ffffff;           /* For dark backgrounds */
    --text-light-muted: rgba(255, 255, 255, 0.75);
    --text-light-dim: rgba(255, 255, 255, 0.45);
    
    --text-dark: #111827;            /* For light backgrounds */
    --text-dark-muted: #4b5563;
    --text-dark-dim: #9ca3af;

    /* Accent Colors */
    --samokat-pink: #FF2B5E;         /* Vibrating Samokat pink accent */
    --samokat-pink-hover: #e0244f;
    --samokat-pink-glow: rgba(255, 43, 94, 0.45);
    --samokat-pink-soft: #ffe4e6;

    --samokat-green: var(--samokat-pink);
    --samokat-green-hover: var(--samokat-pink-hover);
    --samokat-green-glow: var(--samokat-pink-glow);
    --samokat-green-soft: var(--samokat-pink-soft);
    
    --gold: #f5b026;                 /* Warm yellow/gold for payments */
    --gold-hover: #e59d18;
    --gold-glow: rgba(245, 176, 38, 0.35);
    
    --whatsapp-color: #25d366;
    
    /* Layout Elements */
    --border-glass: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(18, 28, 23, 0.65);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.4);
    --shadow-card-light: 0 15px 35px rgba(0, 0, 0, 0.05);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    /* Typography */
    --font-headings: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-light-muted);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==========================================================================
   2. INTERACTIVE MOUSE SPOTLIGHT (WOW EFFECT)
   ========================================================================== */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 43, 94, 0.035) 0%, rgba(255, 43, 94, 0.005) 50%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}

/* Card Hover Border Spotlight Effect */
.spotlight-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    padding: 1px; /* Acts as the border width */
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Draw dynamic radial background following mouse coordinates */
.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(255, 43, 94, 0.35) 0%,
        rgba(255, 43, 94, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.spotlight-card-inner {
    position: relative;
    z-index: 2;
    background-color: var(--bg-card);
    border-radius: calc(var(--border-radius-lg) - 1px);
    padding: 36px;
    height: 100%;
    width: 100%;
    transition: background-color 0.4s ease;
}

.spotlight-card:hover .spotlight-card-inner {
    background-color: rgba(22, 38, 30, 0.95);
}

/* Dynamic 3D tilt helper class */
.scroll-tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.scroll-tilt > * {
    transform: translateZ(0);
    transition: transform 0.1s ease;
}

/* ==========================================================================
   3. REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 72px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--samokat-green);
    margin-bottom: 16px;
    padding: 6px 18px;
    background-color: rgba(18, 200, 104, 0.08);
    border: 1px solid rgba(18, 200, 104, 0.12);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(18, 200, 104, 0.05);
}

.section-tag.tag-gold {
    color: var(--gold);
    background-color: rgba(245, 176, 38, 0.08);
    border: 1px solid rgba(245, 176, 38, 0.12);
    box-shadow: 0 4px 15px rgba(245, 176, 38, 0.05);
}

.section-title {
    font-family: var(--font-headings);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-light);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light-muted);
    font-weight: 400;
    line-height: 1.6;
}

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

.text-white {
    color: var(--text-light) !important;
}

.text-gold {
    color: var(--gold) !important;
}

/* Custom Buttons with Glow on hover */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--samokat-green);
    color: var(--bg-deep);
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(18, 200, 104, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
}

.btn-primary:hover {
    background-color: var(--samokat-green-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px var(--samokat-green-glow);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.0);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.06);
    border-color: var(--whatsapp-color);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

/* Enhanced Scroll Reveal Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delay reveals slightly for grids */
.about-grid > .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.about-grid > .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.about-grid > .scroll-reveal:nth-child(4) { transition-delay: 0.1s; }
.about-grid > .scroll-reveal:nth-child(5) { transition-delay: 0.2s; }
.about-grid > .scroll-reveal:nth-child(6) { transition-delay: 0.3s; }

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.hero-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1760px;
    z-index: 1000;
    padding: 32px 72px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    display: block;
}

.logo-badge {
    background-color: var(--samokat-green);
    color: var(--bg-deep);
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 26px;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: #fff;
    margin-top: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 800;
    color: var(--samokat-pink);
    letter-spacing: -0.01em;
    position: relative;
    padding: 4px 0;
    text-transform: uppercase;
    transition: var(--transition-medium);
    animation: nav-pulse 3s infinite ease-in-out;
}

@keyframes nav-pulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 51, 95, 0.2);
        transform: translateY(0);
    }
    50% {
        text-shadow: 0 0 16px rgba(255, 51, 95, 0.6);
        transform: translateY(-2px);
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--samokat-pink);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--samokat-pink);
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 12px var(--samokat-pink);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 10px;
    transition: var(--transition-medium);
}

/* ==========================================================================
   5. HERO SECTION (WITH PARALLAX & PARTICLES)
   ========================================================================== */
.courier-hero {
    position: relative;
    min-height: 100vh;
    min-height: 860px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
}

.hero-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #101010 10%, rgba(16, 16, 16, 0.85) 45%, rgba(16, 16, 16, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(-90deg, #101010 0%, rgba(16, 16, 16, 0.7) 40%, rgba(16, 16, 16, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, #101010 0%, rgba(16, 16, 16, 0.7) 40%, rgba(16, 16, 16, 0) 100%);
    z-index: 2;
}

.hero-pink-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 43, 94, 0.15) 0%, rgba(255, 43, 94, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 72px;
    transform: translateY(-60px);
}

.hero-content {
    width: 600px;
    padding-top: 40px;
}

.badge-vip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-headings);
    font-size: clamp(40px, 3.5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.text-pink {
    color: var(--samokat-pink, #FF2B5E);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-mini-features {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-mini-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 120px;
}

.hmf-icon {
    color: var(--samokat-pink, #FF2B5E);
}

.hero-mini-feature span {
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.btn-hero-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    width: 240px;
    border-radius: 12px;
    background: var(--samokat-pink, #FF2B5E);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 43, 94, 0.4);
}

.btn-hero-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    width: 240px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s ease;
}

.btn-hero-wa:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-hero-wa svg {
    color: var(--whatsapp-color, #22e07a);
}

.hero-trust-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-trust-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Hero Cards Grid (Right side) */
.hero-cards-grid {
    position: absolute;
    top: 0px;
    right: 72px;
    display: grid;
    grid-template-columns: repeat(2, 180px);
    gap: 12px;
}

.hero-card {
    height: 120px;
}

.spotlight-card-inner {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 43, 94, 0.1);
    color: var(--samokat-pink, #FF2B5E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

.hero-card-icon svg {
    width: 16px;
    height: 16px;
}

.hero-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.hero-card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
    margin: 0;
}

/* Tips Card (Bottom right) */
.tips-card {
    position: absolute;
    top: 276px;
    bottom: auto;
    right: 72px;
    width: 372px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 43, 94, 0.1);
    color: var(--samokat-pink, #FF2B5E);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tips-icon svg {
    width: 16px;
    height: 16px;
}

.tips-content h3 {
    color: var(--samokat-pink, #FF2B5E);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
    margin-top: 0;
}

.tips-content p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
    margin: 0;
}

/* ==========================================================================
   6. WHAT YOU GET SECTION
   ========================================================================== */
.section-about {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-about .section-title {
    color: var(--text-dark);
}

.section-about .section-subtitle {
    color: var(--text-dark-muted);
}

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

.about-card.spotlight-card {
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-card-light);
    border-radius: var(--border-radius-lg);
}

.about-card .spotlight-card-inner {
    background-color: var(--bg-white);
    padding: 40px;
}

/* Overwrite light spotlight glow values */
.about-card.spotlight-card::before {
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(18, 200, 104, 0.4) 0%,
        rgba(245, 176, 38, 0.2) 55%,
        transparent 100%
    );
}

.about-card.spotlight-card:hover .spotlight-card-inner {
    background-color: rgba(243, 252, 247, 0.98);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    background-color: rgba(18, 200, 104, 0.06);
    border: 1px solid rgba(18, 200, 104, 0.1);
    color: var(--samokat-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.about-card-icon svg {
    width: 26px;
    height: 26px;
}

.spotlight-card:hover .about-card-icon {
    background-color: var(--samokat-green);
    color: var(--bg-white);
    transform: scale(1.05);
}

.about-card h3 {
    font-family: var(--font-headings);
    font-size: 21px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.about-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-dark-muted);
}

/* ==========================================================================
   7. INCOME & CALCULATOR SECTION (WOW EFFECT COUNTERS & SLIDER TRAIL)
   ========================================================================== */
.section-income {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top right, rgba(18, 200, 104, 0.05), transparent 45%),
                      radial-gradient(circle at bottom left, rgba(245, 176, 38, 0.03), transparent 45%);
}

.income-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.income-details {
    text-align: left;
}

.income-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light-muted);
    margin-bottom: 40px;
}

.income-features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.income-features-list li {
    display: flex;
    gap: 18px;
}

.list-marker {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold);
    margin-top: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--gold);
}

.income-features-list li strong {
    display: block;
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.list-desc {
    font-size: 14px;
    color: var(--text-light-muted);
}

/* Tips Highlight Box */
.tips-highlight-box {
    margin-top: 36px;
    border-radius: var(--border-radius-md);
}

.tips-highlight-box .spotlight-card-inner {
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    background: linear-gradient(145deg, rgba(245, 176, 38, 0.12), rgba(18, 200, 104, 0.05));
    border: 1px solid rgba(245, 176, 38, 0.3);
}

.tips-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(245, 176, 38, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tips-icon svg {
    width: 26px;
    height: 26px;
}

.tips-content h3 {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
}

.tips-content p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Calculator Card */
.income-calculator-card {
    border-radius: var(--border-radius-lg);
}

.income-calculator-card .spotlight-card-inner {
    padding: 48px;
}

.income-calculator-card h3 {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.calc-intro {
    font-size: 14px;
    color: var(--text-light-muted);
    margin-bottom: 36px;
}

.calc-control-group {
    margin-bottom: 36px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label {
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light-dim);
}

.calc-val-display {
    font-family: var(--font-headings);
    font-size: 20px;
    font-weight: 800;
    color: var(--samokat-green);
    text-shadow: 0 0 15px rgba(18, 200, 104, 0.2);
}

/* Range Slider container and Fill styling */
.slider-container {
    position: relative;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    z-index: 3;
    position: relative;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--text-light);
    border: 3px solid var(--samokat-green);
    cursor: pointer;
    box-shadow: 0 0 15px var(--samokat-green-glow);
    transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background-color: var(--samokat-green);
    box-shadow: 0 0 20px var(--samokat-green-glow);
}

.slider-fill-trail {
    position: absolute;
    top: 9px;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--samokat-green), var(--gold));
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 10px rgba(18, 200, 104, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    padding: 8px 4px 0 4px;
}

.slider-marks span {
    font-size: 12px;
    color: var(--text-light-dim);
    font-weight: 600;
}

/* Toggle Switch Group */
.calc-toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 5px;
    border-radius: 14px;
    margin-top: 14px;
}

.calc-toggle-btn {
    background: transparent;
    border: none;
    padding: 14px;
    border-radius: 10px;
    color: var(--text-light-muted);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.calc-toggle-btn.active {
    background-color: var(--samokat-green);
    color: var(--bg-deep);
    box-shadow: 0 4px 15px rgba(18, 200, 104, 0.15);
}

/* Result Area */
.calc-results-wrapper {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 28px;
    margin-bottom: 28px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-size: 14.5px;
    color: var(--text-light-muted);
}

.result-value {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-light);
}

.calc-result-divider {
    height: 1px;
    background-color: var(--border-glass);
    margin: 20px 0;
}

.calc-result-row.main-result .result-label {
    font-weight: 700;
    color: var(--text-light);
    font-size: 16px;
}

.calc-result-row.main-result .result-value {
    font-size: 32px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(245, 176, 38, 0.15);
}

.calc-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-light-dim);
    margin-bottom: 32px;
}

.btn-calc-cta {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* ==========================================================================
   8. TARGET AUDIENCE SECTION
   ========================================================================== */
.section-who {
    background-color: var(--bg-deep);
}

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

.who-card .spotlight-card-inner {
    padding: 40px;
}

.who-number {
    font-family: var(--font-headings);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: rgba(18, 200, 104, 0.08);
    position: absolute;
    top: 24px;
    right: 28px;
}

.who-card h3 {
    font-family: var(--font-headings);
    font-size: 21px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.who-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-light-muted);
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   9. RELOCATION STEP-BY-STEP TIMELINE (SCROLL PROGRESS LASER LINE)
   ========================================================================== */
.section-relocation {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-relocation .section-title {
    color: var(--text-dark);
}

.section-relocation .section-subtitle {
    color: var(--text-dark-muted);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Laser Timeline path */
.timeline-progress {
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05); /* Grey baseline track */
    z-index: 1;
}

.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Dynamic fill based on JS */
    background: linear-gradient(180deg, var(--samokat-pink), var(--gold));
    box-shadow: 0 0 10px var(--samokat-pink-glow);
    transition: height 0.1s ease-out; /* Smooth tracking */
}

.timeline-progress-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 15px 6px var(--gold);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 48px;
    margin-bottom: 56px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid rgba(0, 0, 0, 0.08); /* Non-active state */
    color: var(--text-dark-muted);
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-card-light);
    transition: var(--transition-medium);
}

/* Turn active/laser color when item enters viewport */
.timeline-item.active .timeline-badge {
    border-color: var(--samokat-pink);
    color: var(--text-dark);
    background-color: var(--samokat-pink-soft);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 43, 94, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 43, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 43, 94, 0); }
}

.timeline-panel {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card-light);
    flex-grow: 1;
    border: 1px solid rgba(0, 0, 0, 0.015);
    transition: var(--transition-medium);
}

.timeline-item.active .timeline-panel {
    border-color: rgba(18, 200, 104, 0.15);
    transform: translateX(5px);
}

.timeline-panel h3 {
    font-family: var(--font-headings);
    font-size: 21px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.timeline-panel p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-dark-muted);
}

/* ==========================================================================
   10. ACCOMMODATION & MEALS SHOWCASE
   ========================================================================== */
.section-accommodation {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at bottom right, rgba(18, 200, 104, 0.04), transparent 40%);
}

.accommodation-showcase {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.accommodation-content {
    text-align: left;
}

.accommodation-points {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 48px;
}

.acc-point {
    display: flex;
    gap: 22px;
}

.acc-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: rgba(18, 200, 104, 0.08);
    border: 1px solid rgba(18, 200, 104, 0.12);
    color: var(--samokat-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.acc-point:hover .acc-point-icon {
    background-color: var(--samokat-green);
    color: var(--bg-deep);
    transform: scale(1.05);
}

.acc-point h4 {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.acc-point p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-light-muted);
}

/* Accommodation Images Showcase */
.accommodation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    height: 380px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

.main-img {
    /* Inherits height from img-wrapper */
}

.sub-img {
    /* Inherits height from img-wrapper, removes offsets */
}

.img-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background-color: rgba(6, 10, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-headings);
    font-size: 12px;
    font-weight: 700;
}

/* ==========================================================================
   11. E-BIKE DELIVERY SECTION
   ========================================================================== */
.section-ebike {
    background-color: var(--bg-deep);
}

.ebike-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.ebike-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
    height: 520px;
}

.ebike-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ebike-content {
    text-align: left;
}

.ebike-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light-muted);
    margin-bottom: 40px;
}

.ebike-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ebike-benefit-card .spotlight-card-inner {
    padding: 28px;
}

.ebike-ben-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.ebike-benefit-card h4 {
    font-family: var(--font-headings);
    font-size: 17px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.ebike-benefit-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-light-muted);
}

/* ==========================================================================
   12. REQUIREMENTS SECTION
   ========================================================================== */
.section-requirements {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-requirements .section-title {
    color: var(--text-dark);
}

.section-requirements .section-subtitle {
    color: var(--text-dark-muted);
}

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

.req-card.spotlight-card {
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-card-light);
}

.req-card .spotlight-card-inner {
    background-color: var(--bg-white);
    padding: 40px;
}

.req-card.spotlight-card::before {
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(18, 200, 104, 0.4) 0%,
        rgba(245, 176, 38, 0.2) 55%,
        transparent 100%
    );
}

.req-card.spotlight-card:hover .spotlight-card-inner {
    background-color: rgba(243, 252, 247, 0.98);
}

.req-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.req-card h4 {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.req-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-dark-muted);
}

/* ==========================================================================
   13. WHY RELIABLE SECTION
   ========================================================================== */
.section-trust {
    background-color: var(--bg-dark);
    padding: 120px 0;
}

.trust-container {
    background: linear-gradient(135deg, rgba(24, 38, 30, 0.8) 0%, rgba(18, 28, 23, 0.95) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    padding: 72px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.trust-container::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 200, 104, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.trust-content {
    text-align: left;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.trust-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-card-icon {
    font-size: 20px;
    color: var(--samokat-green);
    text-shadow: 0 0 12px rgba(18, 200, 104, 0.3);
}

.trust-card h4 {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

.trust-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-light-muted);
}

/* ==========================================================================
   14. FAQ SECTION (ACTIVE FAQ CARD LIGHT BORDER GLOW)
   ========================================================================== */
.section-faq {
    background-color: var(--bg-deep);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item.spotlight-card {
    border-radius: var(--border-radius-md);
}

.faq-item .spotlight-card-inner {
    padding: 0;
    background-color: var(--bg-card);
}

.faq-item.faq-open.spotlight-card {
    /* Illuminate active item border slightly */
    box-shadow: 0 10px 30px rgba(18, 200, 104, 0.06);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 32px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-light);
    outline: none;
    letter-spacing: -0.01em;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-light-muted);
    transition: var(--transition-smooth);
}

.faq-trigger:hover .faq-icon {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
    background-color: var(--samokat-green);
    color: var(--bg-deep);
    border-color: var(--samokat-green);
    box-shadow: 0 0 15px rgba(18, 200, 104, 0.3);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    padding: 0 32px 28px 32px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-light-muted);
}

/* ==========================================================================
   15. APPLICATION FORM SECTION
   ========================================================================== */
.section-apply {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at bottom left, rgba(18, 200, 104, 0.06), transparent 40%);
}

.apply-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.apply-info {
    text-align: left;
}

.apply-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light-muted);
    margin-bottom: 48px;
}

.apply-contacts {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: center;
}

.contact-icon {
    font-size: 24px;
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--text-light-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.contact-link {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

.contact-link:hover {
    color: var(--samokat-green);
}

.contact-link.link-wa {
    color: var(--whatsapp-color);
}

.contact-link.link-wa:hover {
    text-decoration: underline;
}

/* Form spotlight wrapper override */
.apply-form-wrapper.spotlight-card {
    border-radius: var(--border-radius-lg);
}

.apply-form-wrapper .spotlight-card-inner {
    padding: 48px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-headings);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 16px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14.5px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-light);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--samokat-green);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(18, 200, 104, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-top: 10px;
    position: relative;
}

.spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--bg-deep);
    animation: spin 1s ease-in-out infinite;
    position: absolute;
}

.form-policy {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-light-dim);
    text-align: center;
}

/* Success State Styles */
.form-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 0;
    animation: fadeIn 0.6s ease forwards;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(18, 200, 104, 0.1);
    border: 2px solid var(--samokat-green);
    color: var(--samokat-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(18, 200, 104, 0.2);
}

.form-success-state h3 {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.form-success-state p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light-muted);
    margin-bottom: 36px;
    max-width: 400px;
}

.form-success-state .btn-primary {
    padding: 14px 32px;
    font-size: 14.5px;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 48px 0;
}

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

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-family: var(--font-headings);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-light-dim);
}

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

.footer-divider {
    height: 1px;
    background-color: var(--border-glass);
    margin: 48px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-copy {
    font-size: 13.5px;
    color: var(--text-light-dim);
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.2);
    text-align: justify;
}

/* ==========================================================================
   17. FLOATING ACTION WIDGETS
   ========================================================================== */
.floating-container {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 999;
}

.floating-wa-btn {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-wa-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.floating-wa-btn::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-color);
    opacity: 0.4;
    animation: bubbleGlow 2.5s infinite;
}

.floating-wa-btn .tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-family: var(--font-headings);
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-premium);
}

.floating-wa-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile sticky bottom CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 21, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 14px 16px;
    display: none;
    z-index: 998;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.3);
}

.sticky-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.08);
    border: 1px solid var(--whatsapp-color);
    color: #ffffff;
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    height: 52px;
}

.sticky-wa-btn svg {
    color: var(--whatsapp-color);
}

.sticky-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--samokat-green);
    color: var(--bg-deep);
    font-family: var(--font-headings);
    font-size: 14.5px;
    font-weight: 900;
    border-radius: 50px;
    height: 52px;
    box-shadow: 0 4px 18px rgba(18, 200, 104, 0.35);
}

/* ==========================================================================
   18. MEDIA QUERIES (MOBILE RESPONSIVE FIRST)
   ========================================================================== */

/* Laptop / Desktop medium scale */
@media (max-width: 1440px) {
    .hero-header {
        padding: 32px 48px 0;
    }
    
    .hero-container {
        padding: 0 48px;
    }
    
    .hero-cards-grid {
        right: 48px;
    }
    
    .tips-card {
        right: 48px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .hero-cards-grid {
        grid-template-columns: repeat(2, 200px);
    }
    
    .tips-card {
        width: 416px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .income-wrapper,
    .accommodation-showcase,
    .ebike-wrapper,
    .apply-container {
        gap: 56px;
    }
    
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet screen layouts */
@media (max-width: 991px) {
    .section {
        padding: 90px 0;
    }
    
    .courier-hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-overlay-left {
        width: 100%;
        background: linear-gradient(180deg, #101010 10%, rgba(16, 16, 16, 0.85) 60%, rgba(16, 16, 16, 0.5) 100%);
    }
    
    .hero-content {
        width: 100%;
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-mini-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-cards-grid {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 40px;
        justify-content: center;
    }
    
    .tips-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        width: 100%;
        max-width: 416px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .income-wrapper,
    .accommodation-showcase,
    .ebike-wrapper,
    .apply-container {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .income-details,
    .accommodation-content,
    .ebike-content,
    .apply-info {
        text-align: center;
    }
    
    .income-features-list {
        align-items: center;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .income-features-list li {
        text-align: left;
    }
    
    .acc-point {
        text-align: left;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .accommodation-images {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .ebike-image {
        height: 400px;
        order: -1;
    }
    
    .trust-container {
        padding: 56px 36px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .apply-contacts {
        align-items: center;
        max-width: 400px;
        margin: 0 auto 36px auto;
    }
    
    .timeline::before {
        display: none;
    }
    .timeline-progress {
        left: 24px;
    }
    
    .timeline-badge {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
    
    .timeline-item {
        gap: 24px;
    }
    
    .timeline-panel {
        padding: 28px;
    }
}

/* Smartphone / Mobile First Styling (Crucial) */
@media (max-width: 767px) {
    .header-container {
        padding: 0 24px;
    }
    
    /* Navigation drawer overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 40px;
        gap: 32px;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.45);
        transition: var(--transition-smooth);
        z-index: 1000;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid var(--border-glass);
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 20px;
        font-weight: 700;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero scaling */
    .hero-header {
        padding: 24px 20px 0;
    }
    
    .hero-container {
        padding: 0 20px;
    }

    .hero-bg {
        background-position: 60% center;
    }
    
    .hero-overlay-left {
        width: 100%;
        height: 60%;
        background: linear-gradient(180deg, #101010 0%, rgba(16, 16, 16, 0.7) 40%, rgba(16, 16, 16, 0) 100%);
    }
    
    .hero-overlay-right {
        display: none;
    }
    
    .hero-overlay-bottom {
        height: 50%;
        background: linear-gradient(0deg, #101010 10%, rgba(16, 16, 16, 0.8) 50%, rgba(16, 16, 16, 0) 100%);
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-apply, .btn-hero-wa {
        width: 100%;
    }
    
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .who-grid,
    .requirements-grid,
    .trust-grid,
    .ebike-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .spotlight-card-inner {
        padding: 28px;
    }
    
    .about-card .spotlight-card-inner,
    .who-card .spotlight-card-inner,
    .req-card .spotlight-card-inner,
    .faq-trigger {
        padding: 28px;
    }
    
    .income-calculator-card .spotlight-card-inner,
    .apply-form-wrapper .spotlight-card-inner {
        padding: 32px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-success-state h3 {
        font-size: 22px;
    }
    
    .form-success-state p {
        font-size: 14px;
    }
    
    .tips-highlight-box .spotlight-card-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
    }
    
    /* Layout accommodations */
    .accommodation-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .img-wrapper {
        height: 280px;
    }
    
    /* Sticky mobile footer offsets */
    body {
        padding-bottom: 80px; 
    }
    
    .mobile-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    
    .sticky-wa-btn {
        flex: 1;
        width: 100%;
        min-width: 0;
        white-space: nowrap;
    }
    
    .sticky-apply-btn {
        display: none;
    }
    
    .floating-container {
        bottom: 96px;
        right: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .calc-result-row.main-result .result-value {
        font-size: 26px;
    }
}

/* ==========================================================================
   19. KEYFRAMES ANIMATIONS
   ========================================================================== */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 200, 104, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(18, 200, 104, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(18, 200, 104, 0);
    }
}

@keyframes bubbleGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.12;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   20. SCROLL ANIMATION CLASS HELPERS
   ========================================================================== */
.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   21. PREMIUM ANIMATED LIGHTING (WOW EFFECT)
   ========================================================================== */
.premium-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    overflow: hidden;
    background-color: transparent;
    pointer-events: none;
    mix-blend-mode: color; /* 'color' or 'overlay' works great for dynamic tinting without ruining contrast */
    opacity: 0.8;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: rgba(18, 200, 104, 0.4); /* samokat green */
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: rgba(245, 176, 38, 0.25); /* gold */
    top: 40%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: rgba(15, 182, 92, 0.3);
    bottom: -20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.orb-4 {
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    background: rgba(20, 250, 130, 0.2);
    top: 20%;
    left: 50%;
    animation-delay: -15s;
    animation-duration: 18s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(4vw, -4vh) scale(1.05); }
    66% { transform: translate(-3vw, 3vh) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Subtle noise overlay for premium texture */
.bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ==========================================================================
   19. MOBILE APPLY MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-apply-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 90vh;
    background-color: var(--bg-card);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 1002;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-glass);
}

.mobile-apply-modal.open {
    transform: translateY(0);
}

.mobile-apply-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-glass);
}

.mobile-apply-modal .modal-header h3 {
    font-size: 20px;
    font-family: var(--font-headings);
    color: var(--text-light);
    margin: 0;
}

.mobile-apply-modal .modal-close {
    background: transparent;
    border: none;
    color: var(--text-light-muted);
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-apply-modal .modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* Modal Form Specifics */
.mobile-apply-modal .form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.mobile-apply-modal .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-apply-modal label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light-muted);
}

.mobile-apply-modal input,
.mobile-apply-modal select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-light);
    font-size: 16px;
    width: 100%;
}

.mobile-apply-modal input:focus,
.mobile-apply-modal select:focus {
    outline: none;
    border-color: var(--samokat-pink);
    background-color: rgba(255, 255, 255, 0.08);
}

.mobile-apply-modal .form-submit-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.sticky-apply-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--samokat-pink);
    color: var(--text-light);
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    height: 52px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 18px var(--samokat-pink-glow);
    cursor: pointer;
}
