        :root {
            --do-blue: #0069ff;
            --do-blue-dark: #0055d4;
            --bg-light: #f3f5f9;
            --text-dark: #031b4e;
            --text-muted: #4e5d78;
            --border-color: #e5e8ed;
            --white: #ffffff;
            --max-width: 1200px; /* Boxed დიზაინის სიგანე */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'BPG Arial Caps', sans-serif;
            background-color: var(--bg-light); /* ფონი გვერდებზე */
            color: var(--text-dark);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

/* კომპიუტერის ვერსია - თავიდანვე განსაზღვრე */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-inner .nav-links a {
    font-size: 15px;
}

/* DESKTOP NAV (ძირითადი მდგომარეობა) */
.nav-inner .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
	
    gap: 3px;
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
}
@media (max-width: 768px) {
    /* მობილურზე მენიუს კონტეინერი */
    .nav-inner .nav-links {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        height: 100vh !important;
        background: #ffffff !important;
        padding: 60px 0 20px 0 !important;
        transition: left 0.4s ease-in-out !important;
        z-index: 99999 !important;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2) !important;
        overflow-y: auto !important;
        align-items: flex-start !important;
    }

    /* პირდაპირი ბავშვი ლინკები */
    .nav-inner .nav-links > a {
        display: block !important;
        width: 100% !important;
        padding: 14px 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        box-sizing: border-box !important;
        color: #031b4e !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }

    /* dropdown კონტეინერი მობილურზე */
    .nav-inner .nav-links .mega-dropdown {
        position: static !important;
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    /* dropdown toggle */
    .nav-inner .nav-links .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 14px 20px !important;
        color: #031b4e !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
    }

    /* mega-menu დამალული სანამ .open არ არის */
    .nav-inner .nav-links .mega-menu {
        position: static !important;
        display: none !important;
        transform: none !important;
        width: 100% !important;
        min-width: unset !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 3px solid #e6f0ff !important;
        border-radius: 0 !important;
        padding: 8px 0 8px 16px !important;
        margin: 0 !important;
        grid-template-columns: 1fr !important;
        background: #f9fbff !important;
        animation: none !important;
    }

    /* .open კლასით გახსნა */
    .nav-inner .nav-links .mega-dropdown.open .mega-menu {
        display: grid !important;
    }

    /* hover გამორთვა მობილურზე */
    .mega-dropdown:hover .mega-menu {
        display: none !important;
    }

    .mega-item {
        padding: 10px 8px !important;
    }

    /* მენიუ აქტიური */
    .nav-inner .nav-links.active {
        left: 0 !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 100000 !important;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        display: block;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .mobile-logo {
        display: block !important;
        margin-bottom: 20px;
    }
}

/* კომპიუტერზე ბურგერის დამალვა */
@media (min-width: 769px) {
    .hamburger, .mobile-logo {
        display: none !important;
    }
}

        /* კონტეინერი რომელიც ზღუდავს სიგანეს */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            width: 100%;
        }

        /* Navbar */
        nav {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-inner {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .logo {
            font-weight: 700;
            font-size: 22px;
            color: var(--do-blue);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
            margin-left: 25px;
            transition: color 0.2s;
        }

        .btn-signup {
            background: var(--do-blue);
            color: white !important;
            padding: 8px 18px;
            border-radius: 4px;
        }

        /* Hero Section */
        .hero {
            background: var(--white);
            padding: 100px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-inner {
            padding: 0 20px;
            display: flex;
            align-items: center;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero p {
            font-size: 19px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 550px;
        }

        /* Pricing Section */
        .section-pricing {
            padding: 90px 0;
            background: #f8fafc;
        }

        .pricing-inner {
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .pricing-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .pricing-header p {
            font-size: 17px;
            color: var(--text-muted);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 24px;
            margin-top: 0;
            align-items: start;
        }

        .vps-card {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 36px 32px 32px;
            background: var(--white);
            transition: all 0.25s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .vps-card:hover {
            border-color: var(--do-blue);
            box-shadow: 0 12px 32px rgba(0, 105, 255, 0.08);
            transform: translateY(-3px);
        }

        .vps-card.featured {
            border-color: var(--do-blue);
            border-width: 2px;
            box-shadow: 0 8px 24px rgba(0, 105, 255, 0.1);
        }

        .vps-card.featured:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 105, 255, 0.15);
        }

        .card-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--do-blue);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .card-name {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--do-blue);
            margin-bottom: 10px;
        }

        .vps-price {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 4px;
            line-height: 1;
        }

        .vps-price span {
            font-size: 15px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .price-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .card-divider {
            height: 1px;
            background: var(--border-color);
            margin-bottom: 24px;
        }

        .spec-list {
            list-style: none;
            margin-bottom: 28px;
            flex: 1;
        }

        .spec-list li {
            font-size: 14px;
            padding: 9px 0;
            color: var(--text-dark);
            border-bottom: 1px solid #f5f6f8;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .spec-list li:last-child {
            border-bottom: none;
        }

        .spec-list li::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            min-width: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e6f0ff'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%230069ff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .btn-select {
            display: block;
            text-align: center;
            padding: 13px;
            border: 2px solid var(--do-blue);
            color: var(--do-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 6px;
            transition: all 0.2s;
            margin-top: auto;
        }

        .btn-select:hover {
            background: var(--do-blue);
            color: white;
        }

        .btn-select.btn-primary {
            background: var(--do-blue);
            color: white;
        }

        .btn-select.btn-primary:hover {
            background: var(--do-blue-dark);
            border-color: var(--do-blue-dark);
        }

        /* Features */
        .info-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .features-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            width: 350px;
            border: 1px solid var(--border-color);
        }

        footer {
            background: var(--white);
            border-top: 1px solid var(--border-color);
			 padding: 40px 24px; 
        }

        .footer-inner {
            padding: 40px 20px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
        }
		
		/* Domain Search Section */
        .domain-search {
            background: #f3f5f9;
            padding: 80px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .search-wrapper {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .search-wrapper h2 {
            font-size: 28px;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .search-box {
            display: flex;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .search-box:focus-within {
            border-color: var(--do-blue);
        }

        .search-box input {
            flex: 1;
            padding: 18px 24px;
            border: none;
            outline: none;
            font-size: 16px;
            font-family: inherit;
        }

        .search-box button {
            background: var(--do-blue);
            color: white;
            border: none;
            padding: 0 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-box button:hover { background: var(--do-blue-dark); }

        .domain-extensions {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .ext-price { color: var(--text-dark); font-weight: 600; }

        /* Features/Characteristics Section */
        .specs-section {
            padding: 100px 0;
            background: var(--white);
        }

        .specs-inner { padding: 0 20px; }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .spec-item {
            display: flex;
            gap: 20px;
        }

        .spec-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--do-blue);
        }

        .spec-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .spec-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
        .section-header p { color: var(--text-muted); font-size: 18px; }

        @media (max-width: 768px) {
            .search-box { flex-direction: column; border: none; }
            .search-box input { border: 2px solid var(--border-color); border-radius: 6px; margin-bottom: 10px; }
            .search-box button { padding: 15px; border-radius: 6px; }
            .domain-extensions { flex-wrap: wrap; }
        }
		.logo {
  width: 120px;   /* დაარეგულირე როგორც გინდა */
  height: auto;   /* პროპორციები რომ არ გაფუჭდეს */
}
		.mobile-logo {
  width: 120px;   /* დაარეგულირე როგორც გინდა */
  height: auto;   /* პროპორციები რომ არ გაფუჭდეს */
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* დაცილება ტექსტსა და სურათს შორის */
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image svg {
    width: 100%;
    max-width: 350px; /* სურათის მაქსიმალური ზომა */
    height: auto;
}

.node {
    animation: pulse-node 3s infinite ease-in-out;
}

@keyframes pulse-node {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(1); }
}

/* მობილურისთვის: სურათი გადავა ტექსტის ქვემოთ */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1; /* სურათი გამოჩნდეს ტექსტის ზემოთ მობილურზე */
        margin-bottom: 30px;
    }
}	

   .faq-section { 
    padding: 100px 0; 
    background: #fff; 
    overflow: hidden; /* რომ ანიმაციამ გვერდზე სქროლი არ გააჩინოს */
}

.faq-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-content { flex: 1.2; width: 100%; }
.faq-visual { flex: 0.8; text-align: center; width: 100%; }

.faq-visual svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* FAQ სექციის ძირითადი კონტეინერი */
.faq-section { 
    padding: 100px 0; 
    background: #ffffff; 
    overflow: hidden; 
}

.faq-wrapper {
    display: flex;
    align-items: flex-start; /* შევცვალე top-ზე სწორებისთვის */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* სვეტების გადანაწილება */
.faq-content { flex: 1.3; } 
.faq-visual { 
    flex: 0.7; 
    position: sticky; /* სურათი სქროლვისას მოყვება (დესკტოპზე) */
    top: 100px;
    text-align: center; 
}

.faq-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0,105,255,0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* სათაურები */
.faq-header h2 { 
    font-family: 'BPG Arial Caps', sans-serif;
    font-size: 36px; 
    color: #031b4e; 
    margin-bottom: 15px; 
    letter-spacing: -0.5px;
}

.faq-header p { 
    font-size: 18px;
    color: #5d6b82; 
    margin-bottom: 45px; 
    line-height: 1.5;
}

/* FAQ ელემენტები */
.faq-item {
    border-bottom: 1px solid #f0f3f7;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-bottom-color: #dbeafe;
}

.faq-question {
    font-family: 'BPG Arial Caps', sans-serif;
    width: 100%; 
    padding: 25px 0; 
    background: none; 
    border: none;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 18px; 
    font-weight: 600; 
    color: #031b4e; 
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question .icon { 
    color: #0069ff; 
    font-size: 26px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

/* პასუხის ბლოკი */
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p { 
    padding-bottom: 25px; 
    color: #5d6b82; 
    line-height: 1.7; 
    margin: 0;
    font-size: 16px;
}

/* აქტიური მდგომარეობა */
.faq-item.active {
    border-bottom-color: #0069ff;
}

.faq-item.active .faq-answer { 
    max-height: 500px; 
    opacity: 1;
}

.faq-item.active .icon { 
    transform: rotate(45deg);
    color: #001a41;
}

.faq-item.active .faq-question {
    color: #0069ff;
}

/* --- სრულყოფილი მობილური ოპტიმიზაცია --- */
@media (max-width: 992px) {
    .faq-section { padding: 60px 0; }
    
    .faq-wrapper { 
        flex-direction: column; 
        gap: 30px; 
    }

    .faq-content {
        order: 2;
        width: 100%;
    }

    .faq-visual { 
        order: 1; 
        width: 100%;
        position: static; /* ვაუქმებთ sticky-ს */
        margin-bottom: 20px;
    }

    .faq-visual svg { 
        max-width: 220px; /* უფრო კომპაქტური მობილურზე */
    }

    .faq-header { 
        text-align: center; 
    }

    .faq-header h2 { 
        font-size: 26px; 
        padding: 0 10px;
    }

    .faq-header p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .faq-item {
        margin: 0 15px; /* გვერდებზე ჰაერი მობილურისთვის */
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }
}
	
	
	    .resources-wrapper {
        /* DigitalOcean ხშირად იყენებს ძალიან ღია ნაცრისფერს სექციების გამოსაყოფად */
        background-color: #f8fafc; 
        padding: 100px 0; /* დიდი დაშორება ზემოთ და ქვემოთ */
        border-top: 1px solid #eef2f6;
        border-bottom: 1px solid #eef2f6;
    }

    .section-header-simple {
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-line {
        flex-grow: 1;
        height: 1px;
        background: #eef2f6;
    }

    .section-label { 
        font-size: 13px; 
        text-transform: uppercase; 
        letter-spacing: 1.5px; 
        color: #808b9e; 
        margin: 0;
        font-weight: 700;
    }

    .resource-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 32px; /* დაშორება ბარათებს შორის */
    }

    .resource-item { 
        padding: 40px; /* გავზარდეთ შიდა დაშორება (Padding) */
        background: white; 
        border: 1px solid #eef2f6; 
        border-radius: 12px; 
        text-decoration: none; 
        transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
        display: flex;
        flex-direction: column;
    }

    .item-icon {
        color: #0069ff;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    .resource-item:hover { 
        border-color: #0069ff; 
        transform: translateY(-5px); 
        box-shadow: 0 20px 40px rgba(0, 105, 255, 0.06); 
    }

    .resource-item h4 { 
        margin: 0 0 12px 0; 
        color: #031b4e; 
        font-size: 20px; 
        font-weight: 700;
    }

    .resource-item p { 
        margin: 0 0 24px 0; 
        color: #5d6b82; 
        font-size: 15px; 
        line-height: 1.6; 
        flex-grow: 1; /* ტექსტი ყოველთვის თანაბრად გადანაწილდება */
    }

    .read-more { 
        font-size: 14px; 
        font-weight: 700; 
        color: #0069ff; 
        display: flex;
        align-items: center;
    }

    /* მობილური ვერსიისთვის */
    @media (max-width: 768px) {
        .resource-grid { grid-template-columns: 1fr; }
        .resources-wrapper { padding: 60px 0; }
    }
	
	
    /* 1. კონტეინერი, რომელიც აიძულებს SVG-ს გაიზარდოს */
    .hero-graphic-expanded {
        width: 100%;
        max-width: 650px; /* აქედან მართავ მაქსიმალურ ზომას */
        min-width: 400px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible; /* რომ ანიმაცია არ ჩაიჭრას */
    }

    /* 2. თავად SVG-ის ზომა */
    .mega-server-svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 30px 60px rgba(0, 105, 255, 0.2));
        transform: scale(1.2); /* დამატებითი გადიდება */
        transition: transform 0.5s ease;
    }

    /* 3. ჰოვერ ეფექტი */
    .mega-server-svg:hover {
        transform: scale(1.25);
    }

    /* ანიმაციები */
    .server-layer {
        animation: floatingLayers 5s ease-in-out infinite;
    }

    .layer-mid { animation-delay: 0.4s; }
    .layer-bottom { animation-delay: 0.8s; }

    @keyframes floatingLayers {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
	
	
	
	
/* კონტეინერი, რომელიც აფართოებს SVG-ს */
    .mega-cloud-container {
        width: 100%;
        max-width: 800px; /* აქედან შეგიძლია კიდევ უფრო გაზარდო */
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
        overflow: visible;
    }

    .mega-cloud-svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 40px 70px rgba(0, 105, 255, 0.2));
        animation: heroFloat 7s ease-in-out infinite;
        transform: scale(1.1); /* დამატებითი ოპტიკური გადიდება */
    }

    /* ანიმაციები */
    .mega-node {
        animation: pulseScale 4s ease-in-out infinite alternate;
    }

    .orbit-1 { animation: orbitPath 6s linear infinite; }
    .orbit-2 { animation: orbitPath 8s linear infinite reverse; }
    .orbit-3 { animation: orbitPath 5s linear infinite; animation-delay: 1s; }

    .data-stream {
        animation: streamFlow 1.5s ease-in-out infinite;
    }

    @keyframes heroFloat {
        0%, 100% { transform: translateY(0) scale(1.1); }
        50% { transform: translateY(-30px) scale(1.12); }
    }

    @keyframes pulseScale {
        from { transform: scale(1); }
        to { transform: scale(1.03); }
    }

    @keyframes orbitPath {
        0% { transform: translate(0, 0); }
        50% { transform: translate(10px, -15px); }
        100% { transform: translate(0, 0); }
    }

    @keyframes streamFlow {
        0% { transform: translateY(-10px); opacity: 0; }
        50% { opacity: 1; }
        100% { transform: translateY(10px); opacity: 0; }
    }

    /* მობილური ადაპტაცია */
    @media (max-width: 992px) {
        .mega-cloud-container { max-width: 450px; padding: 20px; }
    }
	
	








.l3-cloud-wrapper {
        max-width: 1200px;
        margin: 100px auto;
        padding: 0 30px;
        font-family: 'BPG Arial Caps', -apple-system, sans-serif;
        color: #031b4e;
    }

    /* Features Layout */
    .l3-features-layout {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 60px;
        margin-bottom: 120px;
    }

    .l3-icon-box {
        color: #0069ff;
        width: 34px;
        height: 34px;
        margin-bottom: 24px;
    }

    .l3-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 14px;
        letter-spacing: -0.02em;
    }

    .l3-text {
        color: #4a5568;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    /* OS Section Refined */
    .l3-os-container {
        background: #ffffff;
        border: 1px solid #eef2f6;
        border-radius: 28px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(3, 27, 78, 0.02);
    }

    .l3-os-header {
        margin-bottom: 45px;
    }

    .l3-os-pretitle {
        color: #0069ff;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        display: block;
        margin-bottom: 10px;
    }

    .l3-os-main-title {
        font-size: 34px;
        font-weight: 800;
        margin: 0;
        letter-spacing: -0.03em;
    }

    .l3-os-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .l3-os-box {
        display: flex;
        align-items: center;
        padding: 18px 24px;
        border: 1.5px solid #eef2f6;
        border-radius: 18px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        background: #fff;
    }

    .l3-os-box img {
        width: 32px;
        height: 32px;
        margin-right: 18px;
    }

    .l3-os-name {
        display: block;
        font-weight: 700;
        font-size: 15px;
        color: #031b4e;
    }

    .l3-os-ver {
        display: block;
        color: #808b9e;
        font-size: 13px;
        margin-top: 1px;
    }

    /* Interactions */
    .l3-os-box:hover {
        border-color: #0069ff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 105, 255, 0.08);
    }

    .l3-os-box.l3-active {
        border-color: #0069ff;
        background: #f0f7ff;
        box-shadow: inset 0 0 0 1px #0069ff;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .l3-os-container { padding: 30px 20px; }
        .l3-os-main-title { font-size: 26px; }
        .l3-features-layout { gap: 40px; }
    }




/* ===== PARENT DROPDOWN ===== */
.mega-dropdown {
    position: relative;
    display: inline-block;
}

/* invisible hover bridge */
.mega-dropdown::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 100%;
    width: calc(100% + 40px);
    height: 20px;
    background: transparent;
}

/* ===== MEGA MENU ===== */
.mega-menu {
    position: absolute;

    /* GAP ამოვიღეთ */
    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

    min-width: 600px;

    /* პატარა შიდა დაშორება */
    margin-top: 10px;

    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f6;
    box-shadow: 0 20px 40px rgba(3, 27, 78, 0.1);

    z-index: 9999;
}

/* ===== SHOW ===== */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

/* ===== TOGGLE ===== */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 0;
    cursor: pointer;
}

@keyframes l3-slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
    }
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.mega-item:hover {
    background: #f4f7fa;
}

.mega-item h4 {
    margin: 0;
    font-size: 16px;
    color: #031b4e;
    font-weight: 700;
}

.mega-item p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #808b9e;
}

/* ===== MAIN MENU ===== */
.l3-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.l3-menu li {
    position: relative;
}

.l3-menu a {
    text-decoration: none;
    color: #031b4e;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
}

/* ===== SUBMENU ===== */
.l3-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 105, 255, 0.1);
    border: 1px solid #eef2f6;
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.l3-submenu li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.l3-submenu li a:hover {
    background: #f0f7ff;
    color: #0069ff;
}

.l3-dropdown:hover .l3-submenu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .l3-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .l3-menu li {
        width: 100%;
    }

    .l3-menu a {
        padding: 12px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 12px 16px;
    }

    /* hover გამორთვა მობილურზე */
    .mega-dropdown:hover .mega-menu {
        display: none !important;
    }

    .l3-dropdown:hover .l3-submenu {
        display: none !important;
    }

    /* submenu - static flow */
    .l3-submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid #e6f0ff;
        border-radius: 0;
        margin-left: 16px;
        padding: 4px 0;
        display: none;
        min-width: unset;
        width: auto;
    }

    /* mega menu - static flow */
    .mega-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 3px solid #e6f0ff !important;
        border-radius: 0 !important;
        margin-left: 16px;
        padding: 4px 0;
        width: auto !important;
        min-width: unset !important;
        display: none !important;
        animation: none !important;
    }

    /* .open კლასით გახსნა */
    .mega-dropdown.open .mega-menu {
        display: grid !important;
        animation: none !important;
    }

    .l3-dropdown.open .l3-submenu {
        display: block !important;
        animation: none !important;
    }

    .mega-item {
        padding: 10px 8px;
    }

    .mega-item h4 {
        font-size: 14px;
    }

    .mega-item p {
        font-size: 12px;
    }
}



.do-features {
    padding: 100px 0;
    background-color: #f9fafb; /* DO-ს საფირმო ნაცრისფერი ფონი */
    
}

.do-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.do-header {
    text-align: center;
    margin-bottom: 60px;
}

.do-eyebrow {
    color: #0069ff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.do-header h2 {
    font-size: 36px;
    color: #031b4e;
    font-weight: 700;
    margin-bottom: 20px;
}

.do-header p {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* გრიდი და ბარათები */
.do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* DO ხშირად იყენებს 2 სვეტს დიდი ბარათებისთვის */
    gap: 24px;
}

.do-card {
    background: #ffffff;
    border: 1px solid #e5e7eb; /* თხელი და მკაფიო ხაზი */
    padding: 40px;
    border-radius: 8px; /* მცირე რადიუსი უფრო სერიოზულ იერს აძლევს */
    transition: all 0.2s ease-in-out;
}

/* ჰოვერი: ბორდერის ფერის შეცვლა ჩრდილის გარეშე */
.do-card:hover {
    border-color: #0069ff;
    box-shadow: 0 10px 30px rgba(0, 105, 255, 0.05);
}

.do-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.do-card h3 {
    font-size: 20px;
    color: #031b4e;
    font-weight: 600;
    margin-bottom: 16px;
}

.do-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* მობილური ვერსია */
@media (max-width: 768px) {
    .do-grid {
        grid-template-columns: 1fr;
    }
    .do-header h2 {
        font-size: 28px;
    }
}


.do-status-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;

}

.do-status-link {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 50px; /* მომრგვალებული, აბის ფორმის დიზაინი */
    text-decoration: none;
    transition: all 0.2s ease;
}

.do-status-link:hover {
    border-color: #0069ff;
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.08);
}

/* მწვანე ინდიკატორი და პულსაცია */
.do-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00d46a; /* DO-ს მწვანე */
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00d46a;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.status-text {
    font-size: 13px;
    font-weight: 500;
    color: #031b4e;
}

/* გამყოფი ხაზი */
.do-status-divider {
    width: 1px;
    height: 16px;
    background-color: #e5e7eb;
    margin: 0 16px;
}

/* Uptime ნაწილი */
.do-status-uptime {
    display: flex;
    gap: 6px;
    font-size: 13px;
}

.uptime-value {
    color: #0069ff;
    font-weight: 700;
}

.uptime-label {
    color: #808b9e;
}

/* პულსაციის ანიმაცია */
@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* მობილური ვერსია */
@media (max-width: 480px) {
    .do-status-link {
        flex-direction: column;
        border-radius: 12px;
        padding: 12px;
        text-align: center;
    }
    .do-status-divider {
        width: 40px;
        height: 1px;
        margin: 8px 0;
    }
}

.dc-section {
    position: relative;
    padding: 100px 0;
    background-color: #f8fafc;
    overflow: hidden;
   
}

/* ბადისებრი ბექგრაუნდი */
.dc-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.dc-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.dc-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ტექსტის სტილი */
.dc-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #0069ff;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}

.dc-info h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.dc-info p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    max-width: 450px;
}

.dc-stats-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 24px;
    font-weight: 800;
    color: #0069ff;
}

.stat-lbl {
    font-size: 13px;
    color: #64748b;
}

/* ვიზუალური ბარათის სტილი */
.network-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    width: 380px;
}

.topology-svg {
    width: 100%;
    margin-bottom: 30px;
}

.node-text {
    font-size: 10px;
    fill: #64748b;
    font-weight: 600;
}

.font-bold { font-weight: 800; fill: #0f172a; }

.pulse-node {
    animation: node-pulse 2s infinite;
}

@keyframes node-pulse {
    0% { r: 8; fill-opacity: 1; }
    50% { r: 12; fill-opacity: 0.5; }
    100% { r: 8; fill-opacity: 1; }
}

.dc-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.dc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.dc-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #10b981;
    font-weight: 700;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .dc-wrapper { flex-direction: column; text-align: center; }
    .dc-stats-grid { justify-content: center; }
    .network-card { width: 100%; max-width: 340px; }
}
/* =============================
   HERO IMPROVEMENTS
   ============================= */
.hero-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: var(--do-blue);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-hero-primary:hover {
    background: var(--do-blue-dark);
    transform: translateY(-1px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s, color 0.2s;
}

.btn-hero-secondary:hover {
    border-color: var(--do-blue);
    color: var(--do-blue);
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================
   STATS SECTION
   ============================= */
.stats-section {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
}

.stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 0 48px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-color);
}

@media (max-width: 768px) {
    .stats-inner {
        gap: 30px;
    }
    .stat-divider { display: none; }
    .stat-item { padding: 0 20px; }
    .stat-number { font-size: 28px; }
}

/* =============================
   TRUST BADGES
   ============================= */
.trust-section {
    background: #f8fafc;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .trust-inner { gap: 24px; }
    .trust-item { font-size: 13px; }
}

/* =============================
   FOOTER - სრული ვერსია
   ============================= */

.site-footer {
    background: var(--text-dark, #111827);
    color: #a0aec0;
    /* გვერდითა დაშორება, რომ შიგთავსი კედლებს არ მიებჯინოს */
    padding: 40px 24px; 
     
}

/* კონტეინერი მაქსიმალური სიგანით */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== BRAND SECTION ===== */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}

/* ===== SOCIAL LINKS ===== */

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--do-blue, #3b82f6);
    color: white;
    transform: translateY(-2px);
}

/* ===== FOOTER COLUMNS ===== */

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: white;
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
}

/* =============================
   TABLET (992px)
   ============================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =============================
   MOBILE (768px)
   ============================= */

@media (max-width: 768px) {
    .site-footer {
        padding-top: 48px;
        /* უზრუნველყოფს, რომ შიგთავსი კედელზე არ იყოს მიკრული */
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* თუ მაინც ძალიან მარცხნივ გეჩვენებათ, 
       შეგიძლიათ აქ დაამატოთ padding-left: 8px; */
    .footer-col {
        padding-left: 0;
    }
}

/* =============================
   SMALL MOBILE (480px)
   ============================= */

@media (max-width: 480px) {
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
		
    }

    .footer-col a {
        font-size: 14px;
    }
}


/* =============================
   HERO EYEBROW
   ============================= */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef4ff;
    color: var(--do-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #d0e3ff;
}

/* =============================
   CPANEL MOCKUP (hero visual)
   ============================= */
.cpanel-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(3,27,78,0.12);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-color);
}

.mockup-bar {
    background: #f3f5f9;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.mockup-url {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: 500;
}

.mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.mockup-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mockup-icon-box.blue   { background: var(--do-blue); }
.mockup-icon-box.green  { background: #00b37a; }
.mockup-icon-box.purple { background: #7c4dff; }

.mockup-text-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mockup-line {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
}
.mockup-line.w90 { width: 90%; }
.mockup-line.w80 { width: 80%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w50 { width: 50%; }
.mockup-line.w40 { width: 40%; }

.mockup-stats {
    display: flex;
    justify-content: space-around;
    padding: 14px 0 4px;
    border-top: 1px solid var(--border-color);
    margin-top: 4px;
}

.mstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.mstat-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--do-blue);
}

.mstat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================
   COMPARISON TABLE
   ============================= */
.compare-table-wrap {
    overflow-x: auto;
    margin-bottom: 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px rgba(3,27,78,0.06);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
}

.compare-table thead tr {
    background: #f8fafc;
}

.compare-table th {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    vertical-align: bottom;
}

.compare-table th.feature-col {
    text-align: left;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 30%;
}

.th-featured {
    background: #eef4ff;
    border-left: 2px solid var(--do-blue);
    border-right: 2px solid var(--do-blue);
    position: relative;
}

.th-badge {
    display: inline-block;
    background: var(--do-blue);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.th-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.th-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--do-blue);
    line-height: 1;
}

.th-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.compare-table td {
    padding: 14px 24px;
    text-align: center;
    color: var(--text-muted);
    border-bottom: 1px solid #f5f6f8;
}

.compare-table td.feature-col {
    text-align: left;
    color: var(--text-dark);
    font-weight: 500;
}

.td-featured {
    background: #f5f9ff;
    border-left: 2px solid var(--do-blue);
    border-right: 2px solid var(--do-blue);
    font-weight: 600;
    color: var(--text-dark) !important;
}

.row-alt td { background: #fafbfc; }
.row-alt .td-featured { background: #eef4ff; }

.row-cta td { padding: 20px 24px; border-bottom: none; }

.check { color: #00b37a; font-weight: 700; font-size: 15px; }
.cross { color: #c0c8d4; font-size: 18px; }

/* Mobile — table დამალვა, cards ჩვენება */
.mobile-pricing-cards { display: none; }

@media (max-width: 768px) {
    .compare-table-wrap { display: none; }
    .mobile-pricing-cards { display: grid; margin-top: 0; }
}

/* =============================
   CLOUD FEATURES — 3 სვეტი
   ============================= */
.cf-three-col {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
    .cf-three-col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .cf-three-col { grid-template-columns: 1fr !important; }
}

/* Page hero (cloud.php) */
.page-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

.page-hero-text { flex: 1; max-width: 560px; }
.page-hero-visual { flex: 1; display: flex; justify-content: flex-end; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--do-blue);
    text-decoration: none;
}

.page-tag {
    display: inline-flex;
    align-items: center;
    background: #eef4ff;
    color: var(--do-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #d0e3ff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.highlight {
    color: var(--do-blue);
    position: relative;
}

.page-hero-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cloud-features-section {
    padding: 90px 0;
    background: #f8fafc;
}

.cloud-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cf-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: white;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.cf-item:hover {
    border-color: var(--do-blue);
    box-shadow: 0 8px 24px rgba(0,105,255,0.06);
    transform: translateY(-2px);
}

.cf-icon {
    width: 44px;
    height: 44px;
    background: #eef4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cf-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .page-hero-inner { flex-direction: column; gap: 40px; }
    .page-hero-text h1 { font-size: 30px; }
    .page-hero-visual { justify-content: center; width: 100%; }
    .cpanel-mockup { max-width: 100%; }
    .cloud-features-grid { grid-template-columns: 1fr; }
}

/* =============================
   VPS TERMINAL MOCKUP
   ============================= */
.vps-terminal {
    background: #1a1e2e;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(3,27,78,0.18);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    border: 1px solid #2d3350;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

.vps-terminal .mockup-bar {
    background: #242840;
    border-bottom: 1px solid #2d3350;
}

.vps-terminal .mockup-url {
    color: #6b7db3;
}

.terminal-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t-line {
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
}

.t-prompt { color: #00b37a; font-weight: 700; margin-right: 8px; }
.t-cmd    { color: #7eb3ff; }
.t-out    { color: #8899bb; padding-left: 4px; }
.t-green  { color: #00b37a; }
.t-gap    { height: 6px; }

.blink {
    color: #7eb3ff;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* =============================
   VPS PRICING TABLE
   ============================= */
.vps-table-wrap {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(3,27,78,0.06);
}

.vps-table-header {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    background: #f8fafc;
    border-bottom: 2px solid var(--border-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.vps-table-row {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #f5f6f8;
    transition: all 0.2s;
}

.vps-table-row:last-child { border-bottom: none; }

.vps-table-row:hover {
    background: #fafbff;
    border-color: var(--do-blue);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0,105,255,0.07);
}

.vps-row-featured {
    background: #f0f7ff !important;
    border-left: 3px solid var(--do-blue);
}

.vps-row-featured:hover {
    background: #e8f2ff !important;
}

.vtcol {
    flex: 1;
    font-size: 14px;
    color: var(--text-muted);
}

.vtcol-plan { flex: 2; }

.vplan-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.vplan-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.vbadge {
    font-size: 10px;
    background: #e1efff;
    color: var(--do-blue);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.vspec {
    font-weight: 700;
    color: var(--text-dark);
}

.vprice {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.vprice span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.vprice-blue { color: var(--do-blue); }

.deploy-btn {
    display: inline-block;
    padding: 9px 20px;
    background: transparent;
    color: var(--do-blue);
    border: 2px solid var(--do-blue);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
    white-space: nowrap;
}

.deploy-btn:hover {
    background: var(--do-blue);
    color: white;
}

.deploy-btn-primary {
    background: var(--do-blue);
    color: white;
}

.deploy-btn-primary:hover {
    background: var(--do-blue-dark);
    border-color: var(--do-blue-dark);
}

@media (max-width: 768px) {
    .vps-table-header { display: none; }
    .vps-table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px;
    }
    .vtcol { width: 100%; }
    .vtcol-plan { flex: 1; }
    .vps-row-featured { border-left: none; border-top: 3px solid var(--do-blue); }
}

/* =============================
   OS SECTION
   ============================= */
.os-section {
    padding: 90px 0;
    background: white;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.os-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    background: white;
}

.os-card:hover {
    border-color: var(--do-blue);
    box-shadow: 0 8px 24px rgba(0,105,255,0.08);
    transform: translateY(-3px);
}

.os-card-active {
    border-color: var(--do-blue);
    border-width: 2px;
    box-shadow: 0 4px 16px rgba(0,105,255,0.1);
}

.os-active-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--do-blue);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.os-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.os-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.os-ver {
    font-size: 11px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .os-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .os-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================
   FAQ SERVER DASHBOARD CARD
   ============================= */
.faq-server-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(3,27,78,0.08);
    width: 100%;
    max-width: 340px;
}

.fsc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.fsc-dot {
    width: 8px;
    height: 8px;
    background: #00b37a;
    border-radius: 50%;
    box-shadow: 0 0 6px #00b37a;
}

.fsc-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fsc-metric {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fsc-metric-label {
    font-size: 12px;
    color: var(--text-muted);
    width: 70px;
    flex-shrink: 0;
}

.fsc-bar-wrap {
    flex: 1;
    height: 6px;
    background: #edf0f5;
    border-radius: 6px;
    overflow: hidden;
}

.fsc-bar {
    height: 100%;
    background: var(--do-blue);
    border-radius: 6px;
}

.fsc-bar-green  { background: #00b37a; }
.fsc-bar-purple { background: #7c4dff; }

.fsc-metric-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    width: 32px;
    text-align: right;
}

.fsc-row {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.fsc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.fsc-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.fsc-online { color: #00b37a; }

.fsc-lbl {
    font-size: 11px;
    color: var(--text-muted);
}

/* VPS hero bg განსხვავება */
.vps-hero {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2850 50%, #0d1b3e 100%);
}

.vps-hero .page-hero-text h1,
.vps-hero .page-hero-text p,
.vps-hero .breadcrumb,
.vps-hero .breadcrumb a,
.vps-hero .hero-trust span {
    color: white;
}

.vps-hero .breadcrumb span { color: rgba(255,255,255,0.5); }
.vps-hero .page-tag {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.2);
}
.vps-hero .hero-trust span { color: rgba(255,255,255,0.7); }
.vps-hero .btn-hero-secondary {
    border-color: rgba(255,255,255,0.3);
    color: white;
}
.vps-hero .btn-hero-secondary:hover {
    border-color: white;
    color: white;
}
