/* =====================================================
   SECTION 1: GLOBAL RESET & BASE (FIXED & STABLE)
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
}

.page-wrapper {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1 0 auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 16px;
}

section {
    padding: 70px 0;
}

h1, h2, h3 {
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

h2 { line-height: 1.2; }
p { margin: 0 0 16px; line-height: 1.65; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

@media (min-width: 1024px) {
    body { scrollbar-gutter: stable; }
}

/* =====================================================
   SECTION 2: TOPBAR (NON-STICKY)
===================================================== */

.topbar {
    background: linear-gradient(90deg, #0b2a63, #020617);
    font-size: 14px;
    color: #e5e7eb;
    overflow: hidden;
}

.topbar-flex {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.phone-btn {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #020617;
    box-shadow: 0 0 16px rgba(56,189,248,0.55);
}

.phone-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 26px rgba(56,189,248,0.85);
}

.client-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #020617;
    box-shadow: 0 0 16px rgba(168,85,247,0.55);
}

.client-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 26px rgba(168,85,247,0.85);
}

.topbar-notice {
    position: relative;
    flex: 1;
    margin: 0 16px;
    overflow: hidden;
}

.topbar-notice::before {
    content: "NOTICE";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    color: #020617;
    z-index: 2;
}

.notice-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 96px;
    animation: notice-scroll 20s linear infinite;
}

@keyframes notice-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .topbar-notice { display: none; }
    .topbar-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* =====================================================
   SECTION 3: MAIN HEADER & NAVIGATION
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2,6,23,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(2,6,23,0.98);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.site-header.is-scrolled .header-flex {
    min-height: 62px;
}

/* -------- Logo -------- */
.logo img {
    height: 44px;
    filter: drop-shadow(0 0 14px rgba(56,189,248,0.55));
    transition: all 0.3s ease;
}

.site-header.is-scrolled .logo img {
    height: 38px;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 22px rgba(168,85,247,0.7));
}

/* =====================================================
   HAMBURGER MENU BUTTON (MOBILE ONLY)
===================================================== */

.nav-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger to X Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* =====================================================
   DESKTOP NAVIGATION (Visible only on desktop)
===================================================== */

.main-nav {
    display: block; /* Visible on desktop */
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* -------- Uddokta Special Button (Desktop) -------- */
.nav-links li:last-child a {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #020617 !important;
    padding: 8px 18px !important;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.55);
    transition: all 0.3s ease;
}

.nav-links li:last-child a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(245, 158, 11, 0.85);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.nav-links li:last-child a::after {
    display: none;
}

/* =====================================================
   DESKTOP MEGA MENUS (Desktop Only)
===================================================== */

.has-mega:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 420px;
    background: rgba(2,6,23,0.96);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.35s ease;
    box-shadow: 0 40px 80px rgba(0,0,0,0.65);
}

.has-mega.align-right .mega-menu {
    right: 0;
    left: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mega-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #e5e7eb;
    transition: all 0.25s ease;
}

.mega-grid a i {
    color: #38bdf8;
}

.mega-grid a:hover {
    background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(168,85,247,0.18));
    color: #ffffff;
}

/* =====================================================
   MOBILE NAVIGATION SYSTEM (Hidden on desktop)
===================================================== */

.mobile-nav-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: none;
}

.mobile-nav-modal.active {
    display: block;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.mobile-nav-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    animation: slideIn 0.4s ease forwards 0.1s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

@keyframes slideIn {
    to { transform: translateX(0); }
}

/* -------- Mobile Menu Header -------- */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
}

.mobile-nav-close {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(168, 85, 247, 0.3));
    transform: rotate(90deg);
}

/* -------- Mobile Navigation Links -------- */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: #e5e7eb;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.mobile-nav-link i:first-child {
    color: #38bdf8;
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.1), transparent);
    color: #ffffff;
    padding-left: 25px;
}

/* -------- Uddokta Special Button (Mobile) -------- */
.mobile-nav-links li:last-child .mobile-nav-link {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #020617 !important;
    margin: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.55);
}

.mobile-nav-links li:last-child .mobile-nav-link:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(245, 158, 11, 0.85);
}

.mobile-nav-links li:last-child .mobile-nav-link i:first-child {
    color: #020617;
}

/* -------- Mobile Submenus -------- */
.mobile-submenu-toggle {
    margin-left: auto;
    font-size: 14px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.mobile-has-submenu.active .mobile-submenu-toggle {
    transform: rotate(180deg);
    color: #38bdf8;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.8);
    border-left: 3px solid #38bdf8;
    transition: max-height 0.4s ease;
}

.mobile-has-submenu.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 50px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.mobile-submenu-link i {
    color: #38bdf8;
    width: 18px;
    text-align: center;
}

.mobile-submenu-link:hover {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.15), transparent);
    color: #ffffff;
    padding-left: 55px;
}

/* -------- Mobile Footer CTA -------- */
.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-phone-btn, .mobile-client-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-phone-btn {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #020617;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.mobile-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.6);
}

.mobile-client-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #020617;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.mobile-client-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

/* -------- Mobile Scrollbar -------- */
.mobile-nav-links::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav-links::-webkit-scrollbar-track {
    background: rgba(2, 6, 23, 0.5);
}

.mobile-nav-links::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #38bdf8, #a855f7);
    border-radius: 3px;
}

/* =====================================================
   RESPONSIVE BREAKPOINT - Mobile View (768px)
===================================================== */

@media (max-width: 768px) {
    /* Show hamburger button on mobile */
    .nav-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .main-nav {
        display: none !important;
    }
    
    /* Hide mega menus on mobile */
    .mega-menu {
        display: none !important;
    }
}

/* =====================================================
   SECTION 4: HERO (ADVANCED / AI READY)
===================================================== */

.hero-advanced {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(168,85,247,0.35), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(56,189,248,0.35), transparent 45%),
        linear-gradient(180deg, #020617, #020617);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: heroFloat 16s ease-in-out infinite;
}

.hero-bg::before {
    background: #38bdf8;
    top: 10%;
    left: 8%;
}

.hero-bg::after {
    background: #a855f7;
    bottom: 10%;
    right: 8%;
    animation-delay: 5s;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
    100% { transform: translateY(0); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background-image:
        radial-gradient(circle, rgba(56,189,248,0.35) 1px, transparent 1px),
        radial-gradient(circle, rgba(168,85,247,0.35) 1px, transparent 1px);
    background-size: 42px 42px, 64px 64px;
    animation: particleMove 45s linear infinite;
}

.hero-particles::after {
    animation-duration: 65s;
    opacity: 0.6;
}

@keyframes particleMove {
    from { transform: translateY(0); }
    to { transform: translateY(-220px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    animation: heroFadeUp 1.1s ease forwards;
    opacity: 0;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    color: #020617;
    box-shadow: 0 0 28px rgba(56,189,248,0.55);
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-title span {
    background: linear-gradient(90deg, #38bdf8, #a855f7, #22d3ee, #38bdf8);
    background-size: 300% 100%;
    animation: gradientText 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-hero.primary {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    color: #020617;
}

.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(168,85,247,0.45);
}

.btn-hero.secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
}

.btn-hero.secondary:hover {
    background: rgba(255,255,255,0.12);
}

.hero-trust {
    display: flex;
    gap: 22px;
    margin-top: 32px;
    font-size: 14px;
    color: #e5e7eb;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .hero-advanced {
        min-height: auto;
        padding: 70px 0;
    }
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    .hero-title {
        font-size: 30px;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 26px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    .hero-trust {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }
}

/* =====================================================
   SECTION 5: DOMAIN SEARCH
===================================================== */

.domain-advanced {
    position: relative;
    background:
        radial-gradient(circle at top, rgba(56,189,248,0.15), transparent 40%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    color: #020617;
    padding: 110px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.domain-inner {
    max-width: 860px;
    margin: 0 auto;
}

.domain-advanced .section-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 10px;
}

.domain-advanced .section-title span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.domain-advanced .section-subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 42px;
}

.domain-form {
    max-width: 700px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(2,6,23,0.12);
    transition: box-shadow 0.3s ease;
}

.domain-form:focus-within {
    box-shadow: 0 24px 60px rgba(56,189,248,0.25);
}

.domain-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    outline: none;
    color: #020617;
}

.domain-form input::placeholder {
    color: #94a3b8;
}

.domain-form button {
    padding: 15px 34px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    color: #020617;
    transition: all 0.25s ease;
}

.domain-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(168,85,247,0.45);
}

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.domain-tlds span {
    padding: 8px 18px;
    border-radius: 999px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: #020617;
    border: 1px solid #e5e7eb;
    cursor: default;
    transition: all 0.25s ease;
}

.domain-tlds span:hover {
    background: #020617;
    color: #ffffff;
    transform: translateY(-2px);
}

.domain-ai-hint {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .domain-advanced {
        padding: 80px 0;
    }
    .domain-advanced .section-title {
        font-size: 28px;
    }
    .domain-advanced .section-subtitle {
        font-size: 15px;
    }
    .domain-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 10px;
    }
    .domain-form input {
        padding: 14px;
        font-size: 15px;
    }
    .domain-form button {
        width: 100%;
        margin-top: 10px;
    }
}

/* =====================================================
   SECTION 6: TRUST / PARTNER SECTION
===================================================== */

.trust-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.trust-section::before,
.trust-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
}

.trust-section::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(2,6,23,0.06), transparent);
}

.trust-section::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.06), transparent);
}

.trust-title {
    font-size: 30px;
    font-weight: 800;
    color: #020617;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-logo img {
    max-height: 50px;
    max-width: 140px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s ease;
}

.trust-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .trust-section {
        padding: 70px 0;
    }
    .trust-title {
        font-size: 24px;
        margin-bottom: 36px;
    }
    .trust-logos {
        gap: 26px;
    }
    .trust-logo img {
        max-height: 42px;
    }
}

/* =====================================================
   SECTION 7: ULTRA HOSTING
===================================================== */

.hosting-ultra {
    background: radial-gradient(circle at top, #1e1b4b 0%, #020617 60%);
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hosting-ultra::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(168,85,247,0.18), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(56,189,248,0.18), transparent 40%);
    z-index: 0;
}

.hosting-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.hosting-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hosting-head h2 span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-head p {
    color: #cbd5e1;
    font-size: 17px;
}

.hosting-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.hosting-ultra-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 38px 32px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.hosting-ultra-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(56,189,248,0.6), rgba(168,85,247,0.6));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.hosting-ultra-card:hover::before {
    opacity: 1;
}

.hosting-ultra-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0,0,0,0.55);
}

.hosting-ultra-card i {
    font-size: 36px;
    margin-bottom: 18px;
    color: #38bdf8;
}

.hosting-ultra-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hosting-ultra-card p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.6;
}

.hosting-ultra-card a {
    font-size: 14px;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
}

.hosting-ultra-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hosting-ultra {
        padding: 80px 0;
    }
    .hosting-head h2 {
        font-size: 28px;
    }
    .hosting-head p {
        font-size: 15px;
    }
    .hosting-ultra-card {
        padding: 32px 26px;
    }
    .hosting-ultra-card i {
        font-size: 30px;
    }
}

/* =====================================================
   SECTION 8: ULTRA SERVICES
===================================================== */

.services-ultra {
    background: linear-gradient(180deg, #020617 0%, #030712 100%);
    padding: 120px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 70px;
}

.services-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.services-head h2 span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-head p {
    font-size: 17px;
    color: #cbd5e1;
}

.services-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-ultra-card {
    padding: 38px 32px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.service-ultra-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-ultra-card:hover::after {
    opacity: 1;
}

.service-ultra-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 35px 70px rgba(0,0,0,0.55);
}

.service-ultra-card i {
    font-size: 36px;
    margin-bottom: 18px;
}

.service-ultra-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-ultra-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.gradient-blue {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.gradient-pink {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.gradient-green {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.gradient-cyan {
    background: linear-gradient(135deg, #06b6d4, #0e7490);
}

@media (max-width: 768px) {
    .services-ultra {
        padding: 80px 0;
    }
    .services-head h2 {
        font-size: 28px;
    }
    .services-head p {
        font-size: 15px;
    }
    .service-ultra-card {
        padding: 32px 26px;
    }
    .service-ultra-card i {
        font-size: 30px;
    }
}

/* =====================================================
   SECTION 9: HOW WE WORK
===================================================== */

.process-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(56,189,248,0.12), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(168,85,247,0.12), transparent 40%);
    pointer-events: none;
}

.process-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.process-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #020617;
    margin-bottom: 14px;
    line-height: 1.2;
}

.process-head h2 span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-head p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.process-step {
    background: #ffffff;
    border-radius: 22px;
    padding: 44px 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.35s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(2,6,23,0.12);
}

.process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-size: 28px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .process-step::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -16px;
        width: 32px;
        height: 2px;
        background: linear-gradient(90deg, #38bdf8, #a855f7);
        transform: translateY(-50%);
    }
    .process-step:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    .process-head h2 {
        font-size: 28px;
    }
    .process-head p {
        font-size: 15px;
    }
    .process-step {
        padding: 36px 24px;
    }
    .process-step h3 {
        font-size: 18px;
    }
}

/* =====================================================
   SECTION 10: IMPACT / STATS
===================================================== */

.impact-stats {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    overflow: hidden;
}

.impact-stats::before,
.impact-stats::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 60%);
    pointer-events: none;
}

.impact-stats::before {
    top: -120px;
    left: -120px;
}

.impact-stats::after {
    bottom: -140px;
    right: -140px;
}

.impact-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.impact-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #020617;
    margin-bottom: 14px;
    line-height: 1.2;
}

.impact-head h2 span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-head p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 44px 30px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    position: relative;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(2,6,23,0.12);
}

.impact-card i {
    font-size: 38px;
    margin-bottom: 18px;
    color: #38bdf8;
}

.impact-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #020617;
    margin-bottom: 6px;
}

.impact-card p {
    font-size: 14px;
    color: #475569;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .impact-stats {
        padding: 80px 0;
    }
    .impact-head h2 {
        font-size: 28px;
    }
    .impact-head p {
        font-size: 15px;
    }
    .impact-card {
        padding: 36px 24px;
    }
    .impact-card h3 {
        font-size: 26px;
    }
}

/* =====================================================
   SECTION 11: FINAL CTA
===================================================== */

.final-cta {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: #ffffff;
    background: radial-gradient(circle at top, #1e1b4b 0%, #020617 65%);
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(56,189,248,0.25), transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(168,85,247,0.25), transparent 40%);
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.final-cta h2 span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 40px;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.cta-btn.primary {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    color: #020617;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(168,85,247,0.45);
}

.cta-btn.secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    background: transparent;
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
}

.final-cta-trust {
    margin-top: 28px;
    font-size: 14px;
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 90px 0;
    }
    .final-cta h2 {
        font-size: 28px;
    }
    .final-cta p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .final-cta-actions {
        flex-direction: column;
        gap: 14px;
    }
    .cta-btn {
        width: 100%;
        max-width: 320px;
    }
    .final-cta-trust {
        font-size: 13px;
        gap: 10px;
    }
}

/* =====================================================
   SECTION 12: FOOTER
===================================================== */

.site-footer {
    background: linear-gradient(180deg, #0b2a63 0%, #081a3a 100%);
    color: #e5e7eb;
    position: relative;
}

.footer-main {
    padding: 60px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 26px;
    height: 3px;
    background: #38bdf8;
    margin-top: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    align-items: center;
}

.icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
}

.footer-promo {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 14px;
    text-align: center;
}

.footer-promo a {
    color: #38bdf8;
    text-decoration: none;
}

.footer-bottom {
    background: #061530;
    padding: 22px 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13px;
    color: #cbd5e1;
}

.footer-brand img {
    height: 42px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #38bdf8;
    border-color: #38bdf8;
    color: #020617;
}

.site-footer:not(.reveal-footer) .footer-bottom {
    transform: translateY(40px);
    opacity: 0;
}

.site-footer.reveal-footer .footer-bottom {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-col h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-brand img {
        margin: 0 auto;
    }
}

/* =====================================================
   SECTION 13: FLOATING REVIEW POPUP
===================================================== */

.review-popup {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 320px;
    background: rgba(2,6,23,0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 9999;
}

.review-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #020617;
    flex-shrink: 0;
}

.review-text {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 6px;
}

.review-author {
    font-size: 12px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .review-popup {
        left: 50%;
        bottom: 20px;
        transform: translate(-50%, 20px);
        width: 300px;
        padding: 16px 18px;
        border-radius: 18px;
    }
    .review-popup.show {
        transform: translate(-50%, 0);
    }
    .review-avatar {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    .review-text {
        font-size: 13px;
        line-height: 1.5;
    }
    .review-author {
        font-size: 11.5px;
    }
}

/* =====================================================
   SECTION 14: TEMPORARY MAINTENANCE POPUP
===================================================== */

.temp-popup {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.75);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.temp-popup.show {
    display: flex;
}

.temp-popup-box {
    max-width: 520px;
    width: calc(100% - 32px);
    background: radial-gradient(circle at top, #1e3a8a, #020617);
    border-radius: 26px;
    padding: 44px 36px;
    color: #ffffff;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8);
    animation: popupIn 0.45s ease;
}

@keyframes popupIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.temp-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
    opacity: 0.7;
}

.temp-popup-close:hover {
    opacity: 1;
}

.temp-popup h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.temp-popup p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

.temp-note {
    margin-top: 18px;
}

.temp-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 26px;
    flex-wrap: wrap;
}

.temp-actions .btn {
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.temp-actions .primary {
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    color: #020617;
}

.temp-actions .secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
}

.temp-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.temp-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.temp-socials a:hover {
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    color: #020617;
}