/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", sans-serif;
    background: #f5f8fc;
    color: #142033;
    line-height: 1.8;
    overflow-x: hidden;
    transition:
        background .35s ease,
        color .35s ease;
}

body.dark {
    background: #07111f;
    color: #edf4ff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #1264d8;
    --primary-dark: #084cae;
    --secondary: #0b2445;

    --text: #142033;
    --muted: #64748b;

    --bg: #f5f8fc;
    --surface: #ffffff;
    --surface-2: #edf4fc;

    --border: rgba(25, 80, 145, .12);

    --shadow:
        0 20px 60px rgba(20, 55, 100, .10);

    --radius: 24px;

    --transition:
        .35s cubic-bezier(.2, .8, .2, 1);
}

body.dark {
    --text: #edf4ff;
    --muted: #9eacc0;

    --bg: #07111f;
    --surface: #0d1c2f;
    --surface-2: #11243c;

    --border: rgba(255, 255, 255, .09);

    --shadow:
        0 20px 60px rgba(0, 0, 0, .28);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.page-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: .12;
    z-index: -2;
}

.glow-one {
    top: -220px;
    right: -180px;
    background: #1775ed;
}

.glow-two {
    bottom: -250px;
    left: -180px;
    background: #53a3ff;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 18px 0;
    transition:
        background var(--transition),
        padding var(--transition),
        box-shadow var(--transition);
}

.header.scrolled {
    padding: 10px 0;

    background:
        rgba(255, 255, 255, .78);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 40, 90, .08);
}

body.dark .header.scrolled {
    background:
        rgba(7, 17, 31, .78);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .2);
}


/* =========================================================
   NAV
========================================================= */

.nav {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: white;

    font-size: 25px;
    font-weight: 900;

    background:
        linear-gradient(
            145deg,
            #2b8cff,
            #0752b8
        );

    box-shadow:
        0 10px 25px rgba(18, 100, 216, .25);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 18px;
    line-height: 1.3;
}

.logo-text small {
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-menu a {
    position: relative;

    color: var(--muted);

    font-size: 14px;
    font-weight: 600;

    transition:
        color var(--transition);
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: var(--primary);
}

.desktop-menu a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    right: 0;
    bottom: -8px;

    border-radius: 10px;

    background: var(--primary);

    transition:
        width var(--transition);
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
    width: 100%;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-btn,
.mobile-menu-btn {
    width: 43px;
    height: 43px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--surface);

    color: var(--text);

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition);
}

.theme-btn:hover,
.mobile-menu-btn:hover {
    transform:
        translateY(-3px);

    background:
        var(--surface-2);
}

.mobile-menu-btn {
    display: none;
}

.header-call {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 13px;

    color: white;

    font-size: 13px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #1775ed,
            #0752b8
        );

    box-shadow:
        0 8px 25px rgba(18, 100, 216, .22);

    transition:
        transform var(--transition);
}

.header-call:hover {
    transform:
        translateY(-3px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    position: absolute;

    top: 78px;
    right: 20px;
    left: 20px;

    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 13px 15px;

    border-radius: 12px;

    color: var(--muted);

    transition:
        background var(--transition),
        color var(--transition);
}

.mobile-menu a:hover {
    background:
        var(--surface-2);

    color:
        var(--primary);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 820px;

    padding-top: 150px;

    display: flex;
    align-items: center;

    position: relative;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 50px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .2px;

    margin-bottom: 18px;
}

.eyebrow span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--primary);

    box-shadow:
        0 0 0 5px rgba(18, 100, 216, .1);
}

.hero h1 {
    max-width: 620px;

    font-size:
        clamp(42px, 5vw, 72px);

    line-height: 1.18;

    letter-spacing: -2px;

    font-weight: 900;

    margin-bottom: 25px;
}

.hero h1 strong {
    color: var(--primary);

    position: relative;
}

.hero h1 strong::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -5px;

    width: 100%;
    height: 8px;

    border-radius: 20px;

    background:
        rgba(18, 100, 216, .12);
}

.hero p {
    max-width: 600px;

    color: var(--muted);

    font-size: 16px;

    line-height: 2.1;

    margin-bottom: 32px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 35px;
}

.btn {
    min-height: 50px;

    padding:
        12px 22px;

    border-radius: 14px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform:
        translateY(-4px);
}

.btn.primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #1775ed,
            #0752b8
        );

    box-shadow:
        0 12px 30px rgba(18, 100, 216, .22);
}

.btn.secondary {
    border:
        1px solid var(--border);

    background:
        var(--surface);

    color:
        var(--text);
}

.btn.white {
    background:
        white;

    color:
        #0752b8;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);
}


/* =========================================================
   HERO INFO
========================================================= */

.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 28px;
}

.info-item {
    display: flex;

    align-items: center;

    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color:
        var(--primary);

    background:
        rgba(18, 100, 216, .09);

    font-weight: 900;
}

.info-item div:last-child {
    display: flex;

    flex-direction: column;
}

.info-item strong {
    font-size: 12px;
}

.info-item small {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   ORBIT
========================================================= */

.insurance-orbit {
    width: 620px;
    height: 620px;

    max-width: 100%;

    margin-inline: auto;

    position: relative;

    display: grid;
    place-items: center;
}

.orbit-circle {
    position: absolute;

    border-radius: 50%;

    border:
        1px dashed rgba(18, 100, 216, .22);

    animation:
        orbit-spin 24s linear infinite;
}

.circle-1 {
    width: 470px;
    height: 470px;
}

.circle-2 {
    width: 330px;
    height: 330px;

    animation-direction: reverse;

    animation-duration: 18s;
}

.orbit-center {
    width: 190px;
    height: 190px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    box-shadow:
        0 25px 70px rgba(10, 60, 120, .16);

    z-index: 5;

    animation:
        center-float 4s ease-in-out infinite;
}

.shield {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    color: white;

    font-size: 38px;
    font-weight: 900;

    background:
        linear-gradient(
            145deg,
            #2b8cff,
            #0752b8
        );

    box-shadow:
        0 15px 30px rgba(18, 100, 216, .3);

    margin-bottom: 10px;
}

.orbit-center strong {
    font-size: 17px;
}

.orbit-center small {
    color: var(--muted);

    font-size: 9px;

    margin-top: 2px;
}


/* =========================================================
   ORBIT PRODUCTS
========================================================= */

.orbit-product {
    position: absolute;

    min-width: 145px;

    padding: 12px 14px;

    display: flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .85);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 15px 40px rgba(10, 60, 120, .10);

    opacity: 0;

    transform:
        scale(.65);

    transition:
        opacity .65s ease,
        transform .65s ease;

    z-index: 8;
}

body.dark .orbit-product {
    background:
        rgba(13, 28, 47, .88);
}

.orbit-product > span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(18, 100, 216, .08);

    font-size: 19px;
}

.orbit-product div {
    display: flex;

    flex-direction: column;
}

.orbit-product strong {
    font-size: 12px;
}

.orbit-product small {
    color: var(--muted);

    font-size: 9px;
}


/* =========================================================
   ORBIT POSITIONS
========================================================= */

.product-1 {
    top: 70px;
    right: 55px;
}

.product-2 {
    top: 235px;
    right: -5px;
}

.product-3 {
    bottom: 70px;
    right: 60px;
}

.product-4 {
    bottom: 5px;
    left: 215px;
}

.product-5 {
    bottom: 70px;
    left: 60px;
}

.product-6 {
    top: 235px;
    left: -5px;
}

.product-7 {
    top: 70px;
    left: 55px;
}

.product-8 {
    top: 5px;
    left: 215px;
}


/* =========================================================
   ORBIT ANIMATION
========================================================= */

@keyframes orbit-spin {
    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }
}

@keyframes center-float {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }
}


/* =========================================================
   STATS
========================================================= */

.stats {
    padding:
        25px 0 70px;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.stat {
    padding:
        28px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border-left:
        1px solid var(--border);
}

.stat:last-child {
    border-left: 0;
}

.stat strong {
    font-size: 18px;

    color:
        var(--primary);

    margin-bottom: 4px;
}

.stat span {
    color:
        var(--muted);

    font-size: 11px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding:
        110px 0;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-text h2,
.section-header h2,
.center-title h2 {
    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.35;

    letter-spacing: -1px;

    margin-bottom: 20px;
}

.about-text p {
    color:
        var(--muted);

    font-size: 15px;

    line-height: 2.2;

    max-width: 560px;

    margin-bottom: 25px;
}

.text-link {
    color:
        var(--primary);

    font-weight: 800;

    font-size: 13px;
}


/* =========================================================
   ABOUT PANEL
========================================================= */

.about-panel {
    padding:
        20px;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.about-item {
    display: flex;

    gap: 18px;

    padding: 25px 15px;

    border-bottom:
        1px solid var(--border);
}

.about-item:last-child {
    border-bottom: 0;
}

.about-item > span {
    color:
        var(--primary);

    font-size: 12px;

    font-weight: 900;
}

.about-item strong {
    display: block;

    font-size: 14px;

    margin-bottom: 5px;
}

.about-item p {
    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.section-header h2 {
    margin-bottom: 0;
}

.outline-btn {
    padding:
        12px 18px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    color:
        var(--primary);

    background:
        var(--surface);

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   PREVIEW GRID
========================================================= */

.preview-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.preview-card {
    min-height: 245px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        var(--surface);

    box-shadow:
        0 10px 35px rgba(10, 50, 100, .05);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.preview-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        var(--shadow);
}

.preview-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background:
        rgba(18, 100, 216, .09);

    font-size: 25px;

    margin-bottom: 22px;
}

.preview-card strong {
    font-size: 15px;

    margin-bottom: 8px;
}

.preview-card p {
    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.9;

    flex: 1;
}

.preview-card span {
    color:
        var(--primary);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding:
        30px 0 110px;
}

.cta {
    padding:
        50px 55px;

    border-radius: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #0752b8,
            #1775ed
        );

    position: relative;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(18, 100, 216, .22);
}

.cta::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    left: -80px;
    bottom: -170px;
}

.cta h2 {
    max-width: 650px;

    font-size:
        clamp(24px, 3vw, 38px);

    line-height: 1.5;

    position: relative;
}

.eyebrow.light {
    color:
        rgba(255,255,255,.8);
}


/* =========================================================
   CONTACT
========================================================= */

.center-title {
    text-align: center;

    max-width: 650px;

    margin:
        0 auto 55px;
}

.center-title .eyebrow {
    justify-content: center;
}

.center-title p {
    color:
        var(--muted);

    font-size: 13px;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.contact-card,
.map-card {
    padding:
        30px;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.contact-row {
    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        18px 0;

    border-bottom:
        1px solid var(--border);
}

.contact-row:last-child {
    border-bottom: 0;
}

.contact-row > span {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background:
        rgba(18, 100, 216, .09);

    color:
        var(--primary);
}

.contact-row div {
    display: flex;

    flex-direction: column;
}

.contact-row small {
    color:
        var(--muted);

    font-size: 10px;
}

.contact-row strong {
    font-size: 13px;

    margin-top: 2px;
}

.map-card {
    min-height: 350px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.map-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    background:
        rgba(18, 100, 216, .09);

    font-size: 30px;

    margin-bottom: 20px;
}

.map-card h3 {
    font-size: 19px;

    margin-bottom: 8px;
}

.map-card p {
    max-width: 430px;

    color:
        var(--muted);

    font-size: 11px;

    line-height: 2;

    margin-bottom: 20px;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    padding:
        180px 0 90px;

    position: relative;
}

.page-hero-content {
    max-width: 800px;

    margin-inline: auto;

    text-align: center;
}

.page-hero .eyebrow {
    justify-content: center;
}

.page-hero h1 {
    font-size:
        clamp(35px, 5vw, 60px);

    line-height: 1.35;

    margin-bottom: 20px;
}

.page-hero h1 strong {
    display: block;

    color:
        var(--primary);
}

.page-hero p {
    max-width: 650px;

    margin-inline: auto;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 2.1;
}


/* =========================================================
   PRODUCTS PAGE
========================================================= */

.products-page {
    padding-top: 30px;
}

.products-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;
}

.products-toolbar > div:first-child {
    display: flex;

    align-items: center;

    gap: 10px;
}

.toolbar-label {
    color:
        var(--muted);

    font-size: 12px;
}

.products-toolbar strong {
    color:
        var(--primary);

    font-size: 12px;
}

.filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.filter {
    border:
        1px solid var(--border);

    border-radius: 12px;

    padding:
        9px 15px;

    color:
        var(--muted);

    background:
        var(--surface);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    transition:
        all var(--transition);
}

.filter:hover,
.filter.active {
    color: white;

    background:
        var(--primary);

    border-color:
        var(--primary);
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.product-card {
    min-height: 270px;

    padding: 28px;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        var(--surface);

    box-shadow:
        0 10px 35px rgba(10, 50, 100, .05);

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card:hover {
    transform:
        translateY(-9px);

    border-color:
        rgba(18, 100, 216, .25);

    box-shadow:
        var(--shadow);
}

.product-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 19px;

    background:
        rgba(18, 100, 216, .09);

    font-size: 27px;

    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 16px;

    margin-bottom: 9px;
}

.product-card p {
    color:
        var(--muted);

    font-size: 11px;

    line-height: 2;

    margin-bottom: 20px;
}

.learn {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: auto;

    color:
        var(--primary);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   PRODUCT NOTE
========================================================= */

.products-note {
    margin-top: 30px;

    padding: 18px 20px;

    display: flex;

    gap: 14px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        var(--surface-2);
}

.note-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color:
        var(--primary);

    background:
        rgba(18, 100, 216, .09);

    font-weight: 900;
}

.products-note p {
    color:
        var(--muted);

    font-size: 10px;

    line-height: 2;
}

.products-note strong {
    color: var(--text);
}


/* =========================================================
   MODAL
========================================================= */

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(2, 12, 25, .65);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.product-modal.active {
    opacity: 1;

    visibility: visible;
}

.modal-box {
    width: min(650px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    position: relative;

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background:
        var(--surface);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .25);

    transform:
        translateY(30px) scale(.97);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}

.product-modal.active .modal-box {
    transform:
        translateY(0) scale(1);
}

.modal-close {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 38px;
    height: 38px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        var(--surface-2);

    color:
        var(--text);

    font-size: 22px;

    cursor: pointer;
}

.modal-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    background:
        rgba(18, 100, 216, .09);

    font-size: 30px;

    margin-bottom: 15px;
}

.modal-category {
    color:
        var(--primary);

    font-size: 10px;

    font-weight: 800;
}

.modal-box h2 {
    font-size: 28px;

    margin:
        5px 0 15px;
}

.modal-description {
    color:
        var(--muted);

    font-size: 13px;

    line-height: 2.2;
}

.modal-divider {
    height: 1px;

    background:
        var(--border);

    margin:
        25px 0;
}

.modal-box h3 {
    font-size: 14px;

    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;

    display: grid;

    gap: 10px;
}

.benefits-list li {
    position: relative;

    padding:
        11px 38px 11px 12px;

    border-radius: 13px;

    background:
        var(--surface-2);

    color:
        var(--muted);

    font-size: 11px;
}

.benefits-list li::before {
    content: "✓";

    position: absolute;

    right: 13px;

    color:
        var(--primary);

    font-weight: 900;
}

.modal-footer {
    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.modal-footer span {
    color:
        var(--muted);

    font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding:
        35px 0;

    border-top:
        1px solid var(--border);

    background:
        var(--surface);
}

.footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    display: flex;

    flex-direction: column;
}

.footer-brand strong {
    color:
        var(--primary);

    font-size: 16px;
}

.footer-brand small {
    color:
        var(--muted);

    font-size: 9px;
}

.footer-inner p,
.footer-inner > span {
    color:
        var(--muted);

    font-size: 10px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background:
        var(--bg);
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;

    background:
        rgba(18, 100, 216, .35);
}

::-webkit-scrollbar-thumb:hover {
    background:
        var(--primary);
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    color: white;

    background:
        var(--primary);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 40px, 1000px);
    }

    .hero-grid {
        gap: 25px;
    }

    .insurance-orbit {
        width: 520px;
        height: 520px;
    }

    .circle-1 {
        width: 420px;
        height: 420px;
    }

    .circle-2 {
        width: 300px;
        height: 300px;
    }

    .orbit-center {
        width: 165px;
        height: 165px;
    }

    .product-1 {
        top: 45px;
        right: 20px;
    }

    .product-2 {
        top: 195px;
        right: -10px;
    }

    .product-3 {
        bottom: 45px;
        right: 20px;
    }

    .product-4 {
        bottom: -5px;
        left: 180px;
    }

    .product-5 {
        bottom: 45px;
        left: 20px;
    }

    .product-6 {
        top: 195px;
        left: -10px;
    }

    .product-7 {
        top: 45px;
        left: 20px;
    }

    .product-8 {
        top: -5px;
        left: 180px;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .desktop-menu {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        margin-inline: auto;
    }

    .hero h1 {
        margin-inline: auto;
    }

    .hero p {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-info {
        justify-content: center;
    }

    .insurance-orbit {
        width: 580px;
        height: 580px;

        margin-top: 20px;
    }

    .preview-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .contact-grid {
        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width:
            calc(100% - 28px);

        max-width: 100%;
    }


    /* =========================
       HEADER
    ========================= */

    .header {
        padding: 10px 0;
    }

    .header.scrolled {
        padding: 7px 0;
    }

    .nav {
        height: 56px;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;

        border-radius: 12px;

        font-size: 21px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .desktop-menu,
    .header-call {
        display: none;
    }

    .nav-actions {
        gap: 7px;
    }

    .theme-btn,
    .mobile-menu-btn {
        width: 39px;
        height: 39px;

        border-radius: 12px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        top: 67px;

        right: 14px;
        left: 14px;

        padding: 10px;

        border-radius: 18px;
    }

    .mobile-menu a {
        padding: 12px 13px;

        font-size: 13px;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: auto;

        padding-top: 115px;
        padding-bottom: 30px;
    }

    .hero-grid {
        gap: 10px;
    }

    .eyebrow {
        font-size: 10px;

        margin-bottom: 12px;
    }

    .eyebrow span {
        width: 7px;
        height: 7px;
    }

    .hero h1 {
        font-size:
            clamp(31px, 9vw, 42px);

        line-height: 1.35;

        letter-spacing: -.8px;

        margin-bottom: 17px;
    }

    .hero h1 strong::after {
        height: 5px;

        bottom: -2px;
    }

    .hero p {
        font-size: 12px;

        line-height: 2;

        margin-bottom: 22px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 9px;

        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        width: 100%;

        min-height: 47px;

        padding: 10px 18px;

        font-size: 12px;
    }

    .hero-info {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .info-item {
        min-width: 190px;

        justify-content: flex-start;
    }

    .info-icon {
        width: 36px;
        height: 36px;

        border-radius: 10px;
    }

    .info-item strong {
        font-size: 11px;
    }

    .info-item small {
        font-size: 9px;
    }


    /* =========================
       ORBIT MOBILE
    ========================= */

    .insurance-orbit {
        width: min(100%, 350px);
        height: 350px;

        margin-top: 25px;

        transform: scale(.95);
    }

    .circle-1 {
        width: 295px;
        height: 295px;
    }

    .circle-2 {
        width: 205px;
        height: 205px;
    }

    .orbit-center {
        width: 115px;
        height: 115px;
    }

    .shield {
        width: 43px;
        height: 43px;

        border-radius: 13px;

        font-size: 22px;

        margin-bottom: 5px;
    }

    .orbit-center strong {
        font-size: 11px;
    }

    .orbit-center small {
        font-size: 6px;
    }

    .orbit-product {
        width: 94px;
        min-width: 94px;

        padding: 6px;

        border-radius: 12px;

        gap: 5px;
    }

    .orbit-product > span {
        width: 27px;
        height: 27px;

        border-radius: 8px;

        font-size: 12px;
    }

    .orbit-product strong {
        font-size: 7px;

        line-height: 1.4;
    }

    .orbit-product small {
        font-size: 5.5px;

        line-height: 1.3;
    }

    .product-1 {
        top: 28px;
        right: 4px;
    }

    .product-2 {
        top: 127px;
        right: -3px;
    }

    .product-3 {
        bottom: 28px;
        right: 4px;
    }

    .product-4 {
        bottom: -5px;
        left: calc(50% - 47px);
    }

    .product-5 {
        bottom: 28px;
        left: 4px;
    }

    .product-6 {
        top: 127px;
        left: -3px;
    }

    .product-7 {
        top: 28px;
        left: 4px;
    }

    .product-8 {
        top: -5px;
        left: calc(50% - 47px);
    }


    /* =========================
       STATS
    ========================= */

    .stats {
        padding:
            20px 0 45px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);

        border-radius: 18px;
    }

    .stat {
        padding:
            20px 10px;

        min-height: 90px;
    }

    .stat strong {
        font-size: 15px;
    }

    .stat span {
        font-size: 9px;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom:
            1px solid var(--border);
    }

    .stat:nth-child(3) {
        border-bottom: 0;
    }

    .stat:nth-child(4) {
        border-bottom: 0;
    }

    .stat:nth-child(2n) {
        border-left: 0;
    }


    /* =========================
       SECTIONS
    ========================= */

    .section {
        padding:
            60px 0;
    }

    .about-grid {
        gap: 30px;
    }

    .about-text h2,
    .section-header h2,
    .center-title h2 {
        font-size:
            clamp(26px, 7vw, 34px);

        line-height: 1.4;

        letter-spacing: -.5px;
    }

    .about-text p {
        font-size: 12px;

        line-height: 2;

        margin-bottom: 18px;
    }

    .text-link {
        font-size: 11px;
    }


    /* =========================
       ABOUT PANEL
    ========================= */

    .about-panel {
        padding: 10px;

        border-radius: 20px;
    }

    .about-item {
        gap: 12px;

        padding: 18px 9px;
    }

    .about-item > span {
        font-size: 10px;
    }

    .about-item strong {
        font-size: 12px;

        margin-bottom: 4px;
    }

    .about-item p {
        font-size: 9px;

        line-height: 1.9;
    }


    /* =========================
       SECTION HEADER
    ========================= */

    .section-header {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 15px;

        margin-bottom: 28px;
    }

    .section-header h2 {
        margin-bottom: 0;
    }

    .outline-btn {
        padding:
            10px 14px;

        font-size: 10px;
    }


    /* =========================
       PREVIEW CARDS
    ========================= */

    .preview-grid {
        grid-template-columns:
            1fr;

        gap: 12px;
    }

    .preview-card {
        min-height: 0;

        padding: 20px;

        border-radius: 19px;
    }

    .preview-icon {
        width: 48px;
        height: 48px;

        border-radius: 14px;

        font-size: 21px;

        margin-bottom: 16px;
    }

    .preview-card strong {
        font-size: 13px;
    }

    .preview-card p {
        font-size: 10px;

        line-height: 1.9;

        margin-bottom: 14px;
    }

    .preview-card span {
        font-size: 10px;
    }


    /* =========================
       CTA
    ========================= */

    .cta-section {
        padding:
            15px 0 65px;
    }

    .cta {
        padding:
            30px 22px;

        border-radius: 23px;

        flex-direction: column;

        align-items:
            flex-start;

        gap: 20px;
    }

    .cta h2 {
        font-size:
            clamp(22px, 6vw, 29px);

        line-height: 1.6;
    }

    .cta .btn {
        width: 100%;
    }


    /* =========================
       CONTACT
    ========================= */

    .center-title {
        margin:
            0 auto 35px;
    }

    .center-title p {
        font-size: 11px;

        line-height: 2;
    }

    .contact-grid {
        grid-template-columns:
            1fr;

        gap: 14px;
    }

    .contact-card,
    .map-card {
        padding:
            20px;

        border-radius: 20px;
    }

    .contact-row {
        gap: 11px;

        padding:
            14px 0;
    }

    .contact-row > span {
        width: 39px;
        height: 39px;

        border-radius: 11px;
    }

    .contact-row small {
        font-size: 8px;
    }

    .contact-row strong {
        font-size: 11px;
    }

    .map-card {
        min-height: 270px;
    }

    .map-icon {
        width: 60px;
        height: 60px;

        border-radius: 18px;

        font-size: 25px;
    }

    .map-card h3 {
        font-size: 16px;
    }

    .map-card p {
        font-size: 10px;

        line-height: 1.9;
    }


    /* =========================
       PAGE HERO
    ========================= */

    .page-hero {
        padding:
            125px 0 45px;
    }

    .page-hero h1 {
        font-size:
            clamp(30px, 8vw, 40px);

        line-height: 1.4;

        margin-bottom: 15px;
    }

    .page-hero p {
        font-size: 11px;

        line-height: 2;
    }


    /* =========================
       PRODUCTS
    ========================= */

    .products-page {
        padding-top: 15px;
    }

    .products-toolbar {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 15px;

        margin-bottom: 25px;
    }

    .products-toolbar > div:first-child {
        width: 100%;
    }

    .toolbar-label {
        font-size: 10px;
    }

    .products-toolbar strong {
        font-size: 11px;
    }

    .filters {
        width: 100%;

        gap: 6px;
    }

    .filter {
        padding:
            8px 11px;

        border-radius: 10px;

        font-size: 9px;
    }

    .products-grid {
        grid-template-columns:
            1fr;

        gap: 12px;
    }

    .product-card {
        min-height: 0;

        padding: 21px;

        border-radius: 20px;
    }

    .product-icon {
        width: 52px;
        height: 52px;

        border-radius: 16px;

        font-size: 23px;

        margin-bottom: 15px;
    }

    .product-card h3 {
        font-size: 14px;

        margin-bottom: 7px;
    }

    .product-card p {
        font-size: 10px;

        line-height: 1.9;

        margin-bottom: 15px;
    }

    .learn {
        font-size: 9px;
    }

    .products-note {
        margin-top: 20px;

        padding:
            14px;

        gap: 10px;

        border-radius: 15px;
    }

    .note-icon {
        width: 27px;
        height: 27px;

        border-radius: 8px;
    }

    .products-note p {
        font-size: 9px;

        line-height: 1.9;
    }


    /* =========================
       MODAL
    ========================= */

    .product-modal {
        padding:
            12px;
    }

    .modal-box {
        width: 100%;

        max-height: 88vh;

        padding:
            22px 18px;

        border-radius: 20px;
    }

    .modal-close {
        top: 12px;
        left: 12px;

        width: 35px;
        height: 35px;

        border-radius: 10px;

        font-size: 19px;
    }

    .modal-icon {
        width: 58px;
        height: 58px;

        border-radius: 18px;

        font-size: 25px;

        margin-bottom: 12px;
    }

    .modal-category {
        font-size: 9px;
    }

    .modal-box h2 {
        font-size: 22px;

        margin:
            5px 0 12px;

        padding-left: 35px;
    }

    .modal-description {
        font-size: 11px;

        line-height: 2;
    }

    .modal-divider {
        margin:
            20px 0;
    }

    .modal-box h3 {
        font-size: 12px;

        margin-bottom: 10px;
    }

    .benefits-list {
        gap: 7px;
    }

    .benefits-list li {
        padding:
            9px 32px 9px 10px;

        border-radius: 11px;

        font-size: 9px;

        line-height: 1.8;
    }

    .benefits-list li::before {
        right: 10px;
    }

    .modal-footer {
        margin-top: 18px;

        padding-top: 15px;

        align-items:
            stretch;

        flex-direction:
            column;

        gap: 10px;
    }

    .modal-footer span {
        font-size: 9px;
    }

    .modal-footer .btn {
        width: 100%;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        padding:
            28px 0;
    }

    .footer-inner {
        align-items:
            center;

        text-align: center;

        flex-direction:
            column;

        gap: 12px;
    }

    .footer-brand {
        align-items:
            center;
    }

    .footer-brand strong {
        font-size: 14px;
    }

    .footer-brand small {
        font-size: 8px;
    }

    .footer-inner p,
    .footer-inner > span {
        font-size: 8px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .container {
        width:
            calc(100% - 22px);
    }

    .logo-text small {
        display: none;
    }

    .hero {
        padding-top: 108px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 11px;
    }

    .insurance-orbit {
        width: 315px;
        height: 315px;

        transform: scale(.9);
    }

    .circle-1 {
        width: 275px;
        height: 275px;
    }

    .circle-2 {
        width: 190px;
        height: 190px;
    }

    .orbit-center {
        width: 105px;
        height: 105px;
    }

    .orbit-product {
        width: 87px;
        min-width: 87px;
    }

    .product-1,
    .product-7 {
        top: 25px;
    }

    .product-2,
    .product-6 {
        top: 112px;
    }

    .product-3,
    .product-5 {
        bottom: 25px;
    }

    .product-4,
    .product-8 {
        left: calc(50% - 43px);
    }

    .product-4 {
        bottom: -3px;
    }

    .product-8 {
        top: -3px;
    }

    .stat {
        padding:
            17px 7px;
    }

    .stat strong {
        font-size: 14px;
    }

    .stat span {
        font-size: 8px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) and (pointer: coarse) {

    .btn:hover,
    .product-card:hover,
    .preview-card:hover,
    .header-call:hover,
    .theme-btn:hover,
    .mobile-menu-btn:hover {
        transform: none;
    }

    .desktop-menu a:hover::after {
        width: 0;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }
}