:root {
    --ink: #0c2b2a; /* deep petrol */
    --teal: #0e4f4a; /* brand teal */
    --teal-2: #11635c;
    --gold: #c8a14b; /* warm gold */
    --gold-soft: #e7cf95;
    --paper: #f6f1e7; /* warm paper */
    --paper-2: #fbf8f1;
    --cloud: #ffffff;
    --muted: #5e6f6c;
    --line: rgba(12,43,42,.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Cairo', sans-serif !important;
    color: var(--ink);
    background: radial-gradient(1200px 600px at 100% -10%, rgba(14,79,74,.10), transparent 60%), radial-gradient(900px 500px at -10% 110%, rgba(200,161,75,.12), transparent 60%), var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.display {
    font-family: 'Cairo', sans-serif !important;
}

.sheet {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px 80px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 980px;
    background: linear-gradient(155deg,var(--teal) 0%, var(--ink) 100%);
    color: #fff;
    border-radius: 0 0 32px 32px;
    padding: 54px 48px 60px;
    box-shadow: 0 30px 60px -30px rgba(12,43,42,.6);
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(420px 300px at 88% 8%, rgba(200,161,75,.30), transparent 60%), repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 2px, transparent 2px 26px);
        pointer-events: none;
    }

.ray {
    position: absolute;
    top: -120px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(231,207,149,.35), transparent 65%);
    filter: blur(6px);
    border-radius: 50%;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 16px;
    flex-wrap: wrap
}

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

.logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    flex: none;
    background: linear-gradient(140deg,var(--gold),#9c7a2e);
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 10px 24px -10px rgba(0,0,0,.6);
}

    .logo svg {
        width: 34px;
        height: 34px
    }

.brand h1 {
    font-family: 'Cairo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1
}

.brand span {
    display: block;
    font-size: 12.5px;
    color: var(--gold-soft);
    font-weight: 500;
    margin-top: 6px;
    letter-spacing: 2px
}

.since {
    font-size: 13px;
    border: 1px solid rgba(231,207,149,.4);
    border-radius: 999px;
    padding: 8px 16px;
    color: var(--gold-soft);
    white-space: nowrap;
    font-weight: 500;
}

.hero-main {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    max-width: 680px
}

.eyebrow {
    color: var(--gold-soft);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 14px
}

.hero-main h2 {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 700;
    font-size: clamp(30px,5vw,46px);
    line-height: 1.25;
    margin-bottom: 18px;
}

    .hero-main h2 b {
        color: var(--gold-soft);
        font-weight: 700
    }

.hero-main p {
    font-size: 17px;
    color: rgba(255,255,255,.86);
    max-width: 600px
}

.hero-flow {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.chip {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.arrow {
    color: var(--gold-soft);
    font-size: 18px;
    font-weight: 700
}

/* ---------- SECTION TITLES ---------- */
.sec {
    margin-top: 62px
}

.sec-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px
}

    .sec-head .bar {
        width: 6px;
        height: 30px;
        background: linear-gradient(var(--gold),#9c7a2e);
        border-radius: 6px
    }

    .sec-head h3 {
        font-family: 'Cairo', sans-serif !important;
        font-size: 25px;
        font-weight: 700;
        color: var(--ink)
    }

    .sec-head .sub {
        font-size: 14px;
        color: var(--muted);
        margin-top: 3px;
        font-weight: 400
    }

/* ---------- FEATURE GRID ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

.card {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px 24px 22px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 90px;
        height: 90px;
        background: radial-gradient(circle at top right, rgba(200,161,75,.16), transparent 70%);
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 40px -26px rgba(12,43,42,.45)
    }

.ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(140deg,var(--teal),var(--ink));
    color: var(--gold-soft);
}

    .ico svg {
        width: 26px;
        height: 26px
    }

.card h4 {
    font-family: 'Cairo', sans-serif !important;
    font-size: 18px;
    margin-bottom: 7px;
    color: var(--ink)
}

.card p {
    font-size: 14.5px;
    color: var(--muted)
}

/* ---------- WHY / STATS ---------- */
.why {
    background: linear-gradient(150deg, var(--ink), #4f0e32);
    color: #fff;
    border-radius: 26px;
    padding: 40px 38px;
    position: relative;
    overflow: hidden;
}

    .why::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(125deg, rgba(255,255,255,.03) 0 2px, transparent 2px 24px);
    }

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    text-align: center
}

.stat .n {
    font-family: 'Cairo', sans-serif !important;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-soft);
    line-height: 1
}

.stat .l {
    font-size: 13.5px;
    color: rgba(255,255,255,.82);
    margin-top: 8px
}

.why-points {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px 28px
}

    .why-points li {
        list-style: none;
        display: flex;
        gap: 10px;
        font-size: 14.5px;
        color: rgba(255,255,255,.9)
    }

    .why-points .tick {
        color: var(--gold-soft);
        font-weight: 700;
        flex: none
    }

/* ---------- PRICING ---------- */
.pgrid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px
}

.price {
    background: var(--cloud);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 26px;
    position: relative;
}

    .price.feature {
        border: 2px solid var(--gold);
        box-shadow: 0 24px 48px -30px rgba(200,161,75,.7)
    }

.tag {
    position: absolute;
    top: 18px;
    left: 24px;
    background: var(--gold);
    color: #3a2c08;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.price h4 {
    font-family: 'Cairo', sans-serif !important;
    font-size: 20px;
    margin-bottom: 6px
}

.price .amt {
    font-family: 'Cairo', sans-serif !important;
    font-size: 36px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1
}

    .price .amt small {
        font-size: 15px;
        color: var(--muted);
        font-weight: 400
    }

.price .alt {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 6px;
    margin-bottom: 16px
}

.price ul {
    list-style: none;
    display: grid;
    gap: 9px
}

.price li {
    font-size: 14px;
    color: #3c4d4a;
    display: flex;
    gap: 9px
}

    .price li .d {
        color: var(--gold);
        font-weight: 700;
        flex: none
    }

/* ---------- SUPPORT ---------- */
.sgrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.supp {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px 22px;
    text-align: center
}

    .supp .price-s {
        font-family: 'Cairo', sans-serif !important;
        font-size: 24px;
        color: var(--teal);
        font-weight: 700
    }

    .supp h4 {
        font-family: 'Cairo', sans-serif !important;
        font-size: 18px;
        margin: 6px 0 10px
    }

    .supp p {
        font-size: 14px;
        color: var(--muted)
    }

    .supp .free {
        color: var(--gold);
        font-weight: 700
    }

/* ---------- CONTACT ---------- */
.contact {
    margin-top: 60px;
    background: linear-gradient(150deg,var(--teal),var(--ink));
    color: #fff;
    border-radius: 28px;
    padding: 42px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .contact .ray2 {
        position: absolute;
        bottom: -120px;
        right: -60px;
        width: 340px;
        height: 340px;
        background: radial-gradient(circle,rgba(231,207,149,.30),transparent 65%);
        border-radius: 50%;
    }

.contact-info {
    position: relative;
    z-index: 2
}

    .contact-info h3 {
        font-family: 'Cairo', sans-serif !important;
        font-size: 26px;
        margin-bottom: 10px
    }

    .contact-info p {
        color: rgba(255,255,255,.85);
        font-size: 15px;
        max-width: 420px
    }

.contact-rows {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    min-width: 260px
}

.crow {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 13px 18px
}

    .crow .ci {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(231,207,149,.18);
        display: grid;
        place-items: center;
        color: var(--gold-soft);
        flex: none
    }

        .crow .ci svg {
            width: 20px;
            height: 20px
        }

    .crow b {
        font-family: 'Cairo', sans-serif !important;
        font-size: 16px;
        display: block
    }

    .crow span {
        font-size: 13px;
        color: rgba(255,255,255,.75)
    }

    .crow a {
        color: #fff;
        text-decoration: none
    }

.foot {
    text-align: center;
    margin-top: 34px;
    font-size: 13px;
    color: var(--muted)
}

    .foot b {
        color: var(--teal)
    }

/* ---------- PRINT ---------- */
@@media print {
    body {
        background: #fff
    }

    .card:hover {
        transform: none;
        box-shadow: none
    }

    .hero, .why, .contact {
        box-shadow: none
    }

    .sec {
        break-inside: avoid
    }

    .price.feature {
        box-shadow: none
    }
}

@@media (max-width:720px) {
    .grid, .pgrid, .why-points {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 24px 12px
    }

    .sgrid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 40px 26px 46px
    }

    .contact {
        padding: 32px 26px
    }
}

