/* ═══════════════════════════════════════════
   ALPHAS MARKETING — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

:root {
    /* Colours */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.6);
    --text-muted: rgba(255,255,255,0.35);
    --accent: #D4AF37;
    --accent-glow: rgba(212,175,55,0.25);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 140px 0;
    --container-max: 1280px;
    --container-pad: 0 40px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
    --bg-primary: #f4f6f9;
    --bg-secondary: #ffffff;
    --bg-card: rgba(0,0,0,0.04);
    --bg-card-hover: rgba(0,0,0,0.08);
    --text-primary: #0a0a0a;
    --text-secondary: rgba(0,0,0,0.65);
    --text-muted: rgba(0,0,0,0.45);
    --accent: #B8860B; 
    --accent-glow: rgba(184,134,11,0.25);
    --border: rgba(0,0,0,0.12);
    --border-hover: rgba(0,0,0,0.25);
    --glass: rgba(0,0,0,0.03);
    --glass-border: rgba(0,0,0,0.1);
}

/* ═══ LENIS SMOOTH SCROLL ═══ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
    cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { background: none; border: none; cursor: none; color: inherit; font: inherit; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══ UTILITIES ═══ */
.container { max-width: var(--container-max); margin: 0 auto; padding: var(--container-pad); }
.text-accent { color: var(--accent); }

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), background .3s;
    mix-blend-mode: difference;
}
.cursor-follower {
    width: 40px; height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
    opacity: 0.5;
}
.cursor.hover { width: 50px; height: 50px; background: rgba(212,175,55,0.15); }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--accent); opacity: 1; }

/* ═══ PRELOADER ═══ */
.preloader {
    position: fixed; inset: 0;
    background: #050505;
    display: flex; align-items: center; justify-content: center;
    z-index: 100000;
    transition: opacity .8s ease, visibility .8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { text-align: center; }
.preloader-logo img { width: 80px; margin-bottom: 30px; animation: pulse 1.5s ease infinite; }
.preloader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; background: #D4AF37; border-radius: 2px; animation: preloaderFill 2s ease forwards; }
@keyframes preloaderFill { 0% { width: 0; } 100% { width: 100%; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ═══ CANVAS ═══ */
#bg-canvas {
    position: fixed; inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ═══ NAVIGATION ═══ */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(5,5,5,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(5,5,5,0.9);
}
[data-theme="light"] .header { background: rgba(255,255,255,0.85); }
[data-theme="light"] .header.scrolled { background: rgba(255,255,255,0.95); }
.nav {
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
    width: 45px; height: 45px;
}
.nav-logo .logo-white { display: block; }
.nav-logo .logo-color { display: none; }
html[data-theme="light"] .nav-logo .logo-white { display: none; }
html[data-theme="light"] .nav-logo .logo-color { display: block; }
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 4px;
}
.nav-links {
    display: flex; gap: 36px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color .3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Theme Toggle */
.theme-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: none;
    transition: all .3s var(--ease);
}
.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.theme-toggle span { display: none; line-height: 0; color: #ffffff; }
html[data-theme="light"] .theme-toggle span { color: #0a0a0a; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }
html:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: all .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed; inset: 0;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all .5s var(--ease);
}
.mobile-nav.active { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-nav-links { text-align: center; }
.mobile-nav-links li { margin: 24px 0; }
.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color .3s;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-nav-links .btn {
    font-size: 1rem;
    margin-top: 20px;
    padding: 14px 40px;
    background: var(--accent);
    color: #050505;
    display: inline-flex;
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}
.hero-title .outline {
    -webkit-text-stroke: 2px var(--text-primary);
    color: transparent;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}
.hero-ctas {
    display: flex; gap: 16px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}
.hero-stats {
    display: flex; gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
}
.stat-plus { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}
.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ═══ SECTION HEADERS ═══ */
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--accent-glow);
    border-radius: 50px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══ SERVICES OVERVIEW ═══ */
.services-overview {
    position: relative;
    padding: var(--section-pad);
    z-index: 1;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}
.service-arrow {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform .3s;
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ═══ MARQUEE ═══ */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.marquee { overflow: hidden; }
.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-muted);
    padding: 0 20px;
    flex-shrink: 0;
}
.marquee-track .dot {
    font-size: 0.7rem;
    color: var(--accent);
    padding: 0 10px;
    line-height: 2.2;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══ CREATIVE SECTION ═══ */
.creative-section {
    position: relative;
    padding: var(--section-pad);
    z-index: 1;
}
.accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.accordion-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .4s var(--ease);
}
.accordion-card:hover {
    border-color: var(--border-hover);
}
.accordion-card.active {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 0 40px rgba(212,175,55,0.05);
}
.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: background .3s;
}
.accordion-header:hover { background: var(--bg-card-hover); }
.accordion-icon { font-size: 1.4rem; flex-shrink: 0; }
.accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    flex: 1;
}
.accordion-timeline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.accordion-toggle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform .4s var(--ease);
    flex-shrink: 0;
}
.accordion-card.active .accordion-toggle { transform: rotate(45deg); }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    transition: max-height .5s var(--ease);
}
.accordion-card.active .accordion-body { max-height: 600px; }
.accordion-content {
    padding: 0 28px 28px;
}
.deliverables h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.deliverables ul { padding-left: 0; }
.deliverables li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* Pricing Mini */
.pricing-mini {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-row:last-child { border-bottom: none; }
.price-tier {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
}
.price-uk, .price-in {
    color: var(--text-secondary);
    text-align: right;
}

/* ═══ WEB DEV SECTION ═══ */
.webdev-section {
    position: relative;
    padding: var(--section-pad);
    z-index: 1;
    background: var(--bg-secondary);
}
.tier-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.tier-card.featured {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.03);
}
.tier-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tier-card.featured:hover { border-color: var(--accent); }
.popular-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tier-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--accent);
    padding: 4px 12px;
    border: 1px solid var(--accent-glow);
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.tier-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.tier-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.tier-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}
.tier-meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.tier-price {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}
.tier-price div {
    padding: 4px 0;
    color: var(--text-secondary);
}
.tier-price .flag { margin-right: 8px; }

/* Maintenance */
.maintenance-bar {
    margin-top: 60px;
    padding: 32px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.maintenance-bar h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
}
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.maint-item {
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.maint-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.maint-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ═══ SPEED SECTION ═══ */
.speed-section {
    position: relative;
    padding: var(--section-pad);
    z-index: 1;
}
.speed-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.speed-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.speed-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.speed-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.speed-badge.basic { background: rgba(76,175,80,0.15); color: #4CAF50; }
.speed-badge.standard { background: rgba(33,150,243,0.15); color: #2196F3; }
.speed-badge.advanced { background: rgba(156,39,176,0.15); color: #9C27B0; }
.speed-badge.enterprise { background: rgba(212,175,55,0.15); color: var(--accent); }
.speed-metric { margin-bottom: 24px; }
.speed-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.speed-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}
.speed-card ul { margin-bottom: 20px; }
.speed-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.55;
}
.speed-card li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}
.speed-timeline {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.speed-price {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}
.speed-price div {
    padding: 3px 0;
    color: var(--text-secondary);
}

/* ═══ SECURITY SECTION ═══ */
.security-section {
    position: relative;
    padding: var(--section-pad);
    z-index: 1;
    background: var(--bg-secondary);
}
.security-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all .4s var(--ease);
}
.security-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.security-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.security-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.security-card > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}
.security-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.55;
}
.security-card li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}
.security-timeline {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}
.security-price {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}
.security-price div {
    padding: 3px 0;
    color: var(--text-secondary);
}

/* ═══ CONTACT ═══ */
.contact-section {
    position: relative;
    padding: 180px 0;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.contact-content { position: relative; z-index: 2; }
.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin: 16px 0 20px;
    line-height: 1.1;
}
.contact-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.contact-actions { margin-bottom: 40px; }
.contact-locations {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}
.flag-big { font-size: 1.6rem; }

/* ═══ FOOTER ═══ */
.footer {
    position: relative;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    z-index: 1;
    background: var(--bg-secondary);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}
.footer-brand {
    max-width: 300px;
}
.footer-logo {
    width: 50px;
    margin-bottom: 12px;
}
.footer-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 80px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 6px;
}
.footer-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color .3s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ═══ RESPONSIVE ═══ */

/* ── Tablet ── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .tier-cards { grid-template-columns: repeat(2, 1fr); }
    .speed-cards { grid-template-columns: repeat(2, 1fr); }
    .security-cards { grid-template-columns: repeat(2, 1fr); }
    .maintenance-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    :root {
        --section-pad: 80px 0;
        --container-pad: 0 20px;
    }
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }

    /* Nav */
    .nav-links { display: none; }
    .nav-actions .btn { display: none; }
    .nav-actions { gap: 12px; }
    .hamburger { display: flex; }

    /* Mobile Nav Overlay */
    .mobile-nav-links li { margin: 18px 0; }
    .mobile-nav-links a { font-size: 2rem; }
    .mobile-nav-links .btn {
        font-size: 1rem;
        margin-top: 20px;
        padding: 14px 40px;
        background: var(--accent);
        color: var(--bg-primary);
    }

    /* Hero */
    .hero { padding: 100px 0 40px; min-height: auto; }
    .hero-badge { margin-bottom: 24px; font-size: 0.8rem; }
    .hero-title { margin-bottom: 20px; }
    .hero-title .outline {
        -webkit-text-stroke: 1px var(--text-primary);
    }
    .hero-sub { font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }
    .hero-ctas {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .hero-ctas .btn { width: 100%; padding: 14px 28px; }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding-top: 28px;
    }
    .stat-number { font-size: 2.2rem; }
    .stat-plus { font-size: 1.5rem; }
    .hero-scroll-indicator { display: none; }

    /* Section Headers */
    .section-header { margin-bottom: 40px; }
    .section-label { font-size: 0.72rem; letter-spacing: 3px; padding: 5px 14px; }
    .section-sub { font-size: 0.95rem; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-card { padding: 24px 20px; }
    .service-card h3 { font-size: 1rem; }
    .service-icon { font-size: 1.6rem; margin-bottom: 14px; }
    .service-card p { font-size: 0.82rem; }

    /* Marquee */
    .marquee-section { padding: 24px 0; }
    .marquee-track span { font-size: 0.95rem; letter-spacing: 2px; }

    /* Accordion */
    .accordion-grid { grid-template-columns: 1fr; }
    .accordion-header { padding: 18px 20px; gap: 12px; }
    .accordion-header h3 { font-size: 0.95rem; }
    .accordion-icon { font-size: 1.2rem; }
    .accordion-content { padding: 0 20px 20px; }
    .deliverables li { font-size: 0.85rem; }

    /* Tier / Speed / Security Cards */
    .tier-cards { grid-template-columns: 1fr; }
    .speed-cards { grid-template-columns: 1fr; }
    .security-cards { grid-template-columns: 1fr; }
    .maintenance-grid { grid-template-columns: 1fr; }
    .tier-card { padding: 28px 22px; }
    .speed-card { padding: 28px 22px; }
    .security-card { padding: 28px 22px; }
    .speed-number { font-size: 2.2rem; }

    /* Pricing */
    .price-row { grid-template-columns: 1fr; gap: 4px; }
    .pricing-mini { padding: 12px; }

    /* Contact */
    .contact-section { padding: 80px 0; }
    .contact-title { font-size: clamp(2rem, 7vw, 3.5rem); }
    .contact-sub { font-size: 1rem; margin-bottom: 28px; }
    .contact-actions .btn { width: 100%; font-size: 0.85rem; padding: 14px 24px; }
    .contact-locations { flex-direction: column; align-items: center; gap: 16px; }

    /* Footer */
    .footer { padding: 50px 0 24px; }
    .footer-top { flex-direction: column; gap: 32px; padding-bottom: 32px; }
    .footer-links { gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Small Phone ── */
@media (max-width: 480px) {
    :root {
        --section-pad: 60px 0;
        --container-pad: 0 16px;
    }

    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .section-title { font-size: 1.8rem; }
    .mobile-nav-links a { font-size: 1.6rem; }
    .mobile-nav-links li { margin: 14px 0; }
    .footer-links { gap: 24px; flex-wrap: wrap; }
    .contact-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .stat-number { font-size: 2rem; }
    .speed-number { font-size: 2rem; }
    .accordion-header h3 { font-size: 0.88rem; }
    .tier-card h3 { font-size: 1.1rem; }
    .security-icon { font-size: 2rem; }
}

