:root {
    --primary: #1177d7;
    --primary-dark: #0a4aa8;
    --primary-soft: #eaf4ff;
    --bg: #f5f7fb;
    --white: #ffffff;
    --dark: #122033;
    --text: #081f4d;
    --muted: #64748b;
    --border: #dbe5f0;
    --line: #dbe5f0;
    --yellow-soft: #fff1cb;
    --pink-soft: #f9dfe9;
    --green-soft: #dff2e7;
    --shadow: 0 18px 50px rgba(12, 22, 40, 0.10);
    --shadow2: 0 10px 26px rgba(12, 22, 40, 0.08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;
    --c1: #1BB8FF;
    --c2: #0A7BFF;
    --r: 22px;
    --transition: all 0.3s ease;
    --primary-font: 'Plus Jakarta Sans', sans-serif;
    --secondary-font: 'Inter', sans-serif;
}

/* =========================
   Base
========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #5b6b82;
    background: radial-gradient(1000px 520px at 15% 5%, rgba(27, 184, 255, 0.14), transparent 55%), radial-gradient(900px 520px at 90% 10%, rgba(10, 123, 255, 0.10), transparent 55%), radial-gradient(900px 520px at 70% 95%, rgba(10, 72, 165, 0.10), transparent 55%), #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--primary-font);
    color: var(--dark);
}

p {
    margin: 0;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #6b7c93;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: auto;
}

.section {
    position: relative;
    padding: 70px 0;
    animation: fadeUp .6s ease;
}
.section-box {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(15,35,80,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}
    .section.pt-0 {
        padding-top: 0;
    }

.section-space {
    padding: 72px 0;
}

.grad {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =========================
   Shared Components
========================= */
.section-head {
    margin-bottom: 28px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

    .section-head h2 {
        font-family: 'Sora', sans-serif;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -0.02em;
        font-size: 26px;
        color: var(--text);
    }

    .section-head p {
        max-width: 760px;
        color: var(--muted);
        line-height: 1.8;
        font-size: 15px;
        font-weight: 600;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 16px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--secondary-font);
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    color: #fff;
    background: var(--c2);
    box-shadow: 0 12px 26px rgba(17, 119, 215, 0.18);
}

.btn-outline {
    color: var(--text);
    background: #fff;
    border: 1px solid #ccd8e6;
}

.btn-white {
    color: var(--primary-dark);
    background: #fff;
}

.btn-white-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-main {
    background: var(--c2);
    color: #fff;
}

    .btn-main:hover {
        color: var(--c2);
        background: var(--white);
    }

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all .35s ease;
}
    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.08);
        border-color: #0d6efd30;
    }
.blue-soft {
    background: var(--primary-soft);
    color: #238dff;
}

.yellow-soft {
    background: var(--yellow-soft);
    color: #df9a00;
}

.pink-soft {
    background: var(--pink-soft);
    color: #eb5c8f;
}

.green-soft {
    background: var(--green-soft);
    color: #0ea05e;
}

/* =========================
   Topbar
========================= */
.topbar {
    background: #f7fbff;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    font-weight: 700;
    color: #5f6f89;
}

.topbar-row {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.inline {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================
   Header
========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(219, 229, 240, 0.9);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand img {
    height: 48px;
    width: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .menu a {
        padding: 10px 14px;
        border-radius: 12px;
        font-weight: 600;
        color: #344256;
        transition: var(--transition);
    }

        .menu a:hover {
            background: #f1f6fc;
        }

/* =========================
   Hero
========================= */
.hero {
    padding: 22px 0 18px;
}

.hero-shell {
    border-radius: calc(var(--r) + 8px);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 250, 255, 1));
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

    .hero-shell::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(700px 420px at 15% 25%, rgba(27, 184, 255, 0.18), transparent 60%), radial-gradient(700px 420px at 88% 35%, rgba(10, 123, 255, 0.12), transparent 60%), radial-gradient(540px 340px at 70% 92%, rgba(10, 72, 165, 0.10), transparent 55%);
        pointer-events: none;
    }

    .hero-shell > * {
        position: relative;
    }

.hero-left {
    padding: 26px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(10, 123, 255, 0.18);
    background: rgba(10, 123, 255, 0.06);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(7, 20, 41, 0.75);
}

.kdot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    box-shadow: 0 0 0 6px rgba(27, 184, 255, 0.10);
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    margin: 12px 0 10px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    font-size: clamp(34px, 4.1vw, 56px);
    color: var(--text);
}

.hero p {
    margin: 26px 0;
    max-width: 62ch;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(12, 22, 40, 0.12);
    background: rgba(255, 255, 255, 0.8);
    color: rgba(7, 20, 41, 0.78);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(12, 22, 40, 0.05);
}

.hero-right {
    padding: 18px;
    position: relative;
    min-height: 520px;
}
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 28px;
}

    .hero-stats div {
        display: flex;
        flex-direction: column;
        font-size: 13px;
        color: #5b6b82;
    }

    .hero-stats strong {
        font-size: 20px;
        font-weight: 700;
        color: #0f2b4c;
    }
.photo {
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--r) + 8px);
    overflow: hidden;
    border: 1px solid rgba(12, 22, 40, 0.12);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.45)), url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1400&q=70') center/cover no-repeat;
}

    .photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(360px 260px at 20% 25%, rgba(27, 184, 255, 0.18), transparent 60%), radial-gradient(360px 260px at 80% 30%, rgba(10, 123, 255, 0.12), transparent 60%);
        pointer-events: none;
    }

.glass-form {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(12, 22, 40, 0.14);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow2);
}

    .glass-form h6 {
        margin: 0 0 10px;
        font-weight: 950;
        letter-spacing: -0.01em;
    }

.note {
    color: rgba(7, 20, 41, 0.62);
    font-weight: 750;
    font-size: 12px;
    margin-top: 8px;
}

/* =========================
   Ticker
========================= */
.ticker {
    margin-top: 14px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(6, 14, 28, 0.03);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    padding: 12px 0;
    will-change: transform;
    animation: move 26s linear infinite;
    font-weight: 800;
    color: rgba(7, 20, 41, 0.72);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-right: 1px solid rgba(12, 22, 40, 0.08);
}

.tick-flag-img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   Grids
========================= */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   Goal Section
========================= */
.goal-card {
    padding: 26px;
    position: relative;
    overflow: hidden;
}

    .goal-card .icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .goal-card h5 {
        margin: 18px 0 10px;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 700;
        color: var(--text);
    }

    .goal-card p {
        margin: 0 0 18px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.8;
        font-weight: 600;
    }

.goal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #d8e2ee;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #081f4d;
    position: relative;
    z-index: 2;
}

.goal-shape {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.55;
}

    .goal-shape.blue {
        background: #dff1ff;
    }

    .goal-shape.yellow {
        background: #fff0bf;
    }

    .goal-shape.pink {
        background: #ffe0eb;
    }

    .goal-shape.green {
        background: #dff7e8;
    }

/* =========================
   Services
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-8px);
    }

    .service-card::before {
        content: "";
        position: absolute;
        right: -50px;
        top: -50px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(42, 167, 255, 0.12), rgba(11, 107, 203, 0.05));
    }

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(11, 107, 203, 0.12), rgba(42, 167, 255, 0.12));
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    font-weight: 600;
}

.service-card p {
    color: var(--text);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 500;
}

.service-list {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
}

    .service-list li {
        position: relative;
        padding-left: 18px;
        color: var(--dark);
        font-size: 15px;
        list-style: none;
    }

        .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
        }

/* =========================
   Process
========================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    padding: 28px;
}

.process-num {
    font-size: 56px;
    line-height: 1;
    color: #d9e8fb;
    font-weight: 900;
    margin-bottom: 14px;
}

.process-card h5 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 900;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
    font-weight: 600;
}

/* =========================
   Dream Board
========================= */
.dream-wrap {
    background: linear-gradient(135deg, #fffef9 0%, #f8fbff 100%);
    border-radius: 36px;
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.dream-board {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 18px;
}

.dream-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    padding: 22px;
}

    .dream-item h6 {
        font-size: 18px;
        font-weight: 900;
        margin: 0 0 8px;
    }

    .dream-item p {
        font-size: 13px;
        line-height: 1.7;
        color: var(--muted);
        font-weight: 600;
        margin: 0;
    }

    .dream-item.tall {
        grid-row: span 2;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
        color: #fff;
    }

        .dream-item.tall::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 25, 55, 0.15), rgba(8, 25, 55, 0.58));
        }

        .dream-item.tall .content {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 2;
        }

        .dream-item.tall p {
            color: rgba(255, 255, 255, 0.84);
        }

.pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c1);
    top: 14px;
    right: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.tag-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 12px;
    background: #f8fbff;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 800;
    color: #35506e;
    margin-top: 12px;
}

.mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

    .mini-badges span {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 10px 12px;
        font-size: 12px;
        font-weight: 800;
        color: #35506e;
    }

/* =========================
   Reviews
========================= */
.review-card {
    padding: 26px;
}

.stars {
    color: #ff9f1a;
    margin-bottom: 16px;
    font-size: 14px;
}

.review-card p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 14px;
    font-weight: 600;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #dce7f4;
    border: 1px solid var(--border);
    flex: 0 0 auto;
}

.review-user strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.review-user span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* =========================
   FAQ
========================= */
.faq-shell {
    padding: 26px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #dbe5f0;
}

    .accordion-item:last-child {
        border-bottom: none;
    }

.accordion-button {
    background: transparent;
    box-shadow: none !important;
    padding: 22px 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

    .accordion-button:not(.collapsed) {
        color: #1677ff;
        background: transparent;
    }

.accordion-body {
    padding: 0 0 18px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
}

/* =========================
   CTA
========================= */
.cta {
    background: linear-gradient(135deg, #1f86ef, #1156c3);
    border-radius: 34px;
    padding: 46px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(17, 86, 195, 0.22);
}

    .cta::before {
        content: '';
        position: absolute;
        right: -70px;
        top: -70px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

    .cta::after {
        content: '';
        position: absolute;
        left: -60px;
        bottom: -60px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

    .cta h2 {
        margin: 0 0 12px;
        font-size: clamp(30px, 3.5vw, 58px);
        line-height: 1.1;
        font-weight: 700;
        position: relative;
        z-index: 1;
        color: var(--white);
        font-family: 'Sora', sans-serif;
    }

    .cta p {
        margin: 0;
        max-width: 760px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 16px;
        line-height: 1.85;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

/* =========================
   Footer
========================= */
footer {
    padding: 34px 0 40px;
    border-top: 1px solid #dbe5f0;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 24px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 12px;
}

.footer-text {
    max-width: 360px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
}

.footer-title {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 900;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--primary);
    }

.copyright {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #dbe5f0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #22b8ff, #1177d7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 16px 32px rgba(17, 119, 215, 0.22);
    z-index: 999;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
    .grid-4,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3,
    .footer-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .section,
    .section-space {
        padding: 62px 0;
    }

    .menu {
        display: none;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-left {
        padding: 18px 18px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-right {
        min-height: 460px;
    }

    .dream-board {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .dream-item.tall {
        grid-column: span 2;
        grid-row: auto;
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(1240px, calc(100% - 20px));
    }

    .topbar-row {
        justify-content: center;
        text-align: center;
    }

    .inline {
        justify-content: center;
        gap: 8px 14px;
    }

    .section,
    .section-space {
        padding: 58px 0;
    }

    .hero-shell {
        border-radius: 24px;
    }

    .hero-left {
        padding: 18px 18px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-right {
        min-height: 420px;
    }

    .glass-form {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hero .btn,
    .cta .btn,
    .section-head .btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .grid-4,
    .grid-3,
    .footer-grid,
    .process-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .dream-wrap {
        padding: 20px;
    }

    .dream-board {
        grid-template-columns: 1fr;
    }

    .dream-item.tall {
        grid-column: auto;
        min-height: 320px;
    }

    .cta {
        padding: 28px 22px;
        border-radius: 24px;
    }

        .cta h2 {
            font-size: 32px;
        }
}
/* Premium Why Choose Us */
.why-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 34px;
    background: radial-gradient(500px 260px at 10% 10%, rgba(27,184,255,.10), transparent 60%), radial-gradient(420px 220px at 95% 20%, rgba(10,123,255,.08), transparent 60%), linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: var(--shadow);
}

    .why-premium::before {
        content: "";
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(17,119,215,.05);
        pointer-events: none;
    }

.why-content h2 {
    margin: 14px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--text);
}

.why-content p {
    max-width: 56ch;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.9;
}

.why-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

    .why-badges span {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(12,22,40,.10);
        background: rgba(255,255,255,.85);
        color: #29415f;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 8px 18px rgba(12,22,40,.05);
    }

.why-cards {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
}

.why-card {
    position: relative;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(219,229,240,.9);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 30px rgba(12,22,40,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 36px rgba(12,22,40,.10);
        border-color: rgba(17,119,215,.18);
    }

.why-card-lg {
    grid-row: span 2;
    min-height: 100%;
    background: radial-gradient(220px 140px at 85% 15%, rgba(27,184,255,.12), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: #0d76da;
    background: linear-gradient(135deg, rgba(27,184,255,.16), rgba(10,123,255,.10));
    border: 1px solid rgba(17,119,215,.14);
}

.why-card h4 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
    font-family: 'Sora', sans-serif;
}

.why-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 600;
    color: var(--muted);
}

@media (max-width: 991px) {
    .why-premium {
        padding: 24px;
    }

    .why-cards {
        grid-template-columns: 1fr 1fr;
    }

    .why-card-lg {
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .why-premium {
        border-radius: 24px;
        padding: 20px;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 32px;
    }
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}