/* ==========================================================
   GOLDPRENIUM — DESIGN SYSTEM
   Palette: warm ivory + deep charcoal-navy + antique gold + verified-green
   Type: Fraunces (display serif) / Inter (body)
   ========================================================== */

:root {
    /* Colors — soft navy-black + steel blue + antique gold */
    --color-ivory: #EEF2F7;
    --color-ivory-deep: #E1E8F0;
    --color-charcoal: #0E1520;
    --color-charcoal-soft: #16202E;
    --color-charcoal-line: #29374A;
    --color-gold: #B98F3E;
    --color-gold-deep: #8F6A26;
    --color-gold-light: #E4C687;
    --color-blue: #3B5D82;
    --color-blue-deep: #2A4360;
    --color-blue-light: #7FA0C4;
    --color-verified: #2F6E5D;
    --color-verified-light: #E4EEEA;
    --color-text-dark: #131A24;
    --color-text-light: #EAF0F6;
    --color-text-muted: #57677A;
    --color-text-muted-light: #B9C6D6;
    --color-border: #D7E0EA;
    --color-white: #FFFFFF;

    /* Type */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;

    /* Radius / shadow */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-soft: 0 12px 32px -12px rgba(11, 16, 26, 0.18);
    --shadow-card: 0 6px 20px -8px rgba(11, 16, 26, 0.12);

    --container-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-ivory);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 var(--space-sm); line-height: 1.15; color: var(--color-text-dark); }
p { margin: 0 0 var(--space-sm); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* RTL support */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .section-split { direction: rtl; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-2xl) 0; }
.section--tight { padding: var(--space-xl) 0; }
.section--dark { background: var(--color-charcoal); color: var(--color-text-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-text-light); }
.section--ivory-deep { background: var(--color-ivory-deep); }
.text-center { text-align: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold-deep);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
.section--dark .eyebrow { color: var(--color-gold-light); }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); max-width: 760px; }
.section-title.centered { margin-left: auto; margin-right: auto; }
.section-subtitle { color: var(--color-text-muted); max-width: 640px; font-size: 1.05rem; }
.section--dark .section-subtitle { color: var(--color-text-muted-light); }
.section-header { margin-bottom: var(--space-lg); }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.9em 1.9em;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
    color: #fff;
    box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline {
    background: transparent;
    border-color: currentColor;
    color: var(--color-text-dark);
}
.section--dark .btn-outline { color: var(--color-text-light); }
.btn-outline:hover { background: rgba(180, 134, 58, 0.12); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6em 1.2em; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: var(--space-sm) 0;
    transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-solid {
    background: rgba(11, 16, 26, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    padding: 0.7rem 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; }
.brand img { height: 38px; width: auto; }
.brand-text-sub { display:block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold-light); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: var(--space-lg); }
.main-nav ul { display: flex; gap: var(--space-md); }
.main-nav a { color: #DDE5EE; font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0; }
.main-nav a.active, .main-nav a:hover { color: var(--color-gold-light); }
.main-nav a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-gold);
}

.header-actions { display: flex; align-items: center; gap: var(--space-sm); }

.lang-switcher { position: relative; }
.lang-switcher summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.35rem; color: #DDE5EE; font-size: 0.85rem; font-weight: 600; padding: 0.5em 0.75em; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm); }
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft);
    padding: 0.4rem; min-width: 170px; max-height: 340px; overflow-y: auto; z-index: 50;
}
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-menu a { display: block; padding: 0.5em 0.75em; border-radius: 6px; color: var(--color-text-dark); font-size: 0.9rem; }
.lang-menu a:hover { background: var(--color-ivory-deep); }
.lang-menu a.active { color: var(--color-gold-deep); font-weight: 700; }

.nav-toggle { display: none; background: none; border: none; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ---------- Hero v2 : asymmetric split + Assay Card ---------- */
.hero {
    position: relative;
    background: var(--color-charcoal);
    padding: 8.5rem 0 0;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 15%, rgba(59,93,130,0.35), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(185,143,62,0.16), transparent 60%);
    z-index: -1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    padding-bottom: var(--space-2xl);
}
.hero-content .eyebrow { color: var(--color-gold-light); }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); color: #fff; }
.hero p.lead { font-size: 1.1rem; color: #C7D2DF; max-width: 500px; }
.hero-actions { display: flex; gap: var(--space-sm); margin-top: var(--space-md); flex-wrap: wrap; }
.hero-badges { display: flex; gap: var(--space-lg); margin-top: var(--space-xl); flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 0.6rem; color: #C7D2DF; font-size: 0.85rem; }
.hero-badge svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-gold-light); }

/* Assay Card — the site's signature element: a certificate-style panel used
   in the hero, the offerings ledger and the CTA banner to visually tie the
   whole "verified gold" narrative together. */
.assay-card {
    position: relative;
    background: var(--color-charcoal-soft);
    border: 1px solid var(--color-charcoal-line);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: #fff;
    box-shadow: var(--shadow-soft);
}
.assay-card::before {
    content: '';
    position: absolute; top: 14px; bottom: 14px; left: 14px; right: 14px;
    border: 1px dashed rgba(228,198,135,0.3);
    border-radius: 8px;
    pointer-events: none;
}
.assay-card__photo { border-radius: 8px; overflow: hidden; aspect-ratio: 5/3.4; margin-bottom: var(--space-sm); }
.assay-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.assay-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-xs); }
.assay-card__title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold-light); }
.assay-card__seal {
    width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--color-gold);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.assay-card__seal svg { width: 20px; height: 20px; color: var(--color-gold-light); }
.assay-card__row { display: flex; justify-content: space-between; align-items: center; padding: 0.55em 0; border-bottom: 1px dotted var(--color-charcoal-line); font-size: 0.85rem; }
.assay-card__row:last-child { border-bottom: none; }
.assay-card__label { color: #9AA8BA; }
.assay-card__value { font-family: var(--font-mono); color: #fff; font-weight: 600; }
.assay-card__value.gold { color: var(--color-gold-light); }

/* Trust strip beneath the hero */
.trust-strip { background: var(--color-charcoal-soft); border-top: 1px solid var(--color-charcoal-line); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: var(--space-lg); justify-content: space-between; padding: var(--space-md) var(--space-md); }
.trust-strip__item { display: flex; align-items: baseline; gap: 0.5rem; color: #C7D2DF; font-size: 0.85rem; }
.trust-strip__item strong { font-family: var(--font-mono); color: var(--color-gold-light); font-size: 1.05rem; }

/* ---------- Split section (image + text) — still used on About/inner pages ---------- */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.section-split.reverse .split-media { order: 2; }
.section-split.reverse .split-content { order: 1; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split-media .stamp-badge { position: absolute; bottom: -18px; inset-inline-end: -18px; }
.split-content .btn { margin-top: var(--space-sm); }

/* ---------- Stamp badge (secondary signature accent) ---------- */
.stamp-badge {
    width: 92px; height: 92px;
    background: var(--color-ivory);
    border: 2px solid var(--color-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}
.stamp-badge svg { width: 46px; height: 46px; color: var(--color-gold-deep); }

/* ---------- The Sourcing Journey (numbered process strip) ---------- */
.journey { position: relative; }
.journey__track {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md);
    position: relative;
}
.journey__track::before {
    content: '';
    position: absolute; top: 27px; left: 8%; right: 8%; height: 1px;
    background: repeating-linear-gradient(90deg, var(--color-gold) 0, var(--color-gold) 6px, transparent 6px, transparent 14px);
}
.journey__step { position: relative; text-align: center; padding: 0 0.5rem; }
.journey__num {
    width: 54px; height: 54px; margin: 0 auto var(--space-sm);
    border-radius: 50%; background: var(--color-charcoal); color: var(--color-gold-light);
    font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--color-gold); position: relative; z-index: 2;
}
.journey__step h4 { font-size: 1rem; margin-bottom: 0.3em; }
.journey__step p { font-size: 0.85rem; color: var(--color-text-muted); }

/* ---------- Bento "Why GoldPrenium" grid ---------- */
.bento { display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-template-rows: auto auto; gap: var(--space-md); }
.bento__lead {
    grid-row: 1 / 3;
    background: var(--color-charcoal); color: #fff;
    border-radius: var(--radius-lg); padding: var(--space-lg);
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.bento__lead::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(185,143,62,0.22), transparent 60%);
}
.bento__lead > * { position: relative; }
.bento__lead h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.bento__lead p { color: #C7D2DF; }
.bento__tile {
    background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: var(--space-md); display: flex; flex-direction: column; gap: 0.6rem;
}
.bento__tile .feature-icon { margin: 0; }
.bento__tile h3 { font-size: 1.02rem; margin: 0; }
.bento__tile p { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; }

/* ---------- Feature grid (3 cols) — used on Offerings page ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.feature-card { text-align: center; padding: var(--space-md); }
.feature-icon {
    width: 64px; height: 64px; margin: 0 auto var(--space-sm);
    border-radius: 50%;
    background: rgba(185,143,62,0.14);
    display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 30px; height: 30px; color: var(--color-gold-deep); }
.section--dark .feature-icon { background: rgba(228,198,135,0.16); }
.section--dark .feature-icon svg { color: var(--color-gold-light); }
.feature-card h3 { font-size: 1.2rem; }
.feature-card p { color: var(--color-text-muted); font-size: 0.95rem; }
.section--dark .feature-card p { color: var(--color-text-muted-light); }

/* ---------- Offerings ledger (replaces generic product-card grid) ---------- */
.ledger { border-top: 1px solid var(--color-border); }
.ledger__row {
    display: grid; grid-template-columns: 60px 220px 1fr auto; gap: var(--space-md); align-items: center;
    padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border);
}
.ledger__index { font-family: var(--font-mono); color: var(--color-gold-deep); font-size: 0.85rem; }
.ledger__media { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.ledger__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ledger__row:hover .ledger__media img { transform: scale(1.08); }
.ledger__body h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.ledger__body p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0.5em; }
.ledger__specs { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.ledger__specs span { font-family: var(--font-mono); font-size: 0.75rem; background: var(--color-ivory-deep); color: var(--color-gold-deep); padding: 0.25em 0.65em; border-radius: 4px; }
.ledger__action { justify-self: end; }

/* ---------- Testimonials — featured quote + scroll strip ---------- */
.testimonials-section {
    position: relative;
    background: linear-gradient(180deg, rgba(11,16,26,0.9), rgba(11,16,26,0.96)), url('../images/mine-site-2.jpg') center/cover;
    color: #fff;
}
.testimonial-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-xl); align-items: start; }
.testimonial-feature {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(228,198,135,0.25);
    border-radius: var(--radius-lg); padding: var(--space-lg); position: relative;
}
.testimonial-feature .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--color-gold); line-height: 1; margin-bottom: 0.2rem; }
.testimonial-feature .testimonial-text { font-size: 1.15rem; min-height: 0; color: #fff; }
.testimonial-strip { display: flex; flex-direction: column; gap: var(--space-sm); max-height: 480px; overflow-y: auto; padding-right: 0.4rem; }
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: center;
}
.testimonial-card .testimonial-text { min-height: 0; font-size: 0.88rem; margin: 0.2rem 0 0; }
.testimonial-stars { color: var(--color-gold-light); font-size: 0.78rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: #DCE4EE; margin-bottom: var(--space-md); min-height: 96px; }
.testimonial-person { display: flex; align-items: center; gap: 0.7rem; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-blue-deep) 130%); color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: #fff; }
.testimonial-role { font-size: 0.78rem; color: #B9C6D6; }

/* ---------- CTA banner — Assay Card centerpiece ---------- */
.cta-banner {
    position: relative;
    background: var(--color-charcoal);
    color: #fff;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(185,143,62,0.18), transparent 60%);
}
.cta-banner .container { position: relative; max-width: 720px; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-banner p { color: #D8E1EB; max-width: 620px; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-charcoal); color: var(--color-text-muted-light); padding-top: var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--color-charcoal-line); }
.footer-col h4 { color: #fff; font-size: 1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; margin-bottom: var(--space-sm); }
.footer-col p { font-size: 0.9rem; }
.footer-col ul li { margin-bottom: 0.6em; }
.footer-col ul a { font-size: 0.9rem; color: var(--color-text-muted-light); transition: color .15s; }
.footer-col ul a:hover { color: var(--color-gold-light); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--space-sm); }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.footer-social a:hover { background: var(--color-gold); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md) 0; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--color-text-muted-light); }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.contact-form { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-group { margin-bottom: var(--space-sm); }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4em; color: var(--color-text-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85em 1em; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
    background: var(--color-ivory); transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-gold); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-alert { padding: 0.9em 1.1em; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: var(--space-sm); }
.form-alert.success { background: var(--color-verified-light); color: var(--color-verified); border: 1px solid #B9D6C7; }
.form-alert.error { background: #FCEAEA; color: #A3372F; border: 1px solid #F1C4C0; }

.contact-info-card { background: var(--color-charcoal); color: #fff; border-radius: var(--radius-lg); padding: var(--space-lg); }
.contact-info-card h3 { color: #fff; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-charcoal-line); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item .ci-icon {
    width: 42px; height: 42px; border-radius: 50%; background: rgba(127,160,196,0.18);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .ci-icon svg { width: 20px; height: 20px; color: var(--color-blue-light); }
.contact-info-item .ci-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted-light); margin-bottom: 0.2em; }
.contact-info-item .ci-value { font-size: 0.95rem; color: #fff; font-weight: 500; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: var(--space-md); border: 1px solid var(--color-charcoal-line); }

/* ---------- About page ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.value-item { display: flex; gap: 1rem; align-items: flex-start; padding: var(--space-sm); background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.value-item .vi-check {
    width: 34px; height: 34px; border-radius: 50%; background: var(--color-verified-light); color: var(--color-verified);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700;
}

/* ---------- Floating action buttons (WhatsApp + Chat) ---------- */
.floating-actions { position: fixed; bottom: 24px; z-index: 600; display: flex; flex-direction: column; gap: 14px; inset-inline-start: 24px; }
.fab {
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    color: #fff; position: relative; border: none;
    transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
.fab-whatsapp { background: #25D366; }
.fab-chat { background: var(--color-gold); }
.fab-badge {
    position: absolute; top: -4px; inset-inline-end: -4px;
    background: #E24C4C; color: #fff; font-size: 0.68rem; font-weight: 700;
    min-width: 20px; height: 20px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    padding: 0 5px; border: 2px solid var(--color-ivory);
}
.scroll-top {
    position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 600;
    width: 46px; height: 46px; border-radius: 50%; background: var(--color-charcoal); color: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
    border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ---------- Chat widget ---------- */
.chat-window {
    position: fixed; bottom: 96px; inset-inline-start: 24px; z-index: 601;
    width: 360px; max-width: calc(100vw - 32px);
    height: 500px; max-height: 72vh;
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    display: flex; flex-direction: column; overflow: hidden;
    transform: translateY(16px) scale(0.97); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
}
.chat-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-header { background: var(--color-charcoal); color: #fff; padding: var(--space-sm) var(--space-md); display: flex; align-items: center; justify-content: space-between; }
.chat-header-title { font-weight: 700; font-size: 0.98rem; }
.chat-header-sub { font-size: 0.75rem; color: var(--color-gold-light); display: flex; align-items: center; gap: 0.4em; }
.chat-header-sub::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; display: inline-block; }
.chat-close { background: none; border: none; color: #fff; font-size: 1.2rem; opacity: 0.75; }
.chat-close:hover { opacity: 1; }
.chat-body { flex: 1; overflow-y: auto; padding: var(--space-sm) var(--space-md); background: var(--color-ivory); display: flex; flex-direction: column; gap: 0.6rem; }
.chat-msg { max-width: 82%; padding: 0.65em 0.9em; border-radius: 14px; font-size: 0.88rem; line-height: 1.45; }
.chat-msg.visitor { align-self: flex-end; background: var(--color-gold); color: #fff; border-bottom-right-radius: 4px; }
html[dir="rtl"] .chat-msg.visitor { align-self: flex-start; border-bottom-right-radius: 14px; border-bottom-left-radius: 4px; }
.chat-msg.admin, .chat-msg.bot { align-self: flex-start; background: #fff; border: 1px solid var(--color-border); color: var(--color-text-dark); border-bottom-left-radius: 4px; }
html[dir="rtl"] .chat-msg.admin, html[dir="rtl"] .chat-msg.bot { align-self: flex-end; border-bottom-left-radius: 14px; border-bottom-right-radius: 4px; }
.chat-msg-time { font-size: 0.65rem; opacity: 0.6; margin-top: 0.3em; }
.chat-footer { padding: var(--space-sm); border-top: 1px solid var(--color-border); display: flex; gap: 0.5rem; background: #fff; }
.chat-footer input { flex: 1; border: 1.5px solid var(--color-border); border-radius: 24px; padding: 0.7em 1.1em; background: var(--color-ivory); }
.chat-footer input:focus { outline: none; border-color: var(--color-gold); }
.chat-send-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--color-gold); color: #fff; border: none; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-send-btn svg { width: 18px; height: 18px; }
.chat-prestart { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; justify-content: center; background: var(--color-ivory); }
.chat-prestart input { padding: 0.85em 1em; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative; color: #fff; padding: 9rem 0 4.5rem;
    background-size: cover; background-position: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,16,26,0.78), rgba(11,16,26,0.6)); z-index: -1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb { font-size: 0.85rem; color: var(--color-gold-light); }
.breadcrumb a { color: #D8E1EB; }

/* ---------- Utility ---------- */
.mt-lg { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-split { gap: var(--space-lg); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 440px; }
    .journey__track { grid-template-columns: repeat(5, 1fr); }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento__lead { grid-row: auto; grid-column: 1 / 3; }
    .testimonial-layout { grid-template-columns: 1fr; }
    .testimonial-strip { max-height: none; }
}

@media (max-width: 860px) {
    .main-nav { position: fixed; top: 0; inset-inline-end: 0; height: 100vh; width: min(78vw, 320px);
        background: var(--color-charcoal); flex-direction: column; align-items: flex-start;
        padding: 5.5rem var(--space-lg) var(--space-lg); transform: translateX(100%); transition: transform .3s ease; }
    html[dir="rtl"] .main-nav { transform: translateX(-100%); }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: var(--space-md); width: 100%; }
    .main-nav .btn { margin-top: var(--space-md); }
    .nav-toggle { display: block; }
    .header-actions .btn.nav-cta-desktop { display: none; }

    .section-split { grid-template-columns: 1fr; }
    .section-split.reverse .split-media, .section-split .split-media { order: 1; }
    .section-split.reverse .split-content, .section-split .split-content { order: 2; }

    .feature-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .offer-grid { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .journey__track { grid-template-columns: 1fr 1fr; }
    .journey__track::before { display: none; }
    .bento { grid-template-columns: 1fr; }
    .bento__lead { grid-column: auto; }
    .ledger__row { grid-template-columns: 1fr; text-align: center; }
    .ledger__index { display: none; }
    .ledger__specs { justify-content: center; }
    .ledger__action { justify-self: center; }
    .trust-strip .container { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
    .container { padding: 0 var(--space-sm); }
    .section { padding: var(--space-xl) 0; }
    .offer-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero { padding-top: 7rem; }
    .hero-inner { padding-top: 4rem; }
    .hero-badges { gap: var(--space-md); }
    .form-row { grid-template-columns: 1fr; }
    .chat-window { inset-inline-start: 12px; bottom: 88px; width: calc(100vw - 24px); height: 68vh; }
    .floating-actions { inset-inline-start: 14px; bottom: 16px; }
    .scroll-top { inset-inline-end: 14px; bottom: 16px; }
    .stamp-badge { width: 68px; height: 68px; }
    .stamp-badge svg { width: 34px; height: 34px; }
    .split-media .stamp-badge { bottom: -12px; inset-inline-end: -12px; }
    .contact-form, .contact-info-card { padding: var(--space-md); }
}
