
:root {
    --bg-color: #050507;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.05);
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --accent: #a855f7;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-grid {
    position: fixed; inset: 0; z-index: -2;
    background-image: linear-gradient(var(--card-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--card-border) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    opacity: 0.2;
}
.bg-glow {
    position: fixed; top: -20%; left: 50%; transform: translateX(-50%);
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(100px); z-index: -1;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow { 0% { opacity: 0.5; } 100% { opacity: 0.8; transform: translateX(-50%) scale(1.1); } }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.badge {
    display: inline-block; padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1); border: 1px solid var(--primary);
    border-radius: 50px; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 1px; color: var(--primary); margin-bottom: 1rem;
}

.header {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1.5rem 0; transition: var(--transition);
    backdrop-filter: blur(10px);
}
.header.scrolled { padding: 1rem 0; background: rgba(5, 5, 7, 0.8); border-bottom: 1px solid var(--card-border); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }
.logo .dot { color: var(--primary); }

.nav-list { display: flex; gap: 2rem; }
.nav-link {
    font-size: 0.95rem; font-weight: 500; color: var(--text-muted);
    transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

.btn-primary {
    position: relative; padding: 0.8rem 1.5rem;
    background: var(--primary); color: #fff; border-radius: 4px;
    font-weight: 700; overflow: hidden; transition: var(--transition);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -10px var(--primary); }

.btn-secondary {
    padding: 0.8rem 1.5rem; background: transparent;
    border: 1px solid var(--card-border); color: #fff; border-radius: 4px;
    transition: var(--transition);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; position: relative; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 90%; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; }

.stats-row { display: flex; gap: 3rem; border-top: 1px solid var(--card-border); padding-top: 2rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 900; font-family: var(--font-heading); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

.mobile-proof-cards { display: none; }

.hero-visual { position: relative; height: 500px; display: flex; justify-content: center; align-items: center; }
.card-glass {
    position: absolute; width: 280px; padding: 1.5rem;
    background: var(--card-bg); border: 1px solid var(--card-border);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 2;
}
.card-glass.floating { animation: float 6s ease-in-out infinite; animation-delay: -3s; }
.card-glass.delay-1 { top: 20px; right: 20px; z-index: 1; animation-delay: 0s; }

.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.card-header i { font-size: 2rem; }
.status { padding: 0.2rem 0.6rem; font-size: 0.7rem; border-radius: 20px; }
.status.success { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.price { font-size: 1.8rem; font-weight: 700; color: #fff; margin-top: 0.5rem; }
.apple-card .price { opacity: 0; transition: opacity 0.3s ease; }
.apple-card:hover .price { opacity: 1; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.marquee-container { background: var(--primary); padding: 1rem 0; overflow: hidden; transform: rotate(-2deg) scale(1.05); margin: 2rem 0; }
.marquee-content { display: flex; white-space: nowrap; animation: marquee 20s linear infinite; }
.marquee-content span { font-weight: 900; font-size: 1.2rem; margin-right: 2rem; color: #000; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { padding: 8rem 0; }
.section-header { margin-bottom: 4rem; text-align: center; }
.section-title { font-size: 3rem; margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    padding: 2.5rem; border-radius: 12px; position: relative; overflow: hidden;
    transition: var(--transition);
}
.process-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.process-card:hover .icon-box { background: var(--primary); color: #fff; box-shadow: 0 0 20px var(--primary-glow); }

.icon-box {
    width: 60px; height: 60px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 1.5rem; margin-bottom: 1.5rem;
    transition: var(--transition);
}
.step-number {
    position: absolute; bottom: -20px; right: -10px; font-size: 8rem;
    font-weight: 900; color: rgba(255,255,255,0.02); z-index: 0;
}

.boutiques-cta {
    padding: 4rem 0;
}

.boutiques-hero {
    background: linear-gradient(135deg, rgba(102, 102, 255, 0.05), rgba(168, 85, 247, 0.05));
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.boutiques-content {
    flex: 1;
    z-index: 2;
}

.pre-title {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 102, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.boutiques-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.boutiques-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.boutiques-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.stat i {
    font-size: 2rem;
    color: var(--primary);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(102, 102, 255, 0.3);
}

.mega-cta-btn:hover {
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(102, 102, 255, 0.5);
    transform: translateY(-5px);
}

.boutiques-visual {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.floating-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 102, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid var(--card-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.floating-logo.logo-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-logo.logo-2 {
    top: 25%;
    right: 0;
    animation-delay: 0.5s;
    color: #d4af37;
}

.floating-logo.logo-3 {
    top: 50%;
    left: 0;
    animation-delay: 1s;
}

.floating-logo.logo-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 1.5s;
    color: #d4af37;
}

.floating-logo.logo-5 {
    bottom: 0;
    left: 20%;
    animation-delay: 2s;
}

.floating-logo.logo-6 {
    top: 40%;
    right: 30%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 102, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid var(--card-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.floating-logo.logo-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-logo.logo-2 {
    top: 25%;
    right: 0;
    animation-delay: 0.5s;
    color: #d4af37;
}

.floating-logo.logo-3 {
    top: 50%;
    left: 0;
    animation-delay: 1s;
}

.floating-logo.logo-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 1.5s;
    color: #d4af37;
}

.floating-logo.logo-5 {
    bottom: 0;
    left: 20%;
    animation-delay: 2s;
}

.footer { border-top: 1px solid var(--card-border); padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
.footer h4 { margin-bottom: 1rem; font-size: 1rem; }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 0.6rem; transition: 0.3s; font-size: 0.9rem; }
.footer-col a:hover { color: var(--primary); padding-left: 5px; }
.footer-col p { font-size: 0.85rem; line-height: 1.4; margin-top: 0.5rem; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.85rem; padding-top: 1.5rem; border-top: 1px solid var(--card-border); }

[data-reveal] { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.5, 0, 0, 1); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal].active { opacity: 1; transform: translate(0); }

.hero-page { padding: 10rem 0 5rem; text-align: center; }
.hero-page-content { max-width: 800px; margin: 0 auto; }
.hero-page h1 { font-size: 3.5rem; margin: 1rem 0; }
.hero-page p { font-size: 1.2rem; color: var(--text-muted); margin-top: 1rem; }

.process-timeline {
    padding: 4rem 0 2rem 0;
    overflow-x: auto;
}
.timeline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding: 2rem 1rem 1rem 1rem;
    max-width: 100vw;
    overflow-x: auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.35;
    z-index: 0;
}
.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    z-index: 1;
}
.timeline-marker {
    width: 64px;
    height: 64px;
    background: rgba(99,102,241,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.25);
    border: 2px solid var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.timeline-marker i {
    font-size: 1.7rem;
    color: #fff;
    text-shadow: 0 0 8px var(--primary), 0 0 2px #fff;
}
.timeline-item:hover .timeline-marker {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
    border-color: var(--accent);
}
.timeline-content {
    background: rgba(30,32,60,0.55);
    border: 1px solid rgba(99,102,241,0.18);
    border-radius: 18px;
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    transition: var(--transition);
    position: relative;
    margin-top: 0.2rem;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(99,102,241,0.08);
    backdrop-filter: blur(4px);
}
.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.18);
}
.timeline-step {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(99, 102, 241, 0.13);
    color: var(--primary);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.timeline-content h3 {
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    color: #fff;
    font-weight: 700;
}
.timeline-content p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.98rem;
}
@media (max-width: 900px) {
    .timeline {
        gap: 1rem;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .timeline-content {
        padding: 0.8rem 0.7rem 0.7rem 0.7rem;
        min-width: 120px;
        max-width: 140px;
    }
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 600px) {
    .timeline {
        gap: 0.5rem;
        padding: 0.5rem 0.2rem 0.2rem 0.2rem;
    }
    .timeline-content {
        padding: 0.5rem 0.3rem 0.3rem 0.3rem;
        min-width: 80px;
        max-width: 100px;
        font-size: 0.85rem;
    }
    .timeline-marker {
        width: 28px;
        height: 28px;
    }
}

.format-box { background: rgba(99, 102, 241, 0.1); border-left: 3px solid var(--primary); padding: 1rem; margin-top: 1rem; border-radius: 8px; font-size: 0.9rem; color: var(--text-muted); text-align: left; }

.accepted-shops { margin-top: 5rem; padding-top: 5rem; border-top: 1px solid var(--card-border); text-align: center; }
.accepted-shops h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.accepted-shops .subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }
.shops-list { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 1000px; margin: 0 auto; }
.shop-tag { background: var(--card-bg); border: 1px solid var(--card-border); padding: 0.8rem 1.5rem; border-radius: 30px; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.shop-tag:hover { border-color: var(--primary); background: rgba(99, 102, 241, 0.1); }
.shop-tag i { color: var(--primary); }

.cta-section { padding: 5rem 0; }
.cta-card { background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 30px; padding: 4rem; text-align: center; }
.cta-card h2 { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.cta-card p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.boxing-info { padding: 5rem 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.info-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 2.5rem; }
.info-icon { width: 70px; height: 70px; background: rgba(99, 102, 241, 0.1); border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.info-icon i { font-size: 2rem; color: var(--primary); }
.info-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.info-card p { color: var(--text-muted); line-height: 1.8; }
.warning-box-boxing { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 16px; padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.warning-box-boxing i { font-size: 2rem; color: #f59e0b; flex-shrink: 0; }
.warning-box-boxing h4 { color: #f59e0b; margin-bottom: 0.5rem; }
.warning-box-boxing p { color: var(--text-muted); line-height: 1.8; }

.service-category { margin-bottom: 4rem; }
.category-header-boxing { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1)); border: 1px solid var(--card-border); border-radius: 16px; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.category-header-boxing.special { background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(245, 158, 11, 0.1)); }
.category-header-boxing i { font-size: 2rem; color: var(--primary); }
.category-header-boxing.special i { color: #eab308; }
.category-header-boxing h3 { font-size: 1.8rem; margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; position: relative; transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2); }
.service-card.special-card { background: linear-gradient(135deg, rgba(234, 179, 8, 0.05), rgba(245, 158, 11, 0.05)); }
.service-badge { position: absolute; top: 15px; right: 15px; padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.service-badge.success { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.service-badge.warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.service-badge.insider { background: rgba(99, 102, 241, 0.1); color: var(--primary); border: 1px solid rgba(99, 102, 241, 0.3); }
.service-badge.special { background: linear-gradient(135deg, #eab308, #f59e0b); color: #000; border: none; }
.service-card h4 { font-size: 1.2rem; margin-bottom: 1rem; margin-top: 0.5rem; }
.service-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.service-price { font-size: 2rem; font-weight: 900; color: var(--primary); margin-top: 1.5rem; }
.service-card.special-card .service-price { background: linear-gradient(135deg, #eab308, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.coming-soon { padding: 8rem 0; }
.coming-soon-card { text-align: center; max-width: 600px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 30px; padding: 4rem; }
.coming-soon-icon { width: 100px; height: 100px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.coming-soon-icon i { font-size: 3rem; color: #fff; }
.coming-soon-card h2 { font-size: 2rem; margin-bottom: 1rem; }
.coming-soon-card p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.stepper-process {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}

.stepper-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.stepper-step {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: var(--card-border);
    transition: var(--transition);
}

.stepper-step.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.1);
}

.stepper-step.done {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.stepper-step.done i::before {
    content: "\f00c";
}

.stepper-line.active {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stepper-content {
    min-height: 300px;
}

.stepper-card {
    text-align: center;
    padding: 2rem;
}

.stepper-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.stepper-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.stepper-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
}

.stepper-prev,
.stepper-next {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.stepper-prev {
    background: var(--card-bg);
    color: #fff;
    border: 1px solid var(--card-border);
}

.stepper-prev:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.stepper-next {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.stepper-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.stepper-prev:disabled,
.stepper-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .shops-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .category-filters { flex-direction: column; }
    .filter-btn { width: 100%; }
    .steps-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-page h1 { font-size: 2.5rem; }
    
    .timeline::before { left: 30px; }
    .timeline-item { padding-left: 90px; }
    .timeline-marker { width: 60px; height: 60px; }
    .marker-inner { width: 60px; height: 60px; border: 3px solid var(--bg-color); }
    .marker-inner i { font-size: 1.5rem; }
    .timeline-item::before { left: 60px; width: 30px; top: 29px; }
    
    .stepper-process { padding: 2rem 1rem; }
    .stepper-step { width: 50px; height: 50px; font-size: 1.2rem; }
    .stepper-card h3 { font-size: 1.5rem; }
    .stepper-card p { font-size: 1rem; }
}

@media (max-width: 600px) {
    .stepper-step { width: 40px; height: 40px; font-size: 1rem; }
    .stepper-nav { flex-direction: column; }
    .stepper-prev, .stepper-next { width: 100%; }
}