:root {
    --bg: #0b0d10;
    --card: #151a21;
    --text: #f7f8fa;
    --muted: #b5bcc7;
    --line: rgba(255, 255, 255, .08);
    --gold: #d4b06a;
    --gold-dark: #b48b43;
    --green: #25D366;
    --shadow: 0 18px 50px rgba(0, 0, 0, .28);
    --radius: 24px;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Cairo", system-ui, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, rgba(212, 176, 106, .09), transparent 28%), linear-gradient(180deg, #090b0e 0%, #11151b 100%);
    line-height: 1.75
}

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

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

button,
input {
    font: inherit
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(10, 12, 15, .78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
    font-weight: 900;
    box-shadow: var(--shadow)
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0
}

.brand-copy strong {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.brand-copy small {
    font-size: .78rem;
    color: var(--muted)
}

.nav-links {
    display: none;
    gap: 22px;
    align-items: center
}

.nav-links a {
    color: var(--muted);
    font-weight: 700
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
    box-shadow: 0 12px 24px rgba(212, 176, 106, .18)
}

.btn-dark {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08)
}

.btn-green {
    background: rgba(37, 211, 102, .16);
    color: #fff;
    border: 1px solid rgba(37, 211, 102, .28)
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .82) 100%), url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    transform: scale(1.03)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 88px 0 42px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 18px
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold)
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    line-height: 1.12;
    max-width: 920px
}

.hero h1 span {
    color: var(--gold)
}

.hero p {
    max-width: 760px;
    color: #e6eaf0;
    margin: 0 0 22px;
    font-size: 1.04rem
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 860px
}

.stat,
.card {
    background: rgba(17, 22, 28, .84);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.stat {
    padding: 17px
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: .84rem;
    margin-bottom: 4px
}

.stat strong {
    font-size: 1.14rem
}

.section {
    padding: 78px 0
}

.section-label {
    margin: 0 0 6px;
    color: var(--gold);
    font-weight: 800;
    font-size: .92rem
}

.section h2,
.section-head h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3.8vw, 2.6rem);
    line-height: 1.25
}

.section-head {
    margin-bottom: 24px
}

.grid-2,
.grid-3,
.grid-4,
.content-wrap,
.footer-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr
}

.card-body,
.copy-block,
.form-card,
.cta-box {
    padding: 24px
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem
}

.card p,
.copy-block p,
.footer p,
.footer a,
.modal-head p {
    color: var(--muted)
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px
}

.pill,
.meta-list span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: .9rem;
    font-weight: 700
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(212, 176, 106, .12);
    font-size: 24px;
    margin-bottom: 12px
}

.unit-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px
}

.unit-tag {
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    background: rgba(212, 176, 106, .14);
    color: #f4ddb0;
    border: 1px solid rgba(212, 176, 106, .24)
}

.meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px
}

.quick-links,
.faq,
.table-like {
    display: grid;
    gap: 12px
}

.quick-links a,
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    font-weight: 700
}

.quick-links a span {
    color: var(--muted)
}

.hero-mini {
    padding: 110px 0 46px
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 14px
}

.list-clean {
    margin: 0;
    padding: 0 18px 0 0
}

.list-clean li {
    margin-bottom: 8px
}

.form-card form,
.lead-form,
.inline-lead-form {
    display: grid;
    gap: 12px
}

.form-card input,
.lead-form input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #171c23;
    color: #fff;
    outline: none
}

.footer {
    padding: 34px 0 100px;
    border-top: 1px solid var(--line);
    margin-top: 20px
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px
}

.sticky-cta {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: 12px;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(14, 17, 21, .94);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px)
}

.sticky-text {
    flex: 1;
    min-width: 0
}

.sticky-text strong {
    display: block;
    font-size: .95rem
}

.sticky-text span {
    display: block;
    font-size: .78rem;
    color: var(--muted)
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .72);
    padding: 16px
}

.modal.show {
    display: flex
}

.modal-box {
    position: relative;
    width: min(100%, 520px);
    background: #10141a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
    padding: 22px
}

.modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 26px;
    cursor: pointer
}

.modal-head h3 {
    margin: 0 0 8px;
    font-size: 1.4rem
}

.full {
    width: 100%
}

details {
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    border-radius: 20px;
    padding: 16px 18px
}

summary {
    cursor: pointer;
    font-weight: 800
}

details p {
    margin: 12px 0 0
}

@media(min-width:768px) {
    .nav-links {
        display: flex
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr)
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr
    }

    .content-wrap {
        grid-template-columns: 1.18fr .82fr
    }
}

@media(max-width:767px) {
    .hero {
        min-height: auto
    }

    .hero-content {
        padding-top: 106px
    }

    .hero h1 {
        font-size: 2.25rem
    }

    .brand-copy small,
    .nav-links {
        display: none
    }
    .hed {
        display: none;
    }
}