/* ════════════════════════════════════════════════════════════════
   HEOMED — Modern Corporate (Genesis-style)
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/* ──────────────────────────────────────────
   Tokens
   ────────────────────────────────────────── */
:root {
    --white:        #FFFFFF;
    --cream:        #F4F6FB;    /* very light blue-tinted background */
    --cream-deep:   #E3E9F5;    /* slightly darker blue tint */
    --ink:          #0B1F45;    /* very dark navy — primary ink */
    --ink-soft:     #1A2F5A;
    --muted:        #5A6B8C;    /* muted blue-gray */
    --mute-2:       #8A98B5;

    /* Primary = BLUE (dominant) */
    --gold:         #1E40AF;        /* primary blue replacing gold token */
    --gold-hover:   #1633A0;
    --gold-light:   rgba(30, 64, 175, 0.12);
    --gold-deep:    #0E2A7A;

    /* Yellow accent (secondary) */
    --yellow:       #F5C518;
    --yellow-hover: #E5B30E;
    --yellow-deep:  #C99A00;

    /* Blue scale for backgrounds */
    --blue-deep:    #0A1F4D;
    --blue-mid:     #14306E;

    --rule:         rgba(11, 31, 69, 0.10);
    --rule-strong:  rgba(11, 31, 69, 0.22);

    --display:      'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --sans:         'DM Sans', system-ui, -apple-system, sans-serif;

    --maxw:         1400px;
    --pad:          clamp(20px, 4vw, 56px);
    --gutter:       clamp(20px, 2.5vw, 40px);

    --ease:         cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --header-h:     96px;
}

/* ──────────────────────────────────────────
   Reset & Base
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    background: var(--cream);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    position: relative;
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

input, textarea, select {
    font: inherit; color: inherit; background: transparent;
    border: none; outline: none;
}

::selection { background: var(--gold); color: var(--ink); }

/* ──────────────────────────────────────────
   Typography helpers
   ────────────────────────────────────────── */
.display {
    font-family: var(--display);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.eyebrow {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}

.eyebrow--gold { color: var(--gold); }

.muted { color: var(--muted); }

/* ──────────────────────────────────────────
   Container
   ────────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
    position: relative;
}

.wrap--wide { max-width: 1640px; }

.section {
    padding-top: clamp(80px, 11vw, 160px);
    padding-bottom: clamp(80px, 11vw, 160px);
    position: relative;
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px var(--pad);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.scrolled {
    box-shadow: 0 1px 0 rgba(20, 19, 15, 0.05);
}

.header__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

/* Left: hamburger + logo */
.header__left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header__burger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 19, 15, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.header__burger:hover {
    background: var(--ink);
    color: var(--white);
}

.header__burger:hover .header__burger-lines span { background: var(--white); }

.header__burger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header__burger-lines span {
    display: block;
    width: 22px;
    height: 1.6px;
    background: var(--ink);
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.header__burger.active .header__burger-lines span:first-child { transform: translateY(3.3px) rotate(45deg); }
.header__burger.active .header__burger-lines span:last-child  { transform: translateY(-3.3px) rotate(-45deg); }

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

.header__logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.header__logo-text {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1;
}

.header__logo-text span {
    color: var(--yellow-deep);
    font-style: italic;
    font-weight: 500;
}

/* Center: nav (pill style) */
.header__nav {
    display: flex;
    justify-content: center;
    background: rgba(20, 19, 15, 0.04);
    border-radius: 999px;
    padding: 6px;
    gap: 0;
    justify-self: center;
}

.header__nav a {
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    border-radius: 999px;
    transition: all 0.3s var(--ease);
    line-height: 1;
}

.header__nav a:hover {
    color: var(--gold);
    background: var(--white);
    box-shadow: 0 1px 4px rgba(20, 19, 15, 0.04);
}
.header__nav a.active, .header__nav .current-menu-item > a {
    color: var(--gold);
    background: var(--white);
    box-shadow: 0 1px 4px rgba(20, 19, 15, 0.04);
}

/* Right: CTA + search */
.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--gold);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.header__cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.header__search {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ink);
    transition: all 0.3s var(--ease);
}

.header__search:hover {
    background: rgba(20, 19, 15, 0.06);
    color: var(--gold);
}

/* Language Switcher */
.header__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 19, 15, 0.04);
    font-size: 0.82rem;
    font-weight: 600;
}

.header__lang-btn {
    color: var(--ink-soft);
    opacity: 0.55;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
    line-height: 1;
}

.header__lang-btn:hover { opacity: 1; color: var(--gold); }
.header__lang-btn.active { opacity: 1; color: var(--gold); font-weight: 700; }

.header__lang-sep {
    color: var(--mute-2);
    opacity: 0.5;
}

@media (max-width: 720px) {
    .header__lang { padding: 6px 10px; font-size: 0.75rem; }
}

/* ════════════════════════════════════════════════════════════════
   RTL Support (Arabic mode) — Tajawal font
   ════════════════════════════════════════════════════════════════ */
html[dir="rtl"],
html[dir="rtl"] body,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] button {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* Headings — Tajawal Bold/ExtraBold */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .display {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
}

/* Display class — extra bold tajawal */
html[dir="rtl"] .hero__title,
html[dir="rtl"] .cat-hero__title,
html[dir="rtl"] .svx-hero__title,
html[dir="rtl"] .svx-svc__title,
html[dir="rtl"] .svx-svc__quote,
html[dir="rtl"] .svx-flow__head-title,
html[dir="rtl"] .svx-bento__head-title,
html[dir="rtl"] .svx-close__l h2,
html[dir="rtl"] .about__intro h2,
html[dir="rtl"] .ctaband h2,
html[dir="rtl"] .feature h2,
html[dir="rtl"] .cats-list__head h2,
html[dir="rtl"] .cats__head h2,
html[dir="rtl"] .cert-key__head h2,
html[dir="rtl"] .cert-all__head h2,
html[dir="rtl"] .ct-main__head h2,
html[dir="rtl"] .ct-offices__head h2,
html[dir="rtl"] .about-story__content h2,
html[dir="rtl"] .about-vmv__head h2,
html[dir="rtl"] .about-pillars__head h2,
html[dir="rtl"] .svc__head-l h2,
html[dir="rtl"] .products__head-l h2 {
    font-weight: 800;
    line-height: 1.2;
}

/* Mono labels look bad in Arabic — use Tajawal instead */
html[dir="rtl"] .label,
html[dir="rtl"] .meta,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .svx-intro__tag,
html[dir="rtl"] .svx-svc__discipline,
html[dir="rtl"] .svx-bento__head-tag,
html[dir="rtl"] .svx-flow__head-tag,
html[dir="rtl"] .svx-close__tag,
html[dir="rtl"] .cat-hero__eyebrow,
html[dir="rtl"] .preloader__label,
html[dir="rtl"] .ct-quick__card-tag,
html[dir="rtl"] .header__nav a,
html[dir="rtl"] .drawer__menu a span,
html[dir="rtl"] .header__lang-btn {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    letter-spacing: 0.08em;
}

/* Italic doesn't exist in most Arabic fonts; use bold accent instead */
html[dir="rtl"] em,
html[dir="rtl"] .svx-svc__title em,
html[dir="rtl"] .svx-flow__head-title em,
html[dir="rtl"] .svx-bento__head-title em,
html[dir="rtl"] .svx-close__l h2 em,
html[dir="rtl"] .svx-intro__text em,
html[dir="rtl"] .svx-hero__title-em,
html[dir="rtl"] .hero__title em,
html[dir="rtl"] .ctaband h2 em,
html[dir="rtl"] .about__intro h2 em,
html[dir="rtl"] .about__panel h3 em,
html[dir="rtl"] .svc__head-l h2 em,
html[dir="rtl"] .products__head-l h2 em,
html[dir="rtl"] .feature h2 em,
html[dir="rtl"] .cat-hero__title em,
html[dir="rtl"] .cats-list__head h2 em,
html[dir="rtl"] .cats__head h2 em,
html[dir="rtl"] .cert-key__head h2 em,
html[dir="rtl"] .cert-all__head h2 em,
html[dir="rtl"] .ct-main__head h2 em,
html[dir="rtl"] .ct-offices__head h2 em,
html[dir="rtl"] .about-story__content h2 em,
html[dir="rtl"] .about-vmv__head h2 em,
html[dir="rtl"] .about-pillars__head h2 em {
    font-style: normal;
    font-weight: 700;
    color: var(--yellow-deep);
}

/* Mirror layout for inherent LTR flexes */
html[dir="rtl"] .header__bar,
html[dir="rtl"] .header__nav,
html[dir="rtl"] .header__right,
html[dir="rtl"] .nav-actions {
    direction: rtl;
}

/* Adjust arrow icons direction */
html[dir="rtl"] .svx-cta-arrow,
html[dir="rtl"] .arrow {
    display: inline-block;
    transform: scaleX(-1);
}

html[dir="rtl"] .svx-cta-link:hover .svx-cta-arrow {
    transform: scaleX(-1) translateX(4px);
}

html[dir="rtl"] .btn:hover .arrow {
    transform: scaleX(-1) translate(-3px, -3px);
}

/* Breadcrumbs / dividers — flip only the arrow separator, not the text labels */
html[dir="rtl"] .cat-hero__crumbs > span:not(.current),
html[dir="rtl"] .prod-hero__crumbs > span:not(.current),
html[dir="rtl"] .svx-hero__crumbs > span:not(.current) {
    transform: scaleX(-1);
    display: inline-block;
}

/* Drawer menu: open from right in RTL */
html[dir="rtl"] .drawer__panel {
    left: auto;
    right: 0;
    transform: translateX(100%);
}

html[dir="rtl"] .drawer.active .drawer__panel {
    transform: translateX(0);
}

html[dir="rtl"] .drawer__menu a span {
    margin-left: 0;
    margin-right: 12px;
}

/* Mobile nav: number stays on right (since text flows RTL) */
html[dir="rtl"] .drawer__menu a {
    flex-direction: row-reverse;
}

/* Sidebar in category page */
html[dir="rtl"] .cat-sidebar__list a {
    flex-direction: row-reverse;
}

html[dir="rtl"] .cat-sidebar__list a:hover {
    padding-left: 14px;
    padding-right: 18px;
}

/* Product cards: gallery thumbs/spec list */
html[dir="rtl"] .prod-card__cta,
html[dir="rtl"] .svc__card-link,
html[dir="rtl"] .cats-info__link,
html[dir="rtl"] .svx-cta-link {
    direction: rtl;
}

/* Footer alignment */
html[dir="rtl"] .foot__bottom { text-align: right; }
html[dir="rtl"] .foot__bottom .foot__bottom-right { text-align: left; }

/* Hero CTA arrow direction */
html[dir="rtl"] .hero__cta-row { flex-direction: row; }

/* Service rows in RTL — flip grid order so first item appears on right */
html[dir="rtl"] .svx-hero__grid,
html[dir="rtl"] .svx-svc__split,
html[dir="rtl"] .svx-svc__edit,
html[dir="rtl"] .svx-close__grid {
    direction: rtl;
}

/* Ensure hero left content stays on right in RTL */
html[dir="rtl"] .svx-hero__left,
html[dir="rtl"] .svx-svc__content,
html[dir="rtl"] .svx-svc__edit-r,
html[dir="rtl"] .svx-close__l {
    text-align: right;
}

/* Service list bullets — adjust spacing for RTL */
html[dir="rtl"] .svx-svc__list li {
    padding-left: 0;
    padding-right: 28px;
}

html[dir="rtl"] .svx-svc__list li::before {
    left: auto;
    right: 0;
}

/* Service number flips — keep nicely positioned */
html[dir="rtl"] .svx-svc__head {
    flex-direction: row;
}

/* Bento grid: keep grid as-is but reverse direction */
html[dir="rtl"] .svx-bento__grid {
    direction: rtl;
}

/* Bento arrow flip */
html[dir="rtl"] .svx-bento__arrow {
    transform: scaleX(-1);
    display: inline-block;
}

/* Service CTA arrow flip */
html[dir="rtl"] .svx-cta-arrow {
    display: inline-block;
    transform: scaleX(-1);
}

/* Flow item number sticks on the right in RTL */
html[dir="rtl"] .svx-flow__item-num {
    text-align: right;
}

/* Tickets stay in correct visual order */
html[dir="rtl"] .svx-svc__tickets {
    direction: rtl;
}

html[dir="rtl"] .svx-svc__cta-row {
    direction: rtl;
}

/* Intro row */
html[dir="rtl"] .svx-intro__row {
    direction: rtl;
}

/* Flow list arrows / numbers */
html[dir="rtl"] .svx-flow__item {
    direction: rtl;
}

html[dir="rtl"] .svx-flow__item:hover {
    padding-left: 0;
    padding-right: 14px;
}

html[dir="rtl"] .svx-flow__item-meta { text-align: left; }

/* Card hover indents */
html[dir="rtl"] .idx__item:hover .idx__item-row {
    padding-left: clamp(12px, 1.6vw, 24px);
    padding-right: clamp(20px, 3vw, 40px);
}

/* Stats list ledger */
html[dir="rtl"] .ledger__row {
    border-right: none;
    border-left: 1px solid var(--rule-thin);
}
html[dir="rtl"] .ledger__row:last-child {
    border-left: none;
}

/* Contact form labels */
html[dir="rtl"] .ct-form__check {
    flex-direction: row-reverse;
}

html[dir="rtl"] .ct-form__submit-row {
    flex-direction: row-reverse;
}

/* Cards arrows should point inward (right→ in LTR becomes left← in RTL) */
html[dir="rtl"] .products__card-arrow,
html[dir="rtl"] .cats__card-arrow,
html[dir="rtl"] .idx__item-arrow,
html[dir="rtl"] .svc__card-link-arrow {
    transform: scaleX(-1);
}

html[dir="rtl"] .products__card:hover .products__card-arrow,
html[dir="rtl"] .cats__card:hover .cats__card-arrow {
    transform: scaleX(-1) rotate(-45deg);
}

/* Reduce big display sizes for Arabic since Arabic glyphs are much wider */
html[dir="rtl"] .svx-hero__title,
html[dir="rtl"] .cat-hero__title,
html[dir="rtl"] .hero__title {
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    letter-spacing: 0;
    line-height: 1.25;
}

html[dir="rtl"] .cat-hero__title {
    max-width: 26ch;
}

html[dir="rtl"] .about-hero .cat-hero__title,
html[dir="rtl"] .cat-hero .cat-hero__title {
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    line-height: 1.3;
}

/* Section headings — base CSS uses 5-7vw which is huge for Arabic */
html[dir="rtl"] .feature h2,
html[dir="rtl"] .cats__head h2,
html[dir="rtl"] .cats-list__head h2,
html[dir="rtl"] .products__head-l h2,
html[dir="rtl"] .svc__head-l h2,
html[dir="rtl"] .ctaband h2,
html[dir="rtl"] .about__intro h2,
html[dir="rtl"] .about-story__content h2,
html[dir="rtl"] .about-vmv__head h2,
html[dir="rtl"] .about-pillars__head h2,
html[dir="rtl"] .cert-key__head h2,
html[dir="rtl"] .cert-all__head h2,
html[dir="rtl"] .ct-main__head h2,
html[dir="rtl"] .ct-offices__head h2,
html[dir="rtl"] .svx-svc__title,
html[dir="rtl"] .svx-svc__quote,
html[dir="rtl"] .svx-flow__head-title,
html[dir="rtl"] .svx-bento__head-title,
html[dir="rtl"] .svx-close__l h2 {
    font-size: clamp(1.4rem, 2.6vw, 2.4rem);
    line-height: 1.35;
    letter-spacing: 0;
}

/* Arabic headings need wider max-width since Arabic words are longer.
   Removing the restrictive max-width prevents awkward 3-4 line wraps. */
html[dir="rtl"] .about-story__content h2,
html[dir="rtl"] .about-pillars__head h2,
html[dir="rtl"] .about-vmv__head h2,
html[dir="rtl"] .about-hero__content h1,
html[dir="rtl"] .cat-hero__title,
html[dir="rtl"] .svx-hero__title,
html[dir="rtl"] .hero__title,
html[dir="rtl"] .feature h2,
html[dir="rtl"] .cats__head h2,
html[dir="rtl"] .cats-list__head h2,
html[dir="rtl"] .products__head-l h2,
html[dir="rtl"] .svc__head-l h2,
html[dir="rtl"] .ctaband h2,
html[dir="rtl"] .about__intro h2,
html[dir="rtl"] .cert-key__head h2,
html[dir="rtl"] .cert-all__head h2,
html[dir="rtl"] .ct-main__head h2,
html[dir="rtl"] .ct-offices__head h2,
html[dir="rtl"] .svx-svc__title,
html[dir="rtl"] .svx-flow__head-title,
html[dir="rtl"] .svx-bento__head-title,
html[dir="rtl"] .svx-close__l h2 {
    max-width: 100%;
    line-height: 1.35;
}

html[dir="rtl"] .about-story__content h2,
html[dir="rtl"] .about-pillars__head h2,
html[dir="rtl"] .about-vmv__head h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.4;
}

@media (max-width: 768px) {
    html[dir="rtl"] .svx-hero__title,
    html[dir="rtl"] .cat-hero__title,
    html[dir="rtl"] .hero__title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        line-height: 1.3;
    }
    html[dir="rtl"] .feature h2,
    html[dir="rtl"] .cats__head h2,
    html[dir="rtl"] .cats-list__head h2,
    html[dir="rtl"] .products__head-l h2,
    html[dir="rtl"] .svc__head-l h2,
    html[dir="rtl"] .ctaband h2,
    html[dir="rtl"] .about__intro h2,
    html[dir="rtl"] .about-story__content h2,
    html[dir="rtl"] .about-vmv__head h2,
    html[dir="rtl"] .about-pillars__head h2,
    html[dir="rtl"] .cert-key__head h2,
    html[dir="rtl"] .cert-all__head h2,
    html[dir="rtl"] .ct-main__head h2,
    html[dir="rtl"] .ct-offices__head h2,
    html[dir="rtl"] .svx-svc__title,
    html[dir="rtl"] .svx-svc__quote,
    html[dir="rtl"] .svx-flow__head-title,
    html[dir="rtl"] .svx-bento__head-title,
    html[dir="rtl"] .svx-close__l h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.9rem);
        line-height: 1.35;
    }
}

html[dir="rtl"] .svx-svc__quote {
    letter-spacing: 0;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .header__nav { display: none; }
}

@media (max-width: 720px) {
    .header__cta { display: none; }
    .header__logo-text { display: none; }

    /* Restructure mobile header: burger | language toggle | logo */
    .header__bar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    .header__left {
        display: contents; /* let burger and logo become flex siblings */
    }

    /* In LTR: burger on left, lang in the middle, logo on right.
       In RTL the whole row mirrors automatically (flex flips with dir=rtl). */
    .header__burger {
        width: 44px;
        height: 44px;
        order: 1;
    }
    .header__right {
        order: 2;
    }
    .header__logo {
        order: 3;
    }
    .header__burger-lines span {
        width: 18px;
    }
    .header__logo img {
        height: 38px;
    }
}

/* Drawer header (logo + lang) */
.drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 28px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
}
.drawer__logo {
    display: flex;
    align-items: center;
}
.drawer__logo img {
    height: 40px;
    width: auto;
}
.drawer__lang {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(20, 19, 15, 0.05);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}
.drawer__lang-btn {
    color: var(--ink-soft);
    transition: color 0.3s;
}
.drawer__lang-btn.active,
.drawer__lang-btn:hover {
    color: var(--gold);
}
.drawer__lang span {
    color: var(--mute);
}

/* Drawer address */
.drawer__address {
    display: block;
    font-size: 0.85rem;
    color: var(--mute-2);
    margin-top: 10px;
}

/* Drawer CTA — prominent action button at bottom */
.drawer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 24px;
    padding: 18px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.drawer__cta:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}
.drawer__cta span {
    transition: transform 0.3s;
}
html[dir="rtl"] .drawer__cta span {
    display: inline-block;
    transform: scaleX(-1);
}
.drawer__cta:hover span { transform: translateX(4px); }
html[dir="rtl"] .drawer__cta:hover span { transform: scaleX(-1) translateX(4px); }

/* ──────────────────────────────────────────
   Side drawer menu
   ────────────────────────────────────────── */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 99;
    visibility: hidden;
    pointer-events: none;
}

.drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 19, 15, 0.5);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.drawer__panel {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: min(480px, 90vw);
    background: var(--white);
    padding: 120px 48px 48px;
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.active { visibility: visible; pointer-events: auto; }
.drawer.active .drawer__overlay { opacity: 1; }
.drawer.active .drawer__panel { transform: translateX(0); }

.drawer__menu {
    display: flex;
    flex-direction: column;
}

.drawer__menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.025em;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}

.drawer__menu a span {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--mute-2);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.drawer__menu a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.drawer__contact {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
}

.drawer__contact a { color: var(--ink); }
.drawer__contact a:hover { color: var(--gold); }
.drawer__contact strong {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute-2);
    margin-bottom: 4px;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: clamp(620px, 90vh, 880px);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
}

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.6s ease, transform 7s ease;
}

.hero__slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 31, 77, 0.85) 0%, rgba(20, 48, 110, 0.65) 60%, rgba(30, 64, 175, 0.4) 100%),
        linear-gradient(180deg, transparent 0%, rgba(11, 31, 69, 0.5) 100%);
}

.hero__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 80%, var(--cream) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    color: var(--white);
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.hero__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.75rem, 7.5vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    max-width: 16ch;
    margin-bottom: 32px;
}

.hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--yellow);
}

.hero__lead {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 400;
}

.hero__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
}

.btn--gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--ink);
}

.btn--dark {
    background: var(--ink);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.btn:hover .arrow { transform: translate(3px, -3px); }

/* Hero side info */
.hero__sidemeta {
    position: absolute;
    right: var(--pad);
    bottom: 60px;
    z-index: 3;
    color: var(--white);
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__sidemeta strong {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: -0.02em;
    text-transform: none;
}

.hero__scroll {
    position: absolute;
    left: var(--pad);
    bottom: 40px;
    z-index: 3;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__scroll-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateX(-100%);
    animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@media (max-width: 820px) {
    .hero__sidemeta, .hero__scroll { display: none; }
    .hero { height: clamp(520px, 80vh, 700px); }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT SECTION (Genesis-style: heading + image + accordion)
   ════════════════════════════════════════════════════════════════ */
.about {
    background: var(--cream);
    padding-top: clamp(70px, 9vw, 130px);
}

.about__intro {
    padding-bottom: clamp(50px, 7vw, 90px);
    max-width: 980px;
}

.about__eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 18px;
}

.about__eyebrow-rule {
    width: 100%;
    height: 1px;
    background: var(--rule-strong);
    margin-bottom: 36px;
    max-width: 720px;
}

.about__intro h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.about__intro h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.about__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: stretch;
}

.about__visual {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--ink);
}

.about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.about__visual:hover img { transform: scale(1.04); }

.about__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20, 19, 15, 0.4) 100%);
}

.about__visual-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about__visual-tag::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--yellow);
}

.about__panel {
    background: var(--white);
    padding: clamp(36px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__panel h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.65rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 36px;
}

.about__panel h3 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

/* Accordion */
.acc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc__item {
    background: var(--cream-deep);
    overflow: hidden;
    transition: background 0.3s var(--ease);
}

.acc__item.open { background: var(--gold); }

.acc__head {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s var(--ease);
}

.acc__item.open .acc__head { color: var(--white); }

.acc__icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}

.acc__icon::before,
.acc__icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: transform 0.3s var(--ease);
}

.acc__icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    transform: translateY(-50%);
}

.acc__icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    transform: translateX(-50%);
}

.acc__item.open .acc__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.acc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
    background: var(--white);
}

.acc__item.open .acc__body { max-height: 1000px; }

.acc__body-inner {
    padding: 24px 28px 30px;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    border-top: 1px solid var(--rule);
}

@media (max-width: 920px) {
    .about__body { grid-template-columns: 1fr; }
    .about__visual { aspect-ratio: 16/11; }
}

/* ════════════════════════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════════════════════════ */
.stats {
    background: var(--blue-deep);
    color: var(--white);
    padding: clamp(60px, 8vw, 110px) 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.stats .wrap { position: relative; z-index: 1; }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 48px);
}

.stats__item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: clamp(20px, 2.5vw, 36px);
}

.stats__item:first-child { border-left-color: var(--yellow); border-left-width: 2px; }

.stats__num {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.stats__num-suffix { color: var(--yellow); }

.stats__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    max-width: 240px;
}

@media (max-width: 820px) {
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 460px) {
    .stats__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════ */
.svc {
    background: var(--cream);
    padding: clamp(80px, 11vw, 160px) 0;
}

.svc__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gutter);
    align-items: end;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.svc__head-l h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 18px;
    max-width: 14ch;
}

.svc__head-l h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svc__head-r {
    text-align: right;
}

.svc__head-r p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 380px;
    margin-left: auto;
}

.svc__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 28px);
}

.svc__card {
    background: var(--white);
    padding: clamp(36px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    border-radius: 4px;
}

.svc__card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--yellow) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.svc__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(20, 19, 15, 0.08);
}

.svc__card:hover::before { transform: scaleX(1); }

.svc__card-num {
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 28px;
}

.svc__card h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--ink);
}

.svc__card p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

.svc__card-link {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.svc__card:hover .svc__card-link { color: var(--gold); }

.svc__card-link-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.svc__card:hover .svc__card-link-arrow {
    background: var(--gold);
    color: var(--white);
    transform: rotate(-45deg);
}

@media (max-width: 980px) {
    .svc__head { grid-template-columns: 1fr; }
    .svc__head-r { text-align: left; }
    .svc__head-r p { margin-left: 0; }
    .svc__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════════════════════════ */
.products {
    background: var(--white);
    padding: clamp(80px, 11vw, 160px) 0;
}

.products__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gutter);
    align-items: end;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.products__head-l h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 18px;
    max-width: 14ch;
}

.products__head-l h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.products__head-r {
    text-align: right;
    align-self: end;
}

.products__head-r .btn { margin-left: auto; }

.products__head-r p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 380px;
    margin-left: auto;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.products__card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    aspect-ratio: 4/5;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border-radius: 10px;
    border: 1px solid var(--rule);
}

.products__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(11, 31, 69, 0.12);
    border-color: transparent;
}

.products__card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--cream);
}

.products__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
}

.products__card:hover .products__card-img img {
    transform: scale(1.06);
}

/* Gradient overlay so the title is always readable */
.products__card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(11, 31, 69, 0) 0%,
        rgba(11, 31, 69, 0) 35%,
        rgba(11, 31, 69, 0.55) 70%,
        rgba(11, 31, 69, 0.92) 100%);
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.products__card:hover .products__card-img::after {
    background: linear-gradient(180deg,
        rgba(30, 64, 175, 0.15) 0%,
        rgba(11, 31, 69, 0.4) 50%,
        rgba(11, 31, 69, 0.95) 100%);
}

.products__card-foot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    color: var(--white);
}

.products__card-foot h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.018em;
    max-width: 75%;
    transition: transform 0.4s var(--ease);
    transform-origin: bottom left;
}

.products__card:hover .products__card-foot h4 {
    transform: translateY(-2px);
}

.products__card-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    transition: all 0.4s var(--ease);
}

.products__card:hover .products__card-arrow {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
    transform: rotate(-45deg);
}

/* Top-corner ribbon: small category # label */
.products__card-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--ink);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .products__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .products__head { grid-template-columns: 1fr; }
    .products__head-r { text-align: left; }
    .products__head-r p { margin-left: 0; }
    .products__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
    .products__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FEATURE BANNER (Why us)
   ════════════════════════════════════════════════════════════════ */
.feature {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: clamp(100px, 14vw, 200px) 0;
}

.feature__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.feature__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 31, 77, 0.92) 0%, rgba(20, 48, 110, 0.7) 60%, rgba(30, 64, 175, 0.45) 100%),
        linear-gradient(180deg, transparent 0%, rgba(245, 197, 24, 0.12) 100%);
}

.feature__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.feature__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    color: var(--yellow);
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.feature__eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.feature h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
}

.feature h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--yellow);
}

.feature__lead {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 580px;
}

.feature__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.feature__pill {
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--white);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s var(--ease);
}

.feature__pill:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════
   PARTNERS
   ════════════════════════════════════════════════════════════════ */
.partners {
    background: var(--cream);
    padding: clamp(70px, 9vw, 130px) 0;
}

.partners__head {
    text-align: center;
    margin-bottom: 56px;
}

.partners__head .eyebrow { color: var(--gold); margin-bottom: 16px; display: block; }

.partners__head h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.partners__marquee {
    width: 100%;
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.partners__track {
    display: flex;
    gap: clamp(60px, 8vw, 110px);
    animation: marqueeMove 38s linear infinite;
    width: max-content;
    align-items: center;
}

.partners__marquee:hover .partners__track { animation-play-state: paused; }

.partners__logo {
    flex-shrink: 0;
    height: 56px;
    display: flex;
    align-items: center;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.4s var(--ease);
}

.partners__logo:hover { filter: grayscale(0%) opacity(1); }

.partners__logo img {
    max-height: 50px;
    width: auto;
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════════ */
.ctaband {
    background: var(--gold);
    color: var(--white);
    padding: clamp(60px, 8vw, 100px) 0;
    overflow: hidden;
    position: relative;
}

.ctaband::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.18;
    pointer-events: none;
}

.ctaband .wrap { position: relative; z-index: 1; }

.ctaband__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--gutter);
    align-items: center;
}

.ctaband h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--white);
    max-width: 16ch;
}

.ctaband h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--yellow);
}

.ctaband .btn--dark {
    background: var(--yellow);
    color: var(--gold);
    font-weight: 700;
}

.ctaband .btn--dark:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 720px) {
    .ctaband__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact {
    background: var(--cream);
    padding: clamp(80px, 11vw, 160px) 0;
}

.contact__head {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.contact__head .eyebrow { color: var(--gold); display: block; margin-bottom: 18px; }

.contact__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.contact__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(28px, 4vw, 64px);
}

.contact__info {
    background: var(--blue-deep);
    color: var(--white);
    padding: clamp(36px, 4.5vw, 60px);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.contact__info::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: -160px;
    right: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.25;
    pointer-events: none;
}

.contact__info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact__info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
}

.contact__info-text strong {
    display: block;
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.contact__info-text p {
    color: var(--white);
    font-size: 1.0625rem;
    line-height: 1.5;
}

.contact__info-text a { color: var(--white); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.contact__info-text a:hover { border-color: var(--yellow); color: var(--yellow); }

.contact__form {
    background: var(--white);
    padding: clamp(36px, 4.5vw, 60px);
    border-radius: 4px;
}

.contact__form h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--ink);
}

.contact__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__field--full { grid-column: 1 / -1; }

.contact__field label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 500;
}

.contact__field input,
.contact__field textarea,
.contact__field select {
    padding: 16px 18px;
    background: var(--cream);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--ink);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
    background: var(--white);
    box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px rgba(245, 197, 24, 0.3);
}

.contact__field textarea { resize: vertical; min-height: 110px; }

.contact__form-submit {
    grid-column: 1 / -1;
    margin-top: 12px;
}

@media (max-width: 920px) {
    .contact__grid { grid-template-columns: 1fr; }
    .contact__form-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.foot {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(70px, 9vw, 120px) 0 30px;
    position: relative;
    overflow: hidden;
}

.foot__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: clamp(28px, 3vw, 48px);
    padding-bottom: clamp(50px, 7vw, 90px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot__brand img,
.foot__brand-logo {
    height: 72px;
    width: auto;
    margin-bottom: 24px;
    display: block;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    object-fit: contain;
}

.foot__brand-text {
    font-family: var(--display);
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 24px;
}

.foot__brand-text em {
    font-style: italic;
    font-weight: 500;
    color: var(--yellow);
}

.foot__brand p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    max-width: 360px;
    margin-bottom: 28px;
}

.foot__socials {
    display: flex;
    gap: 10px;
}

.foot__socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s var(--ease);
    font-size: 0.9rem;
}

.foot__socials a:hover {
    background: var(--yellow);
    color: var(--gold);
    transform: translateY(-2px);
}

.foot__col h4 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.005em;
}

.foot__col ul { display: flex; flex-direction: column; gap: 12px; }

.foot__col li a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.foot__col li a:hover { color: var(--yellow); }

.foot__col li a::before {
    content: "→";
    color: var(--yellow);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s var(--ease);
}

.foot__col li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.foot__col address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.foot__col address a { color: rgba(255, 255, 255, 0.85); }
.foot__col address a:hover { color: var(--yellow); }

.foot__bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 920px) {
    .foot__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .foot__top { grid-template-columns: 1fr; }
    .foot__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ════════════════════════════════════════════════════════════════
   PRELOADER & CURSOR (optional)
   ════════════════════════════════════════════════════════════════ */
/* ─── Preloader (circular ring + logo) ─── */
.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #15306E 0%, #0A1F4D 65%, #060F2C 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
    overflow: hidden;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

/* Background glow */
.preloader__glow {
    position: absolute;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.18) 0%, transparent 50%);
    border-radius: 50%;
    animation: preGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes preGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.15); opacity: 1; }
}

.preloader__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

/* Core: logo + ring */
.preloader__core {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preloader__ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4;
}

.preloader__ring-progress {
    fill: none;
    stroke: var(--yellow);
    stroke-width: 4;
    stroke-linecap: round;
    /* circumference = 2 * π * 100 = ~628.318 */
    stroke-dasharray: 628.318;
    stroke-dashoffset: 628.318;
    transition: stroke-dashoffset 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.6));
}

/* Pulse ring behind logo */
.preloader__pulse {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.08);
    animation: prePulse 1.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes prePulse {
    0%, 100% { transform: scale(0.95); opacity: 0.4; }
    50%      { transform: scale(1.05); opacity: 0.8; }
}

.preloader__logo {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.preloader__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Meta: counter + label */
.preloader__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.preloader__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.preloader__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: -0.025em;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.preloader__num sup {
    font-size: 0.45em;
    color: var(--yellow);
    font-weight: 500;
    letter-spacing: 0;
}

/* Three pulsing dots */
.preloader__dots {
    display: inline-flex;
    gap: 6px;
}

.preloader__dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    animation: preDot 1.4s ease-in-out infinite;
}

.preloader__dots span:nth-child(2) { animation-delay: 0.15s; }
.preloader__dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes preDot {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.35; }
    40%           { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
    .preloader__core { width: 180px; height: 180px; }
    .preloader__logo { width: 105px; height: 105px; }
    .preloader__num { font-size: 1.8rem; }
}

/* ──────────────────────────────────────────
   Reveal on scroll
   ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   CATEGORY PAGE
   ════════════════════════════════════════════════════════════════ */

/* Hero */
.cat-hero {
    position: relative;
    padding: calc(var(--header-h) + 80px) 0 100px;
    min-height: 480px;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.cat-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cat-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 31, 77, 0.92) 0%, rgba(20, 48, 110, 0.78) 50%, rgba(30, 64, 175, 0.55) 100%),
        linear-gradient(180deg, transparent 0%, rgba(11, 31, 69, 0.65) 100%);
}

.cat-hero__content {
    position: relative;
    z-index: 2;
}

.cat-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}

.cat-hero__crumbs a { color: rgba(255, 255, 255, 0.7); transition: color 0.3s var(--ease); }
.cat-hero__crumbs a:hover { color: var(--yellow); }
.cat-hero__crumbs .current { color: var(--yellow); }

.cat-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 20px;
}

.cat-hero__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--yellow);
}

.cat-hero__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6.5vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 18ch;
}

.cat-hero__lead {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin-bottom: 28px;
}

.cat-hero__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.cat-hero__meta strong {
    color: var(--yellow);
    font-weight: 700;
    font-family: var(--display);
}

.cat-hero__meta .dot { color: rgba(255, 255, 255, 0.4); }

/* Layout */
.cat-body {
    padding: clamp(60px, 8vw, 110px) 0;
    background: var(--cream);
}

.cat-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(28px, 4vw, 60px);
    align-items: start;
}

/* Sidebar */
.cat-sidebar {
    position: sticky;
    top: 110px;
}

.cat-sidebar__title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ink);
    margin-bottom: 20px;
}

.cat-sidebar__num {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    font-family: var(--sans);
    font-weight: 500;
}

.cat-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-sidebar__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
    font-size: 0.9375rem;
    color: var(--ink-soft);
}

.cat-sidebar__list a:hover {
    background: var(--white);
    color: var(--gold);
    padding-left: 18px;
}

.cat-sidebar__list a.active {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
}

.cat-sidebar__count {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--mute-2);
    background: var(--cream-deep);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
}

.cat-sidebar__list a.active .cat-sidebar__count {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.cat-sidebar__cta {
    margin-top: 28px;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--rule);
}

.cat-sidebar__cta strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.cat-sidebar__cta p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.cat-sidebar__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.85rem;
}

/* Main */
.cat-main__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--rule);
}

.cat-main__count {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--muted);
}

.cat-main__count-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.cat-main__filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 999px;
    border: 1px solid var(--rule);
    min-width: 260px;
}

.cat-main__filter label { display: inline-flex; color: var(--mute-2); }
.cat-main__filter input { font-size: 0.9rem; width: 100%; }

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

.prod-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rule);
    transition: all 0.3s var(--ease);
    position: relative;
}

.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 31, 69, 0.08);
    border-color: transparent;
}

.prod-card.hidden { display: none; }

.prod-card__img {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
}

.prod-card__img img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
    mix-blend-mode: multiply;
}

.prod-card:hover .prod-card__img img {
    transform: scale(1.06);
}

.prod-card__num {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--white);
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

.prod-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.prod-card__code {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 500;
}

.prod-card__code strong {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.prod-card__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.012em;
    min-height: 2.5em;
}

.prod-card__spec {
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 2px;
}

.prod-card__foot {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
}

.prod-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.prod-card__cta:hover { color: var(--yellow-deep); }
.prod-card__cta .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.prod-card__cta:hover .arrow { transform: translate(3px, -3px); }

.prod-empty {
    padding: 60px 0;
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
}

/* Empty category page */
.cat-body--empty { padding: clamp(60px, 8vw, 110px) 0; }

.cat-empty {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 32px;
    background: var(--white);
    border-radius: 12px;
}

.cat-empty__icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold);
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cat-empty h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 14px;
}

.cat-empty p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cat-empty__links {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
}

.cat-empty__links span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute-2);
    margin-bottom: 14px;
    font-weight: 600;
}

.cat-empty__links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cat-empty__links a {
    color: var(--gold);
    font-size: 0.9375rem;
    transition: color 0.3s var(--ease);
}

.cat-empty__links a:hover { color: var(--yellow-deep); }

@media (max-width: 1024px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .cat-layout { grid-template-columns: 1fr; }
    .cat-sidebar { position: relative; top: 0; }
    .cat-main__head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cat-main__filter { width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
    .prod-grid { grid-template-columns: 1fr; }
}

/* Linkable product card (no underline, inherit color) */
.prod-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.prod-card--link:hover .prod-card__cta { color: var(--yellow-deep); }
.prod-card--link:hover .prod-card__cta .arrow { transform: translate(3px, -3px); }

/* ════════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ════════════════════════════════════════════════════════════════ */
.prod-hero {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: clamp(40px, 5vw, 80px);
    background: var(--cream);
}

.prod-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.825rem;
    color: var(--muted);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.prod-hero__crumbs a { color: var(--muted); transition: color 0.3s var(--ease); }
.prod-hero__crumbs a:hover { color: var(--gold); }
.prod-hero__crumbs .current {
    color: var(--ink);
    font-weight: 500;
    max-width: 38ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prod-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}

/* Gallery */
.prod-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Hide thumbnails area when only one image */
.prod-gallery--single .prod-gallery__thumbs { display: none; }
.prod-gallery--single .prod-gallery__stage { aspect-ratio: 4/3.6; }

.prod-gallery__stage {
    aspect-ratio: 1/1;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    cursor: zoom-in;
}

.prod-gallery__stage img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
    mix-blend-mode: multiply;
}

.prod-gallery__stage:hover img { transform: scale(1.08); }

.prod-gallery__zoom-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
}

.prod-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.prod-gallery__thumb {
    aspect-ratio: 1/1;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.prod-gallery__thumb:hover { border-color: var(--rule-strong); }
.prod-gallery__thumb.active { border-color: var(--gold); background: var(--cream-deep); }

.prod-gallery__thumb img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Info */
.prod-hero__info {
    padding-top: 8px;
}

.prod-hero__tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.prod-hero__cat {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.prod-hero__code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 500;
}

.prod-hero__code strong {
    color: var(--ink);
    font-weight: 700;
    background: var(--cream-deep);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.prod-hero__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 16px;
}

.prod-hero__spec {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 28px;
}

.prod-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 28px;
}

.prod-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.prod-hero__badge svg { color: var(--gold); flex-shrink: 0; }

.prod-hero__cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.prod-hero__contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}

.prod-hero__contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prod-hero__contact-item span {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 500;
}

.prod-hero__contact-item strong {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
}

/* Description + Specs */
.prod-details {
    padding: clamp(40px, 6vw, 80px) 0;
    background: var(--white);
}

.prod-details__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(32px, 4vw, 60px);
    align-items: start;
}

.prod-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--rule);
}

.prod-tabs__btn {
    padding: 14px 22px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--mute-2);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s var(--ease);
    letter-spacing: -0.01em;
}

.prod-tabs__btn:hover { color: var(--ink); }
.prod-tabs__btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.prod-tabs__panel {
    display: none;
}

.prod-tabs__panel.active {
    display: block;
    animation: fadeIn 0.4s var(--ease);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.prod-tabs__panel p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.prod-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prod-features li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
}

.prod-features li:last-child { border-bottom: none; }

.prod-features__bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-features li span:last-child {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

/* Specs box */
.prod-specs {
    background: var(--cream);
    border-radius: 12px;
    padding: clamp(24px, 3vw, 36px);
}

.prod-specs h3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule-strong);
}

.prod-specs__num {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 500;
}

.prod-specs__list {
    display: flex;
    flex-direction: column;
}

.prod-specs__row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
}

.prod-specs__row:last-child { border-bottom: none; }

.prod-specs__row dt {
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.4;
}

.prod-specs__row dd {
    font-size: 0.875rem;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 500;
}

/* Help card */
.prod-help {
    margin-top: 24px;
    background: var(--ink);
    color: var(--white);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.prod-help::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.prod-help__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.15);
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-help strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.prod-help p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.prod-help a {
    color: var(--yellow);
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease);
}

.prod-help a:hover { border-color: var(--yellow); }

/* Related */
.prod-related {
    padding: clamp(60px, 8vw, 110px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.prod-related__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.prod-related__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-top: 14px;
    max-width: 22ch;
}

.prod-related__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

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

@media (max-width: 1024px) {
    .prod-hero__grid { grid-template-columns: 1fr; }
    .prod-details__grid { grid-template-columns: 1fr; }
    .prod-related .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .prod-hero__contact-row { grid-template-columns: 1fr; gap: 14px; }
    .prod-related .prod-grid { grid-template-columns: 1fr; }
    .prod-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   ALL PRODUCTS PAGE (Categories overview)
   ════════════════════════════════════════════════════════════════ */
.cats {
    padding: clamp(70px, 9vw, 130px) 0;
    background: var(--cream);
}

.cats__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gutter);
    align-items: end;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.cats__head-l h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 18px;
    max-width: 14ch;
}

.cats__head-l h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.cats__head-r {
    text-align: right;
}

.cats__head-r p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 380px;
    margin-left: auto;
}

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

.cats__card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    color: inherit;
    text-decoration: none;
    position: relative;
}

.cats__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(11, 31, 69, 0.1);
    border-color: var(--gold);
}

.cats__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.cats__card:hover::before { transform: scaleX(1); }

.cats__card--empty { opacity: 0.7; }
.cats__card--empty:hover { opacity: 1; }

.cats__card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid var(--rule);
}

.cats__card-num {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.825rem;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.cats__card-count {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 500;
}

.cats__card-count strong {
    color: var(--ink);
    font-weight: 700;
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.cats__card--empty .cats__card-count {
    color: var(--yellow-deep);
    font-weight: 600;
}

.cats__card-body {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 30px 28px;
    flex: 1;
    align-items: center;
}

.cats__card-img {
    aspect-ratio: 1/1;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.4s var(--ease);
}

.cats__card:hover .cats__card-img {
    background: var(--cream-deep);
}

.cats__card-img img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s var(--ease);
}

.cats__card:hover .cats__card-img img {
    transform: scale(1.08) rotate(-3deg);
}

.cats__card-info {
    min-width: 0;
}

.cats__card-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.2rem, 1.7vw, 1.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 6px;
    transition: color 0.3s var(--ease);
}

.cats__card:hover .cats__card-title { color: var(--gold); }

.cats__card-sub {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 600;
    margin-bottom: 14px;
}

.cats__card-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

.cats__card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-top: 1px solid var(--rule);
    background: var(--cream);
    transition: background 0.4s var(--ease);
}

.cats__card:hover .cats__card-foot { background: var(--cream-deep); }

.cats__card-link {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ink);
    transition: color 0.3s var(--ease);
}

.cats__card:hover .cats__card-link { color: var(--gold); }

.cats__card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--rule);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.4s var(--ease);
}

.cats__card:hover .cats__card-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: rotate(-45deg);
}

@media (max-width: 980px) {
    .cats__head { grid-template-columns: 1fr; gap: 16px; }
    .cats__head-r { text-align: left; }
    .cats__head-r p { margin-left: 0; }
    .cats__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .cats__card-body { grid-template-columns: 110px 1fr; gap: 18px; padding: 22px; }
    .cats__card-head, .cats__card-foot { padding: 14px 22px; }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT US PAGE
   ════════════════════════════════════════════════════════════════ */

/* Hero slight modification */
.about-hero .cat-hero__title {
    max-width: 22ch;
}

/* Story section */
.about-story {
    padding: clamp(70px, 10vw, 140px) 0;
    background: var(--white);
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.about-story__visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--cream);
}

.about-story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__cap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--ink);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.dot-yellow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
}

.about-story__content h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 18px 0 32px;
    max-width: 18ch;
}

.about-story__content h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.about-story__text p {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.about-story__milestones {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-mile {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: baseline;
}

.about-mile__year {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.about-mile__label {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

@media (max-width: 880px) {
    .about-story__grid { grid-template-columns: 1fr; }
    .about-story__visual { aspect-ratio: 16/11; }
    .about-mile { grid-template-columns: 80px 1fr; gap: 18px; }
}

/* Vision Mission Values */
.about-vmv {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--cream);
}

.about-vmv__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.about-vmv__head .eyebrow { display: block; margin-bottom: 18px; }

.about-vmv__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto;
}

.about-vmv__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.about-vmv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vmv-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    border: 1px solid var(--rule);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.vmv-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 24px 50px rgba(11, 31, 69, 0.08);
}

.vmv-card:hover::before { transform: scaleX(1); }

.vmv-card--vision::before { background: var(--gold); }
.vmv-card--mission::before { background: linear-gradient(90deg, var(--gold), var(--yellow)); }
.vmv-card--values::before { background: var(--yellow); }

.vmv-card__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}

.vmv-card__num {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.vmv-card__tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 700;
}

.vmv-card h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
}

.vmv-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
}

.vmv-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vmv-card__list li {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
}

.vmv-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 880px) {
    .about-vmv__grid { grid-template-columns: 1fr; }
}

/* CEO Message */
.about-ceo {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--white);
}

.about-ceo__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-ceo__quote {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    line-height: 1.3;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 28px 0 40px;
    position: relative;
    padding-left: 28px;
    border-left: 3px solid var(--gold);
}

.about-ceo__sig {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 26px;
    border-top: 1px solid var(--rule);
}

.about-ceo__sig-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.about-ceo__sig strong {
    display: block;
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.about-ceo__sig span {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.01em;
}

.about-ceo__visual {
    position: relative;
}

.about-ceo__visual-img {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.about-ceo__visual-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 31, 69, 0.4) 100%);
}

.about-ceo__tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: var(--yellow);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 820px) {
    .about-ceo__grid { grid-template-columns: 1fr; gap: 40px; }
    .about-ceo__visual-img { aspect-ratio: 16/11; }
}

/* Pillars / Why */
.about-pillars {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.about-pillars__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.about-pillars__head .eyebrow { display: block; margin-bottom: 18px; }

.about-pillars__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 18ch;
    margin: 0 auto;
}

.about-pillars__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
}

.about-pillar {
    background: var(--white);
    padding: 36px 32px;
    transition: background 0.4s var(--ease);
    position: relative;
}

.about-pillar:hover {
    background: var(--cream-deep);
}

.about-pillar__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    display: block;
}

.about-pillar h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 12px;
}

.about-pillar p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

@media (max-width: 880px) {
    .about-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .about-pillars__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   CERTIFICATES PAGE
   ════════════════════════════════════════════════════════════════ */

/* Key certificates (3 large cards) */
.cert-key {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--white);
}

.cert-key__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.cert-key__head .eyebrow { display: block; margin-bottom: 18px; }

.cert-key__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.cert-key__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.cert-key__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cert-key__card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.cert-key__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(11, 31, 69, 0.1);
    border-color: var(--gold);
}

.cert-key__card-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--rule);
    background: var(--cream);
}

.cert-key__card-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.cert-key__card-cat {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 600;
}

.cert-key__card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-key__card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease);
    box-shadow: 0 10px 30px rgba(11, 31, 69, 0.08);
}

.cert-key__card:hover .cert-key__card-img img {
    transform: scale(1.04);
}

.cert-key__card-body {
    padding: 24px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-key__card-body h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 6px;
}

.cert-key__card-auth {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 14px;
}

.cert-key__card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}

.cert-key__card-cta {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--ink-soft);
    font-weight: 500;
    transition: color 0.3s var(--ease);
}

.cert-key__card:hover .cert-key__card-cta {
    color: var(--gold);
}

@media (max-width: 900px) {
    .cert-key__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* All certificates grid */
.cert-all {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.cert-all__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.cert-all__head .eyebrow { display: block; margin-bottom: 18px; }

.cert-all__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 14px;
}

.cert-all__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.cert-all__head p {
    font-size: 0.95rem;
    color: var(--muted);
}

.cert-all__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--rule);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 31, 69, 0.08);
    border-color: var(--gold);
}

.cert-card__img {
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: var(--cream);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cert-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}

.cert-card:hover .cert-card__img img {
    transform: scale(1.04);
}

.cert-card__num {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(11, 31, 69, 0.08);
}

.cert-card__zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s var(--ease);
}

.cert-card:hover .cert-card__zoom {
    opacity: 1;
    transform: scale(1);
    background: var(--gold);
}

.cert-card__body {
    padding: 16px 18px 20px;
    border-top: 1px solid var(--rule);
}

.cert-card__cat {
    display: block;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.cert-card__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.25;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin-bottom: 6px;
}

.cert-card__auth {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 980px) {
    .cert-all__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
    .cert-all__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
    .cert-all__grid { grid-template-columns: 1fr; }
}

/* ─── Lightbox ─── */
.cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 31, 69, 0.94);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cert-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.cert-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-lightbox__close:hover {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
    transform: rotate(90deg);
}

.cert-lightbox__inner {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transform: scale(0.95);
    transition: transform 0.4s var(--ease);
}

.cert-lightbox.open .cert-lightbox__inner {
    transform: scale(1);
}

.cert-lightbox img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cert-lightbox figcaption {
    color: var(--white);
    font-size: 0.95rem;
    text-align: center;
    max-width: 60ch;
    line-height: 1.45;
    font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════ */

/* Quick contact cards */
.ct-quick {
    padding: clamp(40px, 5vw, 70px) 0 clamp(20px, 3vw, 40px);
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.ct-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ct-quick__card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--cream);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.4s var(--ease);
    color: inherit;
    text-decoration: none;
}

.ct-quick__card:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(11, 31, 69, 0.08);
}

.ct-quick__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.ct-quick__card:hover .ct-quick__card-icon {
    background: var(--ink);
    transform: rotate(-8deg);
}

.ct-quick__card-body {
    flex: 1;
    min-width: 0;
}

.ct-quick__card-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.ct-quick__card-body strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 4px;
    word-break: break-word;
}

.ct-quick__card-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 880px) {
    .ct-quick__grid { grid-template-columns: 1fr; }
}

/* Main: Form + Info */
.ct-main {
    padding: clamp(50px, 7vw, 90px) 0;
    background: var(--white);
}

.ct-main__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 4vw, 60px);
    align-items: start;
}

.ct-main__head {
    margin-bottom: clamp(28px, 3vw, 40px);
}

.ct-main__head .eyebrow { display: block; margin-bottom: 14px; }

.ct-main__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 12px;
}

.ct-main__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.ct-main__head p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Form */
.ct-form {
    background: var(--cream);
    border-radius: 12px;
    padding: clamp(28px, 3.5vw, 44px);
}

.ct-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ct-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-form__field--full { grid-column: 1 / -1; }

.ct-form__field label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
}

.ct-form__field label span { color: var(--gold); }

.ct-form__field input,
.ct-form__field textarea,
.ct-form__field select {
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--ink);
    transition: all 0.3s var(--ease);
    font-family: var(--sans);
}

.ct-form__field input:focus,
.ct-form__field textarea:focus,
.ct-form__field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.ct-form__field textarea { resize: vertical; min-height: 130px; }

.ct-form__consent { padding-top: 4px; }

.ct-form__check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--muted);
}

.ct-form__check input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

.ct-form__submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.ct-form__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted);
}

.ct-form__note svg { color: var(--gold); }

/* Info sidebar */
.ct-info {
    background: var(--ink);
    color: var(--white);
    border-radius: 12px;
    padding: clamp(28px, 3.5vw, 40px);
    position: relative;
    overflow: hidden;
}

.ct-info::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.18;
    pointer-events: none;
}

.ct-info > * { position: relative; z-index: 1; }

.ct-info__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--mono, monospace);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.ct-info__num {
    color: var(--yellow);
}

.ct-info__block {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-info__block:last-of-type { border-bottom: none; }

.ct-info__label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.ct-info__value {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
}

.ct-info__value small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85em;
    font-weight: 400;
}

.ct-info__value a {
    display: block;
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.ct-info__value a:hover { color: var(--yellow); }

.ct-info__socials {
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-info__social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.ct-info__social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.ct-info__social-row a:hover {
    background: var(--yellow);
    color: var(--ink);
    transform: translateY(-2px);
}

.ct-note {
    margin-top: 20px;
    background: var(--cream);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ct-note__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-note strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.ct-note p {
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 980px) {
    .ct-main__grid { grid-template-columns: 1fr; }
    .ct-form__grid { grid-template-columns: 1fr; }
    .ct-form__submit-row { flex-direction: column; align-items: flex-start; }
}

/* Offices section */
.ct-offices {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.ct-offices__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.ct-offices__head .eyebrow { display: block; margin-bottom: 18px; }

.ct-offices__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.ct-offices__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.ct-offices__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-office {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--rule);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ct-office:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(11, 31, 69, 0.08);
}

.ct-office__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.ct-office__tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    align-self: flex-start;
}

.ct-office h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
}

.ct-office address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 18px;
}

.ct-office__actions {
    margin-bottom: 18px;
}

.ct-office__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.825rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.ct-office__btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.ct-office__map {
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--cream);
}

.ct-office__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) saturate(0.9);
    transition: filter 0.4s var(--ease);
}

.ct-office:hover .ct-office__map iframe {
    filter: grayscale(0%) saturate(1);
}

@media (max-width: 820px) {
    .ct-offices__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   CATALOGS PAGE
   ════════════════════════════════════════════════════════════════ */
.cats-list {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--white);
}

.cats-list__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.cats-list__head .eyebrow { display: block; margin-bottom: 18px; }

.cats-list__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.cats-list__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.cats-list__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Catalog book card */
.catbook {
    background: var(--cream);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--rule);
    transition: all 0.4s var(--ease);
    position: relative;
}

.catbook:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(11, 31, 69, 0.1);
}

.catbook__tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--rule);
}

.catbook__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.catbook__lang {
    background: var(--ink);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.catbook__body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding: 28px;
    align-items: start;
}

/* Cover image with book-spine effect */
.catbook__cover-wrap {
    position: relative;
    perspective: 1000px;
}

.catbook__cover {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--white);
    border-radius: 6px 4px 4px 6px;
    box-shadow:
        0 14px 30px rgba(11, 31, 69, 0.18),
        -2px 0 0 rgba(0,0,0,0.06),
        -6px 0 0 var(--gold);
    transform: rotateY(-4deg);
    transform-origin: right center;
    transition: transform 0.5s var(--ease);
    position: relative;
}

.catbook:hover .catbook__cover {
    transform: rotateY(-12deg);
}

.catbook__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catbook__cover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, transparent 100%);
    pointer-events: none;
}

/* Info */
.catbook__info {
    display: flex;
    flex-direction: column;
}

.catbook__subtitle {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.catbook__info h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 18px;
}

.catbook__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
}

.catbook__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.catbook__meta svg { color: var(--gold); flex-shrink: 0; }

.catbook__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.catbook__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.catbook__actions .btn {
    padding: 13px 22px;
    font-size: 0.85rem;
}

.catbook__actions .btn svg { flex-shrink: 0; }

/* Ghost dark button (transparent with dark border) */
.btn--ghost-dark {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--rule-strong);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn--ghost-dark:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* Arabic card RTL hint */
.catbook:nth-child(2) .catbook__info h3 {
    direction: rtl;
    text-align: right;
}
.catbook:nth-child(2) .catbook__desc {
    direction: rtl;
    text-align: right;
}

@media (max-width: 980px) {
    .cats-list__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .catbook__body { grid-template-columns: 1fr; padding: 20px; }
    .catbook__cover-wrap { max-width: 200px; margin: 0 auto; }
    .catbook__cover { transform: none; }
    .catbook:hover .catbook__cover { transform: rotateY(-8deg); }
}

/* Info strip */
.cats-info {
    padding: clamp(60px, 8vw, 110px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.cats-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cats-info__card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 10px;
    border: 1px solid var(--rule);
    transition: all 0.3s var(--ease);
}

.cats-info__card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.cats-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cats-info__card strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cats-info__card p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 12px;
}

.cats-info__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease);
}

.cats-info__link:hover { border-color: var(--gold); }

@media (max-width: 820px) {
    .cats-info__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FLIPBOOK MODAL
   ════════════════════════════════════════════════════════════════ */
.flipbook {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle at 50% 30%, #1A3470 0%, #0A1F4D 60%, #050E25 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    overflow: hidden;
}

.flipbook.open {
    opacity: 1;
    visibility: visible;
}

/* Top bar */
.flipbook__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    z-index: 10;
    flex-shrink: 0;
}

.flipbook__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.flipbook__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.flipbook__btn:hover {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
    transform: scale(1.05);
}

.flipbook__btn--dl:hover { background: var(--white); color: var(--ink); }
.flipbook__btn--close:hover { background: #C44; color: var(--white); border-color: #C44; }

.flipbook__counter {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 14px;
    min-width: 80px;
    text-align: center;
}

.flipbook__counter span { color: var(--yellow); }

/* Stage where book lives */
.flipbook__stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.flipbook__book {
    visibility: hidden;
    max-width: 100%;
    max-height: 100%;
}

.flipbook__book.ready { visibility: visible; }

/* Loading */
.flipbook__loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--white);
    background: rgba(10, 31, 77, 0.4);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.flipbook__loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.flipbook__loading-spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--yellow);
    animation: fbSpin 0.9s linear infinite;
}

@keyframes fbSpin {
    to { transform: rotate(360deg); }
}

.flipbook__loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.flipbook__loading-text strong {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}

.flipbook__loading-text span {
    font-family: var(--mono, monospace);
    font-size: 0.875rem;
    color: var(--yellow);
    letter-spacing: 0.06em;
}

/* Bottom hint */
.flipbook__hint {
    padding: 14px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.flipbook__hint svg { color: var(--yellow); }

/* Style for inner page elements added by StPageFlip */
.flipbook__book .page,
.flipbook__book .stf__item,
.flipbook__book .stf__block {
    background: var(--white);
    overflow: hidden;
}

.flipbook__book .page img,
.flipbook__book .page canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Disable scroll when modal open */
body.flipbook-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .flipbook__bar { padding: 12px 14px; }
    .flipbook__title { font-size: 0.8rem; }
    .flipbook__btn { width: 36px; height: 36px; }
    .flipbook__counter { padding: 0 8px; font-size: 0.8rem; min-width: 60px; }
    .flipbook__stage { padding: 16px 8px; }
    .flipbook__hint { font-size: 0.7rem; padding: 10px 14px; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════════════════════════════ */

/* Service list (detailed rows) */
.svc-list {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--white);
}

.svc-list__head {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.svc-list__head .eyebrow { display: block; margin-bottom: 16px; }

.svc-list__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.svc-list__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svc-list__items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.svc-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 32px;
    align-items: start;
    padding: clamp(28px, 4vw, 50px);
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid var(--rule);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.svc-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--yellow));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease);
}

.svc-row:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 24px 50px rgba(11, 31, 69, 0.08);
}

.svc-row:hover::before { transform: scaleY(1); }

.svc-row__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--gold);
    opacity: 0.7;
}

.svc-row__head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
}

.svc-row__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.svc-row:hover .svc-row__icon {
    background: var(--ink);
    transform: rotate(-6deg);
}

.svc-row__tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-row__head h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.95rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 6px;
}

.svc-row__tagline {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 400;
}

.svc-row__desc {
    font-size: 1.025rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.svc-row__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}

.svc-row__features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.svc-row__bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-row__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svc-row__actions .btn {
    padding: 13px 22px;
    font-size: 0.85rem;
}

@media (max-width: 820px) {
    .svc-row { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
    .svc-row__num { font-size: 3rem; }
    .svc-row__features { grid-template-columns: 1fr; }
    .svc-row__head { flex-direction: column; gap: 14px; }
}

/* Process */
.svc-process {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.svc-process__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.svc-process__head .eyebrow { display: block; margin-bottom: 18px; }

.svc-process__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 14px;
}

.svc-process__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svc-process__head p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 56ch;
    margin: 0 auto;
}

.svc-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.svc-step {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 26px;
    border: 1px solid var(--rule);
    position: relative;
    transition: all 0.3s var(--ease);
}

.svc-step:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(11, 31, 69, 0.08);
}

.svc-step__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    width: max-content;
}

.svc-step h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 10px;
}

.svc-step p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--muted);
}

.svc-step__arrow {
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(11, 31, 69, 0.15);
}

@media (max-width: 980px) {
    .svc-process__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .svc-step__arrow { display: none; }
}
@media (max-width: 540px) {
    .svc-process__grid { grid-template-columns: 1fr; }
}

/* Coverage */
.svc-coverage {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--white);
}

.svc-coverage__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: start;
}

.svc-coverage__l .eyebrow { display: block; margin-bottom: 18px; }

.svc-coverage__l h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--ink);
    position: sticky;
    top: 120px;
}

.svc-coverage__l h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svc-coverage__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--rule);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--rule);
}

.svc-coverage__list li {
    background: var(--white);
    padding: 24px 22px;
    transition: background 0.3s var(--ease);
}

.svc-coverage__list li:hover {
    background: var(--cream);
}

.svc-coverage__list li strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.svc-coverage__list li strong::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.svc-coverage__list li p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
    padding-left: 16px;
}

@media (max-width: 880px) {
    .svc-coverage__grid { grid-template-columns: 1fr; }
    .svc-coverage__l h2 { position: relative; top: 0; }
    .svc-coverage__list { grid-template-columns: 1fr; }
}

/* CTA + Stats */
.svc-cta {
    padding: clamp(70px, 10vw, 130px) 0;
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.svc-cta::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}

.svc-cta .wrap { position: relative; z-index: 1; }

.svc-cta__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.svc-cta__l .eyebrow { display: block; margin-bottom: 18px; }
.svc-cta__l .eyebrow--gold { color: var(--yellow); }

.svc-cta__l h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--white);
    margin-bottom: 18px;
}

.svc-cta__l h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--yellow);
}

.svc-cta__l p {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 50ch;
}

.svc-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svc-cta .btn--ghost-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.svc-cta .btn--ghost-dark:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.svc-cta__r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.svc-stat {
    background: rgba(255, 255, 255, 0.02);
    padding: 26px 22px;
    text-align: center;
    transition: background 0.3s var(--ease);
}

.svc-stat:hover { background: rgba(245, 197, 24, 0.08); }

.svc-stat__num {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 6px;
}

.svc-stat__num sup {
    font-size: 0.5em;
    color: var(--yellow);
    font-weight: 500;
    margin-left: 2px;
}

.svc-stat__label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

@media (max-width: 820px) {
    .svc-cta__inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES PAGE — Editorial Redesign (.svx-*)
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.svx-hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 50px) 0 50px;
    color: var(--white);
    overflow: hidden;
}

.svx-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.svx-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(10, 31, 77, 0.94) 0%, rgba(11, 31, 69, 0.78) 60%, rgba(11, 31, 69, 0.5) 100%);
}

.svx-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
}

.svx-hero__crumbs {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 36px;
}

.svx-hero__crumbs a { color: rgba(255, 255, 255, 0.55); transition: color 0.3s ease; }
.svx-hero__crumbs a:hover { color: var(--yellow); }

.svx-hero__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 32px;
    max-width: 18ch;
}

.svx-hero__title-em {
    display: block;
    font-style: italic;
    font-weight: 500;
    color: var(--yellow);
}

.svx-hero__lead {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.5vw, 1.4rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    max-width: 36ch;
}

.svx-hero__right {
    position: relative;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.svx-hero__metric-label {
    display: block;
    font-size: 0.7rem;
    color: var(--yellow);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.svx-hero__metric-val {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 12px;
}

.svx-hero__metric-val sup {
    font-size: 0.4em;
    color: var(--yellow);
    font-weight: 500;
    margin-left: 4px;
}

.svx-hero__metric-note {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    font-style: italic;
    font-family: var(--display);
}

.svx-hero__lines {
    display: flex;
    gap: 4px;
    margin-top: 22px;
}

.svx-hero__lines span {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.svx-hero__lines span:first-child {
    background: var(--yellow);
}

@media (max-width: 820px) {
    .svx-hero { min-height: 70vh; }
    .svx-hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .svx-hero__right { max-width: 360px; }
}

/* ─── INTRO TICKER ─── */
.svx-intro {
    padding: clamp(36px, 5vw, 60px) 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
}

.svx-intro__row {
    display: flex;
    gap: 24px;
    align-items: baseline;
}

.svx-intro__tag {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.svx-intro__text {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.018em;
}

.svx-intro__text em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

@media (max-width: 720px) {
    .svx-intro__row { flex-direction: column; gap: 12px; }
}

/* ═══ SERVICE 01 — Split with image ═══ */
.svx-svc {
    padding: clamp(80px, 11vw, 140px) 0;
    position: relative;
}

.svx-svc--01 {
    background: var(--white);
}

.svx-svc__split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.svx-svc__visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream);
    margin: 0;
}

.svx-svc__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05);
}

.svx-svc__visual figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, transparent, rgba(11, 31, 69, 0.85));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.svx-svc__visual-tag {
    color: var(--yellow);
    font-weight: 700;
}

.svx-svc__content {
    padding-top: 12px;
}

.svx-svc__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ink);
}

.svx-svc__num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--gold);
}

.svx-svc__num--light { color: var(--yellow); }

.svx-svc__discipline {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
}

.svx-svc__discipline--light { color: rgba(255, 255, 255, 0.7); }

.svx-svc__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
}

.svx-svc__title--lg {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    margin-bottom: 0;
}

.svx-svc__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svx-svc__lead {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 32px;
}

.svx-svc__lead--mb { margin-bottom: 36px; }

.svx-svc__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svx-svc__list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.975rem;
    line-height: 1.5;
    color: var(--ink-soft);
    font-family: var(--display);
    font-weight: 400;
}

.svx-svc__list li span {
    font-weight: 700;
    color: var(--ink);
    font-style: italic;
}

.svx-svc__cta {
    margin-top: 8px;
}

@media (max-width: 880px) {
    .svx-svc__split { grid-template-columns: 1fr; gap: 36px; }
    .svx-svc__visual { aspect-ratio: 16/10; }
}

/* ═══ SERVICE 02 — Dark band with quote ═══ */
.svx-svc--02 {
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: clamp(100px, 14vw, 180px);
    padding-bottom: clamp(100px, 14vw, 180px);
}

.svx-svc__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.svx-svc__bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 31, 69, 0.97) 0%, rgba(11, 31, 69, 0.92) 100%);
}

.svx-svc__band {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    text-align: center;
}

.svx-svc__band-top {
    display: inline-flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(245, 197, 24, 0.4);
    border-bottom: 1px solid rgba(245, 197, 24, 0.4);
    margin-bottom: 56px;
}

.svx-svc__quote {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.85rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.svx-svc__quote em {
    font-style: italic;
    color: var(--yellow);
    font-weight: 500;
}

.svx-svc__quote-mark {
    font-family: var(--display);
    color: var(--yellow);
    opacity: 0.6;
    font-weight: 400;
    line-height: 0;
}

.svx-svc__band-byline {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 56px;
    letter-spacing: 0.04em;
}

.svx-svc__band-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    text-align: left;
    margin-bottom: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.svx-svc__band-h {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--yellow);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.svx-svc__band-cols p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

/* Card variant for contract tiers (silver/gold/platinum) */
.svx-svc__band-cols--cards {
    gap: 24px;
    border-top: none;
    padding-top: 0;
}

.svx-svc__band-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: right;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.svx-svc__band-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.svx-svc__band-card--featured {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.svx-svc__band-tier {
    display: inline-block;
    background: var(--yellow);
    color: #0d1e3f;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.svx-svc__band-card .svx-svc__band-h {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.svx-svc__band-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.svx-svc__band-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svx-svc__band-list li {
    position: relative;
    padding-right: 22px;
    padding-left: 0;
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.svx-svc__band-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.95rem;
}

/* LTR fallback for English version (if ever used there) */
html[dir="ltr"] .svx-svc__band-card { text-align: left; }
html[dir="ltr"] .svx-svc__band-list li { padding-right: 0; padding-left: 22px; }
html[dir="ltr"] .svx-svc__band-list li::before { right: auto; left: 0; }

@media (max-width: 820px) {
    .svx-svc__band-cols { grid-template-columns: 1fr; gap: 28px; }
    .svx-svc__band-cols--cards { gap: 16px; }
    .svx-svc__band-card { padding: 26px 22px; }
}

/* ═══ SERVICE 03 — Asymmetric editorial ═══ */
.svx-svc--03 {
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.svx-svc__edit {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.svx-svc__edit-l { position: sticky; top: 120px; }

.svx-svc__tickets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 36px 0;
    background: var(--rule);
    border: 1px solid var(--rule);
}

.svx-svc__ticket {
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svx-svc__ticket-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--gold);
}

.svx-svc__ticket-num sup {
    font-size: 0.4em;
    color: var(--ink-soft);
    font-weight: 500;
    margin-left: 2px;
}

.svx-svc__ticket-label {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.45;
    max-width: 22ch;
}

.svx-svc__rule {
    height: 1px;
    background: var(--rule-strong);
    margin: 24px 0;
}

.svx-svc__finepoint {
    font-family: var(--display);
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 32px;
}

.svx-svc__finepoint strong {
    font-weight: 700;
    color: var(--ink);
    font-style: italic;
}

.svx-svc__cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svx-cta-pill {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid var(--ink);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.svx-cta-pill:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

.svx-cta-pill--alt {
    background: var(--ink);
    color: var(--white);
}

.svx-cta-pill--alt:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.svx-cta-pill__num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.svx-cta-pill__label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 600;
}

.svx-cta-pill--alt .svx-cta-pill__label { color: var(--yellow); }
.svx-cta-pill:hover .svx-cta-pill__label { color: var(--yellow); }

@media (max-width: 880px) {
    .svx-svc__edit { grid-template-columns: 1fr; }
    .svx-svc__edit-l { position: relative; top: 0; }
}

/* ─── Generic CTA Link (arrow) ─── */
.svx-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 2px solid var(--ink);
    transition: all 0.3s var(--ease);
    letter-spacing: -0.01em;
}

.svx-cta-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 18px;
}

.svx-cta-link--light {
    color: var(--white);
    border-color: var(--yellow);
}

.svx-cta-link--light:hover {
    color: var(--yellow);
}

.svx-cta-link--solid {
    background: var(--ink);
    color: var(--white);
    padding: 16px 28px;
    border: 1px solid var(--ink);
}

.svx-cta-link--solid:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.svx-cta-arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
    font-family: var(--display);
}

.svx-cta-link:hover .svx-cta-arrow { transform: translateX(4px); }

/* ═══ FLOW — Numbered editorial list ═══ */
.svx-flow {
    padding: clamp(80px, 11vw, 140px) 0;
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.svx-flow__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: clamp(50px, 7vw, 90px);
    padding-bottom: 32px;
    border-bottom: 2px solid var(--ink);
}

.svx-flow__head-tag {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.svx-flow__head-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 32ch;
    justify-self: end;
    text-align: right;
}

.svx-flow__head-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svx-flow__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svx-flow__item {
    display: grid;
    grid-template-columns: 200px 1fr 120px;
    gap: clamp(32px, 5vw, 80px);
    padding: clamp(28px, 4vw, 48px) 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
    transition: padding 0.3s var(--ease);
}

.svx-flow__item:hover {
    padding-left: 14px;
}

.svx-flow__item-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--gold);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.svx-flow__item-num span {
    font-size: 0.4em;
    color: var(--ink-soft);
    opacity: 0.4;
    font-weight: 400;
}

.svx-flow__item h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin-bottom: 10px;
}

.svx-flow__item p {
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 56ch;
}

.svx-flow__item-meta {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--mute-2);
    text-align: right;
}

@media (max-width: 820px) {
    .svx-flow__head { grid-template-columns: 1fr; gap: 16px; }
    .svx-flow__head-title { text-align: left; justify-self: start; }
    .svx-flow__item { grid-template-columns: 80px 1fr; gap: 20px; }
    .svx-flow__item-meta { display: none; }
}

/* ═══ BENTO — Asymmetric commitments grid ═══ */
.svx-bento {
    padding: clamp(80px, 11vw, 140px) 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}

.svx-bento__head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.svx-bento__head-tag {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.svx-bento__head-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto;
}

.svx-bento__head-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svx-bento__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
}

.svx-bento__cell {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--rule);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.svx-bento__cell:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(11, 31, 69, 0.08);
}

.svx-bento__cell--lg {
    grid-column: span 3;
    grid-row: span 2;
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.svx-bento__cell--lg:hover { border-color: var(--yellow); }

.svx-bento__cell--md {
    grid-column: span 3;
}

.svx-bento__cell--accent {
    grid-column: span 3;
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.svx-bento__cell--accent:hover {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
}

.svx-bento__big {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.svx-bento__big-num {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--yellow);
    margin-bottom: 6px;
}

.svx-bento__big-num sup {
    font-size: 0.35em;
    color: var(--white);
    font-weight: 500;
}

.svx-bento__big-label {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--white);
}

.svx-bento__cell--lg p {
    font-family: var(--display);
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 42ch;
}

.svx-bento__cell h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0;
}

.svx-bento__cell--md p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
}

.svx-bento__cell--accent strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.svx-bento__cell--accent p {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.45;
}

.svx-bento__arrow {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: var(--display);
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s var(--ease);
}

.svx-bento__cell--accent:hover .svx-bento__arrow {
    transform: translate(4px, -4px);
    opacity: 1;
}

@media (max-width: 980px) {
    .svx-bento__grid { grid-template-columns: repeat(2, 1fr); }
    .svx-bento__cell--lg, .svx-bento__cell--md, .svx-bento__cell--accent { grid-column: span 2; }
    .svx-bento__cell--lg { grid-row: auto; }
}

@media (max-width: 540px) {
    .svx-bento__grid { grid-template-columns: 1fr; }
    .svx-bento__cell--lg, .svx-bento__cell--md, .svx-bento__cell--accent { grid-column: span 1; }
}

/* ═══ CLOSE — Newspaper-style ═══ */
.svx-close {
    padding: clamp(80px, 11vw, 140px) 0;
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.svx-close__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.svx-close__tag {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.svx-close__l h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 22px;
}

.svx-close__l h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.svx-close__l p {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 48ch;
    margin-bottom: 36px;
}

.svx-close__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.svx-close__card {
    background: var(--ink);
    color: var(--white);
    padding: 36px 32px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.svx-close__card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.15;
}

.svx-close__card > * { position: relative; z-index: 1; }

.svx-close__card-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
    font-weight: 700;
}

.svx-close__card-line {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    text-decoration: none;
    transition: padding-left 0.3s ease;
}

.svx-close__card-line:hover { padding-left: 8px; }
.svx-close__card-line:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }

.svx-close__card-line-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.svx-close__card-line:hover .svx-close__card-line-num { color: var(--yellow); }

.svx-close__card-line-tag {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

@media (max-width: 880px) {
    .svx-close__grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   Contact Form Notices (success / error)
   ────────────────────────────────────────── */
.hm-notice {
    padding: 18px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 24px;
    border: 1.5px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hm-notice::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
}
.hm-notice--success {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
}
.hm-notice--success::before {
    content: "✓";
    background: #10b981;
    color: #fff;
}
.hm-notice--error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}
.hm-notice--error::before {
    content: "!";
    background: #ef4444;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════════
   Services Page — Tabs Design (srv-*)
   ══════════════════════════════════════════════════════════════════ */

/* Arabic: force Tajawal on all srv-* elements that set font-family */
html[dir="rtl"] .srv-hero__title,
html[dir="rtl"] .srv-hero__stat-num,
html[dir="rtl"] .srv-hero__eyebrow,
html[dir="rtl"] .srv-hero__btn,
html[dir="rtl"] .srv-hero__stat-lbl,
html[dir="rtl"] .srv-hero__crumbs,
html[dir="rtl"] .srv-hero__lead,
html[dir="rtl"] .srv-tab__num,
html[dir="rtl"] .srv-tab__label,
html[dir="rtl"] .srv-panel__title,
html[dir="rtl"] .srv-panel__eyebrow,
html[dir="rtl"] .srv-panel__lead,
html[dir="rtl"] .srv-panel__feat-ico,
html[dir="rtl"] .srv-panel__feat strong,
html[dir="rtl"] .srv-panel__feat p,
html[dir="rtl"] .srv-panel__quick-lbl,
html[dir="rtl"] .srv-panel__quick li,
html[dir="rtl"] .srv-panel__img figcaption,
html[dir="rtl"] .srv-link,
html[dir="rtl"] .srv-compare__title,
html[dir="rtl"] .srv-compare__eyebrow,
html[dir="rtl"] .srv-compare__sub,
html[dir="rtl"] .srv-compare__tier,
html[dir="rtl"] .srv-compare__for,
html[dir="rtl"] .srv-compare__badge,
html[dir="rtl"] .srv-compare__k,
html[dir="rtl"] .srv-compare__v,
html[dir="rtl"] .srv-compare__cta,
html[dir="rtl"] .srv-trust__item strong,
html[dir="rtl"] .srv-trust__item p,
html[dir="rtl"] .srv-final h2,
html[dir="rtl"] .srv-final p {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif !important;
    letter-spacing: 0;
}

/* Arabic: heading weights and line-heights tuned for Tajawal */
html[dir="rtl"] .srv-hero__title,
html[dir="rtl"] .srv-panel__title,
html[dir="rtl"] .srv-compare__title,
html[dir="rtl"] .srv-final h2 {
    font-weight: 800;
    line-height: 1.4;
}

html[dir="rtl"] .srv-compare__tier,
html[dir="rtl"] .srv-hero__stat-num {
    font-weight: 800;
}

html[dir="rtl"] .srv-tab__label {
    font-weight: 700;
}

html[dir="rtl"] .srv-tab__num {
    font-weight: 800;
}

/* Tab text alignment for RTL */
html[dir="rtl"] .srv-tab {
    text-align: right;
}


/* HERO */
.srv-hero {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0 clamp(70px, 9vw, 120px);
    overflow: hidden;
    color: var(--white);
}
.srv-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.srv-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(13, 30, 63, 0.92) 0%, rgba(13, 30, 63, 0.78) 100%);
    z-index: 1;
}
.srv-hero .wrap { position: relative; z-index: 2; }

.srv-hero__crumbs {
    display: flex;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    font-weight: 600;
}
.srv-hero__crumbs a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.srv-hero__crumbs a:hover { color: var(--yellow); }
.srv-hero__crumbs .current { color: var(--yellow); }

.srv-hero__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: end;
}

.srv-hero__grid--single {
    grid-template-columns: 1fr;
    max-width: 820px;
}

.srv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-bottom: 22px;
    text-transform: uppercase;
}
.srv-hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--yellow);
}

.srv-hero__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.srv-hero__title em {
    font-style: normal;
    color: var(--yellow);
    font-weight: 800;
}

.srv-hero__lead {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 36px;
}

.srv-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.srv-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}
.srv-hero__btn--primary {
    background: var(--yellow);
    color: #0d1e3f;
}
.srv-hero__btn--primary:hover {
    background: #f1c441;
    transform: translateY(-2px);
}
.srv-hero__btn--ghost {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.srv-hero__btn--ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.srv-hero__arr { transition: transform 0.3s; }
html[dir="rtl"] .srv-hero__arr { transform: scaleX(-1); }
.srv-hero__btn:hover .srv-hero__arr { transform: translateX(4px); }
html[dir="rtl"] .srv-hero__btn:hover .srv-hero__arr { transform: scaleX(-1) translateX(4px); }

.srv-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 28px;
}
html[dir="rtl"] .srv-hero__stats {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-right: 0;
    padding-left: 28px;
}

.srv-hero__stat { display: flex; flex-direction: column; gap: 6px; }
.srv-hero__stat-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    line-height: 1;
    color: var(--yellow);
    letter-spacing: -0.02em;
}
.srv-hero__stat-num sup { font-size: 0.5em; color: var(--yellow); }
.srv-hero__stat-lbl {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}

/* TABS */
.srv-tabs {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--white);
}

.srv-tabs__nav {
    display: flex;
    gap: 0;
    margin-bottom: clamp(40px, 5vw, 70px);
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}

.srv-tab {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    margin-bottom: -1px;
}
html[dir="ltr"] .srv-tab { text-align: left; }

.srv-tab:hover {
    background: rgba(13, 30, 63, 0.03);
}

.srv-tab.is-active {
    border-bottom-color: var(--yellow);
    background: rgba(212, 175, 55, 0.05);
}

.srv-tab__num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--mute);
    transition: color 0.3s;
    letter-spacing: -0.02em;
}
.srv-tab.is-active .srv-tab__num { color: var(--yellow); }

.srv-tab__label {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}

/* TAB PANELS */
.srv-panel { display: none; }
.srv-panel.is-active {
    display: block;
    animation: srvFadeIn 0.4s ease;
}
@keyframes srvFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.srv-panel__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
html[dir="rtl"] .srv-panel__grid { direction: rtl; }

.srv-panel__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.srv-panel__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}
.srv-panel__title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 800;
}

.srv-panel__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 40px;
}

.srv-panel__feats {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
}

.srv-panel__feat {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}
.srv-panel__feat:last-child { border-bottom: none; padding-bottom: 0; }

.srv-panel__feat-ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    color: var(--gold);
    font-family: var(--display);
    font-weight: 800;
    font-size: 0.95rem;
}

.srv-panel__feat strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.srv-panel__feat p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    padding: 14px 24px;
    border: 1.5px solid var(--ink);
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 0.95rem;
}
.srv-link:hover {
    background: var(--ink);
    color: var(--white);
}
.srv-link span { transition: transform 0.3s; }
html[dir="rtl"] .srv-link span { display: inline-block; transform: scaleX(-1); }
.srv-link:hover span { transform: translateX(4px); }
html[dir="rtl"] .srv-link:hover span { transform: scaleX(-1) translateX(4px); }

/* PANEL ASIDE */
.srv-panel__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.srv-panel__img {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}
.srv-panel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.srv-panel__img figcaption {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(13, 30, 63, 0.85);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
html[dir="ltr"] .srv-panel__img figcaption { right: auto; left: 16px; }

.srv-panel__quick {
    background: var(--cream);
    border-radius: 16px;
    padding: 28px 26px;
}
.srv-panel__quick-lbl {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.srv-panel__quick ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.srv-panel__quick li {
    position: relative;
    padding-right: 22px;
    padding-left: 0;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink);
}
.srv-panel__quick li::before {
    content: "—";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--gold);
    font-weight: 700;
}
html[dir="ltr"] .srv-panel__quick li { padding-right: 0; padding-left: 22px; }
html[dir="ltr"] .srv-panel__quick li::before { right: auto; left: 0; }

/* COMPARISON TABLE */
.srv-compare {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--cream);
}

.srv-compare__head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.srv-compare__eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.srv-compare__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.srv-compare__title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 800;
}
.srv-compare__sub {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.srv-compare__table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    direction: ltr;
}
html[dir="rtl"] .srv-compare__table { direction: rtl; }

.srv-compare__col {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--rule);
    border-radius: 18px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.srv-compare__col:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(13, 30, 63, 0.08);
    border-color: rgba(13, 30, 63, 0.2);
}
.srv-compare__col--featured {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: scale(1.02);
}
.srv-compare__col--featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.srv-compare__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: #0d1e3f;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.srv-compare__col-head {
    text-align: center;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 26px;
}
.srv-compare__col--featured .srv-compare__col-head {
    border-bottom-color: rgba(255,255,255,0.15);
}

.srv-compare__tier {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.srv-compare__col--featured .srv-compare__tier { color: var(--yellow); }

.srv-compare__for {
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin: 0;
}
.srv-compare__col--featured .srv-compare__for { color: rgba(255,255,255,0.7); }

.srv-compare__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex-grow: 1;
}

.srv-compare__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.92rem;
}
.srv-compare__col--featured .srv-compare__list li {
    border-bottom-color: rgba(255,255,255,0.1);
}
.srv-compare__list li:last-child { border-bottom: none; }

.srv-compare__k {
    color: var(--ink-soft);
}
.srv-compare__col--featured .srv-compare__k { color: rgba(255,255,255,0.65); }

.srv-compare__v {
    font-weight: 700;
    color: var(--ink);
    text-align: left;
}
html[dir="rtl"] .srv-compare__v { text-align: left; }
.srv-compare__col--featured .srv-compare__v { color: var(--white); }
.srv-compare__v--no { color: var(--mute); font-weight: 400; }

.srv-compare__cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    transition: all 0.3s;
}
.srv-compare__cta:hover {
    background: var(--ink);
    color: var(--white);
}
.srv-compare__cta--primary {
    background: var(--yellow);
    color: #0d1e3f;
    border-color: var(--yellow);
}
.srv-compare__cta--primary:hover {
    background: #f1c441;
    border-color: #f1c441;
    color: #0d1e3f;
}

/* TRUST BAND */
.srv-trust {
    padding: clamp(70px, 8vw, 100px) 0;
    background: var(--white);
    border-top: 1px solid var(--rule);
}
.srv-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.srv-trust__item {
    text-align: center;
}
.srv-trust__ico {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    background: var(--cream);
    border-radius: 14px;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 18px;
}
.srv-trust__item strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.srv-trust__item p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
}

/* FINAL CTA */
.srv-final {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--ink);
    color: var(--white);
}
.srv-final__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.srv-final h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.srv-final p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
}
.srv-final__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .srv-hero__grid { grid-template-columns: 1fr; gap: 50px; }
    .srv-hero__stats { grid-template-columns: repeat(3, 1fr); border: none; padding: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
    html[dir="rtl"] .srv-hero__stats { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; }
    .srv-panel__grid { grid-template-columns: 1fr; }
    .srv-compare__table { grid-template-columns: 1fr; }
    .srv-compare__col--featured { transform: none; }
    .srv-compare__col--featured:hover { transform: translateY(-4px); }
    .srv-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
    .srv-tab { padding: 18px 16px; min-width: 140px; }
    .srv-tab__label { font-size: 0.95rem; }
    .srv-tab__num { font-size: 1.2rem; }
    .srv-hero__stats { grid-template-columns: 1fr; }
    .srv-trust__grid { grid-template-columns: 1fr; }
    .srv-hero__cta { flex-direction: column; align-items: stretch; }
    .srv-hero__btn { justify-content: center; }
}

/* ──────────────────────────────────────────
   Accessibility
   ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   BEST PRODUCTS  (home)
   ════════════════════════════════════════════════════════════════ */
.bestprod {
    background: var(--cream);
    padding: clamp(80px, 11vw, 160px) 0;
}

.bestprod__head {
    max-width: 640px;
    margin: 0 auto clamp(46px, 5.5vw, 72px);
    text-align: center;
}

.bestprod__head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 18px;
}

.bestprod__head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.bestprod__head p {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 18px;
}

.bestprod__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.bestprod__card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.bestprod__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(11, 31, 69, 0.12);
    border-color: transparent;
}

/* Product shots are objects on white — contain, never crop */
.bestprod__card-media {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
}

.bestprod__card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.7s var(--ease);
}

.bestprod__card:hover .bestprod__card-media img {
    transform: scale(1.06);
}

.bestprod__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 20px;
}

.bestprod__card-cat {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.bestprod__card-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.18rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 10px;
}

.bestprod__card-spec {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
    margin-top: 10px;
}

.bestprod__card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
}

.bestprod__card-code {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: var(--cream);
    border-radius: 999px;
    padding: 5px 11px;
    white-space: nowrap;
}

.bestprod__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--gold);
    white-space: nowrap;
}

.bestprod__card-cta svg {
    transition: transform 0.35s var(--ease);
}

.bestprod__card:hover .bestprod__card-cta svg {
    transform: translateX(4px);
}

/* ─── RTL ─── */
html[dir="rtl"] .bestprod__card-cta svg { transform: scaleX(-1); }
html[dir="rtl"] .bestprod__card:hover .bestprod__card-cta svg { transform: scaleX(-1) translateX(4px); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .bestprod__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .bestprod__grid { grid-template-columns: 1fr; }
    .bestprod__card-media { aspect-ratio: 16/10; }
}

/* Category covers that are photographs carry their own white margin, so they
   need more of the tile than the line-art icons do. */
.cats__card-img--photo {
    padding: 8px;
}

.cats__card-img--photo img {
    max-width: 100%;
    max-height: 100%;
}
