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

:root {
    --bg-primary: #000000;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    position: relative;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    cursor: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    right: 0;
    top: 0;
    width: 1px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.05);
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 0%;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(59, 130, 246, 0.6) 100%);
    transition: height 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

/* Fire Effect at Scroll Tip - 90% More Subtle */
.fire-effect {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    opacity: 0;
    pointer-events: none;
    filter: blur(1.5px);
}

.fire-effect::before,
.fire-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: fireFlicker 0.3s ease-in-out infinite alternate;
}

.fire-effect::after {
    width: 120%;
    height: 150%;
    opacity: 0.15;
    animation: fireFlicker2 0.25s ease-in-out infinite alternate;
    filter: blur(2px);
}

.fire-effect.intense {
    width: 4px;
    height: 12px;
    filter: blur(2px);
}

.fire-effect.intense::before,
.fire-effect.intense::after {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.15), 0 0 4px rgba(255, 255, 255, 0.1);
}

.fire-effect.intense::after {
    width: 140%;
    height: 180%;
    filter: blur(2.5px);
}

.fire-effect.very-intense {
    width: 5px;
    height: 16px;
    filter: blur(2.5px);
}

.fire-effect.very-intense::before,
.fire-effect.very-intense::after {
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.2), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 9px rgba(255, 255, 255, 0.08);
}

.fire-effect.very-intense::after {
    width: 160%;
    height: 220%;
    filter: blur(3px);
}

@keyframes fireFlicker {
    0% {
        transform: translateX(-50%) scaleY(0.95) scaleX(0.98);
        opacity: 0.15;
    }
    100% {
        transform: translateX(-50%) scaleY(1.05) scaleX(1.02);
        opacity: 0.2;
    }
}

@keyframes fireFlicker2 {
    0% {
        transform: translateX(-50%) scaleY(0.92) scaleX(0.95);
        opacity: 0.1;
    }
    100% {
        transform: translateX(-50%) scaleY(1.08) scaleX(1.05);
        opacity: 0.15;
    }
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-primary);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

body:hover .cursor-follower {
    border-color: rgba(255, 255, 255, 0.5);
}

a:hover ~ .cursor-follower,
button:hover ~ .cursor-follower {
    width: 48px;
    height: 48px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.3s ease;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 48px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: none;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-shadow: none;
    position: relative;
    z-index: 1;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    background: transparent;
    cursor: none;
    font-size: 15px;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 20px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--bg-primary);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    overflow: visible;
    position: relative;
    display: inline-block;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    position: relative;
}

.hero-line-3 {
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(10.08px, 1.12vw, 13.44px);
    color: #606060;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
}

.hero-tagline {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-primary);
    margin-bottom: 48px;
    font-weight: 400;
    opacity: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scribble Underline - Calligraphic Style */
.scribble-underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.scribble-underline::after {
    content: '';
    position: absolute;
    left: -4px;
    bottom: -8px;
    width: calc(100% + 8px);
    height: 12px;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='14' viewBox='0 0 100 14'%3E%3Cpath d='M0,7 Q5,3 10,7 Q15,11 20,7 Q25,3 30,7 Q32,9 35,7 Q38,5 42,7 Q45,9 48,7 Q51,5 54,7 Q57,9 60,7 Q63,5 66,7 Q69,9 72,7 Q75,5 78,7 Q81,9 84,7 Q87,5 90,7 Q93,9 95,7 Q97,5 100,7' stroke='rgba(255,255,255,0.7)' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M0,8 Q8,4 12,8 Q16,12 20,8 Q22,10 25,8 Q28,6 32,8 Q35,10 38,8 Q41,6 44,8 Q47,10 50,8 Q53,6 56,8 Q59,10 62,8 Q65,6 68,8 Q71,10 74,8 Q77,6 80,8 Q83,10 86,8 Q89,6 92,8 Q95,10 98,8 Q99,7 100,8' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.8;
    animation: scribbleCalligraphic 1.2s ease-out;
    transform-origin: left center;
}

@keyframes scribbleCalligraphic {
    0% {
        opacity: 0;
        transform: scaleX(0) translateY(2px);
        filter: blur(2px);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(0.6) translateY(1px);
        filter: blur(1px);
    }
    100% {
        opacity: 0.8;
        transform: scaleX(1) translateY(0);
        filter: blur(0);
    }
}

.hero-actions {
    opacity: 0;
}

/* Lightning Animation - Realistic Electricity */
.lightning-container {
    position: absolute;
    right: -800px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 900px;
    opacity: 1;
    pointer-events: none;
    display: inline-block;
    z-index: 10000;
    overflow: visible;
}

.hero-title {
    overflow: visible !important;
}

.hero-line-3 {
    overflow: visible !important;
    z-index: 10000;
    position: relative;
}

.lightning-container.active {
    opacity: 1 !important;
}

.lightning-svg {
    width: 800px;
    height: 900px;
    position: absolute;
    top: -450px;
    left: -400px;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 16px rgba(173, 216, 230, 0.7)) drop-shadow(0 0 24px rgba(135, 206, 250, 0.5));
}

.lightning-bolt {
    fill: none;
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 0.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    filter: drop-shadow(0 0 3px rgba(173, 216, 230, 0.8)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.lightning-container.active .flash-1 {
    animation: lightningElectricity1 0.225s ease-out forwards;
}

.lightning-container.active .flash-2 {
    animation: lightningElectricity2 0.225s ease-out 0.08s forwards;
}

.lightning-container.active .flash-1 .bolt-1 {
    animation: boltFlash1 0.225s ease-out forwards;
}

.lightning-container.active .flash-1 .bolt-2 {
    animation: boltFlash2 0.225s ease-out 0.02s forwards;
}

.lightning-container.active .flash-1 .bolt-3 {
    animation: boltFlash3 0.225s ease-out 0.04s forwards;
}

.lightning-container.active .flash-1 .bolt-4 {
    animation: boltFlash4 0.225s ease-out 0.03s forwards;
}

.lightning-container.active .flash-1 .bolt-5 {
    animation: boltFlash5 0.225s ease-out 0.05s forwards;
}

.lightning-container.active .flash-1 .bolt-6 {
    animation: boltFlash6 0.225s ease-out 0.01s forwards;
}

.lightning-container.active .flash-1 .bolt-7 {
    animation: boltFlash7 0.225s ease-out 0.015s forwards;
}

.lightning-container.active .flash-1 .bolt-8 {
    animation: boltFlash8 0.225s ease-out 0.035s forwards;
}

.lightning-container.active .flash-1 .bolt-9 {
    animation: boltFlash9 0.225s ease-out 0.018s forwards;
}

.lightning-container.active .flash-1 .bolt-10 {
    animation: boltFlash10 0.225s ease-out 0.045s forwards;
}

.lightning-container.active .flash-1 .bolt-11 {
    animation: boltFlash11 0.225s ease-out 0.028s forwards;
}

.lightning-container.active .flash-1 .bolt-12 {
    animation: boltFlash12 0.225s ease-out 0.012s forwards;
}

.lightning-container.active .flash-2 .bolt-1 {
    animation: boltFlash1 0.225s ease-out 0.08s forwards;
}

.lightning-container.active .flash-2 .bolt-2 {
    animation: boltFlash2 0.225s ease-out 0.1s forwards;
}

.lightning-container.active .flash-2 .bolt-3 {
    animation: boltFlash3 0.225s ease-out 0.12s forwards;
}

.lightning-container.active .flash-2 .bolt-4 {
    animation: boltFlash4 0.225s ease-out 0.11s forwards;
}

.lightning-container.active .flash-2 .bolt-5 {
    animation: boltFlash5 0.225s ease-out 0.13s forwards;
}

.lightning-container.active .flash-2 .bolt-6 {
    animation: boltFlash6 0.225s ease-out 0.09s forwards;
}

.lightning-container.active .flash-2 .bolt-7 {
    animation: boltFlash7 0.225s ease-out 0.095s forwards;
}

.lightning-container.active .flash-2 .bolt-8 {
    animation: boltFlash8 0.225s ease-out 0.115s forwards;
}

.lightning-container.active .flash-2 .bolt-9 {
    animation: boltFlash9 0.225s ease-out 0.098s forwards;
}

.lightning-container.active .flash-2 .bolt-10 {
    animation: boltFlash10 0.225s ease-out 0.125s forwards;
}

.lightning-container.active .flash-2 .bolt-11 {
    animation: boltFlash11 0.225s ease-out 0.108s forwards;
}

.lightning-container.active .flash-2 .bolt-12 {
    animation: boltFlash12 0.225s ease-out 0.092s forwards;
}

@keyframes lightningElectricity1 {
    0% {
        opacity: 0;
        transform: scale(0.2) translateX(-80px) translateY(-30px) rotate(-5deg);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
    }
    15% {
        opacity: 1;
        transform: scale(1.15) translateX(20px) translateY(-15px) rotate(3deg);
        filter: drop-shadow(0 0 20px rgba(173, 216, 230, 1)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(135, 206, 250, 0.5));
    }
    35% {
        opacity: 1;
        transform: scale(1.08) translateX(-15px) translateY(8px) rotate(-2deg);
        filter: drop-shadow(0 0 18px rgba(173, 216, 230, 0.9)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 50px rgba(135, 206, 250, 0.4));
    }
    50% {
        opacity: 1;
        transform: scale(1.12) translateX(10px) translateY(-5px) rotate(2deg);
        filter: drop-shadow(0 0 20px rgba(173, 216, 230, 0.95)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 55px rgba(135, 206, 250, 0.45));
    }
    70% {
        opacity: 0.9;
        transform: scale(1.05) translateX(-5px) translateY(3px) rotate(-1deg);
        filter: drop-shadow(0 0 15px rgba(173, 216, 230, 0.8)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 45px rgba(135, 206, 250, 0.35));
    }
    100% {
        opacity: 0;
        transform: scale(0.98) translateX(8px) translateY(5px) rotate(1deg);
        filter: drop-shadow(0 0 8px rgba(173, 216, 230, 0.4)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 28px rgba(135, 206, 250, 0.2));
    }
}

@keyframes lightningElectricity2 {
    0% {
        opacity: 0;
        transform: scale(0.2) translateX(-75px) translateY(-35px) rotate(4deg);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
    }
    15% {
        opacity: 1;
        transform: scale(1.18) translateX(18px) translateY(-12px) rotate(-3deg);
        filter: drop-shadow(0 0 22px rgba(173, 216, 230, 1)) drop-shadow(0 0 45px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 65px rgba(135, 206, 250, 0.6));
    }
    35% {
        opacity: 1;
        transform: scale(1.1) translateX(-12px) translateY(5px) rotate(2deg);
        filter: drop-shadow(0 0 20px rgba(173, 216, 230, 0.95)) drop-shadow(0 0 38px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 55px rgba(135, 206, 250, 0.5));
    }
    50% {
        opacity: 1;
        transform: scale(1.14) translateX(8px) translateY(-3px) rotate(-1deg);
        filter: drop-shadow(0 0 21px rgba(173, 216, 230, 0.98)) drop-shadow(0 0 42px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 60px rgba(135, 206, 250, 0.55));
    }
    70% {
        opacity: 0.85;
        transform: scale(1.06) translateX(-3px) translateY(2px) rotate(0.5deg);
        filter: drop-shadow(0 0 16px rgba(173, 216, 230, 0.85)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 48px rgba(135, 206, 250, 0.4));
    }
    100% {
        opacity: 0;
        transform: scale(1) translateX(5px) translateY(3px) rotate(-0.5deg);
        filter: drop-shadow(0 0 10px rgba(173, 216, 230, 0.45)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.35)) drop-shadow(0 0 32px rgba(135, 206, 250, 0.25));
    }
}

@keyframes boltFlash1 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    15% { opacity: 1; stroke-dasharray: 200, 1000; }
    30% { opacity: 1; stroke-dasharray: 400, 1000; }
    50% { opacity: 1; stroke-dasharray: 600, 1000; }
    70% { opacity: 0.8; stroke-dasharray: 800, 1000; }
    100% { opacity: 0; stroke-dasharray: 1000, 1000; }
}

@keyframes boltFlash2 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    20% { opacity: 1; stroke-dasharray: 150, 1000; }
    40% { opacity: 1; stroke-dasharray: 300, 1000; }
    60% { opacity: 0.9; stroke-dasharray: 450, 1000; }
    100% { opacity: 0; stroke-dasharray: 600, 1000; }
}

@keyframes boltFlash3 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    25% { opacity: 1; stroke-dasharray: 180, 1000; }
    45% { opacity: 1; stroke-dasharray: 360, 1000; }
    65% { opacity: 0.7; stroke-dasharray: 540, 1000; }
    100% { opacity: 0; stroke-dasharray: 720, 1000; }
}

@keyframes boltFlash4 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    18% { opacity: 1; stroke-dasharray: 170, 1000; }
    35% { opacity: 1; stroke-dasharray: 340, 1000; }
    55% { opacity: 0.85; stroke-dasharray: 510, 1000; }
    100% { opacity: 0; stroke-dasharray: 680, 1000; }
}

@keyframes boltFlash5 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    22% { opacity: 1; stroke-dasharray: 190, 1000; }
    42% { opacity: 1; stroke-dasharray: 380, 1000; }
    62% { opacity: 0.75; stroke-dasharray: 570, 1000; }
    100% { opacity: 0; stroke-dasharray: 760, 1000; }
}

@keyframes boltFlash6 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    12% { opacity: 1; stroke-dasharray: 120, 1000; }
    28% { opacity: 1; stroke-dasharray: 240, 1000; }
    48% { opacity: 0.9; stroke-dasharray: 360, 1000; }
    100% { opacity: 0; stroke-dasharray: 480, 1000; }
}

@keyframes boltFlash7 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    14% { opacity: 1; stroke-dasharray: 140, 1000; }
    30% { opacity: 1; stroke-dasharray: 280, 1000; }
    50% { opacity: 0.85; stroke-dasharray: 420, 1000; }
    100% { opacity: 0; stroke-dasharray: 560, 1000; }
}

@keyframes boltFlash8 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    16% { opacity: 1; stroke-dasharray: 160, 1000; }
    32% { opacity: 1; stroke-dasharray: 320, 1000; }
    52% { opacity: 0.8; stroke-dasharray: 480, 1000; }
    100% { opacity: 0; stroke-dasharray: 640, 1000; }
}

@keyframes boltFlash9 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    13% { opacity: 1; stroke-dasharray: 130, 1000; }
    29% { opacity: 1; stroke-dasharray: 260, 1000; }
    49% { opacity: 0.85; stroke-dasharray: 390, 1000; }
    100% { opacity: 0; stroke-dasharray: 520, 1000; }
}

@keyframes boltFlash10 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    17% { opacity: 1; stroke-dasharray: 170, 1000; }
    33% { opacity: 1; stroke-dasharray: 340, 1000; }
    53% { opacity: 0.75; stroke-dasharray: 510, 1000; }
    100% { opacity: 0; stroke-dasharray: 680, 1000; }
}

@keyframes boltFlash11 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    15% { opacity: 1; stroke-dasharray: 150, 1000; }
    31% { opacity: 1; stroke-dasharray: 300, 1000; }
    51% { opacity: 0.82; stroke-dasharray: 450, 1000; }
    100% { opacity: 0; stroke-dasharray: 600, 1000; }
}

@keyframes boltFlash12 {
    0% { opacity: 0; stroke-dasharray: 0, 1000; }
    11% { opacity: 1; stroke-dasharray: 110, 1000; }
    27% { opacity: 1; stroke-dasharray: 220, 1000; }
    47% { opacity: 0.88; stroke-dasharray: 330, 1000; }
    100% { opacity: 0; stroke-dasharray: 440, 1000; }
}

/* Smoke Particles - Grey Electric Smoke */
.smoke-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 900px;
    pointer-events: none;
    z-index: 9999;
}

.smoke-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(150, 150, 150, 0.4);
    border-radius: 50%;
    opacity: 0;
    top: 450px;
    left: 300px;
    box-shadow: 0 0 6px rgba(150, 150, 150, 0.4);
}

.lightning-container.active .smoke-particles .smoke-particle {
    animation: smokeFloat 4s ease-out forwards;
}

.smoke-particle:nth-child(1) {
    animation-delay: 0.25s;
    transform: translate(0, 0);
    background: rgba(140, 140, 140, 0.35);
}

.smoke-particle:nth-child(2) {
    animation-delay: 0.35s;
    transform: translate(45px, -30px);
    background: rgba(160, 160, 160, 0.4);
    width: 4px;
    height: 4px;
}

.smoke-particle:nth-child(3) {
    animation-delay: 0.45s;
    transform: translate(-36px, -45px);
    background: rgba(145, 145, 145, 0.38);
    width: 5.5px;
    height: 5.5px;
}

.smoke-particle:nth-child(4) {
    animation-delay: 0.3s;
    transform: translate(24px, -24px);
    background: rgba(155, 155, 155, 0.42);
    width: 3px;
    height: 3px;
}

.smoke-particle:nth-child(5) {
    animation-delay: 0.4s;
    transform: translate(-54px, -36px);
    background: rgba(150, 150, 150, 0.4);
    width: 4.5px;
    height: 4.5px;
}

.smoke-particle:nth-child(6) {
    animation-delay: 0.5s;
    transform: translate(15px, -60px);
    background: rgba(148, 148, 148, 0.36);
    width: 4.2px;
    height: 4.2px;
}

.smoke-particle:nth-child(7) {
    animation-delay: 0.28s;
    transform: translate(30px, -15px);
    background: rgba(152, 152, 152, 0.38);
    width: 3.5px;
    height: 3.5px;
}

.smoke-particle:nth-child(8) {
    animation-delay: 0.42s;
    transform: translate(-25px, -50px);
    background: rgba(147, 147, 147, 0.37);
    width: 4px;
    height: 4px;
}

@keyframes smokeFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.2);
        filter: blur(0px);
    }
    10% {
        opacity: 0.6;
        transform: translate(9px, -15px) scale(0.6);
        filter: blur(1.5px);
    }
    30% {
        opacity: 0.8;
        transform: translate(24px, -45px) scale(1);
        filter: blur(3px);
    }
    60% {
        opacity: 0.5;
        transform: translate(45px, -90px) scale(1.4);
        filter: blur(4.5px);
    }
    100% {
        opacity: 0;
        transform: translate(75px, -150px) scale(2.2);
        filter: blur(6px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 1s ease 2.5s forwards;
}

.scroll-text {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-arrow {
    font-size: 18px;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Sections */
section {
    padding: 160px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 120px;
}

.section-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* What We Do */
.what-we-do {
    background-color: var(--bg-secondary);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 48px;
    font-weight: 400;
}

.note-text {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 32px;
}

.note-text.centered {
    text-align: center;
    max-width: 700px;
    margin: 48px auto 0;
}

/* Our Clients */
.our-clients {
    background-color: var(--bg-primary);
}

/* How It Works */
.how-it-works {
    background-color: var(--bg-secondary);
}

/* Benefits */
.benefits {
    background-color: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.benefit-item {
    opacity: 0;
    transform: translateY(40px);
}

.benefit-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.benefit-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.benefits .section-header {
    margin-bottom: 24px;
}

.benefits-grid {
    margin-bottom: 24px;
}

.benefits-list {
    margin-top: 0;
}

.benefits-additional {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 40px;
    text-align: left;
}

.benefits-additional li {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.benefits-additional li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 18px;
    line-height: 1.4;
}

.cta-inline {
    text-align: center;
    margin-top: 80px;
}

/* Pricing */
.pricing {
    background-color: var(--bg-secondary);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 60px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.price {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.period {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-secondary);
    font-weight: 400;
}

.plus {
    font-size: 32px;
    color: var(--text-secondary);
    margin: 0 8px;
}

.pricing-question {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.pricing-features li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
    width: 24px;
    text-align: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
}

/* Expectations */
.expectations {
    background-color: var(--bg-primary);
}

.expectations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.stat-highlight {
    text-align: center;
    margin-bottom: 80px;
}

.stat-number {
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.stat-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.expectations-details {
    margin-bottom: 60px;
}

.expectations-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.expectations-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}

.expectations-list li:last-child {
    border-bottom: none;
}

.expectations-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Track Record */
.track-record {
    background-color: var(--bg-secondary);
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study {
    padding: 60px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.case-title {
    font-size: clamp(14.4px, 1.8vw, 19.2px);
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 8.4px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.metric-value {
    font-size: clamp(21.6px, 3vw, 33.6px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-block;
}

.metric-value-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.metric-unit {
    font-size: clamp(12px, 1.5vw, 16.8px);
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 4px;
}

.metric-separator {
    font-size: 24px;
    color: var(--text-muted);
    margin: 0 8px;
}

/* Final CTA */
.final-cta {
    background-color: var(--bg-primary);
    padding: 200px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 120px 0 80px;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-text a {
    color: var(--accent);
    text-decoration: none;
    animation: colorCycle 2.5s infinite;
    font-weight: 600;
}

@keyframes colorCycle {
    0% { color: #3b82f6; } /* blue */
    20% { color: #10b981; } /* green */
    40% { color: #eab308; } /* yellow */
    60% { color: #a855f7; } /* purple */
    80% { color: #06b6d4; } /* cyan */
    100% { color: #3b82f6; } /* blue */
}

.footer-text a:hover {
    animation-duration: 1.25s;
}

.footer-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin: 32px 0;
    line-height: 1.6;
}

.footer-email {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 32px 0;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 48px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 32px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question span:first-child {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 24px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
    background-color: rgba(59, 130, 246, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                padding 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 0 32px 0;
}

.faq-answer p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding-right: 56px;
}

/* Policy Pages */
.policy-page {
    padding: 160px 0 120px;
    background-color: var(--bg-primary);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.policy-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 48px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.policy-company-info {
    background-color: var(--bg-tertiary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: left;
    margin-top: 40px;
}

.policy-company-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-company-info p:last-child {
    margin-bottom: 0;
}

.policy-company-info strong {
    color: var(--text-primary);
}

.policy-company-info a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-company-info a:hover {
    color: var(--accent-hover);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-content h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.policy-content h3 {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    margin: 24px 0;
    padding-left: 32px;
}

.policy-content li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-content em {
    color: var(--text-secondary);
    font-style: italic;
}

.policy-contact {
    background-color: var(--bg-tertiary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin: 32px 0;
}

.policy-contact p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-contact strong {
    color: var(--text-primary);
}

.policy-contact a {
    color: var(--accent);
    text-decoration: none;
}

.policy-updated {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 48px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-additional {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-studies {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 100px 0;
    }

    .faq-question span:first-child {
        font-size: clamp(18px, 3vw, 22px);
    }

    .benefits .section-header {
        margin-bottom: 24px;
    }

    .benefits-list {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    /* Optimize touch targets */
    a, button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        padding: 0 24px;
    }

    .header {
        padding: 6px 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: auto;
    }

    .logo {
        height: 24px;
    }

    .nav-links {
        gap: 12px;
        font-size: 11px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .header .btn-primary {
        padding: 6.4px 12.8px;
        font-size: 8.8px;
        font-weight: 700 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Hero - Full viewport height */
    .hero {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    }

    .hero-content {
        padding-top: 0;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        margin-bottom: 16px;
        line-height: 0.9;
        font-size: clamp(36px, 12vw, 56px);
        margin-top: 0;
        padding-top: 0;
        position: relative;
        z-index: 1;
    }

    .hero-line {
        position: relative;
        z-index: 1;
    }

    .hero-line-1 {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-subtitle {
        margin-top: 0;
        margin-bottom: 8px;
    }

    .hero-line {
        display: block;
    }

    .lightning-container {
        right: -480px;
        width: 480px;
        height: 540px;
    }

    .lightning-svg {
        width: 480px;
        height: 540px;
        top: -270px;
        left: -240px;
    }

    .smoke-particles {
        width: 480px;
        height: 540px;
    }

    .smoke-particle {
        top: 270px;
        left: 240px;
    }

    .hero-subtitle {
        margin-bottom: 12px;
    }

    .hero-tagline {
        margin-bottom: 24px;
        font-size: clamp(18px, 4vw, 22px);
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    /* Task 3: Remove empty black space - ensure sections stack naturally */
    section {
        padding: 60px 0;
        margin: 0;
    }

    .what-we-do {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: clamp(16px, 3.5vw, 20px);
    }

    .large-text {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 0;
    }

    .benefit-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .benefit-text {
        font-size: 16px;
    }

    .benefits {
        padding: 60px 0;
    }

    .benefits .section-header {
        margin-bottom: 4px;
    }

    .benefits .section-title {
        margin-bottom: 0;
        font-size: clamp(28px, 7vw, 36px);
    }

    .benefits-grid {
        display: none;
    }

    .benefits-list {
        margin-top: 0;
        padding-top: 0;
    }

    .benefits-additional {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
        margin-top: 0;
        padding-top: 0;
    }

    .benefits-additional li {
        font-size: 16.8px;
        padding-left: 18px;
        margin-bottom: 4px;
        line-height: 1.5;
    }

    .content-block {
        margin-bottom: 40px;
    }

    .note-text {
        font-size: 13px;
        margin-top: 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .pricing-card {
        padding: 48px 32px;
    }

    .pricing-amount {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .price {
        font-size: clamp(36px, 8vw, 48px);
    }

    .period {
        font-size: clamp(16px, 3.5vw, 20px);
    }

    .pricing-question {
        font-size: clamp(20px, 5vw, 24px);
        margin-bottom: 32px;
    }

    .pricing-features li {
        font-size: 15px;
        padding: 14px 0;
        padding-left: 40px;
    }

    .pricing-features li::before {
        left: 8px;
        width: 24px;
    }

    .stat-number {
        font-size: clamp(48px, 12vw, 72px);
    }

    .stat-label {
        font-size: clamp(16px, 4vw, 20px);
    }

    .expectations-list li {
        font-size: clamp(15px, 4vw, 18px);
        padding: 20px 0;
    }

    .case-study {
        padding: 48px 32px;
    }

    .case-title {
        font-size: clamp(18px, 4vw, 22px);
        margin-bottom: 32px;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .metric-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .metric-value {
        font-size: clamp(28px, 7vw, 40px);
    }

    .metric-unit {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .cta-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .cta-text {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 32px;
    }

    .final-cta {
        padding: 100px 0;
    }

    .footer {
        padding: 80px 0 60px;
    }

    .footer-title {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 24px;
    }

    .footer-text {
        font-size: 15px;
    }

    .cta-inline {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 6px 0;
    }

    .logo {
        height: 24px;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 11px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .header .btn-primary {
        padding: 6.4px 12.8px;
        font-size: 8.8px;
        font-weight: 700 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 16px;
        margin-top: 0;
    }

    .hero-line-1 {
        margin-top: 0;
    }

    .lightning-container {
        right: -400px;
        width: 400px;
        height: 450px;
    }

    .lightning-svg {
        width: 400px;
        height: 450px;
        top: -225px;
        left: -200px;
    }

    .smoke-particles {
        width: 400px;
        height: 450px;
    }

    .smoke-particle {
        top: 225px;
        left: 200px;
        width: 3px;
        height: 3px;
    }

    .hero-subtitle {
        margin-bottom: 10px;
    }

    .hero-tagline {
        margin-bottom: 28px;
        font-size: clamp(16px, 4.5vw, 20px);
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .large-text {
        font-size: clamp(18px, 5.5vw, 24px);
        margin-bottom: 28px;
    }

    .benefits-grid {
        gap: 28px;
    }

    .benefit-title {
        font-size: clamp(18px, 5vw, 22px);
        margin-bottom: 12px;
    }

    .benefit-text {
        font-size: 15px;
    }

    .benefits-list {
        margin-top: 0;
    }

    .benefits .section-header {
        margin-bottom: 16px;
    }

    .benefits-additional li {
        font-size: 15.6px;
        padding: 10px 0 10px 16px;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .price {
        font-size: clamp(32px, 9vw, 42px);
    }

    .pricing-features li {
        font-size: 14px;
        padding: 12px 0;
        padding-left: 38px;
    }

    .pricing-features li::before {
        left: 6px;
        width: 24px;
    }

    .stat-number {
        font-size: clamp(40px, 11vw, 56px);
    }

    .expectations-list li {
        font-size: clamp(14px, 4.5vw, 17px);
        padding: 16px 0;
    }

    .case-study {
        padding: 40px 24px;
    }

    .case-title {
        font-size: clamp(16px, 4.5vw, 20px);
        margin-bottom: 28px;
    }

    .metric-value {
        font-size: clamp(24px, 8vw, 32px);
    }

    .cta-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .cta-text {
        font-size: clamp(15px, 4.5vw, 18px);
    }

    .final-cta {
        padding: 80px 0;
    }

    .footer {
        padding: 60px 0 40px;
    }

    .footer-title {
        font-size: clamp(24px, 8vw, 36px);
    }

    /* Policy Pages Mobile */
    .policy-page {
        padding: 120px 0 80px;
    }

    .policy-title {
        font-size: clamp(36px, 10vw, 56px);
        margin-bottom: 32px;
    }

    .policy-company-info {
        padding: 24px;
        margin-top: 32px;
    }

    .policy-company-info p {
        font-size: 14px;
    }

    .policy-content {
        padding: 0 20px;
    }

    .policy-content h2 {
        font-size: clamp(24px, 6vw, 32px);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .policy-content h3 {
        font-size: clamp(20px, 5vw, 26px);
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 15px;
    }

    .policy-contact {
        padding: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* Scroll Progress Bar Mobile */
    .scroll-progress {
        width: 0.5px;
    }

    .scroll-progress-bar {
        width: 0.5px;
    }

    .fire-effect {
        width: 2px;
        height: 6px;
    }

    .fire-effect.intense {
        width: 3px;
        height: 9px;
    }

    .fire-effect.very-intense {
        width: 4px;
        height: 12px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 24px 0;
    }

    .faq-question span:first-child {
        font-size: clamp(16px, 4vw, 20px);
        padding-right: 16px;
    }

    .faq-icon {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        font-size: clamp(15px, 3.5vw, 17px);
        padding-right: 44px;
    }

    .faq-item.active .faq-answer {
        padding: 0 0 24px 0;
    }
}
