/* ======================================
   ZELP - Landing Page Stylesheet
   Dominant Cyan Theme
   ====================================== */

/* ---- CSS Variables ---- */
:root {
    --cyan-50: #e0f7fa;
    --cyan-100: #b2ebf2;
    --cyan-200: #80deea;
    --cyan-300: #4dd0e1;
    --cyan-400: #26c6da;
    --cyan-500: #00bcd4;
    --cyan-600: #00acc1;
    --cyan-700: #0097a7;
    --cyan-800: #00838f;
    --cyan-900: #006064;

    --primary: #00bcd4;
    --primary-dark: #0097a7;
    --primary-light: #4dd0e1;
    --primary-glow: rgba(0, 188, 212, 0.3);

    --accent: #00e5ff;
    --accent-dark: #00b8d4;

    /* Theme Colors - Swapped for Dark Mode */
    --bg-main: #0a111f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    --dark: #0a1628;
    --dark-lighter: #112240;

    --gray-900: #f7fafc;
    /* Inverted: Lightest */
    --gray-800: #edf2f7;
    --gray-700: #e2e8f0;
    --gray-600: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-400: #718096;
    --gray-300: #4a5568;
    --gray-200: #2d3748;
    --gray-100: #1a2332;
    /* Inverted: Darkest */

    --white: #ffffff;
    --black: #050a14;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-cyan: 0 4px 30px rgba(0, 188, 212, 0.2);
    --shadow-cyan-lg: 0 10px 50px rgba(0, 188, 212, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

/* ---- Global Animations ---- */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--bg-main);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

a.btn {
    color: inherit;
    text-decoration: none;
}

a.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.35);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 188, 212, 0.5);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-white:hover {
    background: var(--cyan-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.btn-secondary {
    background: var(--gray-400);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.2);
}

.btn-secondary:hover {
    background: var(--gray-500);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    padding: 14px 32px;
    transition: var(--transition-smooth);
    background: rgba(10, 17, 31, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--radius-full);
    border: 2px solid rgba(0, 188, 212, 0.15);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    top: 10px;
    background: rgba(5, 10, 20, 0.98);
    border-color: rgba(0, 188, 212, 0.6);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 188, 212, 0.2);
    padding: 12px 32px;
}

.navbar.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.05), transparent);
    pointer-events: none;
    border-radius: var(--radius-full);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.02), transparent);
    pointer-events: none;
    border-radius: var(--radius-full);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

.brand-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 12px rgba(0, 188, 212, 0.3));
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.08) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 188, 212, 0.4));
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
}

.brand-text {
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .brand-text {
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0px;
}

.nav-link {
    padding: 8px 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-full);
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(0, 188, 212, 0.12);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--accent);
    background: rgba(0, 188, 212, 0.15);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    margin-left: 12px;
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.25);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--accent);
}

/* Language Switcher */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    margin: 0 5px;
}

.lang-btn {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--accent);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

@media (max-width: 991px) {
    .nav-lang-switcher {
        padding: 15px 0;
        margin: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }
}

/* Ensure mobile menu looks good with the new navbar style */
@media (max-width: 991px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px 16px;
        border-radius: var(--radius-xl);
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: -1px;
        right: -1px;
        background: #060d1a;
        border: 1px solid rgba(0, 188, 212, 0.25);
        border-radius: var(--radius-lg);
        flex-direction: column;
        padding: 16px;
        gap: 2px;
        display: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 188, 212, 0.08);
        text-align: center;
        z-index: 1000;
        max-height: 75vh;
        overflow-y: auto;
        animation: mobileMenuSlideIn 0.3s ease-out;
    }

    @keyframes mobileMenuSlideIn {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu.active,
    .nav-menu.open {
        display: flex;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 14px 16px;
        border-radius: var(--radius-md);
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(0, 188, 212, 0.1);
        color: var(--accent);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Separator lines between items */
    .nav-menu>li+li {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-toggle {
        display: flex;
        position: relative;
        width: 32px;
        height: 24px;
        padding: 0;
    }

    .nav-toggle span {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-toggle span:nth-child(1) {
        top: 4px;
    }

    .nav-toggle span:nth-child(2) {
        top: 11px;
    }

    .nav-toggle span:nth-child(3) {
        top: 18px;
    }

    /* Hamburger to X animation */
    .nav-toggle.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    .nav-cta {
        margin: 10px 0 0 0;
        width: 100%;
        text-align: center;
    }

    /* Navbar brand smaller on mobile */
    .navbar-brand {
        gap: 8px;
        font-size: 18px;
    }

    .brand-logo-img {
        width: 34px;
        height: 34px;
    }
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #050a14 0%, var(--dark) 20%, var(--dark-lighter) 40%, var(--cyan-900) 70%, var(--primary-dark) 100%);
    overflow: hidden;
    padding: 160px 0 120px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 188, 212, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    animation: moveGradient 10s ease-in-out infinite;
}

@keyframes moveGradient {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(20px) scale(1.02);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(0, 188, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 90%, rgba(0, 150, 167, 0.06) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated background orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.hero-orb--1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -100px;
    animation: heroOrbFloat1 12s ease-in-out infinite;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    right: -50px;
    animation: heroOrbFloat2 15s ease-in-out infinite;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 40%;
    left: 50%;
    animation: heroOrbFloat3 18s ease-in-out infinite;
}

@keyframes heroOrbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, 60px) scale(1.1);
    }

    66% {
        transform: translate(-40px, 30px) scale(0.95);
    }
}

@keyframes heroOrbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-60px, -40px) scale(1.15);
    }

    66% {
        transform: translate(30px, -80px) scale(0.9);
    }
}

@keyframes heroOrbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translate(-80px, 40px) scale(1.2);
        opacity: 0.15;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(0, 188, 212, 0.1);
    border: 2px solid rgba(0, 188, 212, 0.4);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: fadeInDown 0.6s ease-out;
    letter-spacing: 0.5px;
}

.hero-badge:hover {
    background: rgba(0, 188, 212, 0.2);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--white) 30%, var(--primary-light) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.hero-stat-avatars {
    display: flex;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--dark);
    margin-right: -8px;
}

.avatar-more {
    background: var(--gray-700);
    font-size: 10px;
}

.hero-rating {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 14px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 520px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
    color: var(--accent);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 380px;
}

/* Hero image frame */
.hp-hero-image-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
}

.hp-hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.4), rgba(0, 229, 255, 0.1), rgba(139, 92, 246, 0.2));
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.hp-hero-image-frame:hover::before {
    opacity: 1;
}

.hero-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 188, 212, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.hp-hero-image-frame:hover .hero-img-main {
    transform: scale(1.02);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -20px;
    left: 15%;
    animation: pulse 4s ease-in-out infinite;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    bottom: 10%;
    right: -10%;
    animation: pulse 4s ease-in-out infinite reverse;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: var(--cyan-300);
    bottom: 0;
    left: 10%;
    animation: pulse 5s ease-in-out infinite 1s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.55;
    }
}

/* Code Window */
.code-window {
    position: relative;
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-cyan-lg);
    z-index: 2;
    width: 100%;
    margin-top: 40px;
}

.window-bar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.window-content {
    padding: 20px;
}

.window-content code {
    display: block;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.window-content .line {
    display: block;
}

.keyword {
    color: #c792ea;
}

.var {
    color: #82aaff;
}

.prop {
    color: var(--accent);
}

.str {
    color: #c3e88d;
}

.num {
    color: #f78c6c;
}

.bool {
    color: #ff5370;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---- Sections ---- */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.section-header:hover .section-badge {
    background: rgba(0, 188, 212, 0.25);
    border-color: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 52px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    background: linear-gradient(135deg, var(--gray-900), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ---- Services ---- */
.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(0, 188, 212, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.3);
    border-color: rgba(0, 188, 212, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 229, 255, 0.15));
    border: 2px solid rgba(0, 188, 212, 0.4);
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    font-size: 32px;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    color: var(--gray-400);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ---- About Section ---- */
.about-section {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content>p {
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--primary);
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: linear-gradient(135deg, var(--cyan-50), var(--white));
    border: 1px solid var(--cyan-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan);
}

.stat-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 8px;
    font-weight: 500;
}

/* ---- Portfolio ---- */
.portfolio-section {
    background: #f8fdff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.2);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.12) rotate(1deg);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 96, 100, 0.95), rgba(0, 188, 212, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    align-self: flex-start;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ---- Testimonials ---- */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.author-info small {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---- FAQ ---- */
.faq-section {
    background: transparent;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--cyan-200);
    box-shadow: var(--shadow-cyan);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.8;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--cyan-900) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---- Contact Section ---- */
.contact-section {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(4px);
    border-color: rgba(0, 188, 212, 0.3);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-400);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--accent);
    font-size: 18px;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--gray-900);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ---- Footer ---- */
.footer {
    background: linear-gradient(180deg, #060d1a 0%, #0a1628 40%, #0d1b35 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.07;
    pointer-events: none;
}

.footer-glow--left {
    background: var(--primary);
    bottom: -200px;
    left: -150px;
}

.footer-glow--right {
    background: var(--accent);
    top: -100px;
    right: -150px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand .navbar-brand {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand .brand-text {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand>p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 8px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 10px;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(0, 188, 212, 0.2);
    border-color: rgba(0, 188, 212, 0.3);
    transform: scale(1.05);
}

.footer-contact-item span {
    padding-top: 7px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.2);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-cyan);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan-lg);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hp-social-proof {
        justify-content: center;
    }

    .hp-trust-badges {
        justify-content: center;
    }

    .hero-stats-mini {
        justify-content: center;
    }

    .hero-visual {
        height: 380px;
        margin: 0 auto;
        max-width: 420px;
    }

    .hero-illustration {
        width: 360px;
        height: 300px;
    }

    .hp-float-players {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-illustration {
        width: 280px;
        height: 240px;
    }

    .hp-float-perf,
    .hp-float-uptime,
    .hp-float-players {
        display: none;
    }

    .hp-trust-badges {
        gap: 10px;
    }

    .hp-trust-item {
        padding: 6px 12px;
        font-size: 11px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ========== ENHANCED SECTIONS ========== */

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 18px;
    animation: float 4s ease-in-out infinite;
}

.stat-card:hover .stat-icon {
    color: var(--accent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number:hover {
    animation: countUp 0.6s ease-out;
}

@keyframes countUp {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-label {
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--dark), var(--dark-lighter));
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    padding: 48px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-item:hover {
    background: rgba(0, 188, 212, 0.08);
    border-color: rgba(0, 188, 212, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(0, 188, 212, 0.25);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 45px rgba(0, 188, 212, 0.35);
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.feature-item:hover h4 {
    color: var(--accent);
}

.feature-item p {
    color: var(--gray-400);
    line-height: 1.75;
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-lighter) 100%);
    border-radius: var(--radius-xl);
    padding: 90px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 188, 212, 0.4);
    box-shadow: 0 15px 60px rgba(0, 188, 212, 0.2);
    transition: var(--transition-smooth);
}

.cta-card:hover {
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 20px 80px rgba(0, 188, 212, 0.3);
    transform: translateY(-4px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    margin-bottom: 28px;
    color: var(--white);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-card p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsiveness */
@media (max-width: 768px) {
    .cta-card {
        padding: 60px 40px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 350px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ---- Page Header Section ---- */
.page-header-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-lighter) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.page-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.15), transparent 70%);
}

.page-header-section h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to bottom, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Announcement Bar */
@keyframes announcement-slide-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.announcement-bar {
    background: linear-gradient(90deg, #004a56 0%, #00bcd4 30%, #00e5ff 50%, #0097a7 70%, #004a56 100%);
    background-size: 300% auto;
    animation: shimmer 6s infinite linear, announcement-slide-in 0.4s ease;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    position: relative;
    z-index: 100;
    border-bottom: 2px solid #ffeb3b;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    max-height: 55px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.announcement-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 60px,
            rgba(255, 255, 255, 0.03) 60px,
            rgba(255, 255, 255, 0.03) 61px);
    pointer-events: none;
}

.announcement-bar.hidden {
    max-height: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 50px 10px 16px;
    position: relative;
    min-height: 40px;
    width: 100%;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: calc(100% - 10px);
    overflow: visible;
    width: 100%;
}

.announcement-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    border: 2px solid #fff;
    padding: 3px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
    white-space: nowrap;
    animation: badge-pulse 2s infinite;
    color: #d90429;
    box-shadow: 0 3px 12px rgba(255, 235, 59, 0.5);
}

.announcement-badge i {
    color: #ffe000;
    font-size: 9px;
}

.announcement-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.announcement-text {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
}

/* Animate if text overflows its wrapper */
.announcement-marquee-wrapper.is-overflow .announcement-text {
    animation: marquee-scroll 18s linear infinite;
}

.announcement-link {
    color: #ffeb3b;
    text-decoration: none;
    border-bottom: 2px solid #ffeb3b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 900;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

.announcement-link:hover {
    background: rgba(255, 235, 59, 0.15);
    gap: 8px;
}

.announcement-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
    padding: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.15);
}

@media (max-width: 768px) {
    .announcement-inner {
        padding: 12px 44px 12px 12px;
    }

    .announcement-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .announcement-bar {
        font-size: 14px;
        max-height: 80px;
    }
}

/* =============================================
   LOADING SCREEN
   ============================================= */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--bg-primary, #0a111f);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Safety net: auto-fade after 4s if JS fails to hide it */
    animation: loaderAutoHide 0.01s 4s forwards;
}

@keyframes loaderAutoHide {
    to {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.loader-logo .brand-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

.loader-bar-track {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00bcd4, #00e5ff);
    border-radius: 99px;
    transition: width 0.15s ease;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.6);
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.97);
    }
}

/* =============================================
   CURSOR GLOW
   ============================================= */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: opacity 0.3s;
}

.cursor-glow.cursor-hover {
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
}

/* =============================================
   TYPING CURSOR
   ============================================= */
#typingText::after {
    content: '|';
    display: inline-block;
    color: var(--accent);
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* =============================================
   CHAR COUNTER
   ============================================= */
.char-counter {
    display: block;
    text-align: right;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    margin-top: 4px;
}

/* =============================================
   IMPROVED SERVICE CARDS
   ============================================= */
.service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 188, 212, 0.15) !important;
}

/* AOS safety fallback — after 2s force all animated elements visible */
@keyframes aosForceVisible {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Plan card CSS-native entrance — no JS dependency */
@keyframes planCardIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card-enter {
    animation: planCardIn 0.6s ease-out both;
}

.service-card:not(.plan-card-enter),
.service-card-link,
.stat-card,
.feature-item,
.section-header,
.cta-card,
.contact-card,
.timeline-item {
    animation: aosForceVisible 0.01s 2s forwards;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-timeline {
    position: relative;
    padding-left: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.2);
}

.timeline-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* =============================================
   CONTACT — floating labels
   ============================================= */
.contact-form .form-group {
    position: relative;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    width: 100%;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s !important;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent) !important;
    background: rgba(0, 188, 212, 0.07) !important;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* contact cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
    transition: border-color 0.3s, background 0.3s;
}

.contact-card:hover {
    border-color: rgba(0, 188, 212, 0.4);
    background: rgba(0, 188, 212, 0.06);
}

.contact-icon {
    font-size: 1.4rem;
    color: var(--accent);
    width: 48px;
    height: 48px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* =============================================
   PLANS — category nav
   ============================================= */
.plans-category-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 48px;
    padding: 0 16px;
}

.plans-category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
    text-decoration: none;
}

.plans-category-nav a:hover,
.plans-category-nav a.active {
    background: rgba(0, 188, 212, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

/* =============================================
   PRIVATE NODE — specs table
   ============================================= */
.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 188, 212, 0.12);
    border: 1px solid rgba(0, 188, 212, 0.25);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    margin: 3px;
}

/* =============================================
   PAGE TRANSITION OVERLAY already in JS
   SCROLL PROGRESS BAR already in JS
   ============================================= */

/* =============================================
   HOSTING SERVICES PAGE (hosting.php)
   ============================================= */
.hosting-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 1000px) {
    .hosting-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hosting-cat-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.hosting-cat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.hosting-cat-card:hover:not(.hosting-cat-coming) {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 188, 212, 0.12);
    border-color: rgba(0, 188, 212, 0.25);
}

.hosting-cat-coming {
    opacity: 0.75;
}

/* Image section */
.hcc-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.hcc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.hosting-cat-card:hover .hcc-img {
    transform: scale(1.06);
}

.hcc-img-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Badges on image */
.hcc-top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
}

.hcc-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.hcc-rating-badge span {
    opacity: 0.6;
    font-size: 10px;
}

.hcc-setup-badge {
    position: absolute;
    bottom: 10px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.hcc-tier-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

/* Card body */
.hcc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.hcc-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.hcc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 16px;
    line-height: 1.5;
}

/* CPU row */
.hcc-cpu-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 14px;
}

.hcc-cpu-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    flex-shrink: 0;
}

.hcc-cpu-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.hcc-cpu-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 2px;
}

.hcc-cpu-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hcc-cpu-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    flex-shrink: 0;
}

.hcc-cpu-badge span {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* Features list */
.hcc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hcc-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.hcc-features li i {
    color: #22c55e;
    font-size: 11px;
    flex-shrink: 0;
}

.hcc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 12px 0;
}

/* Price */
.hcc-price-row {
    margin-bottom: 14px;
}

.hcc-price-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.hcc-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.hcc-price-period {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 2px;
}

.hcc-price-old {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-top: 2px;
}

/* CTA button */
.hcc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--accent);
    color: #000;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: auto;
}

.hcc-btn:hover {
    background: #00e5ff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
}

.hcc-btn-disabled {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.35) !important;
    cursor: not-allowed;
}

/* =============================================
   HOSTING DETAIL PAGE (hosting-detail.php)
   ============================================= */
.hd-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

@media (min-width: 1400px) {
    .hd-plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 540px) {
    .hd-plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .hd-plans-grid {
        grid-template-columns: 1fr;
    }
}

.hd-plan-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hd-plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--tc, rgba(0, 188, 212, 0.35));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px color-mix(in srgb, var(--tc, #00bcd4) 20%, transparent);
}

.hd-plan-featured {
    border-color: var(--tc, rgba(0, 188, 212, 0.4)) !important;
    box-shadow: 0 0 0 1px var(--tc, #00bcd4), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Featured ribbon */
.hd-featured-ribbon {
    position: absolute;
    top: 12px;
    right: -1px;
    background: var(--tc, #00bcd4);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px 4px 12px;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card header */
.hd-card-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid;
}

.hd-plan-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    padding-right: 48px;
    /* space for ribbon */
}

/* Status badge */
.hd-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Price area */
.hd-price-area {
    padding: 14px 18px 10px;
}

.hd-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hd-price span {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}

.hd-price-old {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-top: 3px;
}

/* Spec mini badges row */
.hd-spec-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 4px 18px 14px;
}

.hd-spec-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

/* Spec checklist */
.hd-spec-list {
    list-style: none;
    padding: 14px 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.hd-spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

/* Plan CTA button */
.hd-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--tc, var(--accent));
    color: #000;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hd-plan-btn:hover {
    filter: brightness(1.15);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--tc, #00bcd4) 40%, transparent);
}

.hd-plan-btn-disabled {
    background: rgba(255, 255, 255, 0.07) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed;
    filter: none !important;
    box-shadow: none !important;
}

/* Out-of-stock card state */
.hd-plan-out-of-stock {
    opacity: 0.55;
    filter: grayscale(0.3);
    transition: opacity 0.3s, filter 0.3s;
}

.hd-plan-out-of-stock:hover {
    opacity: 0.75;
    filter: grayscale(0.1);
}

/* Stock badges on hosting category cards */
.hcc-stock-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    z-index: 3;
}

.hcc-stock-available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hcc-stock-empty {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* =============================================
   PRIVATE NODE PAGE
   ============================================= */

/* Floating badges on hero image */
.pn-float-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(10, 17, 31, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    animation: pnFloatIn 0.6s ease both;
}

@keyframes pnFloatIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why cards */
.pn-why-card {
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    text-align: center;
}

.pn-why-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-4px);
    background: rgba(239, 68, 68, 0.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pn-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.pn-why-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.pn-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Plans grid */
.pn-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .pn-plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Plan card */
.pn-plan-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.pn-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.pn-plan-featured {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.pn-plan-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
}

/* Ribbon */
.pn-ribbon {
    position: absolute;
    top: 14px;
    right: -28px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 36px;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Plan header */
.pn-plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 16px;
}

.pn-plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pn-plan-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.pn-plan-tier {
    font-size: 11px;
    font-weight: 600;
}

/* Price */
.pn-plan-price-area {
    padding: 0 20px 16px;
}

.pn-plan-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.pn-plan-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

/* Spec bars */
.pn-spec-bars {
    padding: 0 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pn-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pn-spec-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pn-spec-label i {
    font-size: 11px;
}

.pn-spec-value {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.pn-spec-bar {
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.pn-spec-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
}

/* Feature checklist */
.pn-plan-features {
    list-style: none;
    padding: 16px 20px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pn-plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.pn-plan-features li i {
    font-size: 10px;
    flex-shrink: 0;
}

/* CTA button */
.pn-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pn-plan-btn:hover {
    filter: brightness(1.15);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.pn-plan-btn-disabled {
    background: rgba(255, 255, 255, 0.07) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed;
    filter: none !important;
    box-shadow: none !important;
}

/* Comparison table */
.pn-compare-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pn-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.pn-compare-table th,
.pn-compare-table td {
    padding: 14px 20px;
    font-size: 13px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pn-compare-table thead th {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pn-compare-table td {
    color: rgba(255, 255, 255, 0.5);
}

.pn-compare-highlight {
    background: rgba(239, 68, 68, 0.04) !important;
}

.pn-compare-table thead th.pn-compare-highlight {
    color: #ef4444;
    border-left: 1px solid rgba(239, 68, 68, 0.15);
}

.pn-compare-table td.pn-compare-highlight {
    border-left: 1px solid rgba(239, 68, 68, 0.1);
}

@media (max-width: 640px) {

    .pn-compare-table th,
    .pn-compare-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* ========================================================================
   HOMEPAGE PREMIUM STYLES (hp-*)
   ======================================================================== */

/* -- Grid background overlay -- */
.hp-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 188, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

/* -- Hero badge pulse dot -- */
.hp-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: hpPulse 2s ease-in-out infinite;
    margin-right: 2px;
}

@keyframes hpPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

/* -- Glowing primary button -- */
.hp-btn-glow {
    position: relative;
    overflow: hidden;
}

.hp-btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: inherit;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.hp-btn-glow:hover::after {
    opacity: 0.7;
}

/* -- Social proof -- */
.hp-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hp-avatars {
    display: flex;
}

.hp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.1);
    border: 2px solid rgba(0, 188, 212, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: -10px;
    animation: hpAvatarIn 0.5s ease-out both;
    transition: transform 0.3s ease;
}

.hp-avatar:first-child {
    margin-left: 0;
}

.hp-avatar:hover {
    transform: scale(1.15) translateY(-3px);
    z-index: 2;
}

@keyframes hpAvatarIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hp-proof-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
}

.hp-proof-text .hp-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-rating-num {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0;
    font-weight: 600;
}

.hp-proof-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.hp-proof-text strong {
    color: rgba(255, 255, 255, 0.85);
}

/* -- Trust badges -- */
.hp-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hp-trust-item:hover {
    border-color: rgba(0, 188, 212, 0.3);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 188, 212, 0.05);
}

.hp-trust-item i {
    color: var(--primary);
    font-size: 13px;
}

/* -- Outline button glow -- */
.hp-btn-outline-glow {
    position: relative;
    transition: all 0.3s ease;
}

.hp-btn-outline-glow:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

/* -- Floating cards on hero image -- */
.hp-float-card {
    position: absolute;
    z-index: 10;
    background: rgba(10, 17, 31, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 16px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    animation: hpFloatIn 0.8s ease-out both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-float-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 188, 212, 0.1);
}

.hp-float-top-left {
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 0.3s;
}

.hp-float-bottom-right {
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation-delay: 0.5s;
}

.hp-float-perf {
    top: 40%;
    right: -30px;
    transform: translateY(-50%);
    width: 150px;
    animation-delay: 0.7s;
}

.hp-spec-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.hp-spec-line+.hp-spec-line {
    margin-top: 5px;
}

.hp-spec-line i {
    font-size: 11px;
    width: 14px;
    text-align: center;
    color: var(--primary);
}

.hp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: hpPulse 2s ease-in-out infinite;
}

@keyframes hpFloatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-float-perf {
    animation-name: hpFloatInRight;
}

@keyframes hpFloatInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Uptime floating card */
.hp-float-uptime {
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: 0.9s;
}

.hp-uptime-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 8px;
    color: #22c55e;
    font-size: 13px;
}

.hp-uptime-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-uptime-val {
    font-size: 16px;
    font-weight: 800;
    color: #22c55e;
    font-family: var(--font-display);
}

/* Players floating card */
.hp-float-players {
    top: -15px;
    right: -15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: 1.1s;
}

.hp-float-players i {
    font-size: 16px;
}

.hp-players-count {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
}

.hp-players-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* Performance mini bar */
.hp-perf-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.hp-perf-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 4px;
}

.hp-perf-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: linear-gradient(90deg, #22c55e, #00bcd4);
    animation: hpPerfGrow 2s 1s ease-out forwards;
}

@keyframes hpPerfGrow {
    to {
        width: 99%;
    }
}

.hp-perf-value {
    font-size: 18px;
    font-weight: 800;
    color: #22c55e;
    display: block;
    text-align: right;
}

/* ========== TECH STRIP ========== */
.hp-tech-strip {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 188, 212, 0.08);
    border-bottom: 1px solid rgba(0, 188, 212, 0.08);
    background: rgba(0, 188, 212, 0.02);
    overflow: hidden;
}

.hp-tech-scroll {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hp-tech-track {
    display: flex;
    gap: 48px;
    animation: hpTechScroll 30s linear infinite;
    width: max-content;
}

@keyframes hpTechScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hp-tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hp-tech-item i {
    color: rgba(0, 188, 212, 0.5);
    font-size: 14px;
}

/* ========== STATS GLASSMORPHISM ========== */
.hp-stats-section {
    padding: 60px 0 80px;
}

.hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hp-stat-card {
    position: relative;
    text-align: center;
    padding: 32px 20px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.hp-stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--stat-color, rgba(0, 188, 212, 0.3));
}

.hp-stat-icon {
    font-size: 24px;
    color: var(--stat-color, #00bcd4);
    margin-bottom: 12px;
    opacity: 0.8;
}

.hp-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: inline;
}

.hp-stat-suffix {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--stat-color, #00bcd4);
    display: inline;
}

.hp-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
    font-weight: 500;
}

.hp-stat-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--stat-color, #00bcd4);
    opacity: 0.06;
    filter: blur(30px);
    pointer-events: none;
}

/* ========== SECTION BADGE ========== */
.hp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 40px;
    background: rgba(0, 188, 212, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.2);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hp-section-badge i {
    font-size: 10px;
}

/* ========== CATEGORIES GRID ========== */
.hp-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.hp-cat-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none !important;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hp-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cat-color, #00bcd4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hp-cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--cat-color, rgba(0, 188, 212, 0.3));
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hp-cat-card:hover::before {
    opacity: 1;
}

.hp-cat-card-special {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(245, 158, 11, 0.02));
    border-color: rgba(239, 68, 68, 0.12);
}

.hp-cat-card-special:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.hp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid;
    width: fit-content;
    margin-bottom: 16px;
}

.hp-cat-badge i {
    font-size: 9px;
}

.hp-cat-icon-area {
    margin-bottom: 16px;
}

.hp-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid;
}

.hp-cat-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hp-cat-processor {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-cat-processor i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.hp-cat-specs {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.hp-cat-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hp-cat-spec-val {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.hp-cat-spec-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hp-cat-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cat-color, #00bcd4);
    font-size: 13px;
    font-weight: 700;
    margin-top: auto;
    transition: gap 0.3s;
}

.hp-cat-card:hover .hp-cat-cta {
    gap: 14px;
}

.hp-cat-cta i {
    font-size: 11px;
    transition: transform 0.3s;
}

.hp-cat-card:hover .hp-cat-cta i {
    transform: translateX(4px);
}

/* ========== FEATURES GRID ========== */
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hp-feature-card {
    padding: 28px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.hp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.hp-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.hp-feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

.hp-feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hp-feature-card:hover .hp-feature-line {
    opacity: 1;
}

/* ========== STEPS ========== */
.hp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hp-step {
    text-align: center;
    position: relative;
    padding: 32px 20px;
}

.hp-step-number {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 188, 212, 0.06);
    font-family: var(--font-display);
    line-height: 1;
}

.hp-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.hp-step:hover .hp-step-icon {
    transform: scale(1.1);
}

.hp-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.hp-step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

.hp-step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    opacity: 0.5;
}

/* ========== TESTIMONIALS ========== */
.hp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hp-testimonial-card {
    padding: 28px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.2);
}

.hp-testi-quote {
    color: rgba(0, 188, 212, 0.2);
    font-size: 24px;
}

.hp-testi-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 2px;
}

.hp-testi-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.hp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    border: 2px solid;
    flex-shrink: 0;
}

.hp-testi-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.hp-testi-role {
    font-size: 11px;
    color: rgba(0, 188, 212, 0.7);
    margin: 2px 0 0;
}

/* ========== FAQ ========== */
.hp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-faq-item {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: border-color 0.3s;
}

.hp-faq-item:hover,
.hp-faq-open {
    border-color: rgba(0, 188, 212, 0.2);
}

.hp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.hp-faq-question i {
    color: rgba(0, 188, 212, 0.5);
    font-size: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.hp-faq-open .hp-faq-question i {
    transform: rotate(180deg);
}

.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.hp-faq-open .hp-faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.hp-faq-answer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin: 0;
}

/* ========== CTA CARD ========== */
.hp-cta-card {
    padding: 56px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.08), rgba(0, 229, 255, 0.03));
    border: 1px solid rgba(0, 188, 212, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hp-cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hp-cta-orb-1 {
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(0, 188, 212, 0.06);
    filter: blur(40px);
}

.hp-cta-orb-2 {
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: rgba(0, 229, 255, 0.04);
    filter: blur(50px);
}

.hp-cta-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(0, 188, 212, 0.03);
    filter: blur(60px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-features-grid {
        grid-template-columns: 1fr;
    }

    .hp-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hp-categories-grid {
        grid-template-columns: 1fr;
    }

    .hp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hp-float-perf {
        display: none;
    }

    .hp-float-uptime {
        display: none;
    }

    .hp-float-players {
        display: none;
    }

    .hp-step {
        padding: 24px 16px;
    }

    .hp-cta-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hp-stat-card {
        padding: 20px 14px;
    }

    .hp-stat-number {
        font-size: 1.8rem;
    }
}

/* =============================================
   CALCULATOR PAGE (.calc-*)
   ============================================= */
.calc-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.calc-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.calc-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.calc-tab:hover {
    border-color: rgba(0, 188, 212, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.calc-tab-active {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15), rgba(0, 188, 212, 0.05));
    border-color: rgba(0, 188, 212, 0.5);
    color: #00bcd4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.1);
}

.calc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.calc-processor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 188, 212, 0.08);
    border-radius: 50px;
    font-size: 12px;
    color: #00bcd4;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 188, 212, 0.15);
}

.calc-processor i {
    font-size: 10px;
}

.calc-slider-group {
    margin-bottom: 28px;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-slider-header label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.calc-slider-value {
    font-size: 18px;
    font-weight: 700;
    color: #00bcd4;
    font-family: 'Space Grotesk', monospace;
}

.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00bcd4;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
    border: 3px solid rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00bcd4;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
    border: 3px solid rgba(0, 0, 0, 0.3);
}

.calc-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

.calc-disk-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    margin-top: 8px;
}

.calc-disk-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    background: linear-gradient(90deg, #22c55e, #00bcd4);
}

.calc-result {
    margin-top: 32px;
    padding: 28px;
    border-radius: 16px;
    background: rgba(0, 188, 212, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.12);
    text-align: center;
}

.calc-result-price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 4px;
}

.calc-result-price small {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.calc-summary {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.calc-summary span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.calc-summary i {
    color: #00bcd4;
    font-size: 11px;
}

.calc-includes {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.calc-includes span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.calc-includes i {
    color: #22c55e;
    font-size: 12px;
}

@media (max-width: 768px) {
    .calc-card {
        padding: 24px 18px;
    }

    .calc-tabs {
        gap: 6px;
    }

    .calc-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* =============================================
   KNOWLEDGE BASE (.kb-*)
   ============================================= */
.kb-search-form {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.kb-search-form i.fa-search {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.kb-search-input {
    width: 100%;
    padding: 14px 50px 14px 46px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.kb-search-input:focus {
    border-color: rgba(0, 188, 212, 0.4);
}

.kb-search-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.kb-search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.2s;
}

.kb-search-clear:hover {
    color: #ef4444;
}

.kb-category-section {
    margin-bottom: 36px;
}

.kb-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.kb-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.kb-category-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.kb-category-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
}

.kb-articles-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kb-article-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
    text-decoration: none;
    color: #fff;
}

.kb-article-item:hover {
    background: rgba(0, 188, 212, 0.04);
    border-color: rgba(0, 188, 212, 0.12);
    transform: translateX(4px);
}

.kb-article-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.kb-article-info {
    flex: 1;
}

.kb-article-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.kb-article-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Article view */
.kb-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.kb-back:hover {
    color: #00bcd4;
}

.kb-article-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.kb-article-content {
    padding: 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.kb-article-content h2,
.kb-article-content h3 {
    color: #fff;
    margin: 28px 0 12px;
    font-weight: 600;
}

.kb-article-content h2 {
    font-size: 1.3rem;
}

.kb-article-content h3 {
    font-size: 1.1rem;
}

.kb-article-content p {
    margin-bottom: 16px;
}

.kb-article-content ul,
.kb-article-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.kb-article-content li {
    margin-bottom: 8px;
}

.kb-article-content code {
    background: rgba(0, 188, 212, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: #00bcd4;
    font-family: 'Space Grotesk', monospace;
}

.kb-article-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 16px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.kb-article-content pre code {
    background: none;
    padding: 0;
    color: #e2e8f0;
}

.kb-article-content a {
    color: #00bcd4;
    text-decoration: underline;
}

.kb-article-content a:hover {
    color: #4dd0e1;
}

.kb-article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 16px 0;
}

.kb-article-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(0, 188, 212, 0.04);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.kb-article-content .inline-code {
    background: rgba(0, 188, 212, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: #00bcd4;
    font-family: 'JetBrains Mono', 'Space Grotesk', monospace;
}

.kb-article-content strong {
    color: #fff;
    font-weight: 600;
}

.kb-article-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}

.kb-article-nav {
    margin-top: 48px;
}

.kb-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.kb-related-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: all 0.25s;
}

.kb-related-card:hover {
    background: rgba(0, 188, 212, 0.04);
    border-color: rgba(0, 188, 212, 0.15);
    color: #fff;
}

/* Live Stats Badge */
.hp-stat-live {
    position: relative;
}

.hp-stat-live-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #22c55e;
}

.hp-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

@media (max-width: 768px) {
    .kb-article-content {
        padding: 24px 18px;
    }

    .kb-related-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ABOUT PAGE — PREMIUM REDESIGN
   ============================================= */

/* Page Header Enhancement */
.about-hero {
    padding: 180px 0 100px;
    position: relative;
}

.about-hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 13px;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.about-breadcrumb a:hover {
    color: var(--accent);
}

.about-breadcrumb .fa-chevron-right {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
}

.about-breadcrumb span {
    color: var(--accent);
    font-weight: 600;
}

/* Mission & Vision Cards */
.about-mv-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-mv-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.about-mv-card:hover {
    background: rgba(0, 188, 212, 0.05);
    border-color: rgba(0, 188, 212, 0.15);
    transform: translateX(6px);
}

.about-mv-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--mv-color) 12%, transparent);
    color: var(--mv-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.about-mv-card:hover .about-mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-mv-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.about-mv-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* Visual / Performance Card */
.about-visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.about-visual-glow {
    position: absolute;
    top: -40%;
    right: -40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-visual-content {
    position: relative;
    z-index: 2;
}

.about-visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.about-visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.about-visual-title {
    margin-left: 8px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.about-visual-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-metric-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-metric-label {
    flex-shrink: 0;
    width: 150px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-metric-label i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
}

.about-metric-bar {
    flex: 1;
    height: 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.about-metric-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--bar-color), color-mix(in srgb, var(--bar-color) 60%, white));
    box-shadow: 0 0 12px color-mix(in srgb, var(--bar-color) 40%, transparent);
    animation: aboutBarFill 1.5s ease-out both;
}

@keyframes aboutBarFill {
    from {
        width: 0 !important;
    }
}

.about-metric-val {
    flex-shrink: 0;
    width: 60px;
    text-align: right;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

/* Timeline V2 — Horizontal */
.about-timeline-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.about-tl-item {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.about-tl-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: -10px;
    letter-spacing: -2px;
}

.about-tl-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--tl-color) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--tl-color) 25%, transparent);
    color: var(--tl-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.about-tl-item:hover .about-tl-icon {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--tl-color) 25%, transparent);
}

.about-tl-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.about-tl-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 220px;
    margin: 0 auto;
}

.about-tl-connector {
    position: absolute;
    top: 72px;
    right: -10%;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--tl-color), rgba(255, 255, 255, 0.1));
    z-index: 1;
}

/* Infrastructure Grid */
.about-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-infra-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-infra-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--infra-color) 8%, transparent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-infra-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--infra-color) 30%, transparent);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--infra-color) 15%, transparent);
}

.about-infra-card:hover::before {
    opacity: 1;
}

.about-infra-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--infra-color) 12%, transparent);
    color: var(--infra-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.about-infra-card:hover .about-infra-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--infra-color) 25%, transparent);
}

.about-infra-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.about-infra-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

.about-infra-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--infra-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-infra-card:hover .about-infra-line {
    opacity: 1;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-value-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--val-color) 6%, transparent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--val-color) 25%, transparent);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--val-color) 12%, transparent);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    z-index: 1;
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--val-color) 12%, transparent);
    color: var(--val-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--val-color) 25%, transparent);
}

.about-value-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.about-value-card:hover h4 {
    color: var(--val-color);
}

.about-value-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-timeline-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-tl-connector {
        display: none;
    }

    .about-infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 70px;
    }

    .about-timeline-v2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-infra-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-metric-label {
        width: 110px;
        font-size: 12px;
    }

    .about-metric-val {
        width: 50px;
        font-size: 12px;
    }

    .about-mv-card {
        padding: 18px 16px;
    }
}

/* =============================================
   SUPPORTED GAMES GRID — Clean Minimal
   ============================================= */
.hp-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hp-game-card {
    position: relative;
    padding: 36px 20px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: default;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp-game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--game-color) 8%, transparent) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.hp-game-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--game-color) 40%, transparent);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--game-color) 20%, transparent),
        0 16px 48px color-mix(in srgb, var(--game-color) 12%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--game-color) 15%, transparent);
}

.hp-game-card:hover::before {
    opacity: 1;
}

.hp-game-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-game-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    transition: var(--transition-smooth);
}

.hp-game-card:hover .hp-game-logo {
    transform: scale(1.08);
    background: color-mix(in srgb, var(--game-color) 10%, transparent);
    border-color: color-mix(in srgb, var(--game-color) 25%, transparent);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--game-color) 20%, transparent);
}

.hp-game-card:hover .hp-game-logo img {
    filter: drop-shadow(0 3px 8px color-mix(in srgb, var(--game-color) 35%, transparent));
}

/* "Dan Banyak Lagi!" card */
.hp-game-logo-more {
    background: rgba(0, 188, 212, 0.08);
    border-color: rgba(0, 188, 212, 0.15);
    font-size: 1.5rem;
    color: var(--accent);
}

.hp-game-card-more:hover .hp-game-logo-more {
    background: rgba(0, 188, 212, 0.15);
}

.hp-game-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    margin: 0;
}

.hp-game-card:hover .hp-game-name {
    color: var(--game-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .hp-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hp-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hp-game-card {
        padding: 28px 16px 22px;
    }

    .hp-game-logo {
        width: 52px;
        height: 52px;
        padding: 8px;
    }

    .hp-game-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .hp-games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ========== MOBILE RESPONSIVE FIXES ========== */

/* Prevent horizontal scroll globally */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Hero section - clip all overflowing decorative elements */
.hero {
    overflow: hidden;
}

/* Ensure container never exceeds viewport */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 40px);
        letter-spacing: -1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 14px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
        gap: 6px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-buttons .btn {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .hero-buttons .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hp-social-proof {
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .hp-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Hide hero decorative floating elements on mobile */
    .hero-visual {
        display: none;
    }

    /* Reduce hero orb sizes to prevent overflow */
    .hero-orb--1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -80px;
    }

    .hero-orb--2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        right: -30px;
    }

    .hero-orb--3 {
        width: 150px;
        height: 150px;
    }

    /* Announcement bar mobile */
    .announcement-bar .announcement-inner {
        padding: 0 12px;
    }

    .announcement-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* Navbar mobile - prevent overflow */
    .navbar {
        width: calc(100% - 16px);
        padding: 10px 16px;
    }

    .navbar-brand .brand-text {
        font-size: 16px;
    }

    .brand-logo-img {
        width: 32px;
        height: 32px;
    }

    /* Section titles on mobile */
    .section-title {
        font-size: clamp(22px, 5.5vw, 32px);
    }

    /* Steps grid on mobile */
    .hp-steps-grid {
        grid-template-columns: 1fr;
    }

    .hp-step-connector {
        display: none;
    }

    /* Features grid on mobile */
    .hp-features-grid {
        grid-template-columns: 1fr;
    }

    /* Categories grid on mobile */
    .hp-categories-grid {
        grid-template-columns: 1fr;
    }

    /* Stats grid on mobile */
    .hp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Testimonials on mobile */
    .hp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ on mobile */
    .hp-faq-question {
        font-size: 14px;
        padding: 16px;
    }
}

@media (max-width: 420px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(24px, 6.5vw, 32px);
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .hp-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .hp-trust-item {
        padding: 6px 10px;
        font-size: 10px;
    }

    .hp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hp-stat-card {
        padding: 20px 14px;
    }

    .hp-stat-number {
        font-size: 1.8rem;
    }

    .navbar {
        width: calc(100% - 12px);
        padding: 8px 12px;
    }
}

/* Floating glow orbs - prevent overflow on mobile */
@media (max-width: 768px) {
    .floating-glow {
        display: none;
    }
}