/* ===== Chabok marketing homepage ===== */
:root {
    --teal-deep: #072623;
    --teal-mid: #0F3D38;
    --teal-brand: #0f766e;
    --gold: #E3A857;
    --gold-soft: #F0C888;
    --cream: #F5F1E8;
    --muted-on-dark: #B9C9C4;
    --light-bg: #FBFAF7;
    --ink: #163832;
    --ink-muted: #56645F;
}

* { box-sizing: border-box; }

body.home {
    margin: 0;
    direction: rtl;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    color: var(--ink);
    background: var(--light-bg);
    font-feature-settings: "tnum" 1;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---- Nav ---- */
.home-nav {
    background: var(--teal-deep);
    padding: 18px 0;
}
.home-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Lalezar', sans-serif;
    color: var(--gold);
    font-size: 26px;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 15px;
    margin-inline-start: 22px;
}
.nav-links a.btn-ghost {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 8px;
}

/* ---- Hero ---- */
.hero {
    background: var(--teal-deep);
    padding: 64px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero .wrap {
    display: flex;
    align-items: center;
    gap: 48px;
}
.hero-text { flex: 1.1; }
.hero-art { flex: 0.9; display: flex; justify-content: center; }
.hero h1 {
    font-family: 'Lalezar', sans-serif;
    color: var(--cream);
    font-size: 44px;
    line-height: 1.35;
    margin: 0 0 20px;
    max-width: 15ch;
}
.hero p.lede {
    color: var(--muted-on-dark);
    font-size: 18px;
    line-height: 1.9;
    max-width: 42ch;
    margin: 0 0 32px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
    background: var(--gold);
    color: var(--teal-deep);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}
.btn-outline {
    border: 1px solid var(--muted-on-dark);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

/* ---- Steps (legitimate sequence, numbered) ---- */
.steps {
    padding: 84px 0;
}
.section-title {
    font-family: 'Lalezar', sans-serif;
    font-size: 30px;
    color: var(--ink);
    text-align: center;
    margin: 0 0 8px;
}
.section-sub {
    text-align: center;
    color: var(--ink-muted);
    max-width: 46ch;
    margin: 0 auto 52px;
    line-height: 1.8;
}
.step-track {
    display: flex;
    gap: 32px;
    position: relative;
}
.step-track::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: repeating-linear-gradient(to left, var(--gold) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 18px;
    font-size: 18px;
}
.step h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--ink);
}
.step p {
    font-size: 14.5px;
    color: var(--ink-muted);
    line-height: 1.75;
    max-width: 26ch;
    margin: 0 auto;
}

/* ---- Trust / ledger section ---- */
.trust {
    background: var(--teal-mid);
    padding: 80px 0;
}
.trust .section-title, .trust .section-sub { color: var(--cream); }
.trust .section-sub { color: var(--muted-on-dark); }
.ledger {
    max-width: 640px;
    margin: 0 auto;
    border-top: 1px dashed rgba(245,241,232,0.25);
}
.ledger-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 4px;
    border-bottom: 1px dashed rgba(245,241,232,0.25);
    gap: 20px;
}
.ledger-row .label {
    color: var(--cream);
    font-size: 15.5px;
    line-height: 1.7;
}
.ledger-row .mark {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

/* ---- Final CTA ---- */
.final-cta {
    padding: 90px 0;
    text-align: center;
}
.final-cta h2 {
    font-family: 'Lalezar', sans-serif;
    font-size: 32px;
    color: var(--ink);
    margin: 0 0 14px;
}
.final-cta p {
    color: var(--ink-muted);
    margin: 0 0 32px;
}

/* ---- Footer ---- */
.home-footer {
    background: var(--teal-deep);
    color: var(--muted-on-dark);
    padding: 32px 0;
    text-align: center;
    font-size: 14px;
}
.home-footer a { color: var(--gold); text-decoration: none; }

@media (max-width: 760px) {
    .hero .wrap { flex-direction: column; }
    .hero h1 { font-size: 32px; max-width: none; }
    .hero-art { order: -1; }
    .step-track { flex-direction: column; gap: 28px; }
    .step-track::before { display: none; }
}

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