/* ===== ROOT & RESET ===== */
:root {
    --bg: #050508;
    --bg2: #0a0a0f;
    --bg3: #0f0f1a;
    --accent: #7b5ea7;
    --accent2: #00d4ff;
    --accent3: #ff6b6b;
    --text: #ffffff;
    --text2: #aaaacc;
    --border: rgba(123, 94, 167, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

@media (pointer: fine) {
    body { cursor: none; }
}

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

/* ===== CURSOR ===== */
.cursor {
    width: 12px; height: 12px;
    background: var(--accent2);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99999;
    transition: transform 0.08s ease-out;
    will-change: transform;
}

.cursor-follower {
    width: 40px; height: 40px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99998;
    transition: all 0.15s ease;
}

/* ===== LOADER ===== */
.loader {
    position: fixed; inset: 0;
    background: #050508;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 99997;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-text {
    font-size: 64px; font-weight: 700;
    letter-spacing: 20px;
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 40px;
    animation: pulse 1s ease infinite alternate;
}

@keyframes pulse { from { opacity: 0.5; } to { opacity: 1; } }

.loader-bar {
    width: 300px; height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px; overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: linear-gradient(90deg, #7b5ea7, #00d4ff);
    animation: load 2s ease forwards;
}

@keyframes load { from { width: 0; } to { width: 100%; } }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 9999;
    transition: all 0.4s ease;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 94, 167, 0.1);
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-size: 28px; font-weight: 700;
    letter-spacing: 4px;
    color: white;
    text-decoration: none;
}

.nav-logo span { color: var(--accent2); }

.nav-links {
    display: flex; gap: 40px; list-style: none;
}

.nav-links a {
    color: var(--text2); text-decoration: none;
    font-size: 14px; letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent2);
    transition: width 0.3s;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    color: white; padding: 12px 28px;
    border-radius: 50px; text-decoration: none;
    font-size: 14px; font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: white; transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed; inset: 0;
    background: rgba(5,5,8,0.98);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }

.mobile-menu ul li a {
    font-size: 36px; font-weight: 700;
    color: white; text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover { color: var(--accent2); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-bg { position: absolute; inset: 0; }

#starCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #7b5ea7, transparent);
    top: -200px; left: -200px;
}

.orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #00d4ff, transparent);
    top: 50%; right: -100px;
    animation-delay: -3s;
}

.orb3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #ff6b6b, transparent);
    bottom: -100px; left: 40%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 900px; text-align: center;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 8px 24px; border-radius: 50px;
    font-size: 13px; color: var(--text2);
    margin-bottom: 40px;
    background: rgba(123,94,167,0.1);
    animation: fadeDown 1s ease forwards;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700; line-height: 1.05;
    margin-bottom: 30px;
}

.hero-title .line {
    display: block;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

.hero-title em { font-style: italic; color: var(--accent2); }

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

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
    background: linear-gradient(135deg, #7b5ea7, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-sub {
    font-size: 18px; color: var(--text2);
    max-width: 600px; margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeUp 1s ease 0.8s forwards; opacity: 0;
}

.hero-btns {
    display: flex; gap: 20px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 80px;
    animation: fadeUp 1s ease 1s forwards; opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    color: white; padding: 18px 44px;
    border-radius: 50px; text-decoration: none;
    font-size: 16px; font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none; cursor: pointer; display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 60px rgba(123,94,167,0.5);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: white; padding: 18px 44px;
    border-radius: 50px; text-decoration: none;
    font-size: 16px; font-weight: 600;
    transition: all 0.3s;
    background: rgba(255,255,255,0.03);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent2);
    color: var(--accent2);
}

.hero-stats {
    display: flex; gap: 60px; justify-content: center; align-items: center;
    animation: fadeUp 1s ease 1.2s forwards; opacity: 0;
}

.stat { text-align: center; }

.stat-num {
    font-size: 48px; font-weight: 700;
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat p { color: var(--text2); font-size: 13px; letter-spacing: 1px; margin-top: 4px; }

.stat-divider {
    width: 1px; height: 60px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    color: var(--text2); font-size: 11px; letter-spacing: 3px;
}

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--accent2), transparent);
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-section {
    overflow: hidden; padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(123,94,167,0.05);
}

.marquee-track {
    display: flex; gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 14px; letter-spacing: 2px;
    color: var(--text2); flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about { padding: 150px 0; }

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

.section-tag {
    font-size: 12px; letter-spacing: 4px;
    color: var(--accent2); margin-bottom: 20px;
}

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

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700; line-height: 1.1;
    margin-bottom: 30px;
}

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

.about-text {
    color: var(--text2); line-height: 1.9;
    font-size: 16px; margin-bottom: 40px;
}

.about-features {
    display: flex; flex-direction: column; gap: 12px;
}

.feature {
    color: var(--text2); font-size: 14px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    transition: color 0.3s, padding-left 0.3s;
}

.feature:hover { color: var(--accent2); padding-left: 10px; }

.about-right { position: relative; height: 400px; }

.about-card {
    position: absolute; inset: 40px;
    border: 1px solid var(--border);
    border-radius: 24px; overflow: hidden;
    background: linear-gradient(135deg, rgba(123,94,167,0.15), rgba(0,212,255,0.05));
    backdrop-filter: blur(20px);
}

.about-card-inner {
    padding: 60px; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
}

.big-number {
    font-size: 96px; font-weight: 700;
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.about-card-inner p { color: var(--text2); font-size: 16px; line-height: 1.7; }

.floating-tag {
    position: absolute;
    background: rgba(5,5,8,0.9);
    border: 1px solid var(--border);
    padding: 10px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    backdrop-filter: blur(10px);
    animation: floatTag 4s ease-in-out infinite;
}

.tag1 { top: 10px; left: -20px; animation-delay: 0s; }
.tag2 { bottom: 60px; right: -20px; animation-delay: -1.5s; }
.tag3 { top: 50%; left: -30px; animation-delay: -3s; }

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

/* ===== SERVICES ===== */
.services { padding: 150px 0; background: var(--bg2); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 60px;
    border: 1px solid var(--border);
    border-radius: 24px; overflow: hidden;
}

.service-card {
    padding: 50px 40px;
    background: var(--bg2);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative; cursor: pointer;
}

.service-card::before {
    content: attr(data-index);
    position: absolute; top: 30px; right: 30px;
    font-size: 48px; font-weight: 700;
    color: rgba(255,255,255,0.03);
    transition: color 0.4s;
}

.service-card:hover { background: rgba(123,94,167,0.1); }
.service-card:hover::before { color: rgba(123,94,167,0.1); }

.service-icon {
    font-size: 32px; color: var(--accent2);
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon { transform: scale(1.2) rotate(-5deg); }

.service-card h3 {
    font-size: 22px; font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text2); font-size: 14px;
    line-height: 1.8;
}

.service-arrow {
    margin-top: 30px; font-size: 20px;
    color: var(--accent2); opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ===== WORK ===== */
.work { padding: 150px 0; }

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    min-height: 320px;
    display: block;
}

.wc1 { background: linear-gradient(135deg, #1a0a2e, #2d1b4e); }
.wc2 { background: linear-gradient(135deg, #0a1a2e, #1b2d4e); }
.wc3 { background: linear-gradient(135deg, #0a2e1a, #1b4e2d); }

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
    z-index: 1;
}

.work-card:hover .work-img {
    transform: scale(1.08);
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    transform: translateY(20px);
    transition: transform 0.4s;
    z-index: 2;
}

.work-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,8,1) 0%, rgba(5,5,8,0.95) 25%, rgba(5,5,8,0.8) 45%, rgba(5,5,8,0.3) 70%, transparent 100%);
    z-index: 1;
}

.work-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(5,5,8,0.6);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.05);
    height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.work-overlay h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.work-overlay p {
    color: var(--text2);
    font-size: 12px;
    line-height: 1.5;
}

.work-card:hover .work-overlay {
    transform: translateY(0);
}

.work-tag {
    display: inline-block;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    color: var(--accent2);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
    font-weight: 600;
}

.work-overlay h3 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 700;
    color: white;
}

.work-overlay p {
    color: var(--text2);
    font-size: 13px;
    line-height: 1.6;
}

.work-link {
    color: var(--accent2);
    font-size: 13px;
    font-weight: 600;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.work-card:hover .work-link {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WORK CTA ===== */
.work-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(123,94,167,0.05);
}

.work-cta p {
    color: var(--text2);
    font-size: 18px;
    margin-bottom: 24px;
}

/* ===== PRICING ===== */
.pricing { padding: 150px 0; background: var(--bg2); }

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

.pricing-card {
    border: 1px solid var(--border);
    border-radius: 24px; padding: 50px 40px;
    background: var(--bg3);
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity 0.4s;
}

.pricing-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.pricing-card:hover::before { opacity: 1; }

.pricing-card.featured {
    border-color: var(--accent2);
    background: linear-gradient(135deg, rgba(123,94,167,0.1), rgba(0,212,255,0.05));
    transform: scale(1.05);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.popular-badge {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    font-size: 10px; letter-spacing: 2px;
    padding: 6px 14px; border-radius: 20px;
    font-weight: 700;
}

.plan-name {
    font-size: 14px; letter-spacing: 3px;
    color: var(--text2); margin-bottom: 20px;
}

.plan-price {
    font-size: 64px; font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1; margin-bottom: 10px;
}

.plan-crypto {
    font-size: 13px; color: var(--text2);
    margin-bottom: 40px; padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none; margin-bottom: 40px;
}

.plan-features li {
    color: var(--text2); font-size: 14px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}

.plan-btn {
    display: block; text-align: center;
    border: 1px solid var(--border);
    color: white; padding: 16px;
    border-radius: 50px; text-decoration: none;
    font-size: 14px; font-weight: 600;
    transition: all 0.3s;
}

.plan-btn:hover, .pricing-card.featured .plan-btn {
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    border-color: transparent;
}

.crypto-banner {
    text-align: center; margin-top: 60px;
    padding: 20px; border: 1px solid var(--border);
    border-radius: 16px; color: var(--text2);
    font-size: 16px; letter-spacing: 2px;
    background: rgba(123,94,167,0.05);
}

.crypto-banner i { color: var(--accent2); margin-right: 10px; }

/* ===== ORDER ===== */
.order { padding: 150px 0; }

.order-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 60px; align-items: start;
}

.order-step {
    display: flex; gap: 24px; align-items: flex-start;
    margin-bottom: 40px;
}

.step-num {
    font-size: 48px; font-weight: 700;
    background: linear-gradient(135deg, #7b5ea7, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1; flex-shrink: 0;
}

.order-step h4 { font-size: 18px; margin-bottom: 6px; }
.order-step p { color: var(--text2); font-size: 14px; }

.order-form {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 24px; padding: 50px;
}

.form-input {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: white; padding: 16px 20px;
    border-radius: 12px; font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 16px; outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-input:focus {
    border-color: var(--accent2);
    background: rgba(0,212,255,0.05);
}

.form-input option { background: #0a0a0f; }

.form-textarea {
    min-height: 120px; resize: vertical;
}

.full-btn { width: 100%; font-size: 16px; }

.form-note {
    text-align: center; color: var(--text2);
    font-size: 13px; margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text2); font-size: 14px;
    margin-top: 16px; line-height: 1.8;
}

.footer-links h4 {
    font-size: 12px; letter-spacing: 3px;
    color: var(--text2); margin-bottom: 24px;
}

.footer-links a {
    display: block; color: var(--text2);
    text-decoration: none; font-size: 14px;
    margin-bottom: 12px; transition: color 0.3s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-bottom p { color: var(--text2); font-size: 13px; }

.footer-socials { display: flex; gap: 20px; }

.footer-socials a {
    color: var(--text2); font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.footer-socials a:hover { color: var(--accent2); transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 60px auto 0; }
    .pricing-card.featured { transform: scale(1); }
    .about-grid { grid-template-columns: 1fr; }
    .about-right { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar { padding: 20px 24px; width: 100%; }
    .navbar.scrolled { padding: 14px 24px; width: 100%; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .container { padding: 0 24px; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 30px; }
    .stat-num { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .order-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}