/* Gonet — Premium Sandbox-Inspired Design System 2026 */

:root {
    --primary: #0066ff;
    --primary-dark: #0050d4;
    --primary-light: #3388ff;
    --secondary: #0091d5;
    --accent: #00c471;
    --neon-blue: #0091d5;
    --neon-purple: #7c3aed;
    --neon-green: #00c471;
    --orange: #e67e22;
    
    --bg-deep: #ffffff;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-soft: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.88);
    --bg-glass-hover: rgba(255, 255, 255, 0.96);
    --bg-glass-strong: rgba(255, 255, 255, 0.98);
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #94a3b8;
    --text-bright: #0f172a;
    
    --border: rgba(0, 102, 255, 0.08);
    --border-hover: rgba(0, 102, 255, 0.2);
    --border-glow: rgba(0, 102, 255, 0.4);
    
    --gradient-primary: linear-gradient(135deg, #00b6d2 0%, #00a6ff 100%);
    --gradient-hero: linear-gradient(160deg, #ffffff 0%, #f0f5ff 40%, #f7f9ff 60%, #ffffff 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    --gradient-subtle: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    
    /* Premium Sandbox-style shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.15);
    --shadow-neon: 0 0 30px rgba(0, 102, 255, 0.1);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 20px 50px rgba(0, 102, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    
    /* Refined border radius for premium feel */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Enhanced spacing system for premium rhythm (Relume-inspired) */
    --space-xs: 0.5rem;      /* 8px */
    --space-sm: 0.75rem;     /* 12px */
    --space-md: 1rem;        /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */
    --space-3xl: 4rem;       /* 64px */
    --space-4xl: 5rem;       /* 80px */
    --space-5xl: 6rem;       /* 96px */
    --space-section: clamp(60px, 8vw, 100px);
    
    /* Typography scale (shadcn/ui inspired) */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.25rem;     /* 20px */
    --font-size-2xl: 1.5rem;     /* 24px */
    --font-size-3xl: 1.875rem;   /* 30px */
    --font-size-4xl: 2.25rem;    /* 36px */
    --font-size-5xl: 3rem;       /* 48px */
    --font-size-6xl: 3.75rem;    /* 60px */
    
    /* Line heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Font weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Roboto", sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.75;
    min-height: 100vh;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    letter-spacing: -0.011em;
    font-size: 16px;
}

::selection {
    background: rgba(0, 102, 255, 0.12);
    color: var(--text-bright);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 48px);
}

/* ═══════════════════════════════════════════
   НАВИГАЦИЈА
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bg-deep); /* Same as body - white */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.4s var(--ease-smooth);
    will-change: transform;
}

.navbar.scrolled {
    background: var(--bg-deep); /* Same as body - white */
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

.nav-logo img { height: 38px; width: auto; transition: opacity 0.3s ease; }
.nav-logo:hover img { opacity: 0.8; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s var(--ease-smooth);
    position: relative;
    padding: 0.5rem 0.25rem;
}

.nav-link:hover { color: var(--text-bright); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-primary);
    transition: width 0.35s var(--ease-out);
    border-radius: 2px;
}

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

.nav-cta {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem !important;
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.2);
    transition: all 0.35s var(--ease-out);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 102, 255, 0.3); }

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.nav-icon:hover {
    background: var(--bg-soft);
    color: var(--text-bright);
    transform: translateY(-1px);
}

.nav-icon::after { display: none !important; }

.nav-notification {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 20, 28, 0.08);
    border-radius: 999px;
    background: #f0f2f5;
    color: #1c1e21;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-notification:hover {
    transform: translateY(-1px);
    background: #e7eaef;
    box-shadow: 0 6px 16px rgba(20, 24, 35, 0.16);
}

.nav-notification:focus-visible {
    outline: 2px solid #1877f2;
    outline-offset: 2px;
}

.nav-notification svg {
    width: 20px;
    height: 20px;
}

.nav-notification-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #e41e3f;
    border: 2px solid #fff;
}

.nav-notification:not(.nav-notification--has-new) .nav-notification-badge {
    display: none;
}

/* ── Dropdown menu ── */
.nav-dropdown {
    position: relative;
}

.dd-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .dd-chevron,
.nav-dropdown.open .dd-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 260px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Tablet adjustment for nav gap */
@media (min-width: 769px) and (max-width: 1100px) {
    .nav-menu {
        gap: 1rem;
    }
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.06em;
    }
    .dd-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #ffffff;
}

/* Invisible hover bridge */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dd-item:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary);
}

.dd-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--primary);
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.dd-item:hover svg {
    opacity: 1;
}

.lang-switcher {
    position: relative;
    margin-left: 0.15rem;
}

.lang-switcher summary {
    list-style: none;
}

.lang-switcher summary::-webkit-details-marker {
    display: none;
}

.lang-switcher__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 86px;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    transition: color 0.25s var(--ease-smooth), border-color 0.25s var(--ease-smooth), background 0.25s var(--ease-smooth);
}

.lang-switcher__trigger:hover,
.lang-switcher[open] .lang-switcher__trigger {
    color: var(--text-bright);
    border-color: rgba(0, 102, 255, 0.2);
    background: rgba(255, 255, 255, 0.94);
}

.lang-switcher__current-code {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.lang-switcher__chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.lang-switcher[open] .lang-switcher__chevron {
    transform: rotate(180deg);
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    z-index: 1000;
}

.lang-switcher__menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 24px;
    width: 16px;
    height: 8px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #ffffff;
}

.lang-switcher__option {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.lang-switcher__option:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary);
}

.lang-switcher__option.is-active {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
}

.lang-switcher__option-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.lang-switcher__option-text strong {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.lang-switcher__option-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    display: inline-block;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Mobile dropdown */
@media (max-width: 968px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0.5rem 0 0 0;
        min-width: 0;
        background: transparent;
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .nav-dropdown-menu .dd-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0.65rem 0 0.65rem 1.5rem;
        font-size: 0.85rem;
        color: var(--text-secondary);
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.2s ease;
        position: relative;
    }

    .nav-dropdown-menu .dd-item:last-child {
        border-bottom: none;
    }

    .nav-dropdown-menu .dd-item:hover {
        background: rgba(0, 102, 255, 0.04);
        color: var(--primary);
        padding-left: 2rem;
    }

    .nav-dropdown-menu .dd-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        stroke: var(--primary);
        opacity: 0.6;
    }

    .nav-dropdown-menu .dd-item:hover svg {
        opacity: 1;
    }

    .lang-switcher {
        margin-left: 0;
    }

    .lang-switcher__trigger {
        width: 100%;
        justify-content: space-between;
        border-radius: 14px;
        padding: 0.85rem 1.5rem;
        background: rgba(0, 102, 255, 0.04);
        box-shadow: none;
    }

    .lang-switcher__menu {
        position: static;
        min-width: 0;
        width: 100%;
        padding: 0.35rem 0 0 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .lang-switcher__menu::before {
        display: none;
    }

    .lang-switcher__option {
        padding-left: 1.5rem;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
        transform: none;
    }

    .dd-chevron {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   ХЕРОИЧНА СЕКЦИЈА
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 0px;
    overflow: hidden;
    background: var(--bg-deep); /* Same as body - white */
}

.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-deep); /* Same as body - white */
    z-index: -2;
    isolation: isolate;
    overflow: hidden;
}

/* Hero background glows - only show if not using premium effect */
.hero:not(.hero-soft-premium) .hero-background::before {
    content: '';
    position: absolute;
    top: -30%; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero:not(.hero-soft-premium) .hero-background::after {
    content: '';
    position: absolute;
    bottom: -20%; left: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

@keyframes heroOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.97); }
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

.hero-particles {
    display: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23g)"/></svg>');
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: heroFadeUp 1s var(--ease-out) both;
    padding: 0 1rem;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(12px);
    animation: heroFadeUp 1s var(--ease-out) 0.1s both;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: dotPulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 196, 113, 0.4);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
    color: var(--text-bright);
    letter-spacing: -0.02em;
    animation: heroFadeUp 1s var(--ease-out) 0.2s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: var(--line-height-relaxed);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
    animation: heroFadeUp 1s var(--ease-out) 0.35s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: heroFadeUp 1s var(--ease-out) 0.5s both;
}

.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    padding: 1.75rem 2.75rem;
    background: var(--bg-glass);
    border: 1px solid rgba(0, 102, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: heroFadeUp 1s var(--ease-out) 0.65s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(0, 102, 255, 0.08);
}

/* ═══════════════════════════════════════════
   КОПЧИЊА
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 2.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.35s var(--ease-out);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.btn svg {
    width: 16px; height: 16px;
    transition: transform 0.35s var(--ease-out);
}

.btn:hover svg { transform: translateX(3px); }

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 102, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0050d4 0%, #0080cc 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 102, 255, 0.25);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 102, 255, 0.15);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.2); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(0, 102, 255, 0.5), 0 0 12px rgba(0, 102, 255, 0.15); }
}

.btn-glass {
    background: var(--bg-glass-strong);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-glass:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-glass:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.08);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Button sizes */
.btn-sm {
    /* padding: 0.5rem 1rem; */
    /* font-size: var(--font-size-sm); */
    /* border-radius: calc(var(--radius-sm) - 2px); */
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    border-radius: var(--radius-md);
}

.btn-block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   СЕКЦИИ
   ═══════════════════════════════════════════ */
section {
    padding: clamp(5rem, 8vw, 7rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    margin-right: 5px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}


.section-label:hover {
    opacity: 0.8;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-md);
    color: var(--text-bright);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    line-height: var(--line-height-tight);
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0.875rem auto 0;
    transition: width 0.4s var(--ease-out);
    opacity: 0.9;
}

.section-header:hover .section-title::after {
    width: 72px;
    opacity: 1;
}

.section-description {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
    letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════
   УСЛУГИ — Horizontal Scroll
   ═══════════════════════════════════════════ */
.services-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.services-header-row .section-header {
    flex: 1;
}

.services-header-row .section-title {
    display: inline-block;
}

.services-header-row .section-title::after {
    margin: 0.75rem 0 0;
}

.services-header-row .section-description {
    max-width: 500px;
}

.services-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
}

.scroll-nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-secondary);
}

.scroll-arrow:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
}

.scroll-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Scroll Track */
.services-scroll-wrap {
    position: relative;
    width: 100%;
}

.services-scroll-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0 2rem;
    padding-left: clamp(1.5rem, 4vw, 40px);
    padding-right: clamp(1.5rem, 4vw, 40px);
    cursor: grab;
}

.services-scroll-track:active {
    cursor: grabbing;
}

.services-scroll-track::-webkit-scrollbar {
    display: none;
}

/* Fade edges */
.services-scroll-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.services-scroll-fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-scroll-fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* Progress bar */
.services-scroll-progress {
    height: 3px;
    background: rgba(0, 102, 255, 0.06);
    border-radius: 100px;
    margin-top: 1rem;
    overflow: hidden;
    max-width: 200px;
}

.services-scroll-bar {
    height: 100%;
    width: 30%;
    background: var(--gradient-primary);
    border-radius: 100px;
    transition: transform 0.15s ease;
}

/* Service Cards */
.svc-card {
    flex: 0 0 310px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-smooth);
}

.svc-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.12);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.15);
    transition: all 0.3s var(--ease-smooth);
}

.svc-card:hover .svc-card-icon {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.svc-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.svc-card-icon lottie-player {
    width: 100% !important;
    height: 100% !important;
    filter: brightness(0) invert(1);
    transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.svc-card:hover .svc-card-icon lottie-player {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transform: scale(1.05);
}

.svc-card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-snug);
}

.svc-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.svc-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.svc-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    margin-top: 0.5rem;
}

.svc-card-link:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

/* CTA Card (last card) */
.svc-card-cta {
    background: linear-gradient(135deg, #0066ff 0%, #0091d5 50%, #00c471 100%) !important;
    border-color: transparent;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.svc-card-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: gradientRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes gradientRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.svc-card-cta::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.svc-card-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 102, 255, 0.4);
    border-color: transparent;
}

.svc-card-cta-inner {
    position: relative;
    z-index: 1;
}

.svc-card-cta-inner h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.svc-card-cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.svc-card-cta .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: transparent;
    font-weight: 700;
    padding: 14px 28px;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease-out);
}

.svc-card-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .services-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-header-actions {
        padding-bottom: 0;
    }

    .svc-card {
        flex: 0 0 280px;
    }

    .services-scroll-track {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .services-scroll-fade {
        width: 40px;
    }
}

/* Keep old service-card / service-icon styles for subpages */
.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
    background: #fff;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.service-icon svg {
    width: 28px; height: 28px;
    stroke: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-bright);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   DARK FIBER
   ═══════════════════════════════════════════ */
.dark-fiber-section {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.dark-fiber-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(0, 102, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.dark-fiber-hero-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.df-glow {
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), transparent 40%, transparent 60%, rgba(0, 102, 255, 0.08));
    border-radius: calc(var(--radius-xl) + 2px);
    z-index: -1;
    animation: dfGlow 4s ease-in-out infinite alternate;
}

@keyframes dfGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.df-content { padding: 3rem; }

.df-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.df-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.df-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.df-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.df-spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.df-spec-value {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.df-spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Fiber Animation */
.df-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fiber-animation {
    width: 100%;
    height: 250px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,102,255,0.02) 0%, rgba(0,166,255,0.02) 100%);
    border: 1.5px solid rgba(0,102,255,0.06);
}

.fiber-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary) 50%, transparent 100%);
    opacity: 0.4;
    animation: fiberFlow 3s linear infinite;
}

.fiber-1 { top: 30%; animation-delay: 0s; }
.fiber-2 { top: 50%; animation-delay: 1s; opacity: 0.6; }
.fiber-3 { top: 70%; animation-delay: 2s; }

@keyframes fiberFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.fiber-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background: var(--primary);
    border-radius: 50%;
    animation: fiberPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3), 0 0 40px rgba(0, 102, 255, 0.1);
}

@keyframes fiberPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

.fiber-node {
    position: absolute;
    width: 12px; height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

.fiber-node-1 { top: 50%; left: 15%; transform: translateY(-50%); }
.fiber-node-2 { top: 50%; right: 15%; transform: translateY(-50%); }

/* Dark Fiber Tabs */
.df-tabs {
    margin-top: 3rem;
}

.df-tab-nav {
    display: flex;
    gap: 4px;
    background: rgba(0, 102, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    overflow-x: auto;
}

.df-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.df-tab-btn svg {
    width: 18px; height: 18px;
    stroke: var(--text-muted);
    transition: stroke 0.3s ease;
    flex-shrink: 0;
}

.df-tab-btn:hover {
    color: var(--text-bright);
    background: rgba(0, 102, 255, 0.04);
}

.df-tab-btn:hover svg { stroke: var(--text-secondary); }

.df-tab-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
}

.df-tab-btn.active svg { stroke: #fff; }

.df-tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.df-tab-content.active { display: block; }

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

/* Advantages Tab */
.df-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.df-advantage-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.df-advantage-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 102, 255, 0.08);
}

.df-adv-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.04) 0%, rgba(0, 166, 255, 0.02) 100%);
    border-color: rgba(0, 102, 255, 0.15);
}

.df-adv-icon {
    width: 52px; height: 52px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.df-adv-icon svg {
    width: 24px; height: 24px;
    stroke: var(--secondary);
}

.df-adv-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.df-adv-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.df-adv-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Technical Tab */
.df-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.df-tech-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.df-tech-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.df-tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.df-tech-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.df-tech-list li:last-child { border-bottom: none; padding-bottom: 0; }

.df-tech-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.df-tech-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: right;
}

/* Coverage Tab */
.df-coverage-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.coverage-region-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coverage-region {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.coverage-region:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.coverage-region.active-region {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 166, 255, 0.03) 100%);
    border-color: rgba(0, 102, 255, 0.2);
}

.coverage-dot {
    width: 10px; height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 201, 115, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.coverage-info { flex: 1; }

.coverage-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 2px;
}

.coverage-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.coverage-km {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.df-coverage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.coverage-stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coverage-stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.coverage-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Global Presence */
.global-presence {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.global-presence-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.global-presence-title svg {
    width: 22px; height: 22px;
    stroke: var(--secondary);
}

.global-presence-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

.global-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.global-region-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.global-region-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.global-region-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.global-region-flag {
    font-size: 1.5rem;
    line-height: 1;
}

.global-region-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
}

.global-region-cities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.global-region-cities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.global-region-cities li em {
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.85rem;
}

.city-dot {
    width: 6px; height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(0, 201, 115, 0.4);
}

/* Dark Fiber CTA Banner */
.df-cta-banner {
    margin-top: 3rem;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 166, 255, 0.03) 100%);
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 3rem;
}

.df-cta-glow {
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.df-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.df-cta-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.df-cta-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

.df-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-shrink: 0;
}

.df-cta-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.df-cta-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.df-cta-email {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.df-cta-email:hover {
    color: var(--text-bright);
    text-shadow: none;
}

@media (max-width: 768px) {
    .df-cta-content { flex-direction: column; text-align: center; }
    .df-cta-text p { max-width: 100%; }
    .df-cta-banner { padding: 2rem; }
    .global-regions { grid-template-columns: 1fr; }
}

/* Old df-feature classes kept for compat */
.df-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.df-feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.df-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 102, 255, 0.08);
}

.df-feature-icon {
    width: 48px; height: 48px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.df-feature-icon svg {
    width: 24px; height: 24px;
    stroke: var(--secondary);
}

.df-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.df-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ИНДУСТРИИ
   ═══════════════════════════════════════════ */
.sectors-section {
    background: var(--bg-soft);
    overflow: hidden;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sector-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-card);
    position: relative;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1.5rem; right: 1.5rem;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.sector-card:hover::after {
    transform: scaleX(1);
}

.sector-number {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: opacity 0.4s var(--ease-out);
}

.sector-card:hover .sector-number {
    opacity: 0.25;
}

.sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s var(--ease-out);
}

.sector-card:hover .sector-icon {
    transform: scale(1.1) translateY(-4px);
}

.sector-icon lottie-player {
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.15));
    transition: filter 0.4s var(--ease-out);
}

.sector-card:hover .sector-icon lottie-player {
    filter: drop-shadow(0 8px 24px rgba(0, 102, 255, 0.25));
}

.sector-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.sector-card p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.85rem;
}

.sector-features { list-style: none; }

.sector-features li {
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1.1rem;
    position: relative;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-features li {
    color: var(--text-secondary);
}

.sector-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.sector-card:hover .sector-features li::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   ЗОШТО НИЕ (SALES POINTS)
   ═══════════════════════════════════════════ */
.why-us-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 50%; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sales-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.25rem;
}

.sales-point-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.sales-point-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 102, 255, 0.15);
}

.sp-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 166, 255, 0.01) 100%);
    border-color: rgba(0, 102, 255, 0.1);
}

.sp-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    flex-shrink: 0;
    line-height: 1;
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    min-width: 3rem;
}

.sales-point-card:hover .sp-number {
    opacity: 0.4;
    transform: scale(1.05);
}

.sp-content {
    flex: 1;
}

.sp-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.875rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.sp-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
    letter-spacing: -0.005em;
}

.sp-metric {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.sp-metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   ПЕРФОРМАНСИ / ГРАФИКОНИ
   ═══════════════════════════════════════════ */
.performance-section {
    background: #ffffff;
    position: relative;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at 30% 80%, rgba(0, 166, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.chart-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.08);
    transform: translateY(-4px);
}

.chart-card-wide {
    grid-column: 1 / -1;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}

.chart-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin: 0;
}

.chart-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 166, 255, 0.1) 100%);
    border-radius: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

.chart-icon svg {
    width: 20px;
    height: 20px;
}

.chart-badge {
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-badge-green {
    background: rgba(0, 201, 115, 0.1);
    border-color: rgba(0, 201, 115, 0.2);
    color: var(--neon-green);
}

.chart-badge-purple {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
    color: var(--neon-purple);
}

.chart-body {
    padding: 2rem;
}

.chart-footer {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    background: rgba(0, 102, 255, 0.02);
}

.chart-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
}

/* Bar Chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    gap: 8px;
    padding-bottom: 30px;
    position: relative;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.bar {
    width: 100%;
    max-width: 40px;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    position: relative;
    min-height: 4px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(var(--bar-height) * 1.7);
    box-shadow: 0 -2px 12px rgba(0, 102, 255, 0.15);
    animation: barGrow 1s ease-out backwards;
}

.bar:hover {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    filter: brightness(1.2);
}

@keyframes barGrow {
    from { height: 0; }
}

.bar-label {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bar:hover .bar-label { opacity: 1; }

.bar-month {
    position: absolute;
    bottom: -25px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Line Chart */
.line-chart { position: relative; }

.line-chart-svg {
    width: 100%;
    height: 200px;
    display: block;
}

.latency-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.latency-area {
    opacity: 0;
    animation: fadeArea 1s ease 1s forwards;
}

@keyframes fadeArea {
    to { opacity: 1; }
}

.chart-dot {
    opacity: 0;
    animation: dotAppear 0.3s ease forwards;
}

.chart-dot:nth-child(6) { animation-delay: 0.4s; }
.chart-dot:nth-child(7) { animation-delay: 0.8s; }
.chart-dot:nth-child(8) { animation-delay: 1.2s; }
.chart-dot:nth-child(9) { animation-delay: 1.6s; }
.chart-dot:nth-child(10) { animation-delay: 2s; }

@keyframes dotAppear {
    to { opacity: 1; }
}

.line-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.line-chart-labels span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Capacity Chart */
.capacity-chart {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.capacity-ring-container {
    text-align: center;
}

.capacity-ring {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
}

.capacity-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.ring-progress {
    animation: ringDraw 2s ease-out forwards;
    stroke-dashoffset: 534;
}

@keyframes ringDraw {
    to { stroke-dashoffset: 134; }
}

.ring-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ring-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ring-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.capacity-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.capacity-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capacity-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.capacity-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.capacity-item-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.capacity-item-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-bright);
}

.capacity-progress {
    height: 6px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.capacity-progress-bar {
    height: 100%;
    width: var(--progress);
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: progressGrow 1.5s ease-out forwards;
    transform-origin: left;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.3);
}

.capacity-progress-warn {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.capacity-progress-success {
    background: linear-gradient(90deg, #00c973, #10b981);
    box-shadow: 0 0 8px rgba(0, 201, 115, 0.3);
}

@keyframes progressGrow {
    from { width: 0; }
}

/* ═══════════════════════════════════════════
   ДОПОЛНИТЕЛНИ УСЛУГИ
   ═══════════════════════════════════════════ */
.additional-services-section { background: var(--bg-deep); }

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.additional-service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.additional-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
}

.additional-service-header {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 166, 255, 0.03) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.additional-service-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-bright);
}

.additional-service-content { padding: 2rem; }

.additional-service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.additional-service-content ul { list-style: none; }

.additional-service-content ul li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.additional-service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* ═══════════════════════════════════════════
   ИНТЕРНЕТ ПРИСТАП
   ═══════════════════════════════════════════ */
.internet-access-section { background: #ffffff; overflow: hidden; }

.internet-access-content {
    max-width: 900px;
    margin: 0 auto;
}

.internet-access-text .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease;
}

.feature-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(0, 102, 255, 0.02);
}

.feature-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    color: var(--text-bright);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

.tech-spec-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 102, 255, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
}

.tech-spec-note-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.06);
    border-radius: 8px;
}

.tech-spec-note-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.tech-spec-note-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.tech-spec-note-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ═══════════════════════════════════════════
   ВРЕДНОСТ И ПАРТНЕРСТВО
   ═══════════════════════════════════════════ */
.partnership-section { background: var(--bg-deep); padding-top: 0; overflow: hidden; }

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

.partnership-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-bright);
}

.partnership-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.partnership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partnership-feature {
    text-align: left;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partnership-feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.partnership-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-bright);
}

.partnership-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   КОНТАКТ
   ═══════════════════════════════════════════ */
.contact-section { background: #ffffff; }

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px; height: 48px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px; height: 22px;
    stroke: var(--primary-light);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-bright);
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1.5px solid rgba(0,102,255,0.06);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,102,255,0.04), 0 1px 3px rgba(0,0,0,0.03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    position: relative;
    margin-bottom: 0.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(0, 102, 255, 0.2);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230066ff' d='M6 8.825L.587 3.412l.826-.824L6 7.175l4.587-4.587.826.824z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
    background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Premium input bottom-line animation */
.form-group {
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.form-group:focus-within::after {
    width: calc(100% - 2rem);
    bottom: 1px;
}

/* ═══════════════════════════════════════════
   ФУТЕР
   ═══════════════════════════════════════════ */
/* ==========================================
   Соработници (Partners Slider)
   ========================================== */
.partners-section {
    background: #ffffff;
    padding: 56px 0 48px;
    overflow: hidden;
}

.partners-section .section-label {
    margin-bottom: 1.25rem;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: partnersScroll 40s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-track img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.35);
    transition: all 0.4s var(--ease-out);
    flex-shrink: 0;
}

.partners-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partners-track { gap: 2.5rem; }
    .partners-track img { height: 26px; }
    .partners-section { padding: 36px 0; }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 5rem 0 2.5rem;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr) 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.75;
    font-size: 0.9rem;
}

.footer-licensed {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s var(--ease-out);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* Google Reviews Section */
.footer-google-reviews {
    max-width: 280px;
}

.google-reviews-widget {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.google-rating {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.google-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.google-rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google-rating-text strong {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-bright);
}

.google-rating-text span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.btn-google-review:hover {
    background: var(--bg-soft);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.google-reviews-link {
    color: var(--primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.google-reviews-link:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-contact svg {
    width: 16px; height: 16px;
    stroke: var(--primary);
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover { color: var(--primary); }

.footer-contact-quick {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    padding: 0.5rem 0;
}

.footer-quick-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-quick-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.footer-quick-link:hover svg {
    opacity: 1;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p { margin-bottom: 0.3rem; }

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════
   КОНТАКТ ОДГОВОР
   ═══════════════════════════════════════════ */
.contact-response-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.contact-response-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.response-message {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.response-message.success { border-color: rgba(0, 201, 115, 0.3); }
.response-message.error { border-color: rgba(255, 68, 68, 0.3); }

.response-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-bright);
    box-shadow: var(--shadow-glow);
}

.response-message.error .response-icon {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
}

.response-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-bright);
}

.response-message p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.response-message ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.response-message ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.response-message ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4444;
}

/* ═══════════════════════════════════════════
   РЕСПОНЗИВЕН ДИЗАЈН
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .df-main { grid-template-columns: 1fr; }
    .capacity-chart { grid-template-columns: 1fr; }
    .charts-grid { grid-template-columns: 1fr; }
    .sales-points-grid { grid-template-columns: 1fr; }
    .sp-featured { grid-column: auto; }
    .df-advantages-grid { grid-template-columns: 1fr; }
    .df-adv-highlight { grid-column: auto; }
    .df-coverage-wrapper { grid-template-columns: 1fr; }
    .df-tech-grid { grid-template-columns: 1fr; }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px; left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--border);
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-bright);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-menu .nav-link:hover {
        background: rgba(0, 102, 255, 0.04);
        color: var(--primary);
    }

    .nav-menu .nav-cta {
        margin-top: 0.5rem;
        background: var(--gradient-primary);
        color: #ffffff;
        border-radius: 12px;
        padding: 0.85rem 1.5rem;
        text-align: center;
        justify-content: center;
        border: none;
    }

    .nav-menu .nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    }

    .nav-notification {
        width: 44px;
        height: 44px;
    }

    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .contact-content { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-stats-bar { 
        gap: 1.5rem; 
        flex-wrap: nowrap;
    }
    .hero-stat-divider { 
        display: block;
    }
}

@media (max-width: 768px) {
    section { padding: clamp(3rem, 8vw, 4rem) 0; }

    .services-grid,
    .sectors-grid,
    .additional-services-grid,
    .df-features-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .partnership-features { grid-template-columns: 1fr; }
    .df-specs { grid-template-columns: 1fr; gap: 1rem; }
    .hero-stats-bar { 
        flex-direction: row; 
        gap: 1rem; 
        padding: 1rem 1.25rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hero-stats-bar::-webkit-scrollbar {
        display: none;
    }
    .hero-stat-divider { 
        width: 1px; 
        height: 36px;
        flex-shrink: 0;
    }
    .hero-stat {
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-google-reviews { max-width: 100%; }

    .df-tab-nav { flex-direction: column; }
    .df-tab-btn { justify-content: flex-start; padding: 0.8rem 1.2rem; }
    .df-advantage-card { flex-direction: column; gap: 1rem; }
    .df-coverage-stats { grid-template-columns: 1fr; }
    .coverage-region { flex-wrap: wrap; }
    .sales-points-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    section { padding: clamp(2.5rem, 7vw, 3.5rem) 0; }
    .hero-title { font-size: clamp(2rem, 6vw, 2.5rem); line-height: 1.15; }
    .hero-subtitle { font-size: clamp(0.95rem, 2.5vw, 1.1rem); margin-bottom: 2rem; }
    .hero { padding: 120px 0 70px; }
    .section-title { font-size: clamp(1.4rem, 4.5vw, 1.8rem); }
    .section-description { font-size: 0.9rem; }
    .hero-stats-bar { 
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    .hero-stat-value {
        font-size: 1.1rem;
    }
    .hero-stat-label {
        font-size: 0.75rem;
    }
    .df-content { padding: 1.5rem; }
    .chart-body { padding: 1rem; }
    .sectors-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   АНИМАЦИИ
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .sector-card,
    .additional-service-card,
    .df-feature-card,
    .df-advantage-card,
    .df-tech-card,
    .sales-point-card,
    .feature-item,
    .contact-item,
    .chart-card,
    .partnership-feature,
    .coverage-region,
    .coverage-stat-card,
    .global-region-card,
    .df-cta-banner,
    .pricing-card,
    .process-step,
    .pkg-benefits-bar,
    .pkg-cta-banner,
    .ddv-toggle-wrap,
    .cert-card {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }

    .service-card.visible,
    .sector-card.visible,
    .additional-service-card.visible,
    .df-feature-card.visible,
    .df-advantage-card.visible,
    .df-tech-card.visible,
    .sales-point-card.visible,
    .feature-item.visible,
    .contact-item.visible,
    .chart-card.visible,
    .partnership-feature.visible,
    .coverage-region.visible,
    .coverage-stat-card.visible,
    .global-region-card.visible,
    .df-cta-banner.visible,
    .pricing-card.visible,
    .process-step.visible,
    .pkg-benefits-bar.visible,
    .pkg-cta-banner.visible,
    .ddv-toggle-wrap.visible,
    .cert-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Деловни пакети (Pricing)
   ========================================== */

.packages-section {
    padding: 120px 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.packages-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,102,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Benefits bar */
.pkg-benefits-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 24px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.pkg-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pkg-benefit:hover {
    color: var(--neon-blue);
}

.pkg-benefit svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-blue);
    flex-shrink: 0;
}

/* DDV Toggle */
.ddv-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.ddv-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.ddv-label-active {
    color: var(--neon-blue);
}

.ddv-toggle {
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: var(--bg-glass-strong);
    border: 2px solid var(--border);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ddv-toggle:hover {
    border-color: var(--border-hover);
}

.ddv-toggle-dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.ddv-toggle.active .ddv-toggle-dot {
    transform: translateX(24px);
}

.pricing-intro-note {
    max-width: 780px;
    margin: 0 auto 28px;
    padding: 14px 18px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    background: rgba(0, 102, 255, 0.04);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 14px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.pricing-card-full {
    grid-column: 1 / -1;
}

/* Individual Card */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Popular card */
.pricing-popular {
    border-color: rgba(0, 102, 255, 0.25);
    background: rgba(0, 102, 255, 0.02);
    box-shadow: var(--shadow-sm);
}

.pricing-popular:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pricing-badge-pop {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.450rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}

.pricing-badge-df {
    background: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

/* Enterprise card */
.pricing-enterprise {
    border-color: rgba(0, 201, 115, 0.25);
}

.pricing-enterprise::before {
    background: linear-gradient(135deg, var(--neon-green) 0%, #00d4ff 100%) !important;
}

/* Dark Fiber card */
.pricing-darkfiber {
    border-color: rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(0, 166, 255, 0.02) 100%);
}

.pricing-darkfiber::before {
    background: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%) !important;
}

/* Header */
.pricing-header {
    margin-bottom: 24px;
}

.pricing-tier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Speed */
.pricing-speed {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

/* Price block */
.pricing-price {
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-den {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 2px;
}

.pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

.pricing-price-inquiry {
    margin-bottom: 12px;
    min-height: 60px;
    align-items: center;
    justify-content: center;
}

.pricing-value-inquiry {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 600;
}

.pf-highlight {
    color: var(--text-primary);
    font-weight: 500;
}

/* Button block */
.btn-block {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-glass {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-glass:hover {
    background: rgba(0, 102, 255, 0.04);
    border-color: var(--primary);
    color: var(--primary);
}


/* Section Label (internet / telephony) */
.pricing-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-section-label svg {
    width: 16px;
    height: 16px;
    stroke: var(--neon-blue);
    opacity: 0.7;
    flex-shrink: 0;
}

.pricing-section-label span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* Extras dimmed list */
.pricing-extras {
    list-style: none;
    padding: 0;
    margin: 8px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-extras li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.pricing-extras li svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    stroke-width: 2.5;
}

/* XL Card */
.pricing-xl {
    border-color: rgba(0, 145, 213, 0.2);
    background: rgba(0, 145, 213, 0.02);
}

/* Dark Fiber Full-width Card */
.pricing-df-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pricing-df-left .pricing-header {
    margin-bottom: 24px;
}

.pricing-df-stats {
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pdf-stat {
    padding: 16px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pdf-stat:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.pdf-stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    margin-bottom: 4px;
}

.pdf-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-df-right .pricing-features {
    margin-bottom: 24px;
}

.pricing-df-cta {
    text-align: center;
}

.pricing-df-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Pricing Footer Info */
.pricing-footer-info {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
}

.pricing-note a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Package CTA Banner */
.pkg-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.pkg-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.pkg-cta-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.pkg-cta-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.pkg-cta-banner .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================
   Мрежа (Network Infrastructure)
   ========================================== */
.network-section {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.network-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.network-text p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.network-text p:last-child { margin-bottom: 0; }

.network-text strong {
    color: var(--text-bright);
    font-weight: 700;
}

.network-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.net-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
}

.net-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.net-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 14px;
    transition: all 0.4s var(--ease-out);
}

.net-stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.net-stat-icon lottie-player {
    transition: filter 0.4s var(--ease-out);
    filter: brightness(1) saturate(1);
}

.net-stat-card:hover .net-stat-icon {
    background: rgba(0, 102, 255, 0.1);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.net-stat-card:hover .net-stat-icon lottie-player {
    filter: brightness(1.1) saturate(1.2);
}

.net-stat-card:hover .net-stat-icon svg {
    stroke: var(--primary);
}

.net-stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.01em;
}

.net-stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.network-services-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.net-svc-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
}

.net-svc-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.net-svc-item lottie-player {
    flex-shrink: 0;
    transition: filter 0.3s var(--ease-out);
    filter: brightness(1) saturate(1);
}

.net-svc-item:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.2);
}

.net-svc-item:hover svg {
    stroke: #ffffff;
}

.net-svc-item:hover lottie-player {
    filter: brightness(1.2) saturate(1.3);
}

@media (max-width: 992px) {
    .network-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .network-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .network-services-bar {
        gap: 0.5rem;
    }
    .net-svc-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ==========================================
   Сертификати (Certificates)
   ========================================== */
.certs-section { background: #ffffff; overflow: hidden; }

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.cert-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.cert-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
}

.cert-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.cert-icon lottie-player {
    transition: filter 0.4s var(--ease-out);
    filter: brightness(1) saturate(1);
}

.cert-card:hover .cert-icon {
    background: rgba(0, 102, 255, 0.1);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
}

.cert-card:hover .cert-icon lottie-player {
    filter: brightness(1.15) saturate(1.3);
}

.cert-card:hover .cert-icon svg {
    stroke: var(--primary);
}

.cert-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cert-code {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 0.01em;
}

.cert-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 992px) {
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .certs-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Процес на воведување (Process Timeline)
   ========================================== */

.process-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    margin-top: 3.5rem;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,102,255,0.06) 0%, rgba(0,102,255,0.15) 30%, rgba(0,102,255,0.15) 70%, rgba(0,102,255,0.06) 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    transition: all 0.5s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.process-icon lottie-player {
    transition: filter 0.5s var(--ease-out);
    filter: brightness(1) saturate(1);
}

.process-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.process-step:hover .process-icon {
    border-color: rgba(0, 102, 255, 0.25);
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
}

.process-step:hover .process-icon::before {
    opacity: 0.15;
}

.process-step:hover .process-icon lottie-player {
    filter: brightness(1.15) saturate(1.3);
}

.process-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.process-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 6px;
    opacity: 0.4;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 220px;
}

/* ==========================================
   RESPONSIVE — Packages + Process
   ========================================== */

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-popular:hover {
        transform: translateY(-8px);
    }
    .pricing-df-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    .process-line {
        display: none;
    }
    .pkg-benefits-bar {
        gap: 16px;
        padding: 16px;
    }
    .pkg-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .packages-section,
    .process-section {
        padding: 80px 0;
    }
    .pricing-card {
        padding: 24px 20px 20px;
    }
    .pricing-df-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ddv-toggle-wrap {
        gap: 10px;
    }
    .ddv-label {
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════
   ENTERPRISE STATS STRIP
   ═══════════════════════════════════════════ */
.enterprise-stats-strip {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 166, 255, 0.02) 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.06);
    border-bottom: 1px solid rgba(0, 102, 255, 0.06);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-out);
}

.stats-strip-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.stats-strip-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.stats-strip-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.stats-strip-item:hover .stats-strip-icon {
    background: rgba(0, 102, 255, 0.12);
    transform: scale(1.05);
}

.stats-strip-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-strip-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stats-strip-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   BEST FOR LABELS
   ═══════════════════════════════════════════ */
.svc-panel-best-for {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.best-for-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.best-for-tags {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   FLOATING CTA BUTTON
   ═══════════════════════════════════════════ */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.floating-cta-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-cta-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .floating-cta-text {
        display: none;
    }
    
    .floating-cta-button {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stats-strip-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .stats-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-strip-value {
        font-size: 0.9rem;
    }
    
    .stats-strip-label {
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════
   TRUST HIGHLIGHTS SECTION
   ═══════════════════════════════════════════ */
.trust-highlights-section {
    background: var(--bg-soft);
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-card);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 102, 255, 0.15);
}

.trust-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(0, 102, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease-out);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.trust-card:hover .trust-icon {
    background: rgba(0, 102, 255, 0.1);
    transform: scale(1.05);
}

.trust-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════
   PREMIUM CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #f0f7ff 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.08);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.cta-section-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.cta-section-premium > * {
    position: relative;
    z-index: 1;
}

.cta-premium-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-premium-text {
    flex: 1;
}

.cta-premium-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.cta-premium-text p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.cta-premium-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SUPPORT & PROCESS SECTION
   ═══════════════════════════════════════════ */
.support-process-section {
    background: #ffffff;
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    position: relative;
}

.support-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-process-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.35s var(--ease-out);
    box-shadow: var(--shadow-card);
    position: relative;
}

.support-process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 102, 255, 0.12);
}

.support-process-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.35s var(--ease-out);
}

.support-process-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.support-process-card:hover .support-process-icon {
    background: rgba(0, 102, 255, 0.1);
    transform: scale(1.08);
}

.support-process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.support-process-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.support-process-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .cta-premium-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-premium-text {
        text-align: center;
    }
    
    .cta-premium-text p {
        max-width: 100%;
    }
    
    .cta-premium-actions {
        justify-content: center;
        width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-grid,
    .support-process-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card,
    .support-process-card {
        padding: 1.75rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.15);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 102, 255, 0.25); }

/* ═══════════════════════════════════════════
   SUPPLEMENTARY ANIMATIONS
   ═══════════════════════════════════════════ */

/* Service icon outer ring on hover */
.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(0, 102, 255, 0.08);
    pointer-events: none;
    transition: border-color 0.35s ease;
}

.service-card:hover .service-icon::after {
    border-color: rgba(0, 102, 255, 0.25);
}

/* Stagger animation delays for grid children */
.service-card:nth-child(1), .pricing-card:nth-child(1), .sector-card:nth-child(1) { transition-delay: 0.02s; }
.service-card:nth-child(2), .pricing-card:nth-child(2), .sector-card:nth-child(2) { transition-delay: 0.04s; }
.service-card:nth-child(3), .pricing-card:nth-child(3), .sector-card:nth-child(3) { transition-delay: 0.06s; }
.service-card:nth-child(4), .pricing-card:nth-child(4), .sector-card:nth-child(4) { transition-delay: 0.08s; }
.service-card:nth-child(5), .pricing-card:nth-child(5) { transition-delay: 0.1s; }
.service-card:nth-child(6), .pricing-card:nth-child(6) { transition-delay: 0.12s; }

/* Alternating slide-in for advantage/sales cards */
@media (prefers-reduced-motion: no-preference) {
    .df-advantage-card:nth-child(odd) { transform: translateX(-20px); }
    .df-advantage-card:nth-child(even) { transform: translateX(20px); }
    .df-advantage-card.visible { transform: translateX(0) !important; }
    
    .sales-point-card:nth-child(odd) { transform: translateX(-6px); }
    .sales-point-card:nth-child(even) { transform: translateX(6px); }
    .sales-point-card.visible { transform: translateX(0) !important; }
}

/* Subtle decorative blob behind hero */
.hero::after {
    content: '';
    position: absolute;
    top: 10%; right: 5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 30% 70% 60%;
    z-index: 0;
    pointer-events: none;
}

/* Subtle card tilt on hover */
.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
}

.sector-card:hover {
    box-shadow: 0 12px 36px rgba(0, 102, 255, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ═══════════════════════════════════════════
   MICRO-INTERACTIONS & POLISH
   ═══════════════════════════════════════════ */

/* Subtle hover scale on stat values */
.hero-stat-value,
.sp-metric-value,
.stat-big-val {
    transition: transform 0.35s var(--ease-out);
}

.hero-stat:hover .hero-stat-value,
.stat-big:hover .stat-big-val {
    transform: scale(1.08);
}

/* Process icon subtle pulse */
.process-icon {
    animation: iconPulse 5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(0, 102, 255, 0); }
    50% { box-shadow: 0 4px 20px rgba(0, 102, 255, 0.06); }
}

/* Pricing card hover refinement */
.pricing-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.pricing-popular:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
}

/* DDV toggle smooth transition */
.pricing-value {
    transition: all 0.4s var(--ease-out);
}

/* Footer link underline reveal */
.footer-links a {
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.35s var(--ease-out);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Button press feedback */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:active::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   HERO DECORATIVE ELEMENTS
   ═══════════════════════════════════════════ */

/* Vanta.js GLOBE container */
#vanta-globe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.17; /* 17% visibility - very subtle */
}

#vanta-globe canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Subtle aurora gradient behind hero */
.hero-aurora {
    display: none !important;
}

/* Floating orbs — disabled (using Vanta.js instead) */
.floating-orb {
    display: none !important;
}

.orb-1 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    top: 0; right: 0;
}

.orb-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0, 166, 255, 0.04) 0%, transparent 70%);
    bottom: 0; left: 0;
}

.orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.04) 0%, transparent 70%);
    top: 40%; left: 50%;
}

/* Noise / overlay — hidden */
.noise-overlay, .mesh-bg, .dot-grid-bg { display: none; }

/* Section separator — minimal gradient line */
.section-sep {
    width: 100%;
    height: 1px;
    max-width: 240px;
    margin: clamp(2.5rem, 4vw, 3.5rem) auto;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.15), transparent);
    position: relative;
}

.section-sep::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   ANIMATED SVG ICONS
   ═══════════════════════════════════════════ */

/* Stroke drawing animation for SVG icons — JS handles dasharray/offset per-path */

/* Pulsing icon ring */
.service-icon {
    position: relative;
}

/* Icon ring — hover only, no infinite animation */
.service-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(0,102,255,0.08);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.service-card:hover .service-icon::before {
    opacity: 1;
    transform: scale(1.05);
}

/* Rotating gradient border for featured cards */
.pricing-popular,
.sp-featured,
.df-adv-highlight {
    position: relative;
    overflow: visible;
}

.pricing-popular::before,
.sp-featured::before,
.df-adv-highlight::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0066ff, #00a6ff, #7c3aed);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .pricing-popular::before,
    .sp-featured::before,
    .df-adv-highlight::before {
        background: var(--gradient-primary);
    }
}

/* ═══════════════════════════════════════════
   2026 MICRO-INTERACTIONS
   ═══════════════════════════════════════════ */

/* Hero entrance stagger */
.hero-badge { animation: heroFadeUp 0.7s var(--ease-out) 0.1s both; }
.hero-title { animation: heroFadeUp 0.7s var(--ease-out) 0.2s both; }
.hero-subtitle { animation: heroFadeUp 0.7s var(--ease-out) 0.35s both; }
.hero-cta { animation: heroFadeUp 0.7s var(--ease-out) 0.5s both; }
.hero-stats-bar { animation: heroFadeUp 0.7s var(--ease-out) 0.65s both; }

/* Hero stats bar glass refinement */
.hero-stats-bar {
    border: 1px solid rgba(0, 102, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 102, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   SUBPAGE STYLES — Page Hero & Sections
   ═══════════════════════════════════════════ */

.page-hero {
    position: relative;
    padding: 150px 0 90px;
    overflow: hidden;
    isolation: isolate;
    /* Animated gradient background */
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5faff 20%,
        #e9f2fe 45%,
        #d9e9fe 65%,
        #ecf7fe 82%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
    min-height: 220px;
}

/* Ensure content stays above animated background */
.page-hero > * {
    position: relative;
    z-index: 2;
}

/* Aurora/glow overlays for page-hero */
.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

.page-hero::before {
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(60px);
    animation: floatGlowOne 8s ease-in-out infinite;
}

.page-hero::after {
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, rgba(147, 197, 253, 0) 72%);
    filter: blur(65px);
    animation: floatGlowTwo 10s ease-in-out infinite;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 166, 255, 0.04) 0%, transparent 50%);
    isolation: isolate;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Vanta.js containers for page-hero */
#vanta-rings,
#vanta-halo,
#vanta-dots,
#vanta-trunk,
#vanta-topology,
#vanta-waves,
#vanta-net {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

#vanta-rings canvas,
#vanta-halo canvas,
#vanta-dots canvas,
#vanta-trunk canvas,
#vanta-topology canvas,
#vanta-waves canvas,
#vanta-net canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.page-hero-bg .hero-particles {
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
    animation: pageHeroFade 0.8s var(--ease-out) both;
}

.page-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--text-bright);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* Section variations */
.section-white {
    padding: var(--space-section) 0;
    background: var(--bg-deep);
    padding-top: 10px;
}

.section-gray {
    padding: var(--space-section) 0;
    background: var(--bg-soft);
    position: relative;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    opacity: 0.25;
}

/* ═══════════════════════════════════════════
   STATS ROW
   ═══════════════════════════════════════════ */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 20px;
}

.stat-big {
    text-align: center;
    padding: 2rem 2.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-out);
    min-width: 180px;
    animation: fadeInUp 0.6s var(--ease-out) both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-big:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.stat-big-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.stat-big-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.stat-big-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.stat-big-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-big-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: -0.25rem;
}

.stat-big-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: -0.25rem;
}

.stat-big-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.stat-big-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.stat-big-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: -0.25rem;
}

/* ═══════════════════════════════════════════
   USLUGI — Service Blocks (alternating)
   ═══════════════════════════════════════════ */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-block-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 1.5px solid rgba(0,102,255,0.06);
    overflow: hidden;
}

.service-anim-ring {
    width: 180px;
    height: 180px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.15));
    animation: ring-float 6s ease-in-out infinite;
}

.service-anim-ring svg { 
    width: 100%; 
    height: 100%; 
    transform-origin: center;
    will-change: transform;
}

.service-anim-ring .ring-svg {
    transform-origin: center;
}

.service-anim-ring .rotating-dots {
    transform-origin: 60px 60px;
}

.service-anim-ring circle {
    will-change: transform, opacity, r;
}

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

.service-anim-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.service-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-block-icon.icon-green { background: linear-gradient(135deg, #00c973, #00a86b); }
.service-block-icon.icon-purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.service-block-icon.icon-cyan { background: linear-gradient(135deg, #00a6ff, #0066ff); }

.service-block-icon svg { width: 26px; height: 26px; }

.service-block-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.service-block-text > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.service-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 10px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

/* Cyber Benefits */
.cyber-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.cyber-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 100%);
    border: 1.5px solid rgba(0,102,255,0.06);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.cyber-benefit-item:hover {
    border-color: rgba(0,102,255,0.15);
    transform: translateY(-2px);
}

.cyber-benefit-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.cyber-benefit-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cyber-benefits {
        grid-template-columns: 1fr;
    }
}

/* Service stats grid */
.service-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
}

.mini-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.mini-stat-val {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.mini-stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Shield animation */
.shield-anim { display: flex; align-items: center; justify-content: center; }
.shield-svg { width: 160px; height: auto; }

.check-animate {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkDraw 1.5s ease-out 0.5s forwards;
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

/* Network visual (VPN) */
.network-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

.net-node {
    position: absolute;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.net-center { top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--gradient-primary); color: #fff; border: none; }
.net-tl { top: 10%; left: 10%; }
.net-tr { top: 10%; right: 10%; }
.net-bl { bottom: 10%; left: 10%; }
.net-br { bottom: 10%; right: 10%; }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fbff 25%,
        #e0f2fe 50%,
        #dbeafe 75%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
    min-height: 220px;
    padding-bottom: 0;
    padding-top: 10px;
}

.cta-section > * {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

.cta-section::before {
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(60px);
    animation: floatGlowOne 8s ease-in-out infinite;
}

.cta-section::after {
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, rgba(147, 197, 253, 0) 72%);
    filter: blur(65px);
    animation: floatGlowTwo 10s ease-in-out infinite;
}

.cta-block {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 50%, #f7f9ff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 102, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 102, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.cta-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-block p {
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 0.92rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   DARK FIBER PAGE
   ═══════════════════════════════════════════ */
.advantages-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.adv-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.adv-card .adv-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
    opacity: 0.08;
    z-index: 0;
}

.adv-card .adv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.adv-card:hover .adv-image {
    opacity: 0.12;
}

.adv-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,102,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.adv-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.adv-card-icon lottie-player {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(2598%) hue-rotate(210deg) brightness(99%) contrast(101%);
    transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.adv-card:hover .adv-card-icon {
    background: rgba(0, 102, 255, 0.12);
    transform: scale(1.05);
}

.adv-card:hover .adv-card-icon lottie-player {
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(2598%) hue-rotate(210deg) brightness(110%) contrast(101%);
    transform: scale(1.1);
}

.adv-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.adv-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Tech specs */
.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tech-spec-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tech-spec-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0,102,255,0.1);
}

.tech-spec-list {
    list-style: none;
}

.tech-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.tech-spec-list li:last-child { border-bottom: none; }
.tech-spec-list li span { color: var(--text-muted); }
.tech-spec-list li strong { color: var(--text-primary); font-weight: 600; }

/* (Pricing styles defined in main homepage section above) */

/* ═══════════════════════════════════════════
   INDUSTRII PAGE
   ═══════════════════════════════════════════ */
.industry-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.industry-card-big {
    display: flex;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    align-items: flex-start;
}

.industry-card-big:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.industry-card-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.industry-card-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.industry-card-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.industry-features-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ind-feat {
    padding: 6px 14px;
    background: rgba(0,102,255,0.06);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid rgba(0,102,255,0.12);
}

/* ═══════════════════════════════════════════
   ZA NAS PAGE
   ═══════════════════════════════════════════ */
.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,102,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card-icon svg { width: 28px; height: 28px; color: var(--primary); }
.about-card-icon.icon-green { background: rgba(0,200,115,0.08); }
.about-card-icon.icon-green svg { color: var(--accent); }

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* About Intro */
.about-intro {
    max-width: 100%;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.about-video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.about-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ICT Grid */
.ict-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.ict-card {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.ict-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 12px 36px rgba(0, 102, 255, 0.08);
}

.ict-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ict-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.ict-card:hover .ict-icon {
    background: var(--primary);
}

.ict-card:hover .ict-icon svg {
    stroke: #ffffff;
}

.ict-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.4rem;
}

.ict-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Network Info */
.network-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.network-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 102, 255, 0.11);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

.network-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 48px rgba(0, 102, 255, 0.12);
}

.network-info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    transition: all 0.4s var(--ease-out);
}

.network-info-card:hover .network-info-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.network-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.network-info-card:hover .network-info-icon svg {
    stroke: #ffffff;
}

.network-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.network-info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.network-stats-mini {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.network-stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.network-stat-mini-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.network-stat-mini-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

@media (max-width: 992px) {
    .network-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .network-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .network-info-card {
        padding: 1.5rem;
    }
    
    .network-stats-mini {
        gap: 1.5rem;
    }
    
    .network-stat-mini-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .network-stats-mini {
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card .value-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    opacity: 0.1;
    z-index: 0;
}

.value-card .value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.value-card:hover .value-image {
    opacity: 0.15;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Team */
.team-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-role-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-role-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-role-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,102,255,0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.team-role-icon svg { width: 28px; height: 28px; color: var(--primary); }

.team-role-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.team-role-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PERFORMANSI PAGE — SLA Table
   ═══════════════════════════════════════════ */
/* (Chart styles already defined in homepage section above) */

/* Performansi page charts grid */
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* SLA Table */
.sla-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sla-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.sla-table thead { background: linear-gradient(135deg, rgba(0,102,255,0.03), rgba(0,166,255,0.02)); }

.sla-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-bright);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--border);
}

.sla-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.sla-table tbody tr:last-child td { border-bottom: none; }

.sla-table tbody tr:hover { background: rgba(0,102,255,0.02); }

.sla-table td:first-child { font-weight: 600; color: var(--text-primary); }

/* ═══════════════════════════════════════════
   PODRSHKA PAGE — Support Channels & FAQ
   ═══════════════════════════════════════════ */
.support-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.support-channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-channel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,102,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.support-icon svg { width: 28px; height: 28px; color: var(--primary); }

.support-channel-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.support-channel-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-cta {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.support-cta:hover { text-decoration: underline; }

.support-tag {
    padding: 4px 12px;
    background: rgba(0,200,115,0.08);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-top: auto;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    font-family: inherit;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   PAGE PAGINATION MENU
   ═══════════════════════════════════════════ */
.page-pagination-menu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.pagination-menu-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-smooth);
}

.pagination-menu-link:hover {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.06);
}

.pagination-menu-separator {
    color: var(--text-muted);
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-pagination-menu {
        gap: 0.5rem;
    }
    
    .pagination-menu-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .pagination-menu-separator {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   KARIERI PAGE — Benefits, Jobs
   ═══════════════════════════════════════════ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-card:hover .benefit-icon {
    background: rgba(0, 102, 255, 0.12);
    transform: translateY(-2px) scale(1.05);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
}

/* Subtle pulse animation */
@keyframes benefitIconPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

.benefit-icon svg {
    animation: benefitIconPulse 3s ease-in-out infinite;
}

.benefit-card:hover .benefit-icon svg {
    animation: none;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Jobs */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
}

.job-tags { display: flex; gap: 0.5rem; }

.job-tag {
    padding: 4px 12px;
    background: rgba(0,102,255,0.06);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
}

.job-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

.job-dept {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════ */
.blog-featured {
    padding: 3rem;
    background: #ffffff;
    border: 1.5px solid rgba(0,102,255,0.06);
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    box-shadow: 0 8px 40px rgba(0,102,255,0.04);
    transition: all 0.3s ease;
}

.blog-featured:hover {
    box-shadow: var(--shadow-md);
}

.blog-featured-content { max-width: 700px; }

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,102,255,0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-featured h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-featured p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.blog-featured-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

/* Blog Post Single Page */
.blog-post-single {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-featured-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-primary);
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-bright);
    font-weight: 700;
}

.blog-post-content h2 {
    font-size: 1.75rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.blog-post-content code {
    background: rgba(0, 102, 255, 0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-post-content pre {
    background: rgba(0, 102, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.blog-post-content table th,
.blog-post-content table td {
    padding: 0.75rem;
    border: 1px solid var(--border);
    text-align: left;
}

.blog-post-content table th {
    background: rgba(0, 102, 255, 0.05);
    font-weight: 600;
}

.blog-post-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: var(--primary-dark);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination .btn {
    min-width: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem;
    }
}

/* ═══════════════════════════════════════════
   KONTAKT PAGE
   ═══════════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ci-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,102,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg { width: 22px; height: 22px; color: var(--primary); }

.contact-info-item strong {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.9rem;
}

.contact-info-item a, .contact-info-item span {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-info-item a:hover { color: var(--primary); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }

/* Contact form - modern */
.contact-form-modern {
    background: #ffffff;
    border: 1.5px solid rgba(0,102,255,0.06);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,102,255,0.04), 0 1px 3px rgba(0,0,0,0.03);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 0.25rem;
}

.form-success-msg {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,200,115,0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-success-msg h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.form-success-msg p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.form-errors {
    padding: 1rem 1.5rem;
    background: rgba(255,59,48,0.05);
    border: 1px solid rgba(255,59,48,0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.form-error-item {
    color: #d32f2f;
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

/* Footer bottom links row */
.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.04);
    border: 1px solid rgba(0, 102, 255, 0.06);
    color: var(--text-muted);
    transition: all 0.35s var(--ease-out);
}

.footer-social a svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.footer-cirt-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.4s var(--ease-out);
}

.footer-cirt-badge img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-cirt-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    opacity: 0.6;
}

.footer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--primary);
    opacity: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SUBPAGES
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-block-visual { min-height: 250px; }

    .advantages-grid-3col,
    .tech-specs-grid,
    .team-roles,
    .spec-grid { grid-template-columns: repeat(2, 1fr); }

    .pricing-grid { grid-template-columns: repeat(2, 1fr); }

    .values-grid,
    .benefits-grid,
    .support-channels { grid-template-columns: repeat(2, 1fr); }

    .blog-grid { grid-template-columns: repeat(2, 1fr); }

    .capacity-chart { grid-template-columns: 1fr; }

    .charts-grid { grid-template-columns: 1fr; }

    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 130px 0 70px; }
    .page-hero-title { font-size: 2rem; }
    .section-white, .section-gray { padding: 48px 0; }

    .service-block { gap: 2rem; }

    .advantages-grid-3col,
    .tech-specs-grid,
    .team-roles,
    .values-grid,
    .benefits-grid,
    .support-channels,
    .blog-grid,
    .spec-grid { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-popular { transform: none; }
    .pricing-popular:hover { transform: translateY(-6px); }

    .about-two-col { grid-template-columns: 1fr; }

    .industry-card-big { flex-direction: column; }

    .stats-row { gap: 1rem; }
    .stat-big { min-width: 140px; padding: 1.5rem; }

    .form-row-2 { grid-template-columns: 1fr; }

    .sla-table { font-size: 0.8rem; }
    .sla-table th, .sla-table td { padding: 0.75rem 1rem; }

    .cta-block { padding: 2.5rem 1.5rem; }

    .footer-bottom-links { gap: 1rem; }

    .pkg-benefits-bar { flex-direction: column; align-items: center; gap: 0.75rem; }
}

/* ═══════════════════════════════════════════
   SCROLL FADE-IN ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-on-scroll {
            opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
        }

.fade-on-scroll.fade-visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Staggered animation for children */
.fade-on-scroll:nth-child(1) { transition-delay: 0s; }
.fade-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.fade-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.fade-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.fade-on-scroll:nth-child(5) { transition-delay: 0.24s; }
.fade-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.fade-on-scroll:nth-child(7) { transition-delay: 0.36s; }
.fade-on-scroll:nth-child(8) { transition-delay: 0.42s; }
.fade-on-scroll:nth-child(9) { transition-delay: 0.48s; }
.fade-on-scroll:nth-child(10) { transition-delay: 0.54s; }

/* Nav active state for current page */
.nav-link.active-page {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active-page::after {
    width: 100%;
}

/* ═══════════════════════════════════════════
   DARK SECTIONS — Reusable dark background
   ═══════════════════════════════════════════ */
.section-dark {
    background: #0a0e1a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: var(--space-section) 0;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-dark .section-label {
    color: rgba(255, 255, 255, 0.45);
}

.section-dark .section-title {
    color: #ffffff;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════════
   SERVICE EXPLORER — Interactive tabbed dark section
   ═══════════════════════════════════════════ */
.svc-explorer-section {
    background: #0a0e1a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vw, 100px) 0;
}

.svc-explorer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 100%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.svc-explorer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Header styles for svc-explorer-section */
.svc-explorer-section .section-header {
    text-align: center;
    margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.svc-explorer-section .section-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
}

.svc-explorer-section .section-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
}

.svc-explorer-section .section-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.svc-explorer {
    display: flex;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    min-height: 520px;
}

/* ── Left nav tabs ── */
.svc-explorer-nav {
    width: 280px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.svc-explorer-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.svc-explorer-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
}

.svc-explorer-tab.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.svc-explorer-tab.active .svc-tab-num {
    color: var(--primary-light);
}

.svc-tab-num {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.08em;
    min-width: 24px;
}

.svc-tab-label {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ── Right panels ── */
.svc-explorer-panels {
    flex: 1;
    position: relative;
    min-height: 480px;
}

.svc-explorer-panel {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 40px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s 0.35s;
}

.svc-explorer-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s, visibility 0s;
}

.svc-panel-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-panel-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.svc-panel-text > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.svc-panel-outputs {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
}

.svc-panel-outputs h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 6px;
    font-weight: 700;
}

.svc-panel-outputs p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ── Right visual ── */
.svc-panel-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.svc-panel-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.08;
    z-index: 0;
}

.svc-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.3);
}

.svc-panel-icon-big {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
}

.svc-panel-icon-big svg {
    width: 100%;
    height: 100%;
}

.svc-panel-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.svc-panel-tags {
    position: relative;
    z-index: 1;
}

.svc-panel-tags li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.svc-panel-tags li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    flex-shrink: 0;
}

.svc-panel-visual .btn {
    margin-top: 8px;
    align-self: stretch;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ── Mobile responsive ── */
@media (max-width: 900px) {
    .svc-explorer {
        flex-direction: column;
        min-height: auto;
    }

    .svc-explorer-nav {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 6px;
        gap: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .svc-explorer-nav::-webkit-scrollbar { display: none; }

    .svc-explorer-tab {
        padding: 12px 16px;
        white-space: nowrap;
        font-size: 0.82rem;
        gap: 8px;
    }

    .svc-tab-num { display: none; }

    .svc-explorer-panels {
        min-height: auto;
        position: relative;
    }

    .svc-explorer-panel {
        position: relative;
        flex-direction: column;
        padding: 24px 20px;
        gap: 24px;
        display: none;
    }

    .svc-explorer-panel.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 600px) {
    .svc-panel-text h3 { font-size: 1.3rem; }
    .svc-panel-icon-big { width: 100px; height: 100px; }
}

/* ═══════════════════════════════════════════
   DARK FEATURE BAND — used in subpages
   ═══════════════════════════════════════════ */
.dark-feature-band {
    background: #0a0e1a;
    position: relative;
    overflow: hidden;
    padding: clamp(50px, 7vw, 90px) 0;
}

.dark-feature-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.dark-band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.dark-band-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.dark-band-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-4px);
}

.dark-band-card {
    position: relative;
    overflow: hidden;
}

.dark-band-card .dbc-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
    opacity: 0.15;
    z-index: 0;
}

.dark-band-card .dbc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
}

.dark-band-card .dbc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.dark-band-card .dbc-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-light);
}

.dark-band-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.dark-band-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* Dark stats row */
.dark-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.dark-stat {
    text-align: center;
}

.dark-stat-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.dark-stat-lbl {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .dark-stats-row { gap: 24px; }
    .dark-stat-val { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════
   LOTTIEFILES ANIMATIONS — Sizing & Layout
   ═══════════════════════════════════════════ */

/* Hero background lottie */
.hero-lottie-bg {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.hero-lottie-bg lottie-player {
    width: 100%;
    height: auto;
}

/* Hero SVG Network Animation */
.hero-svg-network {
    display: none !important;
}

.hero.hero-particles-active .hero-svg-network {
    display: none;
}

.hero.hero-particles-active .floating-orb {
    opacity: 0.18;
}

@media (max-width: 768px) {
    .hero-particles {
        opacity: 0.28;
    }

    .page-hero-bg .hero-particles {
        opacity: 0.24;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .hero-svg-network {
        display: none !important;
    }

    .network-line,
    .network-node,
    .hero-svg-network svg {
        animation: none !important;
    }
}

.hero-svg-network svg {
    width: 100%;
    height: 100%;
    animation: networkPulse 20s ease-in-out infinite;
}

.network-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: networkDraw 25s ease-in-out infinite;
}

.network-line:nth-child(2) {
    animation-delay: -5s;
}

.network-line:nth-child(3) {
    animation-delay: -10s;
}

.network-line:nth-child(4) {
    animation-delay: -15s;
}

.network-line:nth-child(5) {
    animation-delay: -20s;
}

.network-node {
    animation: networkNodePulse 4s ease-in-out infinite;
}

.network-node:nth-child(6) { animation-delay: -0.5s; }
.network-node:nth-child(7) { animation-delay: -1s; }
.network-node:nth-child(8) { animation-delay: -1.5s; }
.network-node:nth-child(9) { animation-delay: -2s; }
.network-node:nth-child(10) { animation-delay: -2.5s; }
.network-node:nth-child(11) { animation-delay: -3s; }
.network-node:nth-child(12) { animation-delay: -3.5s; }
.network-node:nth-child(13) { animation-delay: -4s; }
.network-node:nth-child(14) { animation-delay: -4.5s; }

@keyframes networkDraw {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
}

@keyframes networkPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.12;
    }
    50% {
        transform: scale(1.05) translate(2px, -2px);
        opacity: 0.15;
    }
}

@keyframes networkNodePulse {
    0%, 100% {
        r: 4;
        opacity: 0.3;
    }
    50% {
        r: 5;
        opacity: 0.5;
    }
}

/* Service explorer panel lottie icons */
.svc-panel-icon-big lottie-player {
    width: 100%;
    height: 100%;
}

/* Service block lottie visual (replaces ring animation) */
.service-lottie-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.service-lottie-visual lottie-player {
    width: 100%;
    height: 100%;
}

/* Hero inline lottie (subpages) */
.hero-inline-lottie {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-inline-lottie lottie-player {
    width: 100%;
    height: 100%;
}

/* Network section accent lottie */
.network-lottie-accent {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    opacity: 0.06;
    pointer-events: none;
}

.network-lottie-accent lottie-player {
    width: 100%;
    height: auto;
}

.network-layout {
    position: relative;
}

/* Dark band card lottie icons */
.dark-band-card lottie-player {
    width: 100%;
    height: 100%;
}

/* Responsive lottie sizing */
@media (max-width: 768px) {
    .hero-lottie-bg {
        width: 80%;
        right: -15%;
        opacity: 0.05;
    }
    
    .hero-inline-lottie {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 160px;
        height: 160px;
        margin: 1rem auto 0;
        opacity: 0.2;
    }
    
    .service-lottie-visual {
        width: 150px;
        height: 150px;
    }
    
    .network-lottie-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-lottie-bg { display: none; }
    .hero-inline-lottie { width: 120px; height: 120px; }
}

/* Lottie error handling - hide all error messages */
lottie-player .error,
#animation-container .error,
.animation .error,
lottie-player[error] .error {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ensure Lottie players are visible and properly sized */
lottie-player {
    display: block !important;
    visibility: visible !important;
    min-width: 1px;
    min-height: 1px;
    position: relative;
}

/* Hide error containers completely */
#animation-container .error,
.animation .error,
.error {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* Fallback styling for failed Lottie animations */
lottie-player:not([loaded]):not([error]) {
    background: rgba(0, 0, 0, 0.01);
    border-radius: 4px;
}

/* Ensure animation containers don't show errors */
#animation-container,
.animation {
    position: relative;
}

#animation-container .error,
.animation .error {
    display: none !important;
}

/* =========================================================
   PREMIUM DESIGN SYSTEM (Relume + shadcn/ui inspired)
   ========================================================= */

.footer-brand-logo .brand-mark {
    width: 34px;
    height: 34px;
}

.footer-brand-logo .brand-name {
    font-size: 0.92rem;
}

.hero,
.page-hero {
    /* background: var(--gradient-hero); */
}

.btn-primary {
    background: linear-gradient(135deg, #1877f2 0%, #22d3ee 100%);
    box-shadow: 0 12px 28px rgba(24, 119, 242, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 16px 36px rgba(24, 119, 242, 0.34);
}

.nav-dropdown-menu,
.svc-card,
.sector-card,
.sales-point-card,
.process-step,
.pricing-card,
.service-card,
.about-card,
.blog-card,
.support-channel-card,
.service-block,
.industry-card-big,
.value-card,
.benefit-card,
.job-card,
.cert-card,
.contact-item,
.feature-item,
.net-stat-card,
.response-message {
    border: 1px solid rgba(24, 119, 242, 0.11);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 20px;
}

.svc-card:hover,
.sector-card:hover,
.sales-point-card:hover,
.pricing-card:hover,
.blog-card:hover,
.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.support-ticket-section {
    padding-top: 0;
}

.support-ticket-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(24, 119, 242, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.support-ticket-copy {
    max-width: 720px;
}

.support-ticket-copy .section-title {
    margin-bottom: 10px;
}

.support-ticket-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ticket-open-shell {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.ticket-open-intro,
.ticket-open-card {
    border: 1px solid rgba(24, 119, 242, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    padding: 28px;
}

.ticket-checklist {
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
}

.ticket-alert {
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.ticket-alert p,
.ticket-alert ul {
    margin-top: 8px;
}

.ticket-alert ul {
    padding-left: 18px;
}

.ticket-alert-success {
    background: #eaf9f0;
    color: #12683d;
}

.ticket-alert-error {
    background: #fff0f0;
    color: #a02828;
}

.ticket-reference span {
    font-weight: 800;
}

.ticket-form .form-group input,
.ticket-form .form-group select,
.ticket-form .form-group textarea {
    width: 100%;
}

.ticket-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .ticket-open-shell {
        grid-template-columns: 1fr;
    }

    .support-ticket-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════
   PREMIUM SUBTLE BACKGROUND EFFECTS
   ═══════════════════════════════════════════ */

/* Soft premium gradient background - animated version */
.hero-soft-premium,
.section-soft-aurora {
    position: relative;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5faff 20%,
        #e9f2fe 45%,
        #d9e9fe 65%,
        #ecf7fe 82%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
    overflow: hidden;
    isolation: isolate;
}

/* Very subtle radial glow overlays */
.hero-soft-premium::before,
.section-soft-aurora::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-soft-premium::after,
.section-soft-aurora::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Ensure content stays above glow effects */
.hero-soft-premium > *,
.section-soft-aurora > *,
.hero-soft-premium .container,
.section-soft-aurora .container,
.section-soft-blue-glow .container {
    position: relative;
    z-index: 1;
}

/* Override page-hero background when using hero-soft-premium - use animated version */
.page-hero.hero-soft-premium {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5faff 20%,
        #e9f2fe 45%,
        #d9e9fe 65%,
        #ecf7fe 82%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
}

.page-hero.hero-soft-premium .page-hero-bg {
    background: transparent;
    z-index: 0;
}

/* CTA sections with animated background */
.cta-section,
.section-soft-blue-glow {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fbfcff 25%,
        #ecf7fe 50%,
        #e9f2fe 75%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
    min-height: 220px;
}

.cta-section > *,
.section-soft-blue-glow > * {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.cta-section::before,
.cta-section::after,
.section-soft-blue-glow::before,
.section-soft-blue-glow::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

.cta-section::before,
.section-soft-blue-glow::before {
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(60px);
    animation: floatGlowOne 8s ease-in-out infinite;
}

.cta-section::after,
.section-soft-blue-glow::after {
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, rgba(147, 197, 253, 0) 72%);
    filter: blur(65px);
    animation: floatGlowTwo 10s ease-in-out infinite;
}

/* Soft blue glow variant for CTA sections - animated version */
.section-soft-blue-glow {
    position: relative;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fbfcff 25%,
        #ecf7fe 50%,
        #e9f2fe 75%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
    overflow: hidden;
    isolation: isolate;
    min-height: 220px;
}

.section-soft-blue-glow > * {
    position: relative;
    z-index: 2;
}

.section-soft-blue-glow::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 999px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
    animation: floatGlowOne 8s ease-in-out infinite;
}

.section-soft-blue-glow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.section-soft-blue-glow > * {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Ensure text readability - no interference */
.hero-soft-premium .hero-content,
.hero-soft-premium .page-hero-content,
.section-soft-aurora .container,
.section-soft-blue-glow .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-soft-premium::before,
    .section-soft-aurora::before {
        width: 500px;
        height: 500px;
        top: -15%;
        right: -15%;
        opacity: 0.4;
    }
    
    .hero-soft-premium::after,
    .section-soft-aurora::after {
        width: 400px;
        height: 400px;
        bottom: -10%;
        left: -12%;
        opacity: 0.35;
    }
    
    .section-soft-blue-glow::before {
        width: 450px;
        height: 450px;
        opacity: 0.35;
    }
    
    .section-soft-blue-glow::after {
        width: 350px;
        height: 350px;
        opacity: 0.3;
    }
}

/* ═══════════════════════════════════════════
   FAST ANIMATED BACKGROUND
   ═══════════════════════════════════════════ */

.fast-animated-bg {
    background: linear-gradient(135deg, #ffffff, #e9f2fe, #d9e9fe, #f5faff, #bedcfe, #ffffff);
    background-size: 300% 300%;
    animation: fastGradientMove 12s ease-in-out infinite;
}

@keyframes fastGradientMove {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ═══════════════════════════════════════════
   PREMIUM ANIMATED BACKGROUND SYSTEM
   ═══════════════════════════════════════════ */

/* Shared animated background shell */
.animated-bg-shell,
.page-animated-hero,
.page-animated-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Keep all real content above glow/effects */
.animated-bg-shell > *,
.page-animated-hero > *,
.page-animated-cta > * {
    position: relative;
    z-index: 2;
}

/* Main hero animated gradient */
.page-animated-hero {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5faff 20%,
        #e9f2fe 45%,
        #d9e9fe 65%,
        #ecf7fe 82%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
}

/* Secondary CTA, slightly softer */
.page-animated-cta {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fbfcff 25%,
        #ecf7fe 50%,
        #e9f2fe 75%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: pageGradientShift 12s ease-in-out infinite;
}

/* Aurora/glow overlays */
.page-animated-hero::before,
.page-animated-cta::before,
.page-animated-hero::after,
.page-animated-cta::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

/* Top-right glow */
.page-animated-hero::before,
.page-animated-cta::before {
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(60px);
    animation: floatGlowOne 8s ease-in-out infinite;
}

/* Bottom-left glow */
.page-animated-hero::after,
.page-animated-cta::after {
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, rgba(147, 197, 253, 0) 72%);
    filter: blur(65px);
    animation: floatGlowTwo 10s ease-in-out infinite;
}

@keyframes pageGradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatGlowOne {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translate3d(-18px, 12px, 0) scale(1.06);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.85;
    }
}

@keyframes floatGlowTwo {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(16px, -14px, 0) scale(1.08);
        opacity: 0.95;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.8;
    }
}

/* Useful helpers if some sections hide the effect */
.page-animated-hero,
.page-animated-cta {
    min-height: 220px;
}

.page-animated-hero.bg-white,
.page-animated-cta.bg-white {
    background-color: transparent !important;
}

/* Optional stronger visibility on larger screens */
@media (min-width: 992px) {
    .page-animated-hero {
        animation-duration: 5s;
    }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
    .page-animated-hero,
    .page-animated-cta,
    .page-animated-hero::before,
    .page-animated-hero::after,
    .page-animated-cta::before,
    .page-animated-cta::after {
        animation: none !important;
    }
}
