/* ============================================
   FLASHRIDE - Aggressive Design System
   ============================================ */

:root {
    --primary: #FF5500;
    --primary-hot: #FF7A00;
    --primary-deep: #CC4400;
    --accent: #FF3D00;
    --dark-900: #050508;
    --dark-800: #0A0A12;
    --dark-700: #10101F;
    --dark-600: #16162E;
    --dark-500: #1C1C3A;
    --surface: #12121F;
    --text-100: #FFFFFF;
    --text-200: #E0E0EF;
    --text-300: #9999B3;
    --text-400: #666680;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 85, 0, 0.3);
    --glow: 0 0 60px rgba(255, 85, 0, 0.2);
    --glow-strong: 0 0 120px rgba(255, 85, 0, 0.3);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --font: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark-900);
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--dark-900); }
html::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

body {
    font-family: var(--font);
    background: var(--dark-900);
    color: var(--text-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; outline: none; cursor: pointer; font-family: inherit; background: none; }
input, textarea { border: none; outline: none; font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-content { text-align: center; }

.loader-logo-wrap {
    margin-bottom: 32px;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-logo { height: 60px; margin: 0 auto; }

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-600);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hot));
    border-radius: 10px;
    animation: load-bar 1.2s var(--ease) forwards;
}

@keyframes load-bar { to { width: 100%; } }
@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 85, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 85, 0, 0.6)); }
}

/* ============================================
   CURSOR
   ============================================ */
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255, 85, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: all 0.15s ease-out;
}

.cursor-ring.hovering {
    width: 60px; height: 60px;
    border-color: var(--primary);
    background: rgba(255, 85, 0, 0.05);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 5000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img { height: 36px; }

.nav-menu { display: flex; gap: 36px; }

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-300);
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--text-100); }
.nav-link:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--primary-hot);
    box-shadow: var(--glow);
    transform: scale(1.03);
}

.burger { display: none; width: 32px; height: 24px; position: relative; }

.burger-lines { position: relative; width: 100%; height: 100%; }

.burger-lines span {
    position: absolute;
    left: 0;
    width: 100%; height: 2px;
    background: var(--text-100);
    transition: all 0.4s var(--ease);
}

.burger-lines span:first-child { top: 6px; }
.burger-lines span:last-child { bottom: 6px; width: 70%; }

.burger.active .burger-lines span:first-child {
    top: 50%; transform: translateY(-50%) rotate(45deg);
}
.burger.active .burger-lines span:last-child {
    bottom: 50%; width: 100%; transform: translateY(50%) rotate(-45deg);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 4999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.fullscreen-menu.open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(40px);
}

.menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.menu-nav { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.menu-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-300);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.menu-link:hover { color: var(--primary); transform: translateX(10px); }

.menu-footer { display: flex; gap: 32px; }
.menu-footer a { color: var(--text-400); font-size: 0.9rem; transition: color 0.3s; }
.menu-footer a:hover { color: var(--primary); }

/* ============================================
   UTILITY
   ============================================ */
.text-stroke {
    -webkit-text-stroke: 1.5px var(--primary);
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.label-line {
    width: 32px; height: 2px;
    background: var(--primary);
}

.section-label span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-intro { margin-bottom: 72px; }
.section-intro.centered { text-align: center; }
.section-intro.centered .section-label { justify-content: center; }

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    will-change: opacity, transform;
}

/* Ensure elements visible if JS fails */
.no-js .reveal-up {
    opacity: 1;
    transform: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s var(--ease);
}

.btn-main .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    transition: transform 0.5s var(--ease);
}

.btn-main:hover .btn-bg { transform: scale(1.1); }
.btn-main:hover { transform: translateY(-2px); box-shadow: var(--glow); }

.btn-main .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-main:hover .btn-icon { transform: rotate(-15deg) scale(1.1); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-200);
    transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 85, 0, 0.04);
    transform: translateY(-2px);
}

.btn-ghost i { transition: transform 0.3s; }
.btn-ghost:hover i { transform: translate(3px, -3px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: orb-drift 12s ease-in-out infinite alternate;
}

.orb-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; animation-delay: -4s; }
.orb-3 { width: 250px; height: 250px; background: var(--primary-hot); top: 40%; left: 30%; animation-delay: -8s; }

@keyframes orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
    100% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-tag span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-headline .line {
    display: block;
    overflow: hidden;
}

.hero-headline .line-inner {
    display: block;
}

.highlight-word {
    position: relative;
    font-style: normal;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(255, 85, 0, 0.4);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-300);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-100);
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Phone Scene */
.hero-right { display: flex; justify-content: center; position: relative; }

.hero-phone-scene {
    position: relative;
    width: 320px;
    height: 560px;
}

.phone-3d {
    position: relative;
    width: 100%; height: 100%;
    perspective: 1200px;
}

.phone-body {
    position: relative;
    width: 260px; height: 520px;
    margin: 0 auto;
    border-radius: 36px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255, 85, 0, 0.1),
        inset 0 0 20px rgba(0,0,0,0.3);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s var(--ease);
}

.phone-body:hover { transform: rotateY(0) rotateX(0); }

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.phone-screen-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.phone-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 380px; height: 380px;
    border: 1px dashed rgba(255, 85, 0, 0.15);
    border-radius: 50%;
    animation: orbit-spin 20s linear infinite;
}

@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(22, 22, 46, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: badge-float 4s ease-in-out infinite;
}

.float-badge i { color: var(--primary); font-size: 0.9rem; }

.badge-safety { top: 60px; left: -30px; animation-delay: 0s; }
.badge-eta { top: 45%; right: -40px; animation-delay: 1.3s; }
.badge-rating { bottom: 80px; left: -10px; animation-delay: 2.6s; }

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid var(--text-400);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 1.8s infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.hero-scroll-cue span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-400);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 24px;
}

.marquee-word {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-400);
    white-space: nowrap;
    transition: color 0.3s;
}

.marquee-word:hover { color: var(--primary); }

.marquee-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 140px 0; }

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr 0fr 60px;
    align-items: center;
    gap: 40px;
    padding: 40px 32px;
    border-radius: var(--radius);
    background: var(--dark-800);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-item:hover::before { opacity: 1; }

.service-item:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
    box-shadow: var(--glow);
}

.service-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-600);
    transition: color 0.5s;
}

.service-item:hover .service-num { color: var(--primary); }

.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--text-300);
    max-width: 400px;
    line-height: 1.6;
}

.service-visual {
    width: 0;
    height: 120px;
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s var(--ease);
}

.service-item:hover .service-visual {
    width: 180px;
    opacity: 1;
}

.service-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.service-arrow {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-300);
    transition: all 0.3s var(--ease);
}

.service-item:hover .service-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(-45deg);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 140px 0; }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-stack { position: relative; }

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-main img {
    width: 100%; height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.img-overlay-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--primary);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.badge-big {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.badge-sub {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
}

.about-img-float {
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--dark-900);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-img-float img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-300);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    padding: 24px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.pillar:hover {
    border-color: var(--border-hover);
    background: rgba(255, 85, 0, 0.02);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 85, 0, 0.08);
    border-radius: var(--radius);
    margin: 0 auto 12px;
    color: var(--primary);
    font-size: 1.1rem;
}

.pillar h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pillar p {
    font-size: 0.78rem;
    color: var(--text-400);
    line-height: 1.5;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-section {
    padding: 140px 0;
    background: var(--dark-800);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--dark-600);
}

.timeline-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary), var(--primary-hot));
    border-radius: 2px;
    transition: height 0.3s;
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 48px 0;
    position: relative;
}

.step-marker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px; height: 56px;
    background: var(--dark-800);
    border: 2px solid var(--dark-600);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-400);
    transition: all 0.5s var(--ease);
}

.step-marker .marker-ring {
    position: absolute;
    inset: -6px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: border-color 0.5s;
}

.process-step:hover .step-marker {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow);
}

.process-step:hover .marker-ring {
    border-color: rgba(255, 85, 0, 0.2);
}

.step-content { flex: 1; }

.step-icon-wrap {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.12);
    border-radius: var(--radius);
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.4s;
}

.process-step:hover .step-icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-300);
    max-width: 480px;
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section { padding: 140px 0; }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    position: relative;
    background: var(--dark-800);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.price-card-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    transition: opacity 0.5s;
}

.price-card:hover .price-card-glow { opacity: 0.06; }

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-12px);
}

.price-card.featured {
    border-color: rgba(255, 85, 0, 0.3);
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.04), var(--dark-800));
    transform: scale(1.04);
}

.price-card.featured:hover { transform: scale(1.04) translateY(-12px); }

.featured-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.price-tier i {
    font-size: 1.8rem;
    color: var(--primary);
}

.price-tier span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.price-amount {
    margin-bottom: 4px;
}

.price-amount .currency {
    font-size: 0.8rem;
    color: var(--text-400);
    vertical-align: super;
}

.price-amount .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-400);
    display: block;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.price-perks { margin-bottom: 32px; }

.price-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-200);
    text-align: left;
}

.price-perks li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-200);
    transition: all 0.3s var(--ease);
}

.price-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--glow);
}

.price-card.featured .price-cta {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.price-card.featured .price-cta:hover {
    background: var(--primary-hot);
    transform: scale(1.02);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 140px 0;
    background: var(--dark-800);
}

.testimonials-swiper { padding-bottom: 80px; }

.review-card {
    background: var(--dark-700);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s var(--ease);
    height: 100%;
}

.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

.review-stars { margin-bottom: 20px; }
.review-stars i { color: #FFB800; font-size: 0.9rem; margin-right: 2px; }

.review-text {
    font-size: 0.95rem;
    color: var(--text-200);
    line-height: 1.8;
    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-author h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-400);
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.swiper-btn-prev, .swiper-btn-next {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-300);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.swiper-btn-prev:hover, .swiper-btn-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.swiper-pagination { position: static !important; }
.swiper-pagination-bullet { background: var(--text-400); opacity: 0.4; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; width: 24px; border-radius: 4px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 140px 0; }

.cta-block {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.06), rgba(255, 85, 0, 0.01));
    border: 1px solid rgba(255, 85, 0, 0.12);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 900;
    color: rgba(255, 85, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -4px;
}

.cta-inner { position: relative; z-index: 2; }

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-sub {
    color: var(--text-300);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-downloads {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--dark-900);
    border: 1px solid var(--border);
    padding: 16px 28px;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.download-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.download-card i { font-size: 1.8rem; color: var(--primary); }

.dl-label { display: block; font-size: 0.7rem; color: var(--text-400); }
.dl-store { display: block; font-size: 1rem; font-weight: 700; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: 140px 0; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info-list { display: flex; flex-direction: column; gap: 28px; }

.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 44px; height: 44px; min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
}

.info-row strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.info-row p { font-size: 0.85rem; color: var(--text-400); line-height: 1.5; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid var(--border);
    padding: 16px 0 12px;
    color: var(--text-100);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field label {
    position: absolute;
    top: 16px; left: 0;
    font-size: 0.9rem;
    color: var(--text-400);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
    top: -4px;
    font-size: 0.72rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.field-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.4s var(--ease);
}

.form-field input:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    background: var(--dark-800);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-logo { height: 36px; margin-bottom: 16px; }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text-200);
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-400);
    padding: 6px 0;
    transition: all 0.3s;
}

.footer-col a:hover { color: var(--primary); transform: translateX(4px); }

.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.social-circle {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-400);
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}

.social-circle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.nl-form {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.nl-form input {
    flex: 1;
    background: var(--dark-900);
    padding: 12px 14px;
    color: var(--text-100);
    font-size: 0.85rem;
}

.nl-form button {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    transition: background 0.3s;
}

.nl-form button:hover { background: var(--primary-hot); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-400); }

.footer-credit a {
    color: var(--primary);
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-credit a:hover { opacity: 0.8; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-right { display: none; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .hero-metrics { justify-content: center; }
    .about-split { grid-template-columns: 1fr; gap: 60px; }
    .about-left { order: -1; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: translateY(-12px); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .service-item { grid-template-columns: 60px 1fr 60px; }
    .service-visual { display: none; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .burger { display: block; }
    .container { padding: 0 20px; }
    .hero-headline { font-size: 2.5rem; letter-spacing: -1px; }
    .section-heading { font-size: 2rem; }
    .hero-cta-row { flex-direction: column; align-items: center; }
    .hero-metrics { flex-direction: column; gap: 20px; }
    .metric-divider { width: 40px; height: 1px; }
    .about-pillars { grid-template-columns: 1fr; }
    .about-img-float { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .service-item { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
    .service-num { font-size: 1.5rem; }
    .service-arrow { display: none; }
    .cta-block { padding: 48px 24px; }
    .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 120px 0 60px; }
    .hero-headline { font-size: 2rem; }
    .btn-main, .btn-ghost { width: 100%; justify-content: center; }
    .download-card { flex: 1; min-width: 160px; }
}
