@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* ==========================================================================
   1. MUUTUJAD JA PÕHISEADISTUSED
   ========================================================================== */
:root {
    --bg-color: #050505;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --accent: #00f0ff;
    --accent-purple: #b026ff;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Dünaamilised vahed (skaleeruvad automaatselt) */
    --section-padding: clamp(3.5rem, 8vh, 7.5rem);
    --container-width: 1300px;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

body {
    background-color: var(--bg-color); color: var(--text-main);
    font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.6;
    position: relative;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

/* --- INSENERI TAUSTAVÕRGUSTIK --- */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}

/* --- SKROLLIMISE PROGRESSIRIBA --- */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: var(--accent);
    width: 0%; z-index: 10000; transition: width 0.1s;
    opacity: 0.8;
    box-shadow: 0 0 10px var(--accent);
}

p { max-width: 65ch; line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.mono-text { font-family: 'JetBrains Mono', monospace; }

.text-white, .text-white a{color:white;}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 clamp(1rem, 5vw, 2.5rem); }
section { padding: var(--section-padding) 0; display: flex; flex-direction: column; justify-content: center; }

/* --- INTERAKTIIVNE KURSOR JA TAUST --- */
#cursor {
    position: fixed; top: 0; left: 0; width: 20px; height: 20px;
    background-color: var(--accent); border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none;
    mix-blend-mode: screen; z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border 0.3s;
}

#glow {
    position: fixed; top: 0; left: 0; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    transform: translate(-50%, -50%); pointer-events: none; z-index: -1;
}


/* ==========================================================================
   2. KANGELASALA JA ANIMATSIOONID
   ========================================================================== */

.hero-title { font-size: clamp(2.5rem, 7vw, 5.5rem); line-height: 1.05; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; margin-top: 1.5rem; }

.hero-bio {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 850px;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.hero-bio-text { display: flex; flex-direction: column; }

.hero-profile-img {
    width: 160px; height: 180px;
    object-fit: cover; border-radius: 20px;
    transform: perspective(600px) rotateY(12deg) rotateX(5deg) rotate(0.99turn); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.08), -5px 5px 15px rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    filter: grayscale(100%) contrast(1.15);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    flex-shrink: 0;
}

.hero-profile-img:hover {
    transform: perspective(600px) rotateY(0deg) rotateX(0deg) scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

/* --- KÜBER-TINT ALLKIRI --- */
.signature-wrapper { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: flex-start; }
.signature-line {
    font-family: 'Alex Brush', cursive; font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1;
    transform: rotate(-3deg); padding-right: 10px; padding-top: 5px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    opacity: 0; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: write-signature 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards; animation-delay: 1.2s;
}
.signature-title {
    font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px;
    opacity: 0; transform: translateY(10px); animation: fade-up-title 0.5s ease forwards; animation-delay: 2.5s; margin-top: 0.5rem;
}

@keyframes write-signature {
    0% { opacity: 0; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
    1% { opacity: 1; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
    100% { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
@keyframes fade-up-title { to { opacity: 1; transform: translateY(0); } }

/* --- GLITCH EFEKT --- */
.glitch-wrapper { position: relative; display: inline-block; }
.glitch-placeholder { visibility: hidden; }
.glitch-text { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: crosshair; }

.cyber-glitch { position: relative; display: inline-block; color: var(--text-main); cursor: crosshair; }
.cyber-glitch::before, .cyber-glitch::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color); opacity: 1; pointer-events: none; /* opacity muudetud 1-ks */
}
.cyber-glitch::before { 
    left: 3px; text-shadow: -2px 0 var(--accent); 
    animation: cyber-glitch-anim-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite; 
}
.cyber-glitch::after { 
    left: -3px; text-shadow: 2px 0 var(--accent-purple); 
    animation: cyber-glitch-anim-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite reverse; 
}

/* See peatab animatsiooni ja eemaldab glitch-kihtide nähtavuse, kui hiir on peal */
.cyber-glitch:hover::before, .cyber-glitch:hover::after { 
    opacity: 0; 
    animation: none; 
}

@keyframes cyber-glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); transform: translate(2px, 1px); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(-2px, -2px); }
    40% { clip-path: inset(40% 0 50% 0); transform: translate(2px, 2px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, -1px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -2px); }
    100% { clip-path: inset(30% 0 50% 0); transform: translate(-2px, 1px); }
}
@keyframes cyber-glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(30% 0 20% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 1px); }
    60% { clip-path: inset(20% 0 50% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(2px, -1px); }
}


/* ==========================================================================
   3. STRUKTUUR, NUPUD JA GRIDID
   ========================================================================== */

.btn {
    display: inline-block; padding: 1.2rem 2.5rem; background: transparent;
    color: var(--accent); border: 1px solid var(--accent);
    border-radius: 50px; text-decoration: none; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s ease;
}
.btn:hover { background: var(--accent); color: var(--bg-color); box-shadow: 0 0 30px rgba(0, 240, 255, 0.5); transform: translateY(-2px); }

.card-link {
    display: inline-block; margin-top: 1.5rem; color: var(--text-main); text-decoration: none;
    font-weight: 600; border-bottom: 1px dashed var(--accent); transition: all 0.3s ease;
}
.card-link:hover { color: var(--accent); border-bottom-style: solid; }

/* Uuenda teenuste sektsiooni paigutust */
#services { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
#services h2 { position: sticky; top: 150px; font-size: clamp(2rem, 5vw, 3.5rem); }

/* Globaalsed gridid */
.grid, .bento-grid, .auto-grid, .infra-grid, .seo-grid, .ui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}
.grid { margin-top: 0; }
.bento-grid { margin-top: 3rem; }

.card, .bento-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 3rem 2.5rem; transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;text-decoration: none;
}
.card:hover, .bento-card:hover { transform: translateY(-10px); border-color: rgba(0, 240, 255, 0.3); background: rgba(255, 255, 255, 0.04); }

.bento-card { display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; text-decoration: none;}
.bento-card h3 { font-size: 1.8rem; color: #fff; margin-bottom: 1rem; transition: transform 0.4s ease; }
.bento-card p { color: var(--text-muted); font-size: 1rem; }
.bento-card .arrow { align-self: flex-end; font-size: 1.5rem; opacity: 0; transform: translateX(-20px); transition: all 0.4s ease; color: #fff;}
.bento-card:hover h3 { transform: translateX(10px); }
.bento-card:hover .arrow { opacity: 1; transform: translateX(0); }

.bento-design:hover { border-color: rgba(255, 46, 147, 0.4); box-shadow: 0 10px 30px rgba(255, 46, 147, 0.1); }
.bento-design h3 { color: #ff2e93; }
.bento-devs:hover { border-color: rgba(46, 255, 116, 0.4); box-shadow: 0 10px 30px rgba(46, 255, 116, 0.1); }
.bento-devs h3 { color: #2eff74; }
.bento-ads:hover { border-color: rgba(255, 94, 0, 0.4); box-shadow: 0 10px 30px rgba(255, 94, 0, 0.1); }
.bento-ads h3 { color: #ff5e00; }
.bento-ai-specs:hover { border-color: rgba(255, 204, 0, 0.4); box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1); }
.bento-ai-specs h3 { color: #ffcc00; }


/* ==========================================================================
   4. KALKULAATOR JA SPETSIIFILISED SEKTSIOONID
   ========================================================================== */

.calc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; margin-top: 2rem; }
.calc-text-block h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }
.calc-text-block .outline-text { color: transparent; -webkit-text-stroke: 1px var(--accent); display: block; margin-top: 0.5rem; }

.roi-calculator { background: var(--glass-bg); border: 1px solid var(--accent); border-radius: 20px; padding: clamp(1.5rem, 4vw, 3.5rem); margin-top: 4rem; position: relative; overflow: hidden; }
.roi-calculator::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-purple)); }
.slider-container { margin: 3rem 0; }
.slider-label { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); margin-bottom: 1rem; }
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: var(--accent); cursor: pointer; margin-top: -10px; box-shadow: 0 0 20px var(--accent); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; cursor: pointer; background: rgba(255, 255, 255, 0.1); border-radius: 2px; }
.roi-result { font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff; font-family: 'Space Grotesk', sans-serif; margin: 1rem 0; display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.roi-insight { color: var(--accent); font-size: 1.1rem; border-left: 2px solid var(--accent); padding-left: 1rem; margin-top: 1rem; }

.ai-section { position: relative; border-left: 2px solid var(--accent); padding-left: 3rem; margin: 4rem 0; }
.ai-gradient-text { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1.5rem; }

.tech-stack { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 4rem; }
.tech-stack span { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 0.5rem 1.2rem; border-radius: 4px; font-size: 0.9rem; color: var(--text-muted); transition: all 0.3s ease; cursor: crosshair; }
.tech-stack span:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 240, 255, 0.15); background: rgba(0, 240, 255, 0.05); }
.tech-stack span.highlight { border-color: rgba(176, 38, 255, 0.3); color: rgba(255, 255, 255, 0.8); }
.tech-stack span.highlight:hover { color: #fff; border-color: var(--accent-purple); box-shadow: 0 5px 15px rgba(176, 38, 255, 0.2); background: rgba(176, 38, 255, 0.05); }

/* --- HINNASTAMINE --- */
.pricing-wrapper { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 3rem; }
.pricing-premium-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.9) 0%, rgba(5,5,5,0.9) 100%); border: 1px solid rgba(0, 240, 255, 0.2); border-radius: 24px; padding: 4rem; width: 100%; max-width: 800px; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05); transition: border-color 0.4s ease;
}
.pricing-premium-card:hover { border-color: rgba(0, 240, 255, 0.6); }
.pricing-premium-card::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg); transition: transform 0.8s ease; pointer-events: none;
}
.pricing-premium-card:hover::after { transform: rotate(45deg) translate(50%, 50%); }
.price-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--glass-border); padding-bottom: 2rem; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.price-amount { font-size: clamp(3rem, 6vw, 5rem); font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff; line-height: 1; }
.price-period { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 1.2rem; }
.price-features { list-style: none; margin-bottom: 3rem; }
.price-features li { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-main); }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: bold; margin-right: 1rem; font-size: 1.2rem; }

/* --- PORTFOOLIO MARQUEE --- */
.portfolio-marquee { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; padding: 6rem 0; white-space: nowrap; display: flex; }
.huge-link { display: inline-block; margin:auto; font-size: clamp(4rem, 12vw, 10rem); font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: transparent; -webkit-text-stroke: 1px var(--text-muted); text-transform: uppercase; text-decoration: none; line-height: 1; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.huge-link:hover { color: var(--text-main); -webkit-text-stroke: 0px; text-shadow: 0 0 40px rgba(255,255,255,0.3); transform: scale(1.02); letter-spacing: 5px; }
.huge-link span { display: block; margin:auto; text-align: center; font-size: 1.2rem; color: var(--accent); -webkit-text-stroke: 0; letter-spacing: 3px; margin-top: 1rem; text-transform: none; font-family: 'Inter', sans-serif; opacity: 0; transition: opacity 0.5s ease; }
.huge-link:hover span { opacity: 1; }


/* ==========================================================================
   5. JALUS JA EFEKTID
   ========================================================================== */

footer { padding: 10rem 0 4rem 0; text-align: center; position: relative; margin-top: 5rem; overflow: hidden;}
.status-badge { display: inline-flex; align-items: center; background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); padding: 0.6rem 1.2rem; border-radius: 50px; font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: #fff; margin-bottom: 3rem; }
.status-dot { width: 10px; height: 10px; background-color: var(--accent); border-radius: 50%; margin-right: 10px; box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); } }

/* Holograafiline Jaluse Tekst */
.footer-massive { 
    position: relative; font-size: clamp(4rem, 15vw, 12rem); font-family: 'Space Grotesk', sans-serif; 
    font-weight: 700; line-height: 0.9; margin-bottom: 4rem; letter-spacing: -4px; color: var(--text-main); 
    text-transform: uppercase; cursor: crosshair; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 10;
}
.footer-massive::before, .footer-massive::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; opacity: 0; pointer-events: none; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); z-index: -1;
}
.footer-massive::before { color: transparent; -webkit-text-stroke: 2px var(--accent); text-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }
.footer-massive::after { color: transparent; -webkit-text-stroke: 2px var(--accent-purple); text-shadow: 0 0 20px rgba(176, 38, 255, 0.4); }
.footer-massive:hover { color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9); letter-spacing: 5px; transform: scale(1.05); }
.footer-massive:hover::before { opacity: 1; transform: translate(-15px, -10px); animation: float-cyan 3s ease-in-out infinite alternate; }
.footer-massive:hover::after { opacity: 1; transform: translate(15px, 10px); animation: float-purple 3s ease-in-out infinite alternate-reverse; }

@keyframes float-cyan { 0% { transform: translate(-15px, -10px); } 100% { transform: translate(-25px, -5px) rotate(-1deg); } }
@keyframes float-purple { 0% { transform: translate(15px, 10px); } 100% { transform: translate(25px, 5px) rotate(1deg); } }

/* Magnetiline nupp */
.magnetic-btn-wrapper { display: flex; justify-content: center; align-items: center; margin-bottom: 6rem; height: 200px;}
.magnetic-btn { display: flex; justify-content: center; align-items: center; width: 180px; height: 180px; background: var(--text-main); color: var(--bg-color); border-radius: 50%; text-decoration: none; font-weight: 700; font-size: 1.2rem; transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1); box-shadow: 0 20px 40px rgba(255,255,255,0.1); }
.magnetic-btn span { pointer-events: none; transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1); }

.fade-up { opacity: 0; transform: translateY(50px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ==========================================================================
   6. RESPONSIVE JA MOBIILIVAATED
   ========================================================================== */

/* --- 1080p LAPTOPID JA MADALAD EKRAANID (14-15 tolli) --- */
@media (max-height: 850px) and (min-width: 961px) {
    section { padding: 4rem 0; }
    .hero-bio { margin-top: 1.5rem; margin-bottom: 2rem; }
    .hero-profile-img { width: 130px; height: 145px; }
    .card { padding: 2rem; }
    .hero-title { line-height: 1; }
}

@media (max-height: 700px) and (min-width: 961px) {
    .panel-title { font-size: 3.5rem; }
    .visual-column { height: 50vh; }
    .panel-desc { font-size: 1.1rem; max-width: 100%; }
}

/* --- TAHVELARVUTID JA VÄIKSEMAD --- */
@media (max-width: 960px) {
    .calc-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- PÕHJALIK MOBIILI OPTIMEERIMINE (KUNI 768px) --- */
@media (max-width: 768px) {
    section { padding: 3rem 0; }
    .container { padding: 0 1.5rem; }
    
    /* Puuteekraanil peidame kursorid */
    #cursor, #glow { display: none !important; }
    * { cursor: auto !important; }

    /* PEIDAME STÄKI MOBIILIS TEKSTI SELGUSE HUVIDES */
    #services .tech-stack {
        display: flex !important;
        gap: 0.5rem !important; /* Hoiab vahed ilusana */
    }

    /* Parandame alamlehtede kaheveerulised kangelasalad üherealiseks */
    .auto-hero div[style*="display: grid"], 
    .infra-hero div[style*="display: grid"],
    .seo-hero div[style*="display: grid"],
    .ui-hero div[style*="display: grid"],
    .sec-hero div[style*="display: grid"],
    .intra-hero div[style*="display: grid"] {
        display: block !important;
    }
    .auto-hero p, .infra-hero p, .seo-hero p, .ui-hero p, .sec-hero p, .intra-hero p {
        max-width: 100% !important;
        margin-bottom: 2rem;
    }

    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); line-height: 1.1; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }

    .hero-bio {
        flex-direction: row; /* Pilt ja nimi jäävad kõrvuti */
        align-items: center;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    .hero-profile-img {
        width: 80px; height: 80px;
        border-radius: 15px;
        transform: none !important; /* Eemaldame 3D kalde säästmaks ressurssi */
    }
    .signature-line { font-size: 2rem; }

    /* Nupud ja Gridid */
    .btn { width: 100%; text-align: center; margin-left: 0 !important; margin-bottom: 1rem; }
    
    #services { grid-template-columns: 1fr; gap: 2rem; }
    #services h2 { position: static; font-size: 2rem; margin-bottom: 1rem; }
    
    .card { padding: 1.5rem; }
    .card h3 { font-size: 1.25rem; }
    .card-link { font-size: 0.9rem; margin-top: 1rem; }

    /* Kalkulaator ja Modaalid */
    .calc-grid { display: flex; flex-direction: column; gap: 2rem; }
    .roi-calculator { padding: 2rem 1.5rem; }
    .roi-result { font-size: 2.5rem; }
    .calc-text-block h2 { font-size: 2.5rem; }

    .ai-section { padding-left: 1.5rem; margin: 2rem 0; }
    .ai-gradient-text { font-size: 2.2rem; }

    .huge-link { font-size: 3rem; -webkit-text-stroke: 1px var(--text-muted); }
    .huge-link:hover { transform: none; letter-spacing: normal; }

    .pricing-premium-card { padding: 2.5rem 1.5rem; }
    .price-amount { font-size: 3rem; }
    .price-header { flex-direction: column; align-items: flex-start; }

    .footer-massive { font-size: 3.5rem; letter-spacing: -1px; }
    .magnetic-btn-wrapper { height: 150px; }
    .magnetic-btn { width: 140px; height: 140px; font-size: 1rem; }

    .panel-title { font-size: 2.5rem !important; }
    .panel-desc { font-size: 1rem !important; }

    /* Tagasi nupp ülaservas */
    .global-back-btn {
        top: 15px !important; left: 15px !important;
        width: 44px; height: 44px; padding: 0 !important;
        justify-content: center;
    }
}

/* --- VÄGA VÄIKESED TELEFONID (Kuni 380px/480px) --- */
@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .roi-result { font-size: 2rem; }
}
@media (max-width: 380px) {
    .hero-title { font-size: 2.2rem; }
    .hero-bio-text p { font-size: 0.95rem; }
    .btn { padding: 1rem 1.5rem; font-size: 0.8rem; }
}


/* ==========================================================================
   7. MOBIILI ÄPI BOTTOM NAV & KONTAKTI MODAL (NATIVE FEEL)
   ========================================================================== */

.mobile-bottom-nav, .mobile-contact-modal { display: none; }

@media (max-width: 960px) {
    .mobile-bottom-nav {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%;
        background: rgba(5, 5, 8, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05); z-index: 9000;
        justify-content: space-around; padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    }
    .nav-item {
        flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
        color: var(--text-muted); text-decoration: none; font-size: 0.7rem; font-family: 'Inter', sans-serif;
        background: none; border: none; font-weight: 600; cursor: pointer; transition: color 0.3s ease;
    }
    .nav-item svg { width: 22px; height: 22px; margin-bottom: 5px; stroke: currentColor; transition: transform 0.2s; }
    .nav-item:active svg { transform: scale(0.9); }
    #mobile-contact-btn svg { stroke: var(--accent); filter: drop-shadow(0 0 5px rgba(0,240,255,0.4)); }

    /* Modaal */
    .mobile-contact-modal {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        z-index: 9999; display: flex; align-items: flex-end;
        visibility: hidden; pointer-events: none;
    }
    .mobile-contact-modal.active { visibility: visible; pointer-events: auto; }
    
    .modal-backdrop {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        opacity: 0; transition: opacity 0.4s ease;
    }
    .mobile-contact-modal.active .modal-backdrop { opacity: 1; }
    
    .modal-content {
        width: 100%; background: #0a0a0c; border-top-left-radius: 28px; border-top-right-radius: 28px;
        border-top: 1px solid rgba(0, 240, 255, 0.3); box-shadow: 0 -10px 50px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.1);
        padding: 2rem 1.5rem calc(2rem + env(safe-area-inset-bottom)); position: relative; z-index: 2;
        transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .mobile-contact-modal.active .modal-content { transform: translateY(0); }

    .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
    #close-modal-btn { background: none; border: none; color: var(--text-muted); font-size: 2.5rem; line-height: 0.5; margin-top: -10px; padding: 0;}

    .modal-actions { display: flex; flex-direction: column; gap: 1rem; }
    .modal-action-btn {
        display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.2rem;
        border-radius: 16px; text-decoration: none; font-weight: 600; font-size: 1.05rem;
        border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); color: var(--text-main);
        transition: background 0.2s;
    }
    .modal-action-btn:active { background: rgba(255,255,255,0.08); }
    .modal-action-btn .icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px;}
    
    .modal-action-btn.phone { border-color: rgba(46, 255, 116, 0.3); }
    .modal-action-btn.phone .icon svg { stroke: #2eff74; }
    .modal-action-btn.whatsapp { border-color: rgba(0, 240, 255, 0.3); }
    .modal-action-btn.whatsapp .icon svg { stroke: var(--accent); }
    .modal-action-btn.email { border-color: rgba(176, 38, 255, 0.3); }
    .modal-action-btn.email .icon svg { stroke: var(--accent-purple); }
}

/* ==========================================================================
   SISULEHTEDE SPETSIIFILINE MOBIILI OPTIMEERIMINE (Ideaalsed vahed)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Üldised sektsioonide vahed ja konteineri servad kompaktsemaks */
    section { padding: 40px 0 !important; }
    .container { padding: 0 1.25rem !important; }

    /* 2. Kangelasalade (Hero) liigse tühjuse eemaldamine */
    /* Kaotame 80vh kõrguse piirangu, et sisu algaks kohe ülevalt */
    .auto-hero, .infra-hero, .seo-hero, .ui-hero, .sec-hero, .intra-hero {
        min-height: auto !important;
        padding-top: 80px !important; 
        padding-bottom: 1rem !important;
    }

    /* Pealkirjad väiksemaks (clamp min-väärtus 3rem on kitsal ekraanil liiga suur) */
    .auto-title, .infra-title, .seo-title, .ui-title, .sec-title, .intra-title {
        font-size: 2.4rem !important; 
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }

    /* Hero teksti ja tehnoloogiate vaheline tühimik (algselt grid gap: 4rem) */
    .auto-hero > div > div[style*="grid-template-columns"], 
    .infra-hero > div > div[style*="grid-template-columns"], 
    .seo-hero > div > div[style*="grid-template-columns"], 
    .ui-hero > div > div[style*="grid-template-columns"], 
    .sec-hero > div > div[style*="grid-template-columns"], 
    .intra-hero > div > div[style*="grid-template-columns"] {
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
    }

    /* 3. Sisulehtede kaardid - vähendame 3rem (48px) paddingut 1.5rem (24px) peale */
    .auto-card, .infra-card, .seo-card, .ui-card, .sec-card, .intra-card, .bento-card {
        padding: 1.5rem !important;
    }
    
    /* Kaartide pealkirjade ja ikoonide vahed pingumale */
    .auto-card h3, .infra-card h3, .seo-card h3, .ui-card h3, .sec-card h3, .intra-card h3 {
        font-size: 1.35rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .auto-icon, .infra-icon, .seo-icon, .ui-icon, .sec-icon, .intra-icon {
        margin-bottom: 1rem !important;
    }

    /* 4. Gridide vahed (margin-top 5rem -> 2.5rem ja gap 1.5rem -> 1rem) */
    .auto-grid, .infra-grid, .seo-grid, .ui-grid, .sec-bento, .intra-grid, .bento-grid {
        margin-top: 2.5rem !important;
        gap: 1rem !important;
    }

    /* 5. Sisulehtede alumised Call-to-Action (CTA) kastid */
    /* Kuna sul olid need HTML-is inline stiilidega (padding: 4rem; margin-top: 5rem), 
       siis sunnime need CSS-iga mobiilis ilusaks! */
    .auto-grid + div, .infra-grid + div, .seo-grid + div, .ui-grid + div, .sec-bento + div, .intra-grid + div {
        padding: 2rem 1.5rem !important;
        margin-top: 3rem !important;
        border-radius: 16px !important;
    }
    
    /* CTA kastide pealkirjad väiksemaks */
    .auto-grid + div h3, .infra-grid + div h3, .seo-grid + div h3, .ui-grid + div h3, .sec-bento + div h3, .intra-grid + div h3 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    /* CTA kastide tekst kompaktsemaks */
    .auto-grid + div p, .infra-grid + div p, .seo-grid + div p, .ui-grid + div p, .sec-bento + div p, .intra-grid + div p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* 6. Terminalide ja animatsioonide konteinerite vahed */
    .api-network-container, .cost-terminal, .llm-scanner, .ui-showcase-container, .threat-scanner, .data-hub-container {
        margin-top: 2rem !important;
        padding: 1.25rem !important; /* Tagab, et sisu ei läheks kasti äärtest välja */
    }
}


    /* Bio Modali stiilid */
    .bio-modal-wrapper {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        /* SIIN ON PARANDUS: z-index peab olema 9998, et kursor (9999) jääks peale! */
        z-index: 9998; 
        display: flex; align-items: center; justify-content: center;
        opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
    }
    .bio-modal-wrapper.active {
        opacity: 1; pointer-events: auto;
    }
    .bio-modal-backdrop {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .bio-modal-content {
        position: relative; z-index: 1; background: #0a0a0c;
        border: 1px solid rgba(0, 240, 255, 0.2); border-radius: 24px;
        padding: 4rem 3.5rem; max-width: 750px; width: 90%; max-height: 90vh; overflow-y: auto;
        transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 40px 80px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .bio-modal-wrapper.active .bio-modal-content {
        transform: translateY(0);
    }
    .bio-modal-close {
        position: absolute; top: 1.5rem; right: 2rem;
        background: none; border: none; color: var(--text-muted);
        font-size: 2.5rem; cursor: pointer; line-height: 1; transition: color 0.3s;
        padding: 0;
    }
    .bio-modal-close:hover { color: #fff; }
    
    .bio-text p {
        color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.8;
    }
    .bio-text strong { color: #fff; font-weight: 600; }
    
    /* Et scrollbar näeks modalis ilus välja */
    .bio-modal-content::-webkit-scrollbar { width: 6px; }
    .bio-modal-content::-webkit-scrollbar-track { background: transparent; }
    .bio-modal-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
    
    /* Bio Modali sotsiaalmeedia nupud */
    .bio-social-links {
        display: flex;
        gap: 1rem;
    }
    .bio-social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-muted);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bio-social-btn svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }
    .bio-social-btn:hover {
        color: #fff;
        border-color: var(--accent);
        background: rgba(0, 240, 255, 0.08);
        box-shadow: 0 5px 15px rgba(0, 240, 255, 0.15);
        transform: translateY(-3px);
    }
    .bio-social-btn:hover svg {
        transform: scale(1.15);
    }

    /* === IDEAALNE MOBIILIVAADE (Bottom Sheet disain) === */
    @media (max-width: 768px) {
        .bio-modal-wrapper {
            align-items: flex-end; /* Kleebib akna mobiilis alla serva */
        }
        .bio-modal-content {
            width: 100%;
            max-height: 85vh;
            border-radius: 0;
            border-top-left-radius: 28px;
            border-top-right-radius: 28px;
            border-bottom: none; border-left: none; border-right: none;
            border-top: 1px solid rgba(0, 240, 255, 0.3);
            padding: 2.5rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
            transform: translateY(100%); /* Sõidab alt sisse */
        }
        .bio-modal-close { right: 1.5rem; top: 1rem; }
        .bio-text p { font-size: 1.05rem; }
        
        /* Teeb nupu mobiilis laiaks, et pöidlaga oleks mugav tabada */
        #bio-modal-ok {
            width: 100%;
            margin: 0;
        }
    }
    
    
        .cyber-hud-container {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            pointer-events: none;
            z-index: -1;
            /* Sunnib brauserit renderdama seda kihti graafikakaardil (GPU), mis vähendab Safari lagi */
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }
        
        @media (min-width: 1600px) {
            .cyber-hud-container { display: block; }
        }
        
        .hud-panel {
            position: absolute;
            top: 0;
            height: 100vh;
            width: 140px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 5vh 0;
            font-family: 'JetBrains Mono', monospace;
            opacity: 0.15;
            mix-blend-mode: screen;
            /* Ütleb brauserile ette, millised omadused muutuvad, et ta oskaks ressurssi varuda */
            will-change: opacity;
        }
        
        .hud-left { left: 2vw; }
        .hud-right { right: 2vw; align-items: flex-end; text-align: right; }
        
        .hud-line-vert {
            position: absolute;
            top: 0; bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.4), transparent);
        }
        .hud-left .hud-line-vert { left: 0; }
        .hud-right .hud-line-vert { right: 0; background: linear-gradient(to bottom, transparent, rgba(176, 38, 255, 0.4), transparent); }

        .hud-data-stream {
            font-size: 0.6rem;
            line-height: 1.6;
            color: var(--accent);
            height: 50vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            will-change: contents;
        }
        .hud-right .hud-data-stream { color: var(--accent-purple); justify-content: flex-start;}

        .hud-block {
            border: 1px solid rgba(0, 240, 255, 0.2);
            padding: 10px;
            font-size: 0.65rem;
            color: var(--accent);
            background: rgba(0, 240, 255, 0.02);
            position: relative;
            letter-spacing: 1px;
        }
        .hud-right .hud-block {
            border-color: rgba(176, 38, 255, 0.2);
            color: var(--accent-purple);
            background: rgba(176, 38, 255, 0.02);
        }
        .hud-block::before {
            content: ''; position: absolute; top: -2px; left: -2px; width: 4px; height: 4px; background: currentColor;
        }
        
        .hud-graph { display: flex; gap: 4px; align-items: flex-end; height: 25px; margin-top: 10px; }
        /* Siin eemaldasin CSS transitioni, sest muudame kõrgust JS-ga ülikiirelt - CSS transition lisaks mõttetu renderduskoormuse */
        .hud-bar { width: 4px; background: currentColor; box-shadow: 0 0 5px currentColor; will-change: height; }
        
        .hud-ruler { display: flex; flex-direction: column; gap: 2vh; margin-top: 5vh; }
        .hud-ruler-tick { width: 8px; height: 1px; background: var(--accent-purple); opacity: 0.3; }
        .hud-ruler-tick:nth-child(5n) { width: 16px; opacity: 0.8; }

        /* Hinnapäringu Modaal CSS */
        .inquiry-modal-wrapper {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            z-index: 10000; /* Kindlustame, et on kõige peal */
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
            padding: 20px; /* Jätab lauaarvutis äärtele ruumi */
        }
        .inquiry-modal-wrapper.active {
            opacity: 1; pointer-events: auto;
        }
        .inquiry-modal-backdrop {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .inquiry-modal-content {
            position: relative; z-index: 1; background: #0a0a0c;
            border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 24px;
            padding: 3rem; max-width: 600px; width: 100%; 
            max-height: 90vh; /* Ekraani kõrguse limiit */
            overflow-y: auto; /* Laseb kerida */
            overscroll-behavior: contain; /* Väldib lehe tausta kerimist */
            transform: translateY(30px); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 40px 100px rgba(0,0,0,0.9), inset 0 0 40px rgba(0, 240, 255, 0.05);
        }
        .inquiry-modal-wrapper.active .inquiry-modal-content {
            transform: translateY(0);
        }
        .inquiry-modal-close {
            position: absolute; top: 1.5rem; right: 2rem;
            background: none; border: none; color: var(--text-muted);
            font-size: 2.5rem; cursor: pointer; line-height: 1; transition: color 0.3s;
            padding: 0;
        }
        .inquiry-modal-close:hover { color: #fff; }

        /* Vormi stiilid */
        .inquiry-form .form-group { margin-bottom: 1.5rem; text-align: left; }
        .inquiry-form label { 
            display: block; margin-bottom: 0.5rem; color: var(--text-muted); 
            font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; 
            text-transform: uppercase; letter-spacing: 1px; 
        }
        .inquiry-form input, .inquiry-form textarea { 
            width: 100%; background: rgba(0,0,0,0.5); 
            border: 1px solid rgba(255,255,255,0.1); color: #fff; 
            padding: 1rem 1.2rem; border-radius: 8px; font-family: 'Inter', sans-serif; 
            transition: all 0.3s ease; font-size: 1rem;
        }
        .inquiry-form input:focus, .inquiry-form textarea:focus { 
            outline: none; border-color: var(--accent); 
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); 
            background: rgba(0, 240, 255, 0.02); 
        }
        .inquiry-form input::placeholder, .inquiry-form textarea::placeholder {
            color: rgba(255,255,255,0.2);
        }

        /* Skrollriba modali sisse */
        .inquiry-modal-content::-webkit-scrollbar { width: 6px; }
        .inquiry-modal-content::-webkit-scrollbar-track { background: transparent; }
        .inquiry-modal-content::-webkit-scrollbar-thumb { background: rgba(0, 240, 255, 0.2); border-radius: 10px; }

        /* MOBIILIVAADE IDEALISEERITUD */
        @media (max-width: 768px) {
            .inquiry-modal-wrapper { align-items: flex-end; padding: 0; }
            .inquiry-modal-content {
                width: 100%; max-height: 88vh; border-radius: 0;
                border-top-left-radius: 28px; border-top-right-radius: 28px;
                border-bottom: none; border-left: none; border-right: none;
                padding: 2.5rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
                transform: translateY(100%);
            }
            .inquiry-modal-close { right: 1.5rem; top: 1rem; }
        }
        
        
                        /* Spetsiifiline CSS uutele fookus-siltidele */
                        .focus-tags span { 
                            background: rgba(0, 240, 255, 0.02); 
                            border-color: rgba(0, 240, 255, 0.2); 
                            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
                        }
                        .focus-tags span:hover { 
                            background: rgba(0, 240, 255, 0.08); 
                            border-color: var(--accent); 
                            box-shadow: 0 5px 20px rgba(0, 240, 255, 0.15); 
                            transform: translateY(-3px) scale(1.03); 
                            color: #fff;
                        }
                        
                        /* AI silt - lilla erilahendus */
                        .focus-tags span.f-ai { border-color: rgba(176, 38, 255, 0.4); color: #b026ff; }
                        .focus-tags span.f-ai:hover { background: rgba(176, 38, 255, 0.08); border-color: #b026ff; box-shadow: 0 5px 20px rgba(176, 38, 255, 0.15); color: #fff;}
                        
                        /* Riiklikud registrid - roheline erilahendus */
                        .focus-tags span.f-gov { border-color: rgba(46, 255, 116, 0.4); color: #2eff74; }
                        .focus-tags span.f-gov:hover { background: rgba(46, 255, 116, 0.08); border-color: #2eff74; box-shadow: 0 5px 20px rgba(46, 255, 116, 0.15); color: #fff;}
            
                .process-timeline {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 2rem;
                    position: relative;
                }
                .process-line {
                    position: absolute;
                    top: 55px; /* Joondub täppidega */
                    left: 10%;
                    width: 80%;
                    height: 2px;
                    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
                    z-index: 0;
                }
                .process-step {
                    position: relative;
                    z-index: 1;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }
                .step-number {
                    font-family: 'Space Grotesk', sans-serif;
                    font-size: 5rem;
                    font-weight: 700;
                    color: transparent;
                    -webkit-text-stroke: 1px rgba(255,255,255,0.05);
                    margin-bottom: -40px;
                    z-index: 0;
                    transition: all 0.3s ease;
                }
                .step-dot {
                    width: 16px;
                    height: 16px;
                    background: #050505;
                    border: 2px solid rgba(255,255,255,0.3);
                    border-radius: 50%;
                    margin-bottom: 1.5rem;
                    z-index: 2;
                    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                }
                .process-step:hover .step-dot {
                    background: var(--accent-purple);
                    border-color: var(--accent-purple);
                    box-shadow: 0 0 20px var(--accent-purple);
                    transform: scale(1.5);
                }
                .process-step:hover .step-number {
                    -webkit-text-stroke: 1px rgba(176, 38, 255, 0.3);
                    transform: translateY(-10px);
                }
                .step-title {
                    font-size: 1.4rem;
                    color: #fff;
                    margin-bottom: 1rem;
                }
                .step-desc {
                    color: var(--text-muted);
                    font-size: 1rem;
                    line-height: 1.6;
                }

                @media (max-width: 960px) {
                    .process-timeline {
                        grid-template-columns: 1fr;
                        gap: 4rem;
                    }
                    .process-line {
                        top: 0;
                        left: 50%;
                        width: 2px;
                        height: 100%;
                        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
                    }
                }
                



#cursor {
    z-index: 99999 !important;
}

input, textarea {
    cursor: text !important;
}

body:has(input:hover, textarea:hover) #cursor {
    opacity: 0 !important;
    transform: scale(0) !important;
}