/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', sans-serif;
    background: #030303;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
    --red: #E10600;
    --red-dark: #B00500;
    --black: #000000;
    --dark: #0A0A0A;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-900: #111827;
    --border: rgba(255,255,255,0.1);
}

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

/* ===== GLOBAL GRAIN OVERLAY ===== */
.grain-overlay {
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
    background-repeat: repeat; background-size: 200px 200px;
}

/* ===== AMBIENT ORB ===== */
.ambient-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(70px);
    will-change: transform;
    transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
    .ambient-orb { animation: none !important; }
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 40px) scale(1.1); }
    66% { transform: translate(35px, -45px) scale(0.95); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 50px) scale(1.2); }
}

/* ===== NAVBAR ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(3,3,3,0.85); backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(225,6,0,0.06);
    animation: slideDown 0.6s ease both;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav-logo { font-size: 24px; font-weight: 700; transition: transform 0.2s; display: inline-flex; align-items: center; }
.nav-logo:hover { transform: scale(1.05); }
.nav-logo-we { color: #fff; }
.nav-logo-hash { color: var(--red); }
.nav-logo img { display: block; height: 28px; width: auto; max-width: 240px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
    font-size: 16px; color: var(--gray-300); transition: color 0.3s;
    position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--red); transition: width 0.3s;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .nav-btn:hover { color: #fff; }
.nav-menu .nav-btn::after { display: none; }
.nav-menu .nav-btn, .mobile-nav .nav-btn {
    background: var(--red); color: #fff;
    padding: 8px 24px; font-size: 16px; font-weight: 600;
    transition: box-shadow 0.3s, transform 0.15s;
    border-radius: 4px;
}
.nav-btn:hover {
    box-shadow: 0 0 20px rgba(225,6,0,0.5);
    transform: scale(1.05);
}
.nav-btn:active { transform: scale(0.95); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 49;
    background: rgba(3,3,3,0.98); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 18px; color: var(--gray-300); transition: color 0.25s, background 0.25s;
    padding: 14px 40px; border-radius: 12px; width: 220px; text-align: center;
    letter-spacing: 0.5px;
}
.mobile-nav a:hover, .mobile-nav a:active {
    color: #fff; background: rgba(225,6,0,0.08);
}
.mobile-nav .nav-btn {
    margin-top: 16px; padding: 14px 40px; width: 220px;
    text-align: center; border-radius: 8px; font-size: 16px;
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(225,6,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(225,6,0,0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 90% 30%, rgba(80,0,0,0.06) 0%, transparent 50%),
        linear-gradient(180deg, #030303 0%, #050505 50%, #020202 100%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(225,6,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225,6,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}
.hero-waves {
    position: absolute; inset: 0; opacity: 0.15;
}
.hero-waves svg { width: 100%; height: 100%; }
.hero-content {
    position: relative; z-index: 10;
    text-align: center; padding: 0 24px;
    max-width: 880px; margin: 0 auto;
}
.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-title-red { color: var(--red); }
.hero-tagline {
    font-size: clamp(17px, 2vw, 22px); color: var(--gray-300);
    margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto;
    animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-tagline-red { color: var(--red); }
.hero-desc {
    font-size: clamp(16px, 1.5vw, 18px); color: var(--gray-400);
    max-width: 640px; margin: 0 auto 48px; line-height: 1.6;
    animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.hero-btns {
    display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
    animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}
.btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    padding: 16px 32px; font-size: 16px; font-weight: 600;
    position: relative; overflow: hidden;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}
.btn-red:hover { box-shadow: 0 0 30px rgba(225,6,0,0.5); }
.btn-red svg { transition: transform 0.3s; }
.btn-red:hover svg { transform: translateX(4px); }
.btn-red-sweep {
    position: absolute; inset: 0; background: var(--red-dark);
    transform: translateX(-100%); transition: transform 0.3s;
}
.btn-red:hover .btn-red-sweep { transform: translateX(0); }
.btn-red span { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }
.btn-outline-red {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 16px; font-weight: 600;
    border: 2px solid var(--red); color: #fff;
    border-radius: 4px;
    transition: background 0.3s;
}
.btn-outline-red:hover { background: rgba(225,6,0,0.1); }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10;
}
.scroll-mouse {
    width: 24px; height: 40px; border: 2px solid var(--red);
    border-radius: 12px; display: flex; justify-content: center;
    align-items: flex-start; padding-top: 8px;
    animation: bounce 2s infinite;
}
.scroll-dot {
    width: 6px; height: 8px; background: var(--red); border-radius: 3px;
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0%,100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0; }
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
    font-size: clamp(36px, 5vw, 60px); font-weight: 700;
    margin-bottom: 16px; letter-spacing: -1px;
}
.section-title-red { color: var(--red); }
.section-sub { font-size: 18px; color: var(--gray-400); max-width: 640px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services {
    padding: 72px 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(225,6,0,0.03) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(120,0,0,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #080808 0%, #0A0A0A 50%, #070707 100%);
}
.services::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,6,0,0.2), transparent);
}
.service-card {
    position: relative; padding: 36px 32px;
    background: linear-gradient(165deg, rgba(20,20,20,0.9) 0%, rgba(8,8,8,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden; height: 100%;
    transition: border-color 0.5s, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
}
.service-card:hover {
    border-color: rgba(225,6,0,0.4);
    box-shadow: 0 20px 60px rgba(225,6,0,0.08), 0 0 0 1px rgba(225,6,0,0.15);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 140px; height: 140px; border-radius: 50%;
    background: radial-gradient(circle, rgba(225,6,0,0.1) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.5s;
    pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card-glow {
    position: absolute; inset: 0; border-radius: 16px;
    background: transparent;
    transition: background 0.5s; pointer-events: none;
}
.service-card:hover .service-card-glow {
    background: linear-gradient(165deg, rgba(225,6,0,0.04) 0%, transparent 40%, rgba(225,6,0,0.02) 100%);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(225,6,0,0.08);
    border: 1px solid rgba(225,6,0,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon {
    background: rgba(225,6,0,0.15);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(225,6,0,0.15);
}
.service-icon svg { width: 26px; height: 26px; color: var(--red); }
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.service-card p { font-size: 15px; color: var(--gray-400); line-height: 1.65; margin-bottom: 24px; }
.service-features {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04);
}
.service-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--gray-300);
    transition: color 0.25s, transform 0.25s;
}
.service-card:hover .service-feature { color: #ccc; }
.service-feature:hover { transform: translateX(4px); }
.service-feature-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); flex-shrink: 0;
    box-shadow: 0 0 6px rgba(225,6,0,0.4);
}

.services-swiper .swiper-wrapper { align-items: stretch; }
.services-swiper .swiper-slide { height: auto; }
.swiper-pagination-bullet { background: #555 !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--red) !important; }

/* ===== WHY CHOOSE US ===== */
.why {
    padding: 72px 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 40% 50% at 15% 50%, rgba(225,6,0,0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 85% 50%, rgba(100,0,0,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #030303 0%, #050505 50%, #030303 100%);
}
.why-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.why-bg-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(225,6,0,0.05) 0%, rgba(225,6,0,0.02) 30%, transparent 65%);
    pointer-events: none;
    animation: orbFloat3 20s ease-in-out infinite;
}
.why-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(45deg, rgba(225,6,0,0.012) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(225,6,0,0.012) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(225,6,0,0.012) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(225,6,0,0.012) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.6;
}
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.why-card {
    text-align: center; position: relative;
    background: linear-gradient(170deg, rgba(18,18,18,0.8) 0%, rgba(6,6,6,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; padding: 40px 24px 36px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(225,6,0,0.25);
    box-shadow: 0 24px 64px rgba(225,6,0,0.07), 0 0 0 1px rgba(225,6,0,0.1);
}
.why-icon {
    width: 68px; height: 68px; border-radius: 16px;
    background: rgba(225,6,0,0.07);
    border: 1px solid rgba(225,6,0,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 24px; position: relative;
    transition: transform 0.35s, background 0.35s, box-shadow 0.35s;
}
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-3deg);
    background: rgba(225,6,0,0.14);
    box-shadow: 0 10px 30px rgba(225,6,0,0.2);
}
.why-icon svg { width: 30px; height: 30px; color: var(--red); }
.why-icon::before {
    content: ''; position: absolute; inset: -8px;
    border-radius: 20px; border: 1px solid rgba(225,6,0,0.06);
    transition: border-color 0.4s, transform 0.4s;
}
.why-card:hover .why-icon::before {
    border-color: rgba(225,6,0,0.12);
    transform: scale(1.08) rotate(3deg);
}
.why-card h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 10px;
    letter-spacing: -0.2px;
}
.why-card p { color: var(--gray-400); font-size: 14px; line-height: 1.6; }
.why-card-bar {
    margin-top: 24px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.why-card:hover .why-card-bar { transform: scaleX(1); }

/* ===== PROCESS ===== */
.process {
    padding: 80px 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 50% 40% at 70% 10%, rgba(225,6,0,0.03) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 30% 90%, rgba(100,0,0,0.04) 0%, transparent 50%),
        linear-gradient(180deg, #080808 0%, #0A0A0A 40%, #070707 100%);
}
.process::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,6,0,0.15), transparent);
}
.proc-list {
    display: flex; flex-direction: column; gap: 0;
    position: relative;
}
.proc-row {
    display: grid; grid-template-columns: 160px 1fr;
    gap: 48px; align-items: center;
    padding: 48px 0; position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background 0.4s;
}
.proc-row:last-child { border-bottom: none; }
.proc-row:hover { background: rgba(225,6,0,0.015); }
.proc-row-left {
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.proc-big-num {
    font-size: 96px; font-weight: 800; line-height: 1;
    -webkit-text-stroke: 1.5px rgba(225,6,0,0.15);
    color: transparent;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    position: relative; z-index: 2;
    user-select: none;
}
.proc-row:hover .proc-big-num {
    -webkit-text-stroke: 1.5px rgba(225,6,0,0.5);
    color: rgba(225,6,0,0.06);
    text-shadow: 0 0 60px rgba(225,6,0,0.15);
}
.proc-line-dot {
    position: absolute; right: -28px; top: 50%; transform: translateY(-50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--dark); border: 2px solid rgba(225,6,0,0.2);
    z-index: 3; transition: all 0.4s;
}
.proc-row:hover .proc-line-dot {
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 0 20px rgba(225,6,0,0.5);
}
.proc-row-right {
    display: flex; align-items: center; gap: 28px;
}
.proc-icon-box {
    width: 64px; height: 64px; min-width: 64px;
    border-radius: 16px;
    background: rgba(225,6,0,0.06);
    border: 1px solid rgba(225,6,0,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.proc-row:hover .proc-icon-box {
    background: rgba(225,6,0,0.12);
    border-color: rgba(225,6,0,0.25);
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(225,6,0,0.15);
}
.proc-icon-box svg { width: 28px; height: 28px; color: var(--red); }
.proc-text h3 {
    font-size: 24px; font-weight: 700; margin-bottom: 6px;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}
.proc-row:hover .proc-text h3 { color: #fff; }
.proc-text p {
    color: var(--gray-400); font-size: 15px; line-height: 1.6;
    max-width: 380px;
    transition: color 0.3s;
}
.proc-row:hover .proc-text p { color: var(--gray-300); }
.proc-row-arrow {
    margin-left: auto; opacity: 0;
    transform: translateX(-12px);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    color: var(--red);
}
.proc-row:hover .proc-row-arrow {
    opacity: 1; transform: translateX(0);
}

/* ===== RESULTS ===== */
.results {
    padding: 72px 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(225,6,0,0.04) 0%, transparent 50%),
        linear-gradient(180deg, #030303 0%, #050505 50%, #030303 100%);
}
.results-line-top { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.results-line-bot { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.results-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.r-item {
    text-align: center; padding: 40px 20px; position: relative;
    transition: background 0.4s;
}
.r-item:hover { background: rgba(225,6,0,0.02); }
.r-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(255,255,255,0.06);
}
.r-num {
    font-size: clamp(52px, 7vw, 76px); font-weight: 800;
    line-height: 1; letter-spacing: -3px; margin-bottom: 6px;
    color: #fff;
    transition: text-shadow 0.4s;
}
.r-item:hover .r-num { text-shadow: 0 0 40px rgba(225,6,0,0.15); }
.r-num .r-suffix { color: var(--red); }
.r-label {
    font-size: 14px; color: var(--gray-400); font-weight: 500;
    margin-bottom: 16px;
}
.r-bar-track {
    width: 64px; height: 3px; margin: 0 auto;
    background: rgba(255,255,255,0.06); border-radius: 3px;
    overflow: hidden;
}
.r-bar-fill {
    height: 100%; width: 0; border-radius: 3px;
    background: var(--red);
    transition: width 1.8s cubic-bezier(0.16,1,0.3,1);
}
.r-bar-fill.animated { width: 100%; }

/* ===== SHOWCASE / WORK ===== */
.showcase {
    padding: 72px 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 50% 55%, rgba(225,6,0,0.05) 0%, transparent 55%),
        linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 50%, #0A0A0A 100%);
}
.showcase::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(225,6,0,0.15) 50%, transparent 90%);
}
.showcase::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(225,6,0,0.15) 50%, transparent 90%);
}
.swiper-carousel { position: relative; margin: 0 auto; max-width: 100%; overflow: hidden; }
.swiper-carousel .swiper-slide { position: relative; }
.work-carousel {
    padding: 20px 0 40px;
}
.work-carousel .swiper-slide {
    width: 300px; height: 500px;
    border-radius: 16px; overflow: hidden;
    position: relative;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
}
.work-carousel .swiper-slide .slide-inner {
    width: 100%; height: 100%; position: relative;
    border-radius: 16px; overflow: hidden;
}
.stack-bg {
    position: absolute; inset: 0;
}
.s-bg-1 { background: linear-gradient(150deg, #1c0a0f 0%, #100508 50%, #0B0B0B 100%); }
.s-bg-2 { background: linear-gradient(150deg, #0c1410 0%, #060e0a 50%, #0B0B0B 100%); }
.s-bg-3 { background: linear-gradient(150deg, #16120c 0%, #0c0a07 50%, #0B0B0B 100%); }
.s-bg-4 { background: linear-gradient(150deg, #0c0e1a 0%, #070810 50%, #0B0B0B 100%); }
.s-bg-5 { background: linear-gradient(150deg, #140a16 0%, #0a060c 50%, #0B0B0B 100%); }
.s-bg-6 { background: linear-gradient(150deg, #161208 0%, #0e0c06 50%, #0B0B0B 100%); }
.stack-watermark {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.stack-watermark span {
    font-size: 56px; font-weight: 800; letter-spacing: 8px;
    text-transform: uppercase; color: rgba(225,6,0,0.04);
}
.stack-tag {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #fff;
    background: rgba(225,6,0,0.85); padding: 4px 14px; border-radius: 4px;
}
/* Instagram embed crop — show only the image/video (legacy, still used on inner pages if any) */
.ig-crop {
    position: absolute; inset: 0;
    overflow: hidden;
}
.ig-crop iframe {
    position: absolute;
    top: -60px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 200px);
    border: none;
    pointer-events: none;
}
.ig-link {
    position: absolute; inset: 0; z-index: 3;
    cursor: pointer;
}
/* Native reel-video player — fills its slide/card */
.reel-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    background: #000;
    border: none;
    display: block;
}
.stack-play-btn {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.stack-play-btn svg {
    opacity: 0.7; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: opacity 0.3s, transform 0.3s;
}
.work-carousel .swiper-slide:hover .stack-play-btn svg {
    opacity: 1; transform: scale(1.15);
}
.stack-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.88) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
}
.stack-overlay h4 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.stack-overlay p { font-size: 13px; color: var(--gray-400); line-height: 1.5; }
.work-nav {
    display: flex; justify-content: center; gap: 24px;
    margin-top: 32px;
}
.work-nav button {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(225,6,0,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--red);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.work-nav button:hover {
    background: rgba(225,6,0,0.12);
    border-color: rgba(225,6,0,0.4);
    transform: scale(1.1);
}
.work-nav button svg {
    width: 18px; height: 18px;
}
/* ===== INSTAGRAM REELS GRID ===== */
.reels-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.reel-embed {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(20,20,20,0.9);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.reel-embed:hover {
    border-color: rgba(225,6,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(225,6,0,0.08);
}
.reel-embed iframe {
    width: 100%; height: 480px; display: block;
    border-radius: 16px;
}

.showcase-follow {
    text-align: center; margin-top: 56px;
}
.showcase-follow a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gray-400); font-weight: 600; font-size: 15px;
    transition: color 0.3s;
}
.showcase-follow a:hover { color: var(--red); }
.showcase-follow a svg { transition: transform 0.3s; }
.showcase-follow a:hover svg { transform: scale(1.1); }

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 88px 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(225,6,0,0.06) 0%, transparent 50%),
        linear-gradient(180deg, #030303 0%, #050505 50%, #020202 100%);
}
.final-cta-glow {
    position: absolute; inset: 0; opacity: 0.12;
}
.final-cta-glow-orb1 {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    top: 30%; left: 10%;
    background: radial-gradient(circle, rgba(225,6,0,0.3) 0%, transparent 60%);
    filter: blur(60px);
    animation: orbFloat1 12s ease-in-out infinite;
}
.final-cta-glow-orb2 {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    top: 20%; right: 10%;
    background: radial-gradient(circle, rgba(160,0,0,0.2) 0%, transparent 60%);
    filter: blur(60px);
    animation: orbFloat2 15s ease-in-out infinite;
}
.final-cta-content { position: relative; z-index: 10; text-align: center; max-width: 900px; margin: 0 auto; }
.final-cta-title {
    font-size: clamp(36px, 6vw, 72px); font-weight: 700;
    line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.final-cta-sub { font-size: 20px; color: var(--gray-400); margin-bottom: 48px; }
.contact-links { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.contact-link {
    display: flex; align-items: center; gap: 12px;
    color: var(--gray-300); transition: color 0.3s, transform 0.2s;
}
.contact-link:hover { color: var(--red); transform: translateX(5px); }
.contact-link-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(225,6,0,0.1); display: flex;
    align-items: center; justify-content: center;
    transition: background 0.3s;
}
.contact-link:hover .contact-link-icon { background: rgba(225,6,0,0.2); }
.contact-link-icon svg { width: 20px; height: 20px; color: var(--red); }
.btn-cta-main {
    position: relative; display: inline-flex; align-items: center; gap: 12px;
    padding: 20px 48px; background: var(--red); color: #fff;
    font-size: 18px; font-weight: 600; overflow: hidden;
    border-radius: 4px;
    transition: transform 0.2s;
}
.btn-cta-main:hover { transform: scale(1.05); }
.btn-cta-main svg { transition: transform 0.3s; }
.btn-cta-main:hover svg { transform: translateX(8px); }
.btn-cta-glow {
    position: absolute; inset: 0;
    animation: btnGlow 2s infinite;
}
@keyframes btnGlow {
    0%,100% { box-shadow: 0 0 20px rgba(225,6,0,0.3); }
    50% { box-shadow: 0 0 40px rgba(225,6,0,0.6); }
}
.final-cta-line { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--red), transparent); }

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0;
    background: linear-gradient(180deg, #050505 0%, #020202 100%);
    border-top: 1px solid rgba(225,6,0,0.08);
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 14px; color: var(--gray-400); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--gray-400); transition: color 0.3s; }
.footer-links a:hover { color: var(--red); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (min-width: 1024px) {
    .process-line { display: block; }
}
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2,1fr); }
    .proc-list::before { left: 60px; }
    .results-grid { grid-template-columns: repeat(2,1fr); }
    .reels-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    /* Navbar — premium mobile feel */
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .container { padding: 0 20px; }
    .nav { padding: 0 6px; }
    .nav-inner { padding: 18px 16px; }
    .nav-logo { font-size: 22px; }
    .nav-logo img { height: 22px; max-width: 56vw; }
    .hamburger {
        width: 44px; height: 44px;
        align-items: center; justify-content: center;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.06);
        padding: 0;
        transition: background 0.3s, border-color 0.3s;
    }
    .hamburger:active {
        background: rgba(225,6,0,0.1);
        border-color: rgba(225,6,0,0.2);
    }
    .hamburger span { width: 20px; height: 1.5px; }

    /* Hero */
    .hero-content { padding: 0 16px; }
    .hero-title { letter-spacing: -1px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-red, .btn-outline-red { width: 100%; max-width: 280px; justify-content: center; }

    /* Section headers */
    .section-header { margin-bottom: 40px; }
    .section-sub { font-size: 16px; }

    /* Services */
    .services { padding: 64px 0; }

    /* Why Choose Us — single column */
    .why { padding: 64px 0; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-card { padding: 32px 20px 28px; }

    /* Process */
    .process { padding: 80px 0; }
    .proc-big-num { font-size: 64px; }
    .proc-row {
        grid-template-columns: 1fr;
        gap: 16px; padding: 36px 0;
        text-align: center;
    }
    .proc-list::before { display: none; }
    .proc-line-dot { display: none; }
    .proc-row-right {
        flex-direction: column; align-items: center; gap: 16px;
    }
    .proc-row-arrow { display: none; }
    .proc-text p { max-width: 100%; }

    /* Results */
    .results { padding: 64px 0; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .r-item:not(:last-child)::after { display: none; }
    .r-item { padding: 28px 12px; }

    /* Showcase / Reels */
    .showcase { padding: 64px 0; }
    .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .reel-embed iframe { height: 420px; }

    /* Final CTA */
    .final-cta { padding: 80px 0; }
    .final-cta-sub { font-size: 16px; margin-bottom: 32px; }
    .contact-links { flex-direction: column; align-items: center; gap: 16px; margin-bottom: 32px; }
    .contact-link { font-size: 14px; }
    .btn-cta-main { padding: 16px 36px; font-size: 16px; }

    /* Footer — stacked & centered for mobile */
    .footer { padding: 28px 0; }
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .footer-copy { font-size: 13px; order: 2; }
    .footer-links {
        order: 1;
        gap: 20px;
        justify-content: center;
    }
    .footer-links a { font-size: 13px; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-desc { font-size: 15px; }
    .why-card h3 { font-size: 17px; }
    .why-card p { font-size: 13px; }
    .service-card { padding: 28px 20px; }
    .service-card h3 { font-size: 20px; }
    .results-grid { grid-template-columns: 1fr; }
    .r-item { padding: 24px 16px; }
    .reels-grid { grid-template-columns: 1fr; gap: 16px; }
    .reel-embed iframe { height: 500px; }
    .final-cta-title { letter-spacing: -0.5px; }
    .btn-cta-main { padding: 14px 28px; font-size: 15px; width: 100%; max-width: 280px; justify-content: center; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 72px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(225,6,0,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #060606 0%, #0a0a0a 50%, #060606 100%);
}
.testimonials::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,6,0,0.15), transparent);
}
.testimonials-swiper { margin-top: 48px; padding-bottom: 8px; }
.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide { height: auto; display: flex; }
.testi-card {
    position: relative;
    padding: 36px 32px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.4s, transform 0.4s, background 0.4s;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.testi-card:hover {
    border-color: rgba(225,6,0,0.3);
    transform: translateY(-6px);
    background: rgba(225,6,0,0.025);
}
.testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 64px;
    color: var(--red);
    opacity: 0.5;
    line-height: 0.7;
    margin-bottom: 18px;
    user-select: none;
    pointer-events: none;
}
.testi-quote {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
    flex: 1;
}
.testi-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(225,6,0,0.35), rgba(225,6,0,0.08));
    border: 1px solid rgba(225,6,0,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: var(--red);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.testi-name {
    font-size: 15px; font-weight: 600; color: #fff;
}
.testi-role {
    font-size: 13px; color: var(--gray-400); margin-top: 2px;
}
@media (max-width: 1024px) {
    .testi-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 768px) {
    .testimonials { padding: 70px 0; }
    .testi-card { padding: 32px 24px 28px; }
}
