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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --accent: #00e5ff;
    --accent2: #7b2ff7;
    --accent3: #ff6b35;
    --accent4: #00ff88;
    --accent-gradient: linear-gradient(135deg, #00e5ff, #7b2ff7);
    --text: #FFFFFFE5;
    --text-muted: #8888a0;
    --border: #222235;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100vw;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 4px; }

* {
    -webkit-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 80px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
nav.scrolled { padding: 10px 40px; background: rgba(10,10,15,0.95); }
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
    appearance: none;
    -webkit-appearance: none;
    background: var(--accent-gradient); color: var(--bg-dark); padding: 10px 24px;
    border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer; border: none;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,255,0.3); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 40px 80px; text-align: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: 
    radial-gradient(ellipse 100% 100% at 50% 10%, #332063 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 100%, rgba(0,229,255,0.1) 0%, transparent 50%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 1000px; }
.hero-logo { display: flex; justify-content: center; margin-bottom: 32px; }
.hero-logo img { height: 72px; width: auto; filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.2)); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.2);
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    color: var(--accent); margin-bottom: 32px;
}
.hero-badge i { font-size: 10px; }
.hero h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(48px, 8vw, 82px);
    line-height: clamp(48px, 8vw, 90px); letter-spacing: 0;
    color: var(--white); margin-bottom: 24px;
}
.hero h1 .gradient-text {
    background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: var(--accent-gradient); color: var(--bg-dark); padding: 16px 36px;
    border-radius: 12px; font-weight: 700; font-size: 16px; text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,229,255,0.3); }
.btn-secondary {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--white);
    padding: 16px 36px; border-radius: 12px; font-weight: 600; font-size: 16px;
    text-decoration: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
    min-width: 200px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.hero-visual {
    margin-top: 60px; position: relative;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
    overflow: hidden; max-width: 800px; margin-left: auto; margin-right: auto;
    display: flex; align-items: center; justify-content: center;
}
.hero-visual-inner {
    display: flex; flex-direction: column; align-items: center; height: fit-content;
}
.bike-icon { font-size: 80px; opacity: 0.15; }
.hero-visual-label { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.hero-visual-glow {
    position: absolute; bottom: -50%; left: 50%; transform: translateX(-37%);
    width: 80%; height: 100%;
    background: radial-gradient(ellipse, rgba(0,229,255,0.15), transparent 70%);
    pointer-events: none;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex; justify-content: center; gap: 60px; padding: 60px 40px;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    font-family: 'Roboto Condensed', sans-serif; font-size: 48px; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-number span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 14px; font-weight: 700; color: var(--text-muted); margin-top: 4px; }

/* ===== SECTION COMMON ===== */
section { padding: 100px 40px; }
.section-header { text-align: center; max-width: 1400px; margin: 0 auto 30px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 16px; font-weight: 700; line-height: 25px; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 16px;
}
.section-header h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 38px;
    color: var(--white); line-height: 46px; margin-bottom: 16px;
    text-transform: uppercase; 
}
.section-header p { font-size: 16px; color: var(--text-muted); line-height: 24px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-card); }
.workflow-desktop { display: block !important; }
.workflow-mobile { display: none !important;  position: relative;}
.features-desktop { display: block !important; }
.features-mobile { display: none !important; position: relative; }
.pricing-desktop { display: block !important; }
.pricing-mobile { display: none !important; position: relative; }
.credits-desktop { display: block !important; }
.credits-mobile { display: none !important; position: relative; }
.why-desktop { display: block !important; }
.why-mobile { display: none !important; position: relative; }

.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    max-width: 1100px; margin: 0 auto; position: relative;
}
.step-card {
    background: var(--bg-dark); border: 1px solid var(--border); border-radius: 16px;
    padding: 36px 28px; text-align: center; position: relative;
    transition: all 0.4s; overflow: hidden;
}
.step-card:hover { border-color: rgba(0,229,255,0.3);}
.step-card:hover .step-glow { opacity: 1; }
.step-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 120%; height: 60px;
    background: linear-gradient(180deg, rgba(0,229,255,0.08), transparent);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.step-number {
    font-family: 'Roboto Condensed', sans-serif; font-size: 56px; font-weight: 700;
    background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1; margin-bottom: 12px;
}
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== PRODUCT SECTIONS ===== */
.product-section { position: relative; overflow: hidden; }
.product-section.alt-bg { background: var(--bg-card); }
.product-section-bg { position: absolute; inset: 0; pointer-events: none; }
.product-section-bg.cyan { background: radial-gradient(ellipse 50% 40% at 20% 50%, rgba(0,229,255,0.06), transparent); }
.product-section-bg.purple { background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(123,47,247,0.06), transparent); }
.product-section-bg.orange { background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,107,53,0.06), transparent); }
.product-content {
    max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.product-content.reversed { direction: rtl; }
.product-content.reversed > * { direction: ltr; }
.product-text {
    max-width: 480px;
}
.product-text h2 {
    font-family: 'Roboto Condensed', sans-serif; font-size: 38px;
    color: var(--white); line-height: 46px; margin-bottom: 16px;
    text-transform: uppercase;
}
.product-text .tag { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; }
.product-text .tag.cyan { color: var(--accent); }
.product-text .tag.purple { color: var(--accent2); }
.product-text .tag.orange { color: var(--accent3); }
.product-text p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.product-text .highlight-list {
    list-style: none; display: flex; flex-direction: column; gap: 14px;
}
.product-text .highlight-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 16px; color: var(--text); line-height: 1.6;
}
.product-text .highlight-list li i { margin-top: 3px; font-size: 16px; }
.product-text .highlight-list.cyan li i { color: var(--accent); }
.product-text .highlight-list.purple li i { color: var(--accent2); }
.product-text .highlight-list.orange li i { color: var(--accent3); }

/* ===== IMAGE CAROUSEL WITH INFO BOX ===== */
.image-carousel-wrapper {
    display: flex; flex-direction: column; gap: 0;
}

.image-carousel {
    position: relative; border-radius: 20px 20px 0 0; overflow: hidden;
    border: 1px solid var(--border); border-bottom: none; background: var(--bg-card);
    touch-action: pan-y; 
}
.alt-bg .image-carousel { background: var(--bg-dark); }
.carousel-track {
    display: flex; width: 100%; height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
    min-width: 100%; height: 100%; position: relative;
    overflow: visible;
}

.workflow-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}

.workflow-slide p {
    margin-top: 12px;
    text-align: center;
    color: #8888A0;
}

.carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.carousel-slide .placeholder-slide {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; width: 100%; height: 100%;
}

.carousel-slide .placeholder-slide i { font-size: 48px; opacity: 0.2; }
.carousel-slide .placeholder-slide span { font-size: 13px; color: var(--text-muted); text-align: center; }

.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(10,10,15,0.8); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; font-size: 16px;
    transition: all 0.3s;
}
.carousel-arrow:hover { background: rgba(10,10,15,0.95); border-color: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }
.carousel-arrow.cyan:hover { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,229,255,0.3); }
.carousel-arrow.purple:hover { border-color: var(--accent2); box-shadow: 0 0 20px rgba(123,47,247,0.3); }
.carousel-arrow.orange:hover { border-color: var(--accent3); box-shadow: 0 0 20px rgba(255,107,53,0.3); }

.carousel-dots {
    position: absolute; bottom: 25%; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}

.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3); cursor: pointer;
    transition: all 0.3s;
}
.carousel-dot.active { width: 24px; border-radius: 4px; }
.carousel-dot.active.cyan { background: var(--accent); }
.carousel-dot.active.purple { background: var(--accent2); }
.carousel-dot.active.orange { background: var(--accent3); }

.carousel-counter {
    display: none;
    position: absolute; top: 16px; right: 16px; z-index: 10;
    background: rgba(10,10,15,0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    padding: 4px 12px; font-size: 12px; color: var(--text-muted); font-weight: 600;
}

/* ===== INFO BOX BELOW CAROUSEL ===== */
.carousel-info-box {
    background: var(--bg-card); border: 1px solid var(--border); border-top: none;
    border-radius: 0 0 20px 20px; padding: 24px 28px;
    display: flex; align-items: center; gap: 16px;
    transition: all 0.3s;
    min-height: 140px;
}
.alt-bg .carousel-info-box { background: var(--bg-dark); }
.carousel-info-box .info-icon {
    width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    transition: all 0.4s;
}
.carousel-info-box .info-icon.cyan { background: rgba(0,229,255,0.1); color: var(--accent); }
.carousel-info-box .info-icon.purple { background: rgba(123,47,247,0.15); color: var(--accent2); }
.carousel-info-box .info-icon.orange { background: rgba(255,107,53,0.12); color: var(--accent3); }
.carousel-info-box .info-content { flex: 1; }
.carousel-info-box .info-content h4 {
    font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px;
    transition: all 0.3s;
}
.carousel-info-box .info-content p {
    font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0;
    transition: all 0.3s;
}

/* Info box fade animation */
.carousel-info-box.transitioning .info-icon,
.carousel-info-box.transitioning .info-content h4,
.carousel-info-box.transitioning .info-content p {
    opacity: 0; transform: translateY(6px);
}
.carousel-info-box .info-icon,
.carousel-info-box .info-content h4,
.carousel-info-box .info-content p {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s;
}

/* ===== FEATURES SHOWCASE ===== */
.features-showcase { background: var(--bg-card); }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1100px; margin: 0 auto;
}
.feature-card {
    background: var(--bg-dark); border: 1px solid var(--border); border-radius: 16px;
    padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden;
}
.feature-card:hover { border-color: rgba(0,229,255,0.3);}
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: rgba(0,229,255,0.1); color: var(--accent); font-size: 20px; margin-bottom: 20px;
}
.feature-card:nth-child(even) .feature-icon { background: rgba(123,47,247,0.15); color: var(--accent2); }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-section { background: var(--bg-card); }
.pricing-toggle {
    display: flex; justify-content: center; gap: 16px; margin: auto; margin-bottom: 48px; flex-wrap: wrap;
    max-width: 800px;
    border-bottom: 1px solid #3E3E4B;
}
.pricing-toggle button {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted);
    padding: 10px 24px; border-radius: 8px 8px 0 0; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.pricing-toggle button.active {
    background: var(--accent); color: var(--bg-dark); border-color: transparent;
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1100px; margin: 0 auto;
}
.pricing-grid.two-col { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-dark); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px 24px; text-align: center; transition: all 0.4s; position: relative;
}
.price-card:hover { border-color: rgba(0,229,255,0.3);}
.price-card.featured {
    border-color: var(--accent); background: linear-gradient(180deg, rgba(0,229,255,0.05), var(--bg-dark));
}
.price-card.featured::before {
    content: 'BEST VALUE'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-gradient); color: var(--bg-dark); font-size: 11px; font-weight: 800;
    padding: 4px 16px; border-radius: 20px; letter-spacing: 1px;
}
.price-duration { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.price-amount { font-family: 'Roboto Condensed', sans-serif; font-size: 48px; font-weight: 700; color: var(--white); line-height: 100%; }
.price-amount span { font-size: 18px; color: var(--text-muted); }
.price-discount {
    display: inline-block; margin: auto; margin-top: 8px; padding: 4px 12px; border-radius: 6px;
    width: fit-content;
    font-size: 16px; font-weight: 700; line-height: 24px; background: rgba(0,229,255,0.1); color: var(--accent);
}
.price-billed { font-size: 16px; color: var(--text-muted); margin-top: 8px; }
.price-card hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; margin-top: auto;}
.price-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-features li { font-size: 16px; color: var(--text-muted); display: flex; gap: 8px; }
.price-features li i { color: var(--accent); font-size: 12px; margin-top: 6px;}
.price-btn {
    display: block; width: 100%; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 14px;
    text-decoration: none; text-align: center; transition: all 0.3s; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.price-btn.primary { background: var(--accent-gradient); color: var(--bg-dark); }
.price-btn.primary:hover { box-shadow: 0 8px 30px rgba(0,229,255,0.3); }
.price-btn.outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.price-btn.outline:hover { border-color: var(--accent); color: var(--white); }

/* ===== BUNDLE BANNER ===== */
.bundle-banner {
    max-width: 1100px; margin: 48px auto 0;
    background: linear-gradient(135deg, rgba(123,47,247,0.15), rgba(0,229,255,0.1));
    border: 1px solid rgba(123,47,247,0.3); border-radius: 20px;
    padding: 40px 48px; display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.bundle-banner h3 { font-family: 'Roboto Condensed', sans-serif; font-size: 32px; color: var(--white); }
.bundle-banner p { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.bundle-price { text-align: center; }
.bundle-price .big { font-family: 'Roboto Condensed', sans-serif; font-size: 42px; color: var(--white); }
.bundle-price .sub { font-size: 13px; color: var(--text-muted); }

/* ===== CREDITS ===== */
.credits-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 900px; margin: 0 auto;
}
.credit-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
    padding: 28px 20px; text-align: center; transition: all 0.4s;
}
.credit-card:hover { border-color: rgba(0,229,255,0.3);}
.credit-amount {
    font-family: 'Roboto Condensed', sans-serif; font-size: 42px; font-weight: 700;
    background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.credit-label { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.credit-price { font-size: 20px; font-weight: 800; color: var(--white); }
.credit-per { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== WHY CHOOSE ===== */
.why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    max-width: 1000px; margin: 0 auto;
}
.why-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 36px 32px; display: flex; gap: 20px; transition: all 0.4s;
}
.why-card:hover { border-color: rgba(0,229,255,0.3);}
.why-icon {
    width: 52px; height: 52px; min-width: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.why-card:nth-child(1) .why-icon { background: rgba(0,229,255,0.1); color: var(--accent); }
.why-card:nth-child(2) .why-icon { background: rgba(123,47,247,0.15); color: var(--accent2); }
.why-card:nth-child(3) .why-icon { background: rgba(123,47,247,0.15); color: var(--accent2); }
.why-card:nth-child(4) .why-icon { background: rgba(0,229,255,0.1); color: var(--accent); }
.why-card h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== CTA ===== */
.final-cta {
    text-align: center; padding: 120px 40px; position: relative; overflow: hidden;
}
.final-cta-bg {
    position: absolute; inset: 0;
    background: 
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(0,229,255,0.1), transparent),
    radial-gradient(ellipse 50% 50% at 50% 20%, rgba(123,47,247,0.1), transparent);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    color: var(--white); line-height: 1; margin-bottom: 20px;
}
.final-cta p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
    display: flex; flex-direction: column; border-top: 1px solid var(--border); padding: 40px; text-align: center; gap: 24px; align-items: center;
}
footer p { font-size: 20px; color: var(--text-muted); }
.footer-logo { display: flex; justify-content: center;}
.footer-logo img { width: 140px;; height: auto; }

footer a {
    appearance: none;
    -webkit-appearance: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    width: 140px;
    height: 44px;
    color: #FFF;
    background: #FFFFFF0D;
    border-radius: 8px;
    border: 1px solid #8888A04D;
    pointer-events: all;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ===== INTEGRATIONS ===== */
.integrations {
    display: flex; justify-content: center; align-items: center; gap: 48px;
    padding: 40px; flex-wrap: wrap;
}
.integrations span { font-size: 20px; font-weight: 900; color: #8888A0; letter-spacing: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .product-content { grid-template-columns: 1fr; }
    .product-content.reversed { direction: ltr; }
}
@media (max-width: 768px) {
    nav {height: 78px; padding: 12px 24px; }
    .nav-links { display: none; }
    .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(10,10,15,0.98);
    padding: 20px; gap: 16px; border-bottom: 1px solid var(--border);
    }
    .nav-cta {width: fit-content; height: 54px; font-size: 16px;}
    section { padding: 60px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero p { font-size: 16px; }
    .hero-logo img { height: 74px; }
    .hero-bg {
    background: 
    radial-gradient(ellipse 120% 120% at 50% 10%, #332063 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 100%, rgba(0,229,255,0.1) 0%, transparent 50%);
    }
    .hero-content {
    max-width: 440px;
    }
    
    .stats-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    }
    .stats-bar .stat {
    width: 100%;
    text-align: center;
    }

    .integrations {
    padding: 20px;
    gap: 24px;
    }

    .integrations span { font-size: 16px;}

    .product-content {
    max-width: 370px;
    }

    .product-text {
    max-width: 356px;
    }

    .carousel-dots {
    bottom: 35%;
    }

    .info-content {
    padding-right: 10px;
    }

    .carousel-info-box .info-content h4 {
    font-size: 14px;
    font-weight: 400;
    }

    .section-header {
    max-width: 380px;
    }

    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid.two-col { grid-template-columns: 1fr; }
    .workflow-desktop { display: none !important; }
    .workflow-mobile { display: flex !important; align-items: center; justify-content: center;}
    .features-desktop { display: none !important; }
    .features-mobile { display: flex !important; align-items: center; justify-content: center; }
    .pricing-desktop { display: none !important; }
    .pricing-mobile { display: flex !important; align-items: center; justify-content: center; }
    .credits-desktop { display: none !important; }
    .credits-mobile { display: flex !important; align-items: center; justify-content: center; }
    .why-desktop { display: none !important; }
    .why-mobile { display: flex !important; align-items: center; justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; max-width: 380px;}
    .step-card {height: 260px;}
    .image-carousel {
    height: fit-content;
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--border);
    }

    .image-carousel[data-carousel="capture"] {
    aspect-ratio: 16 / 10; 
    height: auto;
    }

    .image-carousel[data-carousel="capture"] .carousel-track,
    .image-carousel[data-carousel="capture"] .carousel-slide,
    .image-carousel[data-carousel="capture"] .placeholder-slide {
    height: 100%;
    }
    .image-carousel[data-carousel="capture"] .placeholder-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    .carousel-info-box[data-info="capture"] .carousel-dots {
    bottom: 32%;
    }

    .workflow-mobile .image-carousel {
    width: 352px;
    height: 260px;
    margin-top: 20px;
    border-radius: 20px;
    }
    .features-mobile .image-carousel {
    width: 354px;
    height: 240px;
    margin-top: 20px;
    border-radius: 20px;
    }
    .pricing-mobile .image-carousel {
    width: 354px;
    min-height: 560px;
    margin-top: 20px;
    border: none;
    }
    .credits-mobile .image-carousel {
    width: 354px;
    min-height: 250px;
    margin-top: 20px;
    border-radius: 20px;
    }
    .why-mobile .image-carousel {
    width: 354px;
    min-height: 280px;
    margin-top: 20px;
    border-radius: 20px;
    }
    .features-mobile .feature-card {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    }
    .features-mobile .feature-icon {
    margin: 0 0 16px;
    }
    .features-mobile .feature-card p {
    max-width: 280px;
    }
    .pricing-mobile .image-carousel {
    overflow: hidden;
    padding-top: 12px;
    }

    .pricing-mobile .carousel-track {
    height: calc(100% - 12px);
    }

    .pricing-mobile .carousel-slide {
    display: flex;
    align-items: stretch;
    overflow: visible;
    }
    .pricing-mobile .price-card {
    margin: 0;
    width: 100%;
    min-height: 580px;
    border-radius: 20px;
    }
    .credits-mobile .carousel-slide {
    display: flex;
    align-items: stretch;
    overflow: visible;
    }
    .credits-mobile .credit-card {
    margin: 0;
    width: 100%;
    min-height: 250px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    .why-mobile .carousel-slide {
    display: flex;
    align-items: stretch;
    overflow: visible;
    }
    .why-mobile .why-card {
    margin: 0;
    width: 100%;
    min-height: 280px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: left;
    }
    .why-mobile .why-card h3,
    .why-mobile .why-card p {
    text-align: center;
    }
    .workflow-mobile .carousel-dots {
    position: static;
    transform: none;
    margin-top: 12px;
    justify-content: center;
    }
    .features-mobile .carousel-dots {
    position: static;
    transform: none;
    margin-top: 12px;
    justify-content: center;
    }

    .pricing-mobile .image-carousel {
    overflow-y: visible;
    }

    .pricing-mobile .carousel-track,
    .pricing-mobile .carousel-slide {
    overflow: visible;
    }

    .pricing-mobile .carousel-dots {
    position: static;
    transform: none;
    margin-top: 12px;
    justify-content: center;
    }
    .credits-mobile .carousel-dots {
    position: static;
    transform: none;
    margin-top: 12px;
    justify-content: center;
    }
    .why-mobile .carousel-dots {
    position: static;
    transform: none;
    margin-top: 12px;
    justify-content: center;
    }

    .workflow-mobile .carousel-info-box {
    border: none;
    min-height: 0;
    background: none;
    }
    .features-mobile .carousel-info-box {
    border: none;
    min-height: 0;
    background: none;
    }
    .pricing-mobile .carousel-info-box {
    border: none;
    min-height: 0;
    background: none;
    }
    .credits-mobile .carousel-info-box {
    border: none;
    min-height: 0;
    background: none;
    }
    .why-mobile .carousel-info-box {
    border: none;
    min-height: 0;
    background: none;
    }

    .carousel-dot.active.workflow {
    background: linear-gradient(90.39deg, #15C5FD 0.34%, #703FF7 99.71%);
    }

    .pricing-toggle {
    border: none;
    }

    .pricing-toggle button {
    border-radius: 8px;
    }

    .carousel-arrow {
    display: none;
    }

    .credits-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .bundle-banner { padding: 28px 24px; text-align: center; justify-content: center; }
    .final-cta { padding: 80px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 14px; }
    .carousel-arrow.prev { left: 8px; }
    .carousel-arrow.next { right: 8px; }
    .carousel-info-box { padding: 20px;}

    footer {
    padding: 60px;
    }

    footer a {
    height: 60px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

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

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}
.modal-overlay.open { display: flex; }

.modal-card {
    width: 630px;
    max-height: 80vh;
    background: #12121a;
    border: 1px solid #222235;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-card h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 6vw, 38px);
    text-transform: uppercase;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.modal-logo { height: 40px; width: auto; }
.modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: #FFFFFF0D;
    border: 1px solid #8888A04D;
    border-radius: 100%;
}

.modal-close:hover {
    border-color: #FFF;
}

.modal-desc { color: #8888a0; font-size: 16px; margin-bottom: 16px; }

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-form input{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    height: 44px;
    border: 1px solid #8888A04D;
    border-radius: 8px;
    background: #FFFFFF0D;
    color: #8888a0;
    padding: 0 12px;
}

.message-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;


    border: 1px solid #8888A04D;
    border-radius: 8px;
    background: #FFFFFF0D;
    color: #8888a0;

    width: 100%;
    height: 88px;
    padding: 12px;
    resize: vertical;
    line-height: 1.4;
}

#countrySearch {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}

.modal-form input:focus,
.custom-select-trigger:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.2);
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    height: 44px;
    border: 1px solid #8888A04D;
    border-radius: 8px;
    background: #FFFFFF0D;
    color: #8888a0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font: inherit;
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    z-index: 30;
    list-style: none;
    margin: 0;
    padding: 6px;
    border: 1px solid #8888A04D;
    border-radius: 8px;
    background: #12121a;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.custom-select.open .custom-select-menu {
    display: block;
}

.custom-select-option {
    padding: 10px 10px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.custom-select-option:hover,
.custom-select-option.active {
    background: #FFFFFF14;
}

.custom-select.invalid .custom-select-trigger {
    border-color: #ff6b6b;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 640px) {
    .row-2 { grid-template-columns: 1fr; gap: 12px}
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
    @media (max-width: 640px) {
        justify-content: space-between;
    }
}

.btn-cancel, .btn-submit {
    width: 160px;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 24px 48px;
}
.btn-cancel {
    border: 1px solid #444;
    background: transparent;
    color: #fff;
}
.btn-submit {
    border: none;
    background: linear-gradient(135deg, #00e5ff, #7b2ff7);
    color: #0a0a0f;
    font-weight: 700;
}
.modal-result {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}
.modal-result.error { color: #ff8f8f; }
.modal-result.success { color: #72f6b5; }