:root {
        --srv1-primary: #2a62fe;
        --srv1-dark: #03063a;
        --srv1-text: #616a72;
        --srv1-light: #f8f9fa;
        --srv1-border: #e6e8ec;
        --srv1-white: #ffffff;

        /* აკცენტური ფერები Pricing-სთვის */
        --srv1-accent: #03063a;
        --srv1-accent-soft: #e6e8ec;
    }
.right { margin-left:auto;}
.text-center { text-align:center;}
    .srv1-wh-root {
        font-family: "Firago", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--srv1-dark);
        line-height: 1.6;
        background-color: #ffffff;
    }
@keyframes float-up-down {
            /* 0% დაწყების მდგომარეობა: არ არის ვერტიკალური წანაცვლება */
            0% { 
                transform: translateY(0); 
            }
            /* 50% შუა წერტილი: ობიექტი 5 პიქსელით მაღლაა აწეული */
            50% { 
                transform: translateY(-5px); /* -5px ნიშნავს 5 პიქსელით ზევით */
            }
            /* 100% დასრულების მდგომარეობა: ბრუნდება საწყის პოზიციაზე */
            100% { 
                transform: translateY(0); 
            }
        }

        /* DIV-ის სტილი და ანიმაციის მინიჭება */
        .animated-box {
           
            display: flex;
            justify-content: center;
            align-items: center;
         
            
            /* ანიმაციის მინიჭება */
            animation: 
                float-up-down 3s ease-in-out infinite alternate;
                /* - float-up-down: ანიმაციის სახელი
                - 3s: ხანგრძლივობა (3 წამი ერთი სრული მოძრაობისთვის)
                - ease-in-out: გლუვი დაწყება და დასრულება
                - infinite: განმეორდეს უსასრულოდ
                - alternate: მოძრაობს ზევით, შემდეგ ქვემოთ (ანუ, არ ხდება უცებ გადახტომა) 
                */
        }


    .srv1-wh-root h1,
    .srv1-wh-root h2,
    .srv1-wh-root h3,
    .srv1-wh-root h4 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .srv1-wh-root a {
        text-decoration: none;
        transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .srv1-wh-heading {
        font-size: 2rem;
        color: var(--srv1-dark);
        font-weight: 800;
    }

    .srv1-wh-subheading {
        font-size: 1.1rem;
        color: var(--srv1-text);
        margin-bottom: 2.5rem;
    }

    .srv1-wh-text {
        color: var(--srv1-text);
        font-size: 1rem;
    }

    .srv1-wh-text.small {
        font-size: 0.9rem;
    }

    .srv1-wh-bg-light {
        background-color: #f9fbfd;
    }

    .srv1-wh-bg-white {
        background-color: #ffffff;
    }

    .srv1-wh-bg-dark {
        background-color: var(--srv1-dark);
    }

    .srv1-wh-section {
        padding: 60px 0;
        position: relative;
        z-index: 1;
    }

    .text-primary {
        color: var(--srv1-primary) !important;
    }

    .text-white {
        color: #ffffff !important;
    }

    .text-light-gray {
        color: #cfd4da !important;
    }

    /* BUTTONS */
    .srv1-wh-btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 600;
        text-align: center;
        border: 1px solid transparent;
        cursor: pointer;
        font-size: 0.95rem;
    }

    .srv1-wh-btn-primary {
        background-color: var(--srv1-primary);
        color: #ffffff;
        border-color: var(--srv1-primary);
    }

    .srv1-wh-btn-primary:hover {
        background-color: #1a4bd6;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(42, 98, 254, 0.3);
    }

    .srv1-wh-btn-accent {
        background-color: var(--srv1-accent);
        color: #ffffff;
        border-color: var(--srv1-accent);
    }

    .srv1-wh-btn-accent:hover {
        background-color: var(--srv1-primary);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
    }

    .srv1-wh-btn-outline {
        background-color: transparent;
        color: var(--srv1-dark);
        border: 1px solid var(--srv1-border);
    }

    .srv1-wh-btn-outline:hover {
        border-color: var(--srv1-primary);
        color: var(--srv1-primary);
        background-color: #f8faff;
    }

    .srv1-wh-btn-outline-light {
        border-color: rgba(255, 255, 255, 0.4);
    }

    .srv1-wh-btn-outline-light:hover {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

    .srv1-link {
        color: var(--srv1-primary);
        font-weight: 600;
    }

    .srv1-link:hover {
        text-decoration: underline;
    }

    .full-width {
        display: block;
        width: 100%;
    }

    /* HERO */
    .srv1-wh-hero {
            background-color: var(--srv1-dark);
    background-image: radial-gradient(circle at 70% 30%, #0f145b 0%, #03063a 70%);
        padding: 140px 0 100px;
        color: #ffffff;
        position: relative;
    }

    .srv1-wh-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .srv1-wh-hero-sub {
        font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
   
    }

    .srv1-wh-hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .srv1-wh-hero-actions .srv1-wh-btn-outline {
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .srv1-wh-hero-actions .srv1-wh-btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
    }

    .srv1-wh-hero-meta {
        margin-top: 1.5rem;
        color: #9fa6b2;
        font-size: 0.9rem;
    }

/* Breadcrumb */
.srv1-reseller-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

.srv1-reseller-breadcrumb li {
    display: flex;
    align-items: center;
}

.srv1-reseller-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.srv1-reseller-breadcrumb a:hover {
    color: var(--srv1-white);
}

.srv1-reseller-breadcrumb .active {
    color: var(--srv1-white);
}

.srv1-reseller-breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}


    .srv1-wh-svg-anim {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    /* CHECK LIST */
    .srv1-wh-check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .srv1-wh-check-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1rem;
        color: var(--srv1-text);
    }

    .srv1-wh-check-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--srv1-primary);
        font-weight: bold;
    }

    /* FEATURE CARDS */
    .srv1-wh-feature-card {
        background: #ffffff;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid var(--srv1-border);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .srv1-wh-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-color: var(--srv1-primary);
    }

    .srv1-wh-feature-card .icon-wrap {
        margin-bottom: 1.5rem;
    }

    .srv1-wh-feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .srv1-wh-feature-card p {
        font-size: 0.95rem;
        color: var(--srv1-text);
        margin: 0;
    }

    /* OS / PLATFORM GRID */
    .srv1-wh-os-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .os-item {
        background: #ffffff;
        border: 1px solid var(--srv1-border);
        border-radius: 8px;
        padding: 1.5rem 1rem;
        text-align: center;
        font-weight: 600;
        color: var(--srv1-dark);
        transition: 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
    }

    .os-item:hover {
        border-color: var(--srv1-primary);
        color: var(--srv1-primary);
        background: #f8faff;
    }

    .os-item.custom {
        border-style: dashed;
    }

    /* STEPS */
    .step-card {
        background: #ffffff;
        padding: 2rem;
        border-radius: 10px;
        height: 100%;
        border-top: 4px solid var(--srv1-primary);
        text-align: left;
    }

    .step-num {
        display: block;
        font-size: 3rem;
        font-weight: 800;
        color: #eef2ff;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.9rem;
        color: var(--srv1-text);
        margin: 0;
    }

    /* USE CASES */
    .use-case-box {
        padding: 2rem;
        border-left: 4px solid var(--srv1-primary);
        background: #fcfcfc;
        border-radius: 0 8px 8px 0;
        transition: 0.3s;
    }

    .use-case-box:hover {
        background: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .use-case-box h4 {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .use-case-box p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--srv1-text);
    }

    /* FAQ Accordion */
    .srv1-wh-accordion-item {
        border-bottom: 1px solid var(--srv1-border);
    }

    .srv1-wh-accordion-header {
        width: 100%;
        text-align: left;
        padding: 1.5rem 0;
        background: none;
        border: none;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--srv1-dark);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: inherit;
    }

    .srv1-wh-accordion-header .icon {
        font-size: 1.5rem;
        color: var(--srv1-primary);
        transition: transform 0.3s;
    }

    .srv1-wh-accordion-header.active .icon {
        transform: rotate(45deg);
    }

    .srv1-wh-accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        color: var(--srv1-text);
        padding-right: 2rem;
    }

    .srv1-wh-accordion-body.open {
        padding-bottom: 1.5rem;
    }

    /* INFRA BG */
    .bg-pattern {
        position: absolute;
        bottom: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
    }

    .infra-item {
        position: relative;
        z-index: 1;
        padding-left: 1rem;
        border-left: 2px solid var(--srv1-primary);
    }

    /* HF Accordion – მახასიათებლების ბლოკი */
    .hf-accordion {
        border-radius: 12px;
        border: 1px solid var(--srv1-border);
        background: #ffffff;
        overflow: hidden;
    }

    .hf-accordion-item + .hf-accordion-item {
        border-top: 1px solid var(--srv1-border);
    }

    .hf-accordion-header {
        width: 100%;
        padding: 1.25rem 1.5rem;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
    }

    .hf-accordion-title {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .hf-accordion-label {
        font-weight: 600;
        font-size: 1.05rem;
        color: var(--srv1-dark);
    }

    .hf-accordion-sub {
        font-size: 0.85rem;
        color: var(--srv1-text);
    }

    .hf-accordion-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid var(--srv1-border);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
    }

    .hf-accordion-icon::before,
    .hf-accordion-icon::after {
        content: "";
        position: absolute;
        background: var(--srv1-primary);
        transition: transform 0.25s ease;
    }

    .hf-accordion-icon::before {
        width: 12px;
        height: 2px;
    }

    .hf-accordion-icon::after {
        width: 2px;
        height: 12px;
    }

    .hf-accordion-item.open .hf-accordion-icon::after {
        transform: scaleY(0);
    }

    .hf-accordion-panel {
        max-height: 0;
        overflow: hidden;
        padding: 0 1.5rem;
        transition: max-height 0.35s ease;
    }

    .hf-accordion-item.open .hf-accordion-panel {
        padding-bottom: 1.5rem;
    }

    .hf-feature-grid {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 0.75rem;
    }

    .hf-feature-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
    }

    .hf-feature-title {
        flex: 0 0 220px;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--srv1-dark);
    }

    .hf-feature-values {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        flex: 1 1 auto;
    }

    .hf-feature-values--long {
        flex: 1 1 auto;
    }

    .hf-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.35rem 0.8rem;
        border-radius: 999px;
        border: 1px solid var(--srv1-border);
        font-size: 0.85rem;
        color: var(--srv1-dark);
        background: #f9fafb;
        white-space: nowrap;
    }

    .hf-pill-wide {
        min-width: 220px;
        text-align: center;
    }

    .hf-pill-check {
        border-color: #d1fae5;
        background: #ecfdf5;
        color: #065f46;
        font-weight: 600;
    }

    /* PRICING – Grid + Cards */

    .srv1-wh-pricing-intro {
        margin-bottom: 2rem;
    }

    .srv1-wh-pricing-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--srv1-dark);
        margin-bottom: 0.75rem;
    }

    .srv1-wh-pricing-sub {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 1.5rem;
        color: var(--srv1-text);
    }

    .pricing-toggle-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .pricing-toggle-inner {
        display: inline-flex;
        gap: 4px;
        padding: 4px;
        border-radius: 10px;
        background: #f4f7f9;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .pricing-toggle {
        border: none;
        outline: none;
        padding: 0.4rem 1.2rem;
        border-radius: 999px;
        background: transparent;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        color: var(--srv1-text);
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .pricing-toggle:hover {
        background: rgba(255, 255, 255, 0.7);
    }

    .pricing-toggle.active {
        background: #ffffff;
        color: var(--srv1-primary);
        box-shadow: 0 4px 10px rgba(7, 15, 35, 0.12);
    }

    .pricing-toggle-badge {
        display: inline-block;
        margin-left: 0.25rem;
        font-size: 0.7rem;
        padding: 0.1rem 0.45rem;
        border-radius: 999px;
        background: #fef3c7;
        color: #b45309;
        font-weight: 600;
    }


    /* --- 2. MIGRATION STRIP --- */
    .srv1-home-migration-strip {
        background-color: var(--srv1-primary);
        color: var(--srv1-white);
        padding: 20px 0;
        position: relative;
        z-index: 3;
		text-align:left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .srv1-mig-text { font-size: 1.05rem; font-weight: 600; }
    .srv1-mig-sub { font-size: 0.9rem; opacity: 0.9; font-weight: 400; display: inline-block; margin-left: 10px;}

    /* --- 3. COMPACT WHY --- */
    .srv1-home-why-compact {
        padding: 40px 0;
        background: var(--srv1-white);
        border-bottom: 1px solid var(--srv1-border);
    }
    .srv1-why-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    .srv1-why-icon {
        width: 40px;
        height: 40px;
        background: rgba(42, 98, 254, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--srv1-primary);
        flex-shrink: 0;
    }
    .srv1-why-text { font-size: 0.95rem; font-weight: 600; color: var(--srv1-dark); line-height: 1.3;}
/* ძალიან პატარა ეკრანებისთვის (მობილური) */
@media (max-width: 575.98px) {
    .pricing-toggle-inner {
        width: 100%;
        justify-content: center;
    }

    .pricing-toggle {
        flex: 1 1 100%;
        white-space: normal;
        padding: 0.5rem 0.8rem;
    }

    .pricing-toggle-badge {
        width: 100%;
        max-width: 130px;
        text-align: center;
    }
}

    .srv1-wh-pricing-table {
        margin-bottom: 1.5rem;
    }

    .pricing-grid.grid {
        display: grid;
        gap: 1.5rem;
    }

    .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    @media (min-width: 768px) {
        .md\:grid-cols-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 992px) {
        .lg\:grid-cols-5 {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }
    }

    .bg-surface {
        background: #ffffff;
    }

    .border-secondary-200 {
        border-color: #e6e8ec;
    }

    .border-accent-600 {
        border-color: var(--srv1-accent);
    }

    .rounded-xl {
        border-radius: 1rem;
    }

    .p-6 {
        padding: 1.5rem;
    }

    .pricing-card {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 1rem;
        border-width: 1px;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
		border:1px solid var(--srv1-border);
        transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .pricing-card:hover {
        box-shadow: 0 14px 40px rgba(7, 15, 35, 0.12);
       transform: translateY(-5px);
        border-color: var(--srv1-accent);
    }

    .pricing-card-header {
        margin-bottom: 1.2rem;
    }

    .pricing-card-title {
        font-size: 1.3rem;
        font-weight: 600;
		text-align:center;
		border-bottom: 1px solid #e1e1e1;
		padding-bottom:10px;
        margin-bottom: 0.25rem;
        color: var(--srv1-dark);
    }

    .pricing-display {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.4rem;
        margin-top: 0.6rem;
        margin-bottom: 0.35rem;
    }

    .annual-price {
        font-size: 2.1rem;
        line-height: 1;
        font-weight: 700;
        color: var(--srv1-dark);
    }

    .pricing-period {
        font-size: 0.9rem;
        color: var(--srv1-text);
    }

    .price-save {
        font-size: 0.8rem;
        color: var(--srv1-primary);
        font-weight: 600;
		text-align:center;
		border-bottom: 1px solid #e1e1e1;
		padding-bottom:10px;
        min-height: 1.2rem;
    }

    .space-y-4 > * + * {
        margin-top: 1rem;
    }

    .pricing-features {
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .pricing-feature {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: var(--srv1-dark);
    }

    .pricing-feature .check-icon {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        margin-right: 0.6rem;
        border: 1px solid var(--srv1-accent);
        background: white;
        position: relative;
    }

    .pricing-feature .check-icon::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 5px;
        width: 3px;
        height: 5px;
        border-right: 2px solid  var(--srv1-accent);
        border-bottom: 2px solid  var(--srv1-accent);
        transform: rotate(35deg);
    }

    .pricing-feature.location .location-icon {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        margin-right: 0.6rem;
        background: #ecfdf5;
        border: 1px solid  var(--srv1-accent);
        position: relative;
    }

    .pricing-feature.location .location-icon::before {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: 999px;
        border: 2px solid #059669;
    }

    .pricing-feature.location .location-icon::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 5px;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        border: 2px solid #059669;
        border-top-color: transparent;
        border-left-color: transparent;
        transform: rotate(45deg);
    }

    .pricing-card .srv1-wh-btn {
        margin-top: auto;
    }

    .pricing-card-popular {
        position: relative;
        box-shadow: 0 12px 36px rgba(3,6,58, 0.25);
    }

    .popular-badge {
        position: absolute;
        top: -0.9rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--srv1-primary);
        color: #ffffff;
        padding: 0.2rem 0.9rem;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    /* FINAL CTA */
    .srv1-wh-final-cta {
        position: relative;
        overflow: hidden;
    }

    .srv1-wh-final-cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(42, 98, 254, 0.25) 0%, rgba(3, 6, 58, 1) 70%);
        z-index: 0;
    }

    .srv1-wh-final-cta .container {
        position: relative;
        z-index: 1;
    }

    .final-cta-text {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        .srv1-wh-hero {
            text-align: center;
        }

        .srv1-wh-hero-actions {
            justify-content: center;
        }

        .srv1-wh-heading {
            font-size: 1.75rem;
        }

        .hf-feature-title {
            flex: 1 1 100%;
        }
    }

    @media (max-width: 768px) {
        .srv1-wh-hero h1 {
            font-size: 2rem;
        }

        .srv1-wh-section {
            padding: 60px 0;
        }
    }