@font-face {
    font-family: "Vazirmatn";
    src: url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@master/fonts/webfonts/Vazirmatn%5Bwght%5D.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   DESIGN TOKENS
========================================================= */

:root {
    --primary: #2140D4;
    --primary-light: #eef2ff;
    --violet: #7657ff;
    --summer-orange: #ff9f43;
    --text: #161a2d;
    --text-soft: #636a7f;
    --text-muted: #8c92a6;
    --background: #f7f8fc;
    --surface: #ffffff;
    --surface-soft: #f1f4fb;
    --border: #e5e8f1;
    --success: #1dad78;
    --shadow-sm: 0 5px 18px rgba(23, 31, 66, .06);
    --shadow-md: 0 15px 50px rgba(23, 31, 66, .09);
    --container: 1220px;
    --transition: 220ms cubic-bezier(.2, .7, .2, 1);
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    background: linear-gradient( 180deg, #ffffff 0%, #fafbff 25%, var(--background) 100% );
    color: var(--text);
    direction: rtl;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min( calc(100% - 40px), var(--container) );
    margin-inline: auto;
}

.section {
    padding-block: 80px;
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: .018;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body.modal-open {
    overflow: hidden;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(33, 64, 212, .22);
    outline-offset: 3px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding-inline: 21px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), #3457ee );
    box-shadow: 0 12px 28px rgba(33, 64, 212, .25);
}

.btn-primary:hover {
    box-shadow: 0 17px 35px rgba(33, 64, 212, .32);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    background: #fff;
    border-color: #cdd4e7;
}

.btn-ghost {
    background: transparent;
    color: var(--text-soft);
}

.btn-ghost:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-large {
    height: 56px;
    padding-inline: 27px;
    border-radius: 15px;
    font-size: 15px;
}

.btn-small {
    height: 42px;
    padding-inline: 17px;
    font-size: 13px;
}

.btn svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(222, 226, 239, .72);
    backdrop-filter: blur(20px) saturate(160%);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 64, 212, .14);
    overflow: hidden;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.brand-copy small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.6;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: 16px;
}

.main-nav a {
    padding: 10px 12px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
    border-radius: 9px;
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.header-actions {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-button {
    margin-inline-start: auto;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--surface-soft);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 17px;
    height: 2px;
    background: var(--text);
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(22, 29, 60, .06);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
/* =========================================================
   TELEGRAM EXCLUSIVE OFFERS
========================================================= */

.telegram-offers-section {
    padding:
        15px 0 75px;
}


.telegram-offers-card {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        90px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 28px;

    padding:
        30px 34px;

    color: #fff;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255,255,255,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #168bd2,
            #229ed9 55%,
            #1377b8
        );

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 25px;

    box-shadow:
        0 24px 60px rgba(25, 145, 200, .22);
}


.telegram-offers-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -100px;
    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    pointer-events: none;
}


/* Telegram logo */

.telegram-offers-icon {
    position: relative;

    z-index: 2;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #229ed9;

    background: #fff;

    border-radius: 22px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.13);
}


.telegram-offers-icon svg {
    width: 45px;
    height: 45px;

    fill: currentColor;
}


/* Content */

.telegram-offers-content {
    position: relative;

    z-index: 2;
}


.telegram-offers-eyebrow {
    display: block;

    margin-bottom: 6px;

    color:
        rgba(255,255,255,.75);

    font-size: 16px;
    font-weight: 800;
}


.telegram-offers-content h2 {
    margin: 0;

    font-size:
        clamp(22px, 3vw, 32px);

    line-height: 1.55;
}


.telegram-offers-content h2 span {
    color: #ffe36d;
}


.telegram-offers-content > p {
    max-width: 720px;

    margin:
        10px 0 0;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 2;
}


.telegram-offers-content > p strong {
    color: #fff;
}


/* Notification message */

.telegram-offers-notice {
    width: fit-content;

    margin-top: 15px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        8px 12px;

    background:
        rgba(0,0,0,.13);

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 9px;
}


.telegram-offers-notice p {
    margin: 0;

    color:
        rgba(255,255,255,.9);

    font-size: 14px;

    line-height: 1.7;
}


/* Action */

.telegram-offers-action {
    position: relative;

    z-index: 2;

    min-width: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;
}


.telegram-offers-handle {
    direction: ltr;

    color:
        rgba(255,255,255,.8);

    font-size: 14px;
    font-weight: 700;
}


.telegram-join-button {
    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        0 18px;

    color: #168bd2;

    background: #fff;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0,0,0,.12);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.telegram-join-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 17px 35px rgba(0,0,0,.17);
}


.telegram-join-button svg {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    fill: currentColor;
}


.telegram-offers-action small {
    color:
        rgba(255,255,255,.68);

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .telegram-offers-card {
        grid-template-columns:
            70px 1fr;
    }


    .telegram-offers-icon {
        width: 65px;
        height: 65px;

        border-radius: 18px;
    }


    .telegram-offers-icon svg {
        width: 35px;
        height: 35px;
    }


    .telegram-offers-action {
        grid-column:
            1 / -1;

        width: 100%;

        min-width: 0;

        margin-top: 5px;
    }


    .telegram-join-button {
        max-width: 350px;
    }

}


@media (max-width: 600px) {

    .telegram-offers-section {
        padding-bottom: 55px;
    }


    .telegram-offers-card {
        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding:
            25px 20px;

        border-radius: 21px;
    }


    .telegram-offers-icon {
        width: 58px;
        height: 58px;
    }


    .telegram-offers-content h2 {
        font-size: 21px;
    }


    .telegram-offers-notice {
        width: 100%;
    }


    .telegram-offers-action {
        align-items: stretch;
    }


    .telegram-join-button {
        max-width: none;
    }


    .telegram-offers-handle,
    .telegram-offers-action small {
        text-align: center;
    }

}
/* =========================================================
   PRICE INCREASE WARNING
========================================================= */

.campaign-warning {
    padding: 18px 0 0;
}

.campaign-warning-box {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    margin-bottom: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #fffaf0, #fff5db );
    border: 1px solid #efd18a;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(150, 96, 10, .08);
}

.campaign-warning-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient( 180deg, #ffb62e, #e67a00 );
}

.campaign-warning-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a96000;
    background: linear-gradient( 145deg, #ffe8b4, #ffd47b );
    border: 1px solid rgba(190, 115, 0, .15);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(190, 115, 0, .13);
}

.campaign-warning-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.campaign-warning-content {
    position: relative;
    z-index: 2;
}

.campaign-warning-label {
    display: inline-flex;
    padding: 5px 10px;
    color: #985700;
    background: rgba(255, 180, 40, .16);
    border: 1px solid rgba(205, 124, 0, .14);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
}

.campaign-warning-content h2 {
    margin: 8px 0 6px;
    color: #34291b;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.7;
}

.campaign-warning-content p {
    max-width: 1050px;
    margin: 0;
    color: #75654d;
    font-size: 14px;
    line-height: 2;
}

.campaign-warning-content strong {
    color: #49371e;
    font-weight: 900;
}

@media (max-width: 650px) {
    .campaign-warning {
        padding-top: 12px;
    }

    .campaign-warning-box {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 19px 18px;
    }

    .campaign-warning-icon {
        width: 49px;
        height: 49px;
    }

    .campaign-warning-icon svg {
        width: 24px;
        height: 24px;
    }

    .campaign-warning-content h2 {
        font-size: 14px;
    }

    .campaign-warning-content p {
        font-size: 14px;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 700px;
    background: radial-gradient( circle at 86% 20%, rgba(33, 64, 212, .10), transparent 29% ), radial-gradient( circle at 68% 48%, rgba(255, 179, 71, .12), transparent 20% ), linear-gradient( 180deg, #f8faff, transparent );
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(15px);
    pointer-events: none;
}

.hero-orb-one {
    width: 300px;
    height: 300px;
    top: 60px;
    left: -160px;
    background: rgba(118, 87, 255, .08);
}

.hero-orb-two {
    width: 240px;
    height: 240px;
    top: 410px;
    right: -120px;
    background: rgba(255, 159, 67, .10);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 75px;
}

.hero-content {
    max-width: 620px;
}

.campaign-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 9px 7px 14px;
    color: var(--primary);
    background: #fff;
    border: 1px solid #dfe5fa;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 12px;
    font-weight: 700;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--summer-orange);
    box-shadow: 0 0 0 5px rgba(255, 159, 67, .12);
}

.eyebrow-badge {
    padding: 6px 10px;
    border-radius: 999px;
    color: #8a5000;
    background: #fff1d5;
}

.hero h1 span {
    font-size: 70px;
    margin-top: 15px !important;
    display: block;
    color: var(--primary);
}

.hero h1 {
    margin: 26px 0 20px;
    max-width: 670px;
    font-size: clamp( 30px, 5vw, 60px );
    line-height: 1.25;
    letter-spacing: -2px;
    font-weight: 900;
}

.hero-description {
    max-width: 595px;
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 2.05;
}

.hero-promo-pills {
    margin-top: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-promo-pills > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--border);
    color: #3e455b;
    font-size: 12px;
    font-weight: 600;
}

.status-icon {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(29, 173, 120, .10);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.hero-trust {
    margin-top: 43px;
    display: flex;
    align-items: center;
    gap: 23px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 13px;
    font-weight: 800;
}

.trust-item span {
    color: var(--text-muted);
    font-size: 10px;
}

.trust-separator {
    width: 1px;
    height: 31px;
    background: var(--border);
}

/* =========================================================
   CAMPAIGN ARTWORK
========================================================= */

.hero-visual {
    position: relative;
    max-width: 580px;
    margin-inline: auto;
    width: 100%;
}

.campaign-artwork-card {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(24px);
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(27, 38, 93, .18);
    transform: rotate(-1deg);
    transition: transform .5s ease, box-shadow .5s ease;
}

.campaign-artwork-card:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 42px 100px rgba(27, 38, 93, .22);
}

.campaign-artwork-card::after {
    content: "";
    position: absolute;
    inset: 30px -14px -18px 30px;
    z-index: -1;
    border-radius: 31px;
    background: linear-gradient( 145deg, rgba(33, 64, 212, .13), rgba(255, 159, 67, .12) );
}

.campaign-artwork-topbar {
    min-height: 42px;
    padding-inline: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    direction: ltr;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .6px;
}

.campaign-artwork-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    direction: rtl;
    letter-spacing: 0;
}

.campaign-artwork-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(29, 173, 120, .10);
}

.campaign-artwork-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 21px;
    background: #182f9c;
    isolation: isolate;
}

.campaign-artwork-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.campaign-artwork-card:hover .campaign-artwork-image {
    transform: scale(1.015);
}

.campaign-artwork-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
    border-radius: inherit;
}

.campaign-artwork-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient( 115deg, transparent 25%, rgba(255,255,255,.14) 42%, transparent 58% );
    transform: translateX(-120%);
    transition: transform 1s ease;
}

.campaign-artwork-card:hover .campaign-artwork-shine {
    transform: translateX(120%);
}

.campaign-artwork-footer {
    min-height: 48px;
    padding-inline: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .5px;
}

.campaign-artwork-dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.campaign-artwork-dots i {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #ced3df;
}

.campaign-artwork-dots i:first-child {
    width: 17px;
    background: var(--primary);
}

/* =========================================================
   COUNTDOWN
========================================================= */

.countdown-wrap {
    position: relative;
    z-index: 5;
    margin-top: 80px;
}

.countdown-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 31px 38px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient( 120deg, #111936, #17265d );
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(17,25,54,.18);
}

.countdown-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -80px;
    top: -120px;
    border-radius: 50%;
    background: rgba(88, 107, 255, .18);
    filter: blur(5px);
}

.countdown-intro {
    position: relative;
    z-index: 2;
}

.section-mini-label {
    color: #92a3ff;
    font-size: 10px;
    font-weight: 700;
}

.countdown-intro h2 {
    margin: 6px 0 7px;
    font-size: 21px;
}

.countdown-intro p {
    margin: 0;
    color: #aeb6d0;
    font-size: 11px;
}

.countdown-intro strong {
    color: #fff;
}

.countdown {
    position: relative;
    z-index: 2;
    display: flex;
    direction: ltr;
    align-items: center;
    gap: 8px;
}

.countdown-unit {
    width: 78px;
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
}

.countdown-unit strong {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;
}

.countdown-unit span {
    margin-top: 5px;
    color: #959fbd;
    font-size: 9px;
}

.countdown-separator {
    color: #6f7ba3;
    font-weight: 900;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.section-heading > div:first-child {
    max-width: 600px;
}

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.45;
    letter-spacing: -.8px;
}

.section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 2;
}

.section-heading.centered {
    max-width: 730px;
    margin-inline: auto;
    margin-bottom: 45px;
    display: block;
    text-align: center;
}

.section-heading.centered p {
    margin: 14px auto 0;
    max-width: 625px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.section-kicker::before {
    content: "";
    width: 21px;
    height: 2px;
    background: currentColor;
}

/* =========================================================
   HOSTING PROMOTION SELECTOR
========================================================= */

.promotion-types {
    position: relative;
}

.promotion-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 950px;
    margin-inline: auto;
}

.promotion-option {
    position: relative;
    min-height: 180px;
    display: grid;
    grid-template-columns: 43px 55px 1fr 32px;
    align-items: center;
    gap: 18px;
    padding: 26px;
    text-align: right;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 21px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.promotion-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #ccd4f3;
}

.promotion-option.active {
    border-color: rgba(33,64,212,.35);
    background: linear-gradient( 145deg, #ffffff, #f5f7ff );
    box-shadow: 0 18px 50px rgba(33,64,212,.12);
}

.promotion-option.active::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 28px;
    left: 28px;
    height: 3px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient( 90deg, var(--primary), var(--violet) );
}

.promotion-number {
    color: #bcc1ce;
    font-size: 10px;
    font-weight: 700;
}

.promotion-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 15px;
}

.promotion-icon svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promotion-copy {
    display: flex;
    flex-direction: column;
}

.promotion-copy small {
    color: var(--text-muted);
    font-size: 10px;
}

.promotion-copy strong {
    margin-top: 5px;
    font-size: 18px;
}

.promotion-copy > span {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.promotion-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 11px;
    transition: var(--transition);
}

.promotion-option.active .promotion-check {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.promotion-hint {
    max-width: 950px;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 16px;
    color: var(--text-soft);
    background: #f4f6fb;
    border-radius: 11px;
    font-size: 14px;
}

.promotion-hint > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.promotion-hint p {
    margin: 0;
}

.promotion-hint strong {
    color: var(--text);
}

.hint-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    background: var(--success);
    border-radius: 50%;
}

/* =========================================================
   HOSTING RENEWAL & NEW-SERVICE OFFERS
========================================================= */

.renewal-offer-panel {
    max-width: 950px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 16px;
    transition: opacity .25s ease, transform .25s ease;
}

.renewal-offer-panel.is-hidden {
    display: none;
}

.renewal-coupon-block {
    position: relative;
    overflow: hidden;
    padding: 27px;
    color: #fff;
    background: linear-gradient( 145deg, #17265d, #2140d4 );
    border-radius: 20px;
}

.renewal-coupon-block::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -50px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.renewal-label {
    display: block;
    color: #aebcff;
    font-size: 11px;
    font-weight: 700;
}

.renewal-coupon-row {
    position: relative;
    z-index: 2;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.renewal-coupon-code {
    font-size: 28px;
    line-height: 1;
    letter-spacing: .6px;
}

.copy-coupon-button {
    padding: 8px 11px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.copy-coupon-button:hover {
    background: rgba(255,255,255,.2);
}

.renewal-coupon-block p {
    position: relative;
    z-index: 2;
    margin: 17px 0 0;
    color: #bbc6f3;
    font-size: 10px;
    line-height: 1.8;
}

.renewal-products {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.renewal-products-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.renewal-products-heading span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}

.renewal-products-heading h3 {
    margin: 5px 0 0;
    font-size: 16px;
}

.how-to-renew-button {
    flex-shrink: 0;
    padding: 10px 15px;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #dae1ff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.how-to-renew-button:hover {
    color: #fff;
    background: var(--primary);
}

.eligible-products {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eligible-products a {
    padding: 13px 18px;
    color: #3f4659;
    background: #f5f7fb;
    border: 1px solid #e3e7f0;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(25, 35, 70, 0.03);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.eligible-products a:hover {
    color: var(--primary);
    background: linear-gradient( 135deg, #ffffff, #eef2ff );
    border-color: rgba(33, 64, 212, 0.35);
    box-shadow: 0 10px 24px rgba(33, 64, 212, 0.12);
    transform: translateY(-3px);
}

.eligible-products a:active {
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .eligible-products span {
        padding: 11px 14px;
        font-size: 12px;
    }
}

/* =========================================================
   RENEWAL GUIDE MODAL
========================================================= */

.campaign-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.campaign-modal.open {
    opacity: 1;
    visibility: visible;
}

.campaign-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 17, 38, .65);
    backdrop-filter: blur(7px);
}

.campaign-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 680px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(13, 21, 60, .28);
    transform: translateY(15px) scale(.985);
    transition: transform .25s ease;
}

.campaign-modal.open .campaign-modal-dialog {
    transform: translateY(0) scale(1);
}

.campaign-modal-close {
    position: absolute;
    top: 17px;
    left: 17px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    background: #f2f4f8;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
}

.campaign-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 45px;
}

.campaign-modal-icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 14px;
    font-size: 26px;
}

.campaign-modal-header small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}

.campaign-modal-header h2 {
    margin: 3px 0 0;
    font-size: 20px;
}

.renewal-guide-steps {
    margin-top: 28px;
    display: grid;
    gap: 11px;
}

.renewal-guide-step {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 13px;
    padding: 16px;
    background: #f7f8fc;
    border: 1px solid #eceef4;
    border-radius: 14px;
}

.renewal-guide-step > span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
}

.renewal-guide-step strong {
    font-size: 12px;
}

.renewal-guide-step p {
    margin: 4px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.8;
}

.renewal-guide-step a {
    display: inline-block;
    margin-top: 7px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    direction: ltr;
}

.renewal-guide-step code {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 12px;
    color: var(--primary);
    background: #eaf0ff;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    font-weight: 800;
    direction: ltr;
}

.campaign-modal-footer {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 700px) {
    .renewal-offer-panel {
        grid-template-columns: 1fr;
    }

    .renewal-products-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .how-to-renew-button {
        width: 100%;
    }

    .campaign-modal-dialog {
        padding: 25px 18px 18px;
        border-radius: 19px;
    }

    .campaign-modal-header {
        padding-left: 35px;
    }

    .campaign-modal-header h2 {
        font-size: 17px;
    }

    .campaign-modal-footer {
        flex-direction: column;
    }

    .campaign-modal-footer .btn {
        width: 100%;
    }
}

.renewal-discount-badge {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.renewal-discount-badge strong {
    font-size: 58px;
    line-height: .9;
    font-weight: 900;
    color: #fff;
}

.renewal-discount-badge span {
    padding-bottom: 6px;
    color: #bfc9ff;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .renewal-discount-badge strong {
        font-size: 48px;
    }
}

/* =========================================================
   OTHER ACTIVE OFFERS
========================================================= */

.services-overview {
    background: linear-gradient( 180deg, rgba(239,242,249,.6), rgba(247,248,252,.8) );
    border-top: 1px solid #eceef4;
    border-bottom: 1px solid #eceef4;
}

/* =========================================================
   OTHER PRODUCT OFFER CARDS
========================================================= */

.new-service-notice {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    color: #75520b;
    background: #fff9e9;
    border: 1px solid #f2dfaa;
    border-radius: 14px;
}

.new-service-notice-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8c6200;
    background: #ffe7a5;
    border-radius: 10px;
    font-weight: 900;
}

.new-service-notice > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.new-service-notice strong {
    font-size: 18px;
}

.new-service-notice span {
    font-size: 14px;
}

.service-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 21px;
    box-shadow: 0 7px 25px rgba(29, 36, 71, .04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 64, 212, .24);
    box-shadow: 0 20px 55px rgba(29, 36, 71, .10);
}

.service-offer-highlight {
    background: linear-gradient( 145deg, #ffffff, #f5f7ff );
    border-color: rgba(33,64,212,.22);
}

.service-offer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.service-offer-category {
    display: inline-block;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    direction: ltr;
    letter-spacing: .4px;
}

.service-offer-card h3 {
    margin: 5px 0 0;
    font-size: 25px;
}

.service-discount {
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 12px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 13px;
}

.service-discount strong {
    font-size: 23px;
    line-height: 1;
}

.service-discount span {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 700;
}

.service-offer-description {
    margin: 20px 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.9;
}

.service-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px;
    background: #f6f8fc;
    border: 1px dashed #cfd6e8;
    border-radius: 12px;
}

.service-coupon > div {
    display: flex;
    flex-direction: column;
}

.service-coupon small {
    color: var(--text-muted);
    font-size: 8px;
}

.service-coupon strong {
    margin-top: 3px;
    color: var(--text);
    font-size: 16px;
    letter-spacing: .6px;
    direction: ltr;
}

.copy-service-coupon {
    flex-shrink: 0;
    padding: 8px 11px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.copy-service-coupon:hover {
    color: #fff;
    background: var(--primary);
}

.service-offer-link {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.service-offer-link span {
    font-size: 18px;
    transition: transform var(--transition);
}

.service-offer-link:hover span {
    transform: translateX(-4px);
}

.service-location-links {
    margin-top: auto;
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-location-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #dce2ff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.service-location-links a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 800px) {
    .service-offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .service-offer-card {
        min-height: 320px;
        padding: 20px;
    }

    .service-discount {
        min-width: 65px;
    }

    .service-discount strong {
        font-size: 20px;
    }

    .service-coupon strong {
        font-size: 14px;
    }
}

.sister-discount-badge {
    position: absolute;
    top: 15px;
    left: 16px;
    z-index: 4;
    min-width: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    color: #161a2d;
    background: linear-gradient( 135deg, #ffd166, #ff9f43 );
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(255, 159, 67, .28);
    transform: rotate(-2deg);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sister-discount-badge strong {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.sister-discount-badge span {
    margin-top: 4px;
    font-size: 9px;
    font-weight: 800;
}

.sister-brand-card:hover .sister-discount-badge {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 14px 32px rgba(255, 159, 67, .38);
}

/* =========================================================
   OTHER OFFERS FILTER
========================================================= */

.offer-filter {
    position: relative;
    margin: 25px 0 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 7px;
    width: fit-content;
    max-width: 100%;
    background: #f1f3f8;
    border: 1px solid #e4e7ef;
    border-radius: 14px;
}

.offer-filter-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    color: #6a7184;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.offer-filter-button:hover {
    color: var(--primary);
    background: rgba(255,255,255,.65);
}

.offer-filter-button.active {
    color: var(--primary);
    background: #fff;
    border-color: rgba(33,64,212,.13);
    box-shadow: 0 5px 15px rgba(22,30,65,.07);
}

.offer-filter-button small {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 5px;
    color: #8c93a5;
    background: rgba(0,0,0,.045);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    transition: color .2s ease, background .2s ease;
}

.offer-filter-button.active small {
    color: #fff;
    background: var(--primary);
}

.service-offer-card.offer-filter-hidden {
    display: none;
}

.service-offer-card.offer-filter-visible {
    animation: offer-card-in .3s ease both;
}

@keyframes offer-card-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 700px) {
    .offer-filter {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 6px;
        scrollbar-width: none;
    }

    .offer-filter::-webkit-scrollbar {
        display: none;
    }

    .offer-filter-button {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* =========================================================
   SEVEN HOST ECOSYSTEM / SISTER COMPANIES
========================================================= */

.sister-section {
    padding-top: 10px;
}

.sister-showcase {
    position: relative;
    overflow: hidden;
    padding: 52px;
    color: #fff;
    background: radial-gradient( circle at 90% 0%, rgba(72, 98, 255, .34), transparent 31% ), radial-gradient( circle at 10% 100%, rgba(118, 87, 255, .18), transparent 27% ), linear-gradient( 135deg, #10162e, #151d3d 55%, #18265c );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 32px;
    box-shadow: 0 35px 90px rgba(17, 24, 57, .18);
}

.sister-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image: linear-gradient( rgba(255,255,255,.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.08) 1px, transparent 1px );
    background-size: 52px 52px;
    mask-image: linear-gradient( to bottom, rgba(0,0,0,.8), transparent 75% );
}

.sister-showcase-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 38px;
}

.sister-heading-copy {
    max-width: 650px;
}

.sister-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #abb8ff;
    font-size: 11px;
    font-weight: 800;
}

.sister-eyebrow > span {
    width: 25px;
    height: 2px;
    background: #8798ff;
}

.sister-heading-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.45;
}

.sister-heading-copy p {
    max-width: 590px;
    margin: 0;
    color: #aeb7d2;
    font-size: 13px;
    line-height: 2;
}

.sister-family-mark {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    direction: ltr;
}

.sister-family-mark small {
    color: #6f7ca8;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sister-family-mark strong {
    margin-top: 3px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.sister-family-mark span {
    margin-top: 4px;
    color: #7d89ae;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.sister-brand-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}

.sister-brand-card {
    --partner-accent: #7488ff;
    --partner-accent-soft: rgba(116, 136, 255, .15);
    position: relative;
    overflow: hidden;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 23px;
    backdrop-filter: blur(12px);
    transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.sister-brand-card:hover {
    transform: translateY(-7px);
    background: rgba(255,255,255,.075);
    border-color: color-mix( in srgb, var(--partner-accent) 45%, transparent );
    box-shadow: 0 24px 50px rgba(4, 9, 30, .20);
}

.sister-brand-zaya {
    --partner-accent: #a884ff;
    --partner-accent-soft: rgba(168,132,255,.17);
}

.sister-brand-statsfa {
    --partner-accent: #3fd6c2;
    --partner-accent-soft: rgba(63,214,194,.15);
}

.sister-brand-files {
    --partner-accent: #ffae58;
    --partner-accent-soft: rgba(255,174,88,.15);
}

.sister-brand-visual {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient( 145deg, var(--partner-accent-soft), rgba(255,255,255,.015) );
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.sister-brand-visual::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--partner-accent);
    opacity: .11;
    filter: blur(25px);
}

.sister-brand-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: rgba(255,255,255,.27);
    font-size: 9px;
    font-weight: 800;
    direction: ltr;
}

.sister-brand-type {
    position: absolute;
    left: 18px;
    bottom: 15px;
    color: rgba(255,255,255,.38);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.4px;
    direction: ltr;
}

.sister-brand-logo-box {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.sister-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 18px;
}

.sister-brand-card:hover .sister-brand-logo-box {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255,255,255,.12);
    box-shadow: 0 20px 40px rgba(0,0,0,.22);
}

.sister-brand-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 23px;
}

.sister-brand-title {
    display: flex;
    flex-direction: column;
}

.sister-brand-title strong {
    font-family: "Vazirmatn", Arial, sans-serif;
    font-size: 21px;
    font-weight: 900;
    direction: ltr;
    text-align: right;
}

.sister-brand-title span {
    margin-top: 3px;
    color: var(--partner-accent);
    font-size: 17px;
    font-weight: 700;
}

.sister-brand-body > p {
    min-height: 58px;
    margin: 15px 0 20px;
    color: #aab4d0;
    font-size: 13px;
    line-height: 1.9;
}

.sister-coupon-ticket {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    background: rgba(0,0,0,.15);
    border: 1px dashed rgba(255,255,255,.16);
    border-radius: 13px;
}

.sister-coupon-ticket::before,
.sister-coupon-ticket::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 18px;
    background: #151e40;
    transform: translateY(-50%);
    border-radius: 999px;
}

.sister-coupon-ticket::before {
    right: -6px;
}

.sister-coupon-ticket::after {
    left: -6px;
}

.sister-coupon-info {
    display: flex;
    flex-direction: column;
}

.sister-coupon-info small {
    color: #7986aa;
    font-size: 8px;
}

.sister-coupon-info strong {
    margin-top: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    direction: ltr;
}

.sister-copy-button {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding: 8px 11px;
    color: #fff;
    background: var(--partner-accent-soft);
    border: 1px solid color-mix( in srgb, var(--partner-accent) 25%, transparent );
    border-radius: 9px;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.sister-copy-button:hover {
    background: var(--partner-accent);
    transform: translateY(-1px);
}

.sister-brand-link {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.sister-brand-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--partner-accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}

.sister-brand-link:hover svg {
    transform: translate(-3px, -3px);
}

@media (max-width: 950px) {
    .sister-brand-grid {
        grid-template-columns: 1fr;
    }

    .sister-brand-card {
        min-height: auto;
        display: grid;
        grid-template-columns: 180px 1fr;
    }

    .sister-brand-visual {
        height: 100%;
        min-height: 260px;
        border-bottom: 0;
        border-left: 1px solid rgba(255,255,255,.07);
    }
}

@media (max-width: 700px) {
    .sister-showcase {
        padding: 32px 20px;
        border-radius: 23px;
    }

    .sister-showcase-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .sister-family-mark {
        align-items: flex-start;
    }

    .sister-brand-card {
        display: flex;
    }

    .sister-brand-visual {
        min-height: 140px;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
}

/* =========================================================
   WORDPRESS BACKUP PLUGIN
========================================================= */

.wp-backup-section {
    padding-top: 0;
}

.wp-backup-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    gap: 42px;
    padding: 46px;
    background: linear-gradient( 135deg, #ffffff, #f7faff );
    border: 1px solid #dfe6ef;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(27, 51, 78, .10);
}

.wp-backup-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -170px;
    top: -180px;
    border-radius: 50%;
    background: rgba(33, 117, 155, .08);
    pointer-events: none;
}

.wp-backup-content {
    position: relative;
    z-index: 2;
}

.wp-backup-heading {
    display: flex;
    align-items: center;
    gap: 17px;
}

.wp-backup-logo {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient( 145deg, #21759b, #135e96 );
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(33, 117, 155, .22);
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    direction: ltr;
}

.wp-backup-eyebrow {
    color: #21759b;
    font-size: 18px;
    font-weight: 800;
}

.wp-backup-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(26px, 3.5vw, 55px);
    line-height: 1.5;
}

.wp-backup-description {
    max-width: 720px;
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 2.1;
}

.wp-backup-benefits {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.wp-backup-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
}

.wp-backup-benefit-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #21759b;
    background: #eaf5fa;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 900;
}

.wp-backup-benefit > div {
    display: flex;
    flex-direction: column;
}

.wp-backup-benefit strong {
    font-size: 14px;
}

.wp-backup-benefit div span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.wp-backup-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.wp-backup-note {
    color: var(--text-muted);
    font-size: 13px;
}

.wp-backup-offer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 27px;
    color: #fff;
    background: linear-gradient( 145deg, #1d2736, #182f43 );
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(17, 35, 53, .18);
}

.wp-backup-offer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.wp-backup-offer-top > span {
    color: #91b9cd;
    font-size: 9px;
    font-weight: 700;
}

.wp-backup-discount {
    min-width: 78px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    background: #21759b;
    border-radius: 13px;
    box-shadow: 0 10px 25px rgba(33, 117, 155, .30);
}

.wp-backup-discount strong {
    font-size: 25px;
    line-height: 1;
}

.wp-backup-discount small {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 700;
}

.wp-backup-offer-main {
    margin-top: 35px;
}

.wp-backup-offer-label {
    color: #6fc4e8;
    font-size: 18px;
    font-weight: 800;
}

.wp-backup-offer-main h3 {
    margin: 7px 0 10px;
    font-size: 31px;
    line-height: 1.6;
}

.wp-backup-offer-main p {
    margin: 0;
    color: #aebdca;
    font-size: 13px;
    line-height: 1.9;
}

.wp-backup-flow {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    direction: ltr;
}

.wp-backup-flow span {
    padding: 7px 9px;
    color: #d8edf6;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    font-size: 8px;
    font-weight: 800;
}

.wp-backup-flow i {
    color: #5d8193;
    font-style: normal;
    font-size: 12px;
}

@media (max-width: 950px) {
    .wp-backup-card {
        grid-template-columns: 1fr;
    }

    .wp-backup-benefits {
        grid-template-columns: 1fr;
    }

    .wp-backup-offer {
        min-height: 320px;
    }
}

@media (max-width: 650px) {
    .wp-backup-card {
        padding: 28px 20px;
        border-radius: 21px;
    }

    .wp-backup-heading {
        align-items: flex-start;
    }

    .wp-backup-logo {
        width: 52px;
        height: 52px;
        font-size: 27px;
    }

    .wp-backup-heading h2 {
        font-size: 22px;
    }

    .wp-backup-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .wp-backup-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 25px 0 35px;
}

.footer-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-logo {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
}

.footer-brand-copy strong {
    font-size: 18px;
}

.footer-brand-copy span,
.site-footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1080px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .header-actions {
        margin-inline-start: auto;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .section {
        padding-block: 85px;
    }

    .hero {
        padding-top: 65px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-visual {
        max-width: 620px;
    }

    .countdown-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .countdown {
        width: 100%;
        justify-content: space-between;
    }

    .countdown-unit {
        flex: 1;
    }

    .promotion-selector {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min( calc(100% - 28px), var(--container) );
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-copy small {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        margin-inline-start: auto;
    }

    .mobile-nav {
        position: absolute;
        top: 67px;
        left: 14px;
        right: 14px;
        padding: 10px;
        background: rgba(255,255,255,.97);
        border: 1px solid var(--border);
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        flex-direction: column;
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 11px 12px;
        color: var(--text-soft);
        font-size: 12px;
        border-radius: 8px;
    }

    .mobile-nav a:hover {
        color: var(--primary);
        background: var(--primary-light);
    }

    .hero {
        padding-top: 45px;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: 30px;
        letter-spacing: -1.2px;
    }

    .hero h1 span {
        font-size: 40px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 14px;
        justify-content: space-between;
    }

    .trust-item strong {
        font-size: 11px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .campaign-artwork-card {
        padding: 9px;
        border-radius: 23px;
        transform: none;
    }

    .campaign-artwork-card:hover {
        transform: translateY(-3px);
    }

    .campaign-artwork-image-wrap {
        border-radius: 17px;
    }

    .campaign-artwork-topbar,
    .campaign-artwork-footer {
        min-height: 39px;
    }

    .countdown-wrap {
        margin-top: 55px;
    }

    .countdown-card {
        padding: 24px;
        border-radius: 19px;
    }

    .countdown-intro h2 {
        font-size: 18px;
    }

    .countdown {
        gap: 5px;
    }

    .countdown-unit {
        min-width: 0;
        width: auto;
        height: 68px;
        min-height: 68px;
        border-radius: 11px;
    }

    .countdown-unit strong {
        font-size: 18px;
    }

    .countdown-separator {
        font-size: 12px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .promotion-option {
        min-height: auto;
        grid-template-columns: 42px 1fr 28px;
        padding: 20px;
    }

    .promotion-number {
        display: none;
    }

    .promotion-icon {
        width: 42px;
        height: 42px;
    }

    .promotion-copy strong {
        font-size: 15px;
    }

    .promotion-hint {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .campaign-eyebrow {
        font-size: 10px;
    }

    .eyebrow-badge {
        padding-inline: 7px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-promo-pills {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-promo-pills > span {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-separator {
        display: none;
    }

    .campaign-artwork-topbar {
        font-size: 8px;
    }

    .campaign-artwork-footer {
        font-size: 8px;
    }

    .countdown-card {
        padding-inline: 17px;
    }

    .countdown-unit strong {
        font-size: 16px;
    }

    .countdown-unit span {
        font-size: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
/* =========================================================
   DOMAIN REGISTRATION OFFERS
========================================================= */

.domain-offers-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(33, 64, 212, .025),
            transparent
        );
}


/* =========================================================
   DOMAIN GRID
========================================================= */

.domain-offers-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   DOMAIN CARD
========================================================= */

.domain-offer-card {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 22px;

    overflow: hidden;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 8px 24px rgba(24, 32, 70, .055);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.domain-offer-card::before {
    content: "";

    position: absolute;

    width: 115px;
    height: 115px;

    top: -70px;
    left: -55px;

    border-radius: 50%;

    background:
        rgba(33, 64, 212, .05);

    pointer-events: none;
}


.domain-offer-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(33, 64, 212, .23);

    box-shadow:
        0 20px 45px rgba(24, 32, 70, .10);
}


/* =========================================================
   CARD TOP
========================================================= */

.domain-offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;
}


.domain-offer-label,
.domain-offer-discount {
    display: inline-flex;
    align-items: center;

    min-height: 25px;

    padding:
        5px 8px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 800;
}


.domain-offer-label {
    color: #70778b;

    background: #f3f4f8;
}


.domain-offer-discount {
    color: #17835c;

    background: #eaf8f2;
}


/* =========================================================
   TLD
========================================================= */

.domain-tld {
    margin-top: 24px;

    direction: ltr;

    color: var(--primary);

    font-size: 39px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -1.5px;
}


.domain-offer-description {
    min-height: 62px;

    margin:
        15px 0 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   DOMAIN PRICE
========================================================= */

.domain-price {
    margin-top: 21px;

    padding-top: 18px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    border-top:
        1px solid #edf0f5;
}


.domain-price del {
    width: fit-content;

    color: #a2a8b7;

    font-size: 16px;

    text-decoration-thickness: 1px;
}


.domain-price strong {
    display: flex;
    align-items: baseline;

    gap: 5px;

    color: var(--text);

    font-size: 26px;
    font-weight: 900;
}


.domain-price strong small {
    color: var(--text-muted);

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.domain-register-button {
    min-height: 42px;

    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding:
        0 14px;

    color: var(--primary);

    background:
        var(--primary-light);

    border:
        1px solid transparent;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;

    transition:
        color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


.domain-register-button svg {
    width: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.domain-offer-card:hover
.domain-register-button {
    color: #fff;

    background: var(--primary);

    box-shadow:
        0 9px 22px rgba(33, 64, 212, .20);
}


/* =========================================================
   DOMAIN RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

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

}


@media (max-width: 600px) {

    .domain-offers-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .domain-offer-card {
        padding: 20px;
    }


    .domain-offer-description {
        min-height: 0;
    }


    .domain-tld {
        font-size: 35px;
    }

}
/* =========================================================
   SECTION TRANSITION
   Domains → Seven Host Ecosystem
========================================================= */

.section-transition {
    position: relative;

    padding:
        12px 0 54px;
}


.section-transition-inner {
    display: grid;

    grid-template-columns:
        minmax(40px, 1fr)
        auto
        minmax(40px, 1fr);

    align-items: center;

    gap: 22px;
}


.section-transition-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #dfe3ec
        );
}


.section-transition-line:last-child {
    background:
        linear-gradient(
            90deg,
            #dfe3ec,
            transparent
        );
}


/* Center content */

.section-transition-content {
    display: flex;
    align-items: center;

    gap: 13px;

    padding:
        10px 16px;

    background:
        rgba(255, 255, 255, .8);

    border:
        1px solid #e3e7ef;

    border-radius: 14px;

    box-shadow:
        0 8px 24px rgba(23, 31, 66, .05);

    backdrop-filter:
        blur(10px);
}


.section-transition-content > div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.section-transition-content small {
    color: var(--text-muted);

    font-size: 16px;
}


.section-transition-content strong {
    color: var(--text);

    font-size: 18px;
    font-weight: 500;
}


/* Arrow */

.section-transition-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--violet)
        );

    border-radius: 11px;

    box-shadow:
        0 8px 20px rgba(33, 64, 212, .20);
}


.section-transition-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 650px) {

    .section-transition {
        padding:
            4px 0 42px;
    }


    .section-transition-inner {
        grid-template-columns:
            1fr;

        gap: 12px;
    }


    .section-transition-line {
        display: none;
    }


    .section-transition-content {
        width: 100%;

        justify-content: center;

        text-align: right;
    }

}
/* =========================================================
   FAQ
========================================================= */

.faq-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(33, 64, 212, .025)
        );
}


.faq-layout {
    display: grid;

    grid-template-columns:
        minmax(270px, .7fr)
        minmax(0, 1.3fr);

    align-items: start;

    gap: 70px;
}


/* =========================================================
   FAQ INTRO
========================================================= */

.faq-intro {
    position: sticky;

    top: 115px;
}


.faq-intro h2 {
    margin:
        10px 0 15px;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.5;

    letter-spacing: -.7px;
}


.faq-intro > p {
    max-width: 440px;

    margin: 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 2;
}


/* Support box */

.faq-support-box {
    margin-top: 30px;

    display: grid;

    grid-template-columns:
        45px 1fr auto;

    align-items: center;

    gap: 12px;

    padding: 14px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow:
        var(--shadow-sm);
}


.faq-support-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background:
        var(--primary-light);

    border-radius: 12px;
}


.faq-support-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.faq-support-box > div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.faq-support-box strong {
    font-size: 14px;
}


.faq-support-box span {
    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.7;
}


.faq-support-box > a {
    padding:
        8px 10px;

    color: var(--primary);

    background:
        var(--primary-light);

    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color var(--transition),
        background var(--transition);
}


.faq-support-box > a:hover {
    color: #fff;

    background:
        var(--primary);
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    display: grid;

    gap: 9px;
}


.faq-item {
    overflow: hidden;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.faq-item[open] {
    border-color:
        rgba(33, 64, 212, .23);

    box-shadow:
        0 10px 30px rgba(23, 31, 66, .06);
}


/* Remove browser marker */

.faq-item summary {
    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


/* Question */

.faq-item summary {
    min-height: 66px;

    display: grid;

    grid-template-columns:
        34px 1fr 30px;

    align-items: center;

    gap: 13px;

    padding:
        14px 17px;

    cursor: pointer;

    user-select: none;
}


.faq-number {
    color: #a1a8bb;

    direction: ltr;

    font-size: 9px;
    font-weight: 800;
}


.faq-item summary strong {
    color: var(--text);

    font-size: 14px;
    font-weight: 800;

    line-height: 1.8;
}


/* Plus / minus */

.faq-toggle {
    position: relative;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    background:
        var(--surface-soft);

    transition:
        background var(--transition),
        transform var(--transition);
}


.faq-toggle::before,
.faq-toggle::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 11px;
    height: 1.5px;

    background:
        var(--primary);

    border-radius: 5px;

    transform:
        translate(-50%, -50%);
}


.faq-toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


.faq-item[open] .faq-toggle {
    color: #fff;

    background:
        var(--primary);

    transform:
        rotate(180deg);
}


.faq-item[open]
.faq-toggle::before,
.faq-item[open]
.faq-toggle::after {
    background: #fff;
}


.faq-item[open]
.faq-toggle::after {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer {
    margin:
        0 64px 0 17px;

    padding:
        0 0 18px;

    border-top:
        1px solid #edf0f5;
}


.faq-answer p {
    max-width: 720px;

    margin:
        15px 0 0;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 2;
}


.faq-answer p + p {
    margin-top: 7px;
}


.faq-answer strong {
    color: var(--text);

    font-weight: 800;
}


/* Inline FAQ links */

.faq-inline-link {
    width: fit-content;

    margin-top: 12px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 600;
}


.faq-inline-link span {
    transition:
        transform var(--transition);
}


.faq-inline-link:hover span {
    transform:
        translateX(-3px);
}


/* =========================================================
   FAQ RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .faq-intro {
        position: static;

        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .faq-section {
        padding-block:
            75px;
    }


    .faq-support-box {
        grid-template-columns:
            42px 1fr;

        align-items: center;
    }


    .faq-support-box > a {
        grid-column:
            1 / -1;

        width: 100%;

        text-align: center;
    }


    .faq-item summary {
        grid-template-columns:
            25px 1fr 30px;

        gap: 9px;

        padding:
            13px 12px;
    }


    .faq-item summary strong {
        font-size: 11px;
    }


    .faq-answer {
        margin:
            0 46px 0 12px;
    }

}