/* ==========================================================================
   AXIS AUTOGLASS SDN BHD — Design System
   Blue & Red brand theme · Windscreen specialist
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand — navy blues */
    --navy-900: #050F26;
    --navy-800: #081633;
    --navy-700: #0C1F45;
    --navy-600: #122C60;
    --navy-500: #17397D;

    /* Brand — electric blue */
    --blue-600: #1450D4;
    --blue-500: #1E63E9;
    --blue-400: #3D82FF;
    --blue-300: #7FB0FF;
    --blue-050: #EAF1FF;

    /* Brand — signature red */
    --red-700: #A8121F;
    --red-600: #C8102E;
    --red-500: #E01F2D;
    --red-400: #FF3D48;
    --red-050: #FFECEE;

    /* Neutrals */
    --ink: #0A1124;
    --ink-2: #24304C;
    --slate: #5B6780;
    --slate-2: #8A93A8;
    --line: #E3E9F4;
    --line-2: #EFF3FA;
    --bg: #FFFFFF;
    --bg-soft: #F5F8FE;

    /* Gradients */
    --grad-red: linear-gradient(135deg, var(--red-500) 0%, var(--red-700) 100%);
    --grad-blue: linear-gradient(135deg, var(--blue-400) 0%, var(--navy-600) 100%);
    --grad-navy: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
    --grad-brand: linear-gradient(120deg, var(--navy-700) 0%, var(--blue-600) 55%, var(--red-600) 100%);

    /* Shape & motion */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(10, 17, 36, .06);
    --shadow-md: 0 12px 30px rgba(10, 17, 36, .09);
    --shadow-lg: 0 26px 60px rgba(10, 17, 36, .14);
    --shadow-red: 0 14px 34px rgba(224, 31, 45, .32);
    --shadow-blue: 0 14px 34px rgba(30, 99, 233, .28);

    --ease: cubic-bezier(.22, 1, .36, 1);
    --dur: .45s;

    --header-h: 84px;
    --container: 1240px;

    --font-display: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.72;
    color: var(--slate);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0 0 .5em;
    line-height: 1.1;
    letter-spacing: -.018em;
    font-weight: 800;
}

h1 { font-size: clamp(2.35rem, 5.2vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 3.7vw, 3.05rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.16rem; }
h5 { font-size: 1.03rem; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--red-500); color: #fff; }

:focus-visible {
    outline: 3px solid var(--blue-400);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
.container--narrow { max-width: 900px; }

.section { padding: clamp(64px, 8vw, 118px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 76px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--grad-navy); color: rgba(255, 255, 255, .74); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5 { color: #fff; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stack-lg { display: grid; gap: 18px; }

/* Section heading block */
.sec-head { max-width: 720px; margin-bottom: 54px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.06rem; }
.sec-head h2 { margin-bottom: .45em; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red-600);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad-red);
}
.eyebrow--light { color: var(--blue-300); }
.eyebrow--light::before { background: linear-gradient(90deg, var(--red-500), var(--blue-400)); }
.sec-head--center .eyebrow { justify-content: center; }

.txt-red { color: var(--red-600); }
.txt-blue { color: var(--blue-500); }
.txt-grad {
    background: linear-gradient(100deg, var(--blue-400), var(--red-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead { font-size: 1.1rem; line-height: 1.75; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--grad-red);
    --btn-fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    border: 0;
    border-radius: var(--r-pill);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: .02em;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color .3s;
    box-shadow: var(--shadow-red);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .38) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .75s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn--blue { --btn-bg: var(--grad-blue); box-shadow: var(--shadow-blue); }
.btn--navy { --btn-bg: var(--navy-700); box-shadow: 0 14px 30px rgba(12, 31, 69, .3); }
.btn--white {
    --btn-bg: #fff;
    --btn-fg: var(--navy-700);
    box-shadow: 0 14px 30px rgba(5, 15, 38, .22);
}
.btn--green { --btn-bg: linear-gradient(135deg, #29C24E, #12924A); box-shadow: 0 14px 30px rgba(18, 146, 74, .3); }
.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    box-shadow: none;
    border: 2px solid var(--line);
}
.btn--ghost:hover { border-color: var(--red-500); color: var(--red-600); }
.btn--ghost-light {
    --btn-bg: rgba(255, 255, 255, .06);
    --btn-fg: #fff;
    box-shadow: none;
    border: 1.5px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .14); }
.btn--lg { padding: 19px 38px; font-size: 1.04rem; }
.btn--sm { padding: 12px 22px; font-size: .88rem; }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Text link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .94rem;
    color: var(--red-600);
    letter-spacing: .02em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   5. Topbar
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .72);
    font-size: .84rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 44px;
    padding-block: 7px;
}
.topbar__list { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--red-500); flex: none; }
.topbar a:hover { color: #fff; }
.topbar__socials { display: flex; gap: 8px; }
.topbar__socials a {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    transition: background .3s, transform .3s var(--ease);
}
.topbar__socials a:hover { background: var(--red-600); transform: translateY(-2px); }
.topbar__socials svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line-2);
    transition: box-shadow .35s, background .35s;
}
.header.is-stuck { box-shadow: 0 10px 34px rgba(10, 17, 36, .1); background: rgba(255, 255, 255, .96); }

.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 50px; width: auto; }
.brand__txt { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
    position: relative;
    padding: 10px 15px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .96rem;
    color: var(--navy-700);
    letter-spacing: .01em;
    border-radius: var(--r-pill);
    transition: color .3s;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 15px; right: 15px; bottom: 4px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--red-600); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--red-600); }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-right: 4px;
}
.header__phone-ico {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--blue-050);
    color: var(--blue-600);
    flex: none;
}
.header__phone-ico svg { width: 18px; height: 18px; }
.header__phone-txt span {
    display: block;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate-2);
    line-height: 1.4;
}
.header__phone-txt strong {
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: var(--navy-700);
    letter-spacing: -.01em;
}

.burger {
    display: none;
    width: 46px; height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--navy-700);
    place-items: center;
    gap: 5px;
    flex-direction: column;
}
.burger span {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .35s var(--ease), opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: var(--navy-800);
    color: #fff;
    z-index: 1000;
    padding: 26px 24px 34px;
    transform: translateX(105%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer__head img { height: 42px; }
.drawer__close {
    width: 40px; height: 40px;
    border: 0; border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: grid; place-items: center;
}
.drawer__close svg { width: 18px; height: 18px; }
.drawer__nav { display: grid; gap: 2px; margin-bottom: 26px; }
.drawer__nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .84);
    transition: background .25s, color .25s;
}
.drawer__nav a:hover, .drawer__nav a.is-active { background: rgba(255, 255, 255, .09); color: #fff; }
.drawer__nav a.is-active { box-shadow: inset 3px 0 0 var(--red-500); }
.drawer__meta { display: grid; gap: 14px; font-size: .92rem; color: rgba(255, 255, 255, .66); }
.drawer__meta div { display: flex; gap: 11px; }
.drawer__meta svg { width: 16px; height: 16px; color: var(--red-500); flex: none; margin-top: 5px; }

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 38, .6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity .4s, visibility .4s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--navy-900);
    color: rgba(255, 255, 255, .78);
    overflow: hidden;
    isolation: isolate;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
}
.hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .34;
    filter: saturate(.75) contrast(1.06);
}
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 620px at 12% 18%, rgba(30, 99, 233, .42), transparent 62%),
        radial-gradient(820px 520px at 92% 82%, rgba(200, 16, 46, .36), transparent 60%),
        linear-gradient(102deg, var(--navy-900) 8%, rgba(8, 22, 51, .9) 45%, rgba(5, 15, 38, .62) 100%);
}
/* Fine grid overlay — laminated-glass feel */
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 78%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 56px;
    align-items: center;
    padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 9vw, 128px);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 8px 8px 9px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    font-size: .85rem;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 26px;
}
.hero__badge b {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    background: var(--grad-red);
    color: #fff;
    font-family: var(--font-display);
    font-size: .74rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 em {
    font-style: normal;
    position: relative;
    white-space: nowrap;
    color: var(--red-400);
}
.hero h1 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: .04em;
    height: .12em;
    border-radius: 4px;
    background: var(--grad-red);
    opacity: .5;
}
.hero__sub { font-size: 1.12rem; max-width: 560px; margin-bottom: 32px; color: rgba(255, 255, 255, .74); }

.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .13);
    font-size: .87rem;
    color: rgba(255, 255, 255, .84);
}
.hero__chip svg { width: 15px; height: 15px; color: var(--blue-300); flex: none; }

/* Hero quote card */
.hero__card {
    position: relative;
    padding: 32px;
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .17);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .4);
    overflow: hidden;
}
.hero__card::before {
    content: "";
    position: absolute;
    top: -60%; left: -30%;
    width: 60%; height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: rotate(18deg);
    animation: sheen 6.5s var(--ease) infinite;
}
@keyframes sheen {
    0%, 65% { transform: translateX(-40%) rotate(18deg); }
    100% { transform: translateX(340%) rotate(18deg); }
}
.hero__card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
.hero__card > p { font-size: .95rem; color: rgba(255, 255, 255, .66); margin-bottom: 22px; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.hero__stat span { font-size: .78rem; color: rgba(255, 255, 255, .6); line-height: 1.35; display: block; }

/* Scroll cue */
.hero__cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
}
.hero__cue i {
    width: 1.5px; height: 42px;
    background: linear-gradient(rgba(255, 255, 255, .05), var(--red-500));
    animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { opacity: .35; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* --------------------------------------------------------------------------
   8. Marquee strip
   -------------------------------------------------------------------------- */
.marquee {
    background: var(--red-600);
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}
.marquee__track {
    display: flex;
    gap: 46px;
    width: max-content;
    animation: slide 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .96rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.marquee__item svg { width: 15px; height: 15px; opacity: .75; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   9. Trust strip
   -------------------------------------------------------------------------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust__item {
    display: flex;
    gap: 16px;
    padding: 26px 24px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .3s;
}
.trust__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.trust__ico {
    width: 50px; height: 50px;
    flex: none;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--blue-050);
    color: var(--blue-600);
}
.trust__item:nth-child(even) .trust__ico { background: var(--red-050); color: var(--red-600); }
.trust__ico svg { width: 24px; height: 24px; }
.trust__item h4 { margin-bottom: 3px; font-size: 1.04rem; }
.trust__item p { font-size: .88rem; line-height: 1.55; margin: 0; }

/* --------------------------------------------------------------------------
   10. Service cards
   -------------------------------------------------------------------------- */
.svc {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 30px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.svc::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -70px; right: -70px;
    width: 190px; height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 99, 233, .1), transparent 68%);
    transition: transform .6s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc:hover::before { transform: scaleX(1); }
.svc:hover::after { transform: scale(1.5); }

.svc__ico {
    width: 62px; height: 62px;
    border-radius: 18px;
    display: grid; place-items: center;
    background: var(--grad-blue);
    color: #fff;
    margin-bottom: 22px;
    box-shadow: var(--shadow-blue);
    transition: transform .5s var(--ease);
}
.svc:hover .svc__ico { transform: rotate(-7deg) scale(1.06); }
.svc__ico svg { width: 30px; height: 30px; }
.svc:nth-child(even) .svc__ico { background: var(--grad-red); box-shadow: var(--shadow-red); }

.svc h3 { font-size: 1.28rem; margin-bottom: 10px; }
.svc p { font-size: .94rem; margin-bottom: 18px; }
.svc__list { display: grid; gap: 8px; margin-bottom: 24px; font-size: .9rem; }
.svc__list li { display: flex; gap: 10px; align-items: flex-start; }
.svc__list svg { width: 16px; height: 16px; color: var(--red-500); flex: none; margin-top: 5px; }
.svc .link-arrow { margin-top: auto; }

.svc__num {
    position: absolute;
    top: 24px; right: 26px;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--line-2);
    line-height: 1;
    letter-spacing: -.04em;
}

/* Wide service row (service page) */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}
.svc-row--flip .svc-row__media { order: 2; }
.svc-row__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-row__media:hover img { transform: scale(1.05); }
.svc-row__tag {
    position: absolute;
    left: 20px; top: 20px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: var(--grad-red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: var(--shadow-red);
}

/* --------------------------------------------------------------------------
   11. Feature / about split
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.figure-stack { position: relative; padding-bottom: 60px; padding-right: 46px; }
.figure-stack__main {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3.2;
}
.figure-stack__main img { width: 100%; height: 100%; object-fit: cover; }
.figure-stack__sub {
    position: absolute;
    right: 0; bottom: 0;
    width: 54%;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 7px solid #fff;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}
.figure-stack__sub img { width: 100%; height: 100%; object-fit: cover; }
.figure-stack__badge {
    position: absolute;
    left: -14px; top: 34px;
    padding: 20px 24px;
    border-radius: var(--r-md);
    background: var(--grad-red);
    color: #fff;
    box-shadow: var(--shadow-red);
    text-align: center;
    z-index: 2;
}
.figure-stack__badge b {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}
.figure-stack__badge span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; opacity: .92; }

.check-list { display: grid; gap: 16px; margin: 26px 0 32px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list__ico {
    width: 30px; height: 30px;
    flex: none;
    border-radius: 9px;
    display: grid; place-items: center;
    background: var(--red-050);
    color: var(--red-600);
    margin-top: 2px;
}
.check-list__ico svg { width: 15px; height: 15px; }
.check-list h5 { margin: 0 0 2px; font-size: 1rem; }
.check-list p { margin: 0; font-size: .92rem; line-height: 1.6; }
.section--dark .check-list h5 { color: #fff; }
.section--dark .check-list__ico { background: rgba(255, 255, 255, .1); color: var(--red-400); }

/* --------------------------------------------------------------------------
   12. Stats counters
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--r-lg); }
.stat--card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); }
.stat b {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(120deg, #fff, var(--blue-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}
.stat span { font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; }

/* --------------------------------------------------------------------------
   13. Process steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
    content: "";
    position: absolute;
    top: 34px; left: 10%; right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px);
    z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
    width: 68px; height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: #fff;
    border: 2px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy-700);
    transition: all var(--dur) var(--ease);
}
.step:hover .step__num {
    background: var(--grad-red);
    border-color: transparent;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}
.step h4 { margin-bottom: 7px; }
.step p { font-size: .9rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. Decision helper (repair vs replace)
   -------------------------------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.compare__card {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}
.compare__card--a { border-top: 5px solid var(--blue-500); }
.compare__card--b { border-top: 5px solid var(--red-600); }
.compare__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.compare__ico {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: var(--blue-050);
    color: var(--blue-600);
    flex: none;
}
.compare__card--b .compare__ico { background: var(--red-050); color: var(--red-600); }
.compare__ico svg { width: 26px; height: 26px; }
.compare__head h3 { margin: 0; font-size: 1.3rem; }
.compare__head span { font-size: .84rem; color: var(--slate-2); }
.compare__list { display: grid; gap: 11px; font-size: .94rem; }
.compare__list li { display: flex; gap: 11px; align-items: flex-start; }
.compare__list svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--blue-500); }
.compare__card--b .compare__list svg { color: var(--red-500); }

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.tst {
    position: relative;
    padding: 34px 30px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tst:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* Sits bottom-right so it never collides with the review badge at the top */
.tst__quote {
    position: absolute;
    right: 22px; bottom: 4px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--line-2);
    opacity: .8;
    pointer-events: none;
}
.tst__stars { display: flex; gap: 3px; margin-bottom: 16px; color: #F5A623; }
.tst__stars svg { width: 17px; height: 17px; }
.tst p { font-size: .98rem; color: var(--ink-2); margin-bottom: 22px; }
.tst__who { display: flex; align-items: center; gap: 13px; }
.tst__av {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-blue);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    flex: none;
}
.tst:nth-child(even) .tst__av { background: var(--grad-red); }
.tst__who h5 { margin: 0; font-size: .98rem; }
.tst__who span { font-size: .82rem; color: var(--slate-2); }
.tst__who .tst__src { display: inline-flex; align-items: center; gap: 5px; }
.tst__who .tst__src svg { width: 13px; height: 13px; }

/* "Local Guide · 28 reviews" style badge */
.tst__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin-bottom: 14px;
    border-radius: var(--r-pill);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: .74rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--slate);
    text-transform: uppercase;
}
.tst__badge svg { width: 12px; height: 12px; }

/* Google rating summary bar */
.rating-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 26px;
    padding: 20px 28px;
    margin: 0 auto 46px;
    max-width: fit-content;
    border-radius: var(--r-pill);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rating-bar__score { display: flex; align-items: center; gap: 12px; }
.rating-bar__score svg { width: 26px; height: 26px; flex: none; }
.rating-bar__score b {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.rating-bar__stars { display: flex; gap: 3px; color: #F5A623; }
.rating-bar__stars svg { width: 17px; height: 17px; }
.rating-bar__meta { font-size: .9rem; line-height: 1.4; }
.rating-bar__meta strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: .96rem; }
.rating-bar .divider { width: 1px; height: 34px; background: var(--line); }

@media (max-width: 720px) {
    .rating-bar { border-radius: var(--r-lg); padding: 20px; gap: 12px; flex-direction: column; margin-bottom: 30px; }
    .rating-bar .divider { display: none; }
    .rating-bar__meta { text-align: center; }
}

/* --------------------------------------------------------------------------
   16. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.acc { display: grid; gap: 14px; }
.acc__item {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.acc__item.is-open { border-color: var(--blue-300); box-shadow: var(--shadow-md); }
.acc__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 24px;
    background: none;
    border: 0;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.04rem;
    color: var(--navy-700);
}
.acc__btn i {
    width: 30px; height: 30px;
    flex: none;
    border-radius: 9px;
    display: grid; place-items: center;
    background: var(--bg-soft);
    color: var(--red-600);
    transition: transform .4s var(--ease), background .3s, color .3s;
}
.acc__btn i svg { width: 14px; height: 14px; }
.acc__item.is-open .acc__btn i { transform: rotate(45deg); background: var(--grad-red); color: #fff; }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__panel > div { padding: 0 24px 22px; font-size: .96rem; }

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(42px, 6vw, 70px);
    background: var(--grad-brand);
    color: rgba(255, 255, 255, .82);
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(600px 320px at 88% 12%, rgba(255, 255, 255, .18), transparent 62%),
        radial-gradient(520px 320px at 6% 96%, rgba(255, 61, 72, .34), transparent 60%);
}
.cta-band h2 { color: #fff; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 34px; }
.cta-band__txt { max-width: 620px; }
.cta-band__txt p { margin: 0; font-size: 1.06rem; }

/* --------------------------------------------------------------------------
   18. Contact / forms
   -------------------------------------------------------------------------- */
.info-card {
    display: flex;
    gap: 18px;
    padding: 26px 24px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card__ico {
    width: 52px; height: 52px;
    flex: none;
    border-radius: 15px;
    display: grid; place-items: center;
    background: var(--grad-blue);
    color: #fff;
}
.info-card:nth-child(even) .info-card__ico { background: var(--grad-red); }
.info-card__ico svg { width: 23px; height: 23px; }
.info-card h4 { margin-bottom: 5px; font-size: 1.04rem; }
.info-card p { margin: 0; font-size: .93rem; line-height: 1.6; }
.info-card a:hover { color: var(--red-600); }

.form-card {
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .86rem;
    color: var(--navy-700);
    letter-spacing: .02em;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    font-family: var(--font-body);
    font-size: .96rem;
    color: var(--ink);
    transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--blue-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(61, 130, 255, .13);
}
.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6780' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 17px 17px;
    padding-right: 42px;
}
.form-note { font-size: .84rem; color: var(--slate-2); margin: 0; }

/* Form on a dark/glass surface.
   Uses background-color (not the `background` shorthand) so the select chevron's
   no-repeat/position/size from .field select above are preserved. */
.hero__card .field label,
.section--dark .field label { color: rgba(255, 255, 255, .82); }
.hero__card .field input,
.hero__card .field select,
.hero__card .field textarea,
.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea {
    background-color: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}
.hero__card .field select,
.section--dark .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 17px 17px;
    padding-right: 42px;
}
/* Native dropdown lists render on the OS surface — keep option text readable */
.hero__card .field select option,
.section--dark .field select option { color: var(--ink); background: #fff; }
.hero__card .field input::placeholder,
.hero__card .field textarea::placeholder,
.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder { color: rgba(255, 255, 255, .45); }
.hero__card .field input:focus,
.hero__card .field select:focus,
.hero__card .field textarea:focus,
.section--dark .field input:focus,
.section--dark .field select:focus,
.section--dark .field textarea:focus {
    background-color: rgba(255, 255, 255, .13);
    border-color: var(--blue-400);
}
.hero__card .form-note,
.section--dark .form-note { color: rgba(255, 255, 255, .55); }

.map-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    line-height: 0;
    background: var(--bg-soft);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.hours { display: grid; gap: 2px; }
.hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .16);
    font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours b { font-family: var(--font-display); color: #fff; font-weight: 700; }
.hours span { color: rgba(255, 255, 255, .7); }
.hours .is-now { color: var(--red-400); }

/* --------------------------------------------------------------------------
   19. Team
   -------------------------------------------------------------------------- */
.team-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card__img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-soft); }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .team-card__img img { transform: scale(1.07); }
.team-card__img::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(5, 15, 38, .75));
    opacity: 0;
    transition: opacity .45s;
}
.team-card:hover .team-card__img::after { opacity: 1; }
/* Monogram avatar — used until real staff photos are supplied */
.team-card__mono {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    background: var(--grad-navy);
    overflow: hidden;
}
.team-card:nth-child(even) .team-card__mono { background: linear-gradient(160deg, var(--navy-700), var(--red-700)); }
.team-card__mono::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 30% 25%, rgba(61, 130, 255, .38), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(224, 31, 45, .34), transparent 55%);
}
.team-card__mono::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 34px 34px;
}
.team-card__mono b {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
    line-height: 1;
}
.team-card__mono i {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    width: 38px; height: 38px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}
.team-card__mono i svg { width: 18px; height: 18px; }

.team-card__body { padding: 22px 24px; text-align: center; }
.team-card__body h4 { margin-bottom: 2px; }
.team-card__body span { font-size: .87rem; color: var(--red-600); font-family: var(--font-display); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.team-card__body p { font-size: .9rem; margin-top: 10px; margin-bottom: 0; }

/* Director's message */
.director {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 46px;
    align-items: start;
}
.director__card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--grad-navy);
    color: rgba(255, 255, 255, .7);
    text-align: center;
    padding: 40px 28px 32px;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}
.director__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 26% 18%, rgba(61, 130, 255, .42), transparent 58%),
        radial-gradient(circle at 80% 88%, rgba(224, 31, 45, .36), transparent 58%);
}
.director__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 34px 34px;
}
.director__mono {
    width: 108px; height: 108px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .24);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    backdrop-filter: blur(6px);
}
.director__card h3 { color: #fff; margin-bottom: 4px; font-size: 1.5rem; }
.director__role {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--red-400);
    margin-bottom: 22px;
}
.director__card .btn-group { flex-direction: column; align-items: stretch; gap: 10px; }
.director__card .btn { width: 100%; }

.director__quote { margin: 0; position: relative; padding-top: 8px; }
.director__mark {
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: .7;
    color: var(--red-500);
    opacity: .16;
    display: block;
    margin-bottom: -14px;
}
.director__quote p { font-size: 1.08rem; line-height: 1.78; color: var(--ink-2); }
.director__quote p:first-of-type {
    font-size: 1.22rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.55;
}
.director__sign {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.director__sign i {
    width: 44px; height: 3px;
    border-radius: 2px;
    background: var(--grad-red);
    flex: none;
}
.director__sign b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 1.02rem; }
.director__sign span { font-size: .87rem; color: var(--slate-2); }

@media (max-width: 1024px) {
    .director { grid-template-columns: 1fr; gap: 32px; }
    .director__card { max-width: 420px; }
}
@media (max-width: 720px) {
    .director__card { padding: 32px 22px 26px; max-width: none; }
    .director__mono { width: 88px; height: 88px; font-size: 2.4rem; }
    .director__quote p:first-of-type { font-size: 1.1rem; }
    .director__quote p { font-size: 1.02rem; }
}

/* --------------------------------------------------------------------------
   19b. Company profile components
   -------------------------------------------------------------------------- */

/* Key/value fact table */
.spec {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
}
.spec__row {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 20px;
    padding: 17px 26px;
    border-bottom: 1px solid var(--line-2);
    font-size: .96rem;
}
.spec__row:last-child { border-bottom: 0; }
.spec__row:nth-child(odd) { background: var(--bg-soft); }
.spec__row dt {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate-2);
    margin: 0;
    padding-top: 2px;
}
.spec__row dd { margin: 0; color: var(--ink-2); }
.spec__row dd strong { font-family: var(--font-display); color: var(--ink); }
.spec__row a:hover { color: var(--red-600); }

/* Vision / mission pair */
.vm { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm__card {
    position: relative;
    padding: 40px 36px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
}
.vm__card--dark {
    background: var(--grad-navy);
    border-color: transparent;
    color: rgba(255, 255, 255, .74);
}
.vm__card--dark h3 { color: #fff; }
.vm__num {
    display: block;
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    color: var(--red-600);
    margin-bottom: 26px;
}
.vm__card--dark .vm__num { color: var(--red-400); }
.vm__label {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red-600);
    margin-bottom: 12px;
}
.vm__card--dark .vm__label { color: var(--red-400); }
.vm__card h3 { font-size: 1.6rem; line-height: 1.2; margin-bottom: 14px; }
.vm__card p { margin: 0; font-size: 1rem; }

/* SOP step cards */
.sop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sop__card {
    display: flex;
    flex-direction: column;
    padding: 26px 24px 24px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: #fff;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sop__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sop__card--dark {
    background: var(--grad-navy);
    border-color: transparent;
    color: rgba(255, 255, 255, .72);
}
.sop__card--dark h4 { color: #fff; }
.sop__step {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red-600);
    margin-bottom: 10px;
}
.sop__card--dark .sop__step { color: var(--red-400); }
.sop__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    color: var(--red-600);
    opacity: .82;
    margin-bottom: 8px;
}
.sop__card--dark .sop__num { color: var(--red-400); }
.sop__card h4 { margin-bottom: 14px; font-size: 1.08rem; }
.sop__card ul { display: grid; gap: 9px; font-size: .89rem; line-height: 1.5; }
.sop__card li { display: flex; gap: 10px; }
.sop__card li::before {
    content: "";
    width: 5px; height: 5px;
    flex: none;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--red-500);
}

/* Vehicle makes */
.makes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.makes li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    border-radius: var(--r-sm);
    background: #fff;
    border: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .98rem;
    color: var(--ink);
    transition: border-color .3s, transform .3s var(--ease);
}
.makes li:hover { border-color: var(--blue-300); transform: translateY(-2px); }
.makes li i {
    font-style: normal;
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--slate-2);
    font-weight: 600;
}

/* Glass types */
.glass-list { display: grid; gap: 10px; }
.glass-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 18px;
    border-radius: var(--r-sm);
    background: #fff;
    border: 1px solid var(--line);
    font-size: .96rem;
}
.glass-list b { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); color: var(--ink); }
.glass-list b::before {
    content: "";
    width: 7px; height: 7px;
    flex: none;
    border-radius: 50%;
    background: var(--red-500);
}
.glass-list i {
    font-style: normal;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--slate-2);
    font-family: var(--font-display);
    font-weight: 600;
    text-align: right;
}

/* Panel wrapper for the coverage columns */
.panel {
    padding: 32px 30px;
    border-radius: var(--r-lg);
    background: var(--bg-soft);
    border: 1px solid var(--line);
}
.panel h3 { font-size: 1.28rem; margin-bottom: 22px; }

/* Certification cards */
.cert {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 26px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cert:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cert__ico {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--red-050);
    color: var(--red-600);
    margin-bottom: 22px;
}
.cert__ico svg { width: 24px; height: 24px; }
.cert h4 { font-size: 1.16rem; margin-bottom: 10px; }
.cert p { font-size: .93rem; }
.cert__foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line-2);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--slate-2);
    font-family: var(--font-display);
    font-weight: 600;
}
.cert__foot b { color: var(--ink); letter-spacing: .04em; text-transform: none; font-size: .88rem; }

/* Registration band */
.reg-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 26px 32px;
    border-radius: var(--r-lg);
    background: var(--grad-navy);
    color: rgba(255, 255, 255, .68);
    margin-top: 26px;
}
.reg-band__tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red-400);
    flex: none;
}
.reg-band__body { flex: 1 1 300px; }
.reg-band__body b { display: block; font-family: var(--font-display); font-size: 1.24rem; color: #fff; }
.reg-band__body span { font-size: .92rem; }
.reg-band__note { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }

@media (max-width: 1024px) {
    .sop { grid-template-columns: repeat(2, 1fr); }
    .vm { grid-template-columns: 1fr; }
    .makes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .spec__row { grid-template-columns: 1fr; gap: 5px; padding: 15px 18px; }
    .sop { grid-template-columns: 1fr; }
    .makes { grid-template-columns: 1fr 1fr; }
    .makes li { padding: 13px 14px; font-size: .92rem; }
    .glass-list li { flex-direction: column; align-items: flex-start; gap: 5px; }
    .glass-list i { text-align: left; }
    .panel { padding: 24px 20px; }
    .vm__card { padding: 30px 24px; }
    .vm__num { font-size: 2.6rem; margin-bottom: 18px; }
    .vm__card h3 { font-size: 1.35rem; }
    .cert { padding: 26px 22px 22px; }
    .reg-band { padding: 22px 22px; gap: 14px; }
}

/* --------------------------------------------------------------------------
   20. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    background: var(--navy-900);
    color: rgba(255, 255, 255, .74);
    padding: clamp(64px, 8vw, 110px) 0 clamp(60px, 7vw, 96px);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: grayscale(.35); }
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(760px 420px at 22% 10%, rgba(30, 99, 233, .4), transparent 62%),
        radial-gradient(660px 420px at 84% 92%, rgba(200, 16, 46, .34), transparent 60%),
        linear-gradient(180deg, rgba(5, 15, 38, .82), rgba(5, 15, 38, .94));
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin-inline: auto; font-size: 1.06rem; }
.crumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: .87rem;
    color: rgba(255, 255, 255, .58);
}
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--red-400); }
.crumbs i { opacity: .4; font-style: normal; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .62);
    padding-top: clamp(58px, 7vw, 92px);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--red-600), var(--blue-500));
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 46px;
    padding-bottom: 56px;
}
.footer h4 { color: #fff; font-size: 1.08rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h4::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 2.5px;
    border-radius: 2px;
    background: var(--grad-red);
}
.footer__logo { height: 54px; width: auto; margin-bottom: 20px; }
.footer p { font-size: .93rem; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .94rem; display: inline-flex; align-items: center; gap: 9px; transition: color .25s, transform .25s var(--ease); }
.footer__links a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red-500); flex: none; }
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__contact { display: grid; gap: 14px; font-size: .93rem; }
.footer__contact div { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--red-500); flex: none; margin-top: 5px; }
.footer__contact a:hover { color: #fff; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.footer__socials a:hover { background: var(--red-600); border-color: transparent; transform: translateY(-3px); }
.footer__socials svg { width: 16px; height: 16px; }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 24px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    font-size: .87rem;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   22. Floating contact dock
   -------------------------------------------------------------------------- */
.dock {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
}
.dock__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    height: 58px;
    padding: 0;
    border-radius: var(--r-pill);
    color: #fff;
    box-shadow: 0 14px 34px rgba(5, 15, 38, .3);
    transition: gap .45s var(--ease), padding .45s var(--ease), transform .35s var(--ease), box-shadow .35s;
    overflow: hidden;
    white-space: nowrap;
}
.dock__btn i {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    flex: none;
}
.dock__btn i svg { width: 26px; height: 26px; }
.dock__btn span {
    max-width: 0;
    opacity: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .96rem;
    letter-spacing: .02em;
    overflow: hidden;
    transition: max-width .5s var(--ease), opacity .35s;
}
.dock__btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(5, 15, 38, .38); }
.dock__btn:hover span, .dock__btn:focus-visible span { max-width: 230px; opacity: 1; }
.dock__btn:hover { padding-right: 24px; }

.dock__btn--wa { background: linear-gradient(135deg, #2ED164, #12924A); }
.dock__btn--call { background: var(--grad-red); }

/* Pulse ring on the call button */
.dock__btn--call::before,
.dock__btn--call::after {
    content: "";
    position: absolute;
    left: 29px; top: 50%;
    width: 58px; height: 58px;
    margin: -29px 0 0 -29px;
    border-radius: 50%;
    border: 2px solid var(--red-500);
    animation: ring 2.6s var(--ease) infinite;
    pointer-events: none;
}
.dock__btn--call::after { animation-delay: 1.1s; }
@keyframes ring {
    0% { transform: scale(1); opacity: .75; }
    75% { transform: scale(1.85); opacity: 0; }
    100% { transform: scale(1.85); opacity: 0; }
}

.to-top {
    width: 46px; height: 46px;
    border: 0;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--navy-800);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .4s var(--ease);
    box-shadow: 0 10px 24px rgba(5, 15, 38, .3);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--red-600); }
.to-top svg { width: 18px; height: 18px; }

/* Mobile sticky action bar */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 940;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    box-shadow: 0 -8px 26px rgba(10, 17, 36, .1);
}
.mobile-bar .btn { padding: 14px 16px; font-size: .92rem; }

/* --------------------------------------------------------------------------
   23. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee__track, .hero__card::before, .dock__btn--call::before,
    .dock__btn--call::after, .hero__cue i { animation: none; }
    * { transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
    .footer__grid > :nth-child(3) { display: none; }
    .nav__link { padding: 10px 11px; font-size: .92rem; }
    .header__phone { display: none; }
}

@media (max-width: 1024px) {
    :root { --header-h: 74px; }
    .hero__inner { grid-template-columns: 1fr; gap: 44px; }
    .hero__card { max-width: 560px; }
    .split, .svc-row { grid-template-columns: 1fr; gap: 40px; }
    .svc-row--flip .svc-row__media { order: 0; }
    .grid-4, .trust, .stats { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .steps::before { display: none; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .figure-stack { padding-right: 0; padding-bottom: 46px; }
    .figure-stack__sub { width: 46%; }
    .brand img { height: 44px; }
}

@media (max-width: 900px) {
    /* The topbar duplicates what the drawer, footer and action bar already show. */
    .topbar { display: none; }
    .nav, .header__cta .btn { display: none; }
    .burger { display: flex; }
    .header__cta { margin-left: auto; }
    .form-grid { grid-template-columns: 1fr; }
    .compare { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .cta-band__inner .btn-group { width: 100%; }
}

@media (max-width: 720px) {
    :root { --header-h: 68px; }
    body { font-size: 16px; line-height: 1.68; }
    .container { padding-inline: 18px; }

    /* Vertical rhythm — tighter, so the page doesn't feel endless on a phone */
    .section { padding: 54px 0; }
    .section--tight { padding: 40px 0; }
    .sec-head { margin-bottom: 32px; }
    .sec-head p { font-size: 1rem; }
    .lead { font-size: 1.02rem; }
    .eyebrow { margin-bottom: 13px; font-size: .76rem; letter-spacing: .13em; }
    .split, .svc-row { gap: 34px; }
    .grid { gap: 18px; }
    .grid-3, .grid-4, .trust, .stats, .steps { grid-template-columns: 1fr; }

    /* Header */
    .brand img { height: 40px; }
    .burger { width: 44px; height: 44px; border-radius: 13px;padding-top: 13px; }

    /* Hero */
    .hero__inner { padding: 42px 0 54px; gap: 32px; }
    .hero h1 { font-size: clamp(2.05rem, 9vw, 2.7rem); }
    .hero__badge { font-size: .78rem; padding: 6px 6px 6px 8px; margin-bottom: 20px; gap: 8px; }
    .hero__badge b { font-size: .68rem; padding: 4px 9px; }
    .hero__sub { font-size: 1.02rem; margin-bottom: 26px; }
    .hero__chips { gap: 8px; margin-top: 26px; }
    .hero__chip { font-size: .8rem; padding: 8px 13px; }
    .hero__card { padding: 24px 20px; border-radius: var(--r-lg); }
    .hero__card h3 { font-size: 1.2rem; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; padding-top: 20px; }
    .hero__stat b { font-size: 1.35rem; }
    .hero__stat span { font-size: .7rem; }
    .hero__cue { display: none; }

    /* Buttons stack full-width — easier to hit, no orphaned half-rows */
    .btn { width: 100%; padding: 15px 22px; }
    .btn--lg { padding: 16px 24px; font-size: 1rem; }
    .btn-group { flex-direction: column; align-items: stretch; width: 100%; }
    .btn-group .btn { width: 100%; }

    /* Cards */
    .svc { padding: 26px 22px 24px; }
    .svc__num { font-size: 2.1rem; top: 20px; right: 20px; }
    .svc__ico { width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px; }
    .trust__item, .info-card { padding: 22px 20px; gap: 14px; }
    .compare__card { padding: 26px 22px; }
    .compare__head { gap: 13px; margin-bottom: 16px; }
    .compare__ico { width: 46px; height: 46px; border-radius: 13px; }
    .tst { padding: 26px 22px; }
    .tst__quote { font-size: 3.4rem; right: 18px; bottom: 2px; }
    .form-card { padding: 24px 20px; }
    .acc__btn { padding: 17px 18px; font-size: .98rem; gap: 12px; }
    .acc__panel > div { padding: 0 18px 18px; font-size: .93rem; }
    .team-card__body { padding: 20px; }
    .cta-band { padding: 32px 24px; border-radius: var(--r-lg); }
    .cta-band__inner { gap: 26px; }
    .map-frame iframe { min-height: 320px; }

    /* Figure stack — badge no longer collides with the image edge */
    .figure-stack { padding-bottom: 40px; }
    .figure-stack__sub { width: 50%; border-width: 5px; }
    .figure-stack__badge { left: 0; top: 20px; padding: 14px 16px; }
    .figure-stack__badge b { font-size: 1.75rem; }
    .figure-stack__badge span { font-size: .68rem; }

    /* Steps read as a list rather than a broken timeline.
       Explicit placement is required: with only column sizing, the <p> would
       wrap onto row 2 of the 56px number column and break one word per line. */
    .steps { row-gap: 24px; }
    .step {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 16px;
        row-gap: 4px;
        text-align: left;
        align-items: start;
    }
    .step__num { grid-column: 1; grid-row: 1 / span 2; width: 56px; height: 56px; margin: 0; font-size: 1.25rem; }
    .step h4 { grid-column: 2; grid-row: 1; margin: 0; align-self: center; }
    .step p { grid-column: 2; grid-row: 2; margin: 0; }

    /* Page hero */
    .page-hero { padding: 44px 0 40px; }
    .page-hero p { font-size: 1rem; }
    .crumbs { margin-top: 16px; }

    /* Footer */
    .footer { padding-top: 48px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .footer__grid > :nth-child(3) { display: block; }
    .footer__bottom { flex-direction: column; text-align: center; justify-content: center; gap: 12px; }
    .footer__logo { height: 46px; }

    /* The sticky action bar already carries WhatsApp + Call, so the floating
       dock buttons are dropped here — they only duplicated the CTAs and
       covered content. Back-to-top stays, parked above the bar. */
    .mobile-bar { display: grid; }
    .mobile-bar .btn { padding: 13px 12px; font-size: .9rem; gap: 8px; }
    .footer__bottom { padding-bottom: calc(28px + 62px + env(safe-area-inset-bottom)); }
    .dock__btn { display: none; }
    .dock { bottom: calc(74px + env(safe-area-inset-bottom)); right: 14px; gap: 10px; }
    .to-top { width: 44px; height: 44px; }

    /* Drawer */
    .drawer { padding: 22px 20px 30px; }
    .drawer__nav a { padding: 13px 14px; font-size: 1rem; }
}

@media (max-width: 400px) {
    .container { padding-inline: 15px; }
    .hero__stats { grid-template-columns: 1fr 1fr; }
    .hero__stat:last-child { display: none; }
    .brand img { height: 36px; }
    .mobile-bar .btn { font-size: .84rem; padding: 13px 8px; }
    .mobile-bar .btn svg { width: 16px; height: 16px; }
}

/* --------------------------------------------------------------------------
   25. WhatsApp QR block (dark sections)
   -------------------------------------------------------------------------- */
.qr-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 28px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
}
.qr-block img {
    width: 120px; height: 120px;
    flex: none;
    padding: 9px;
    border-radius: var(--r-sm);
    background: #fff;
    image-rendering: pixelated;
}
.qr-block h5 { margin: 0 0 5px; color: #fff; font-size: 1.02rem; }
.qr-block p { margin: 0 0 9px; font-size: .9rem; line-height: 1.5; }
.qr-block b {
    font-family: var(--font-display);
    font-size: 1.14rem;
    color: var(--red-400);
    letter-spacing: .01em;
}
@media (max-width: 480px) {
    .qr-block { flex-direction: column; text-align: center; gap: 16px; }
}

/* --------------------------------------------------------------------------
   26. Credentials / certificates + lightbox
   -------------------------------------------------------------------------- */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.cred {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    text-align: left;
    padding: 0;
    cursor: zoom-in;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .3s;
}
.cred:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-300); }

.cred__thumb {
    position: relative;
    height: 250px;
    background: var(--bg-soft);
    display: block;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
/* Explicit box + object-fit: contain. A percentage max-height on a centred
   grid item does not clamp reliably, so the image sizes to the box instead. */
.cred__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(10, 17, 36, .18));
    transition: transform .6s var(--ease);
}
.cred:hover .cred__thumb img { transform: scale(1.04); }
.cred__zoom {
    position: absolute;
    right: 12px; bottom: 12px;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(5, 15, 38, .82);
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s, transform .3s var(--ease);
}
.cred:hover .cred__zoom { opacity: 1; transform: none; }
.cred__zoom svg { width: 16px; height: 16px; }

.cred__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.cred__tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red-600);
    margin-bottom: 8px;
}
.cred__body h4 { font-size: 1.02rem; margin-bottom: 8px; line-height: 1.3; }
.cred__meta { display: grid; gap: 3px; font-size: .85rem; color: var(--slate); margin-top: auto; }
.cred__meta b { font-family: var(--font-display); color: var(--ink-2); font-weight: 600; }

.cred-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: var(--r-md);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: .9rem;
}
.cred-note svg { width: 18px; height: 18px; color: var(--blue-500); flex: none; margin-top: 3px; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 5vh 5vw;
    background: rgba(5, 15, 38, .93);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 100%;
    max-height: 74vh;
    width: auto;
    border-radius: var(--r-sm);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
    background: #fff;
}
.lightbox figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 100%; }
.lightbox figcaption { text-align: center; color: rgba(255, 255, 255, .82); font-size: .95rem; max-width: 620px; }
.lightbox figcaption b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.lightbox__close {
    position: absolute;
    top: 22px; right: 22px;
    width: 46px; height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: grid; place-items: center;
    transition: background .25s, transform .25s var(--ease);
}
.lightbox__close:hover { background: var(--red-600); transform: rotate(90deg); }
.lightbox__close svg { width: 20px; height: 20px; }

@media (max-width: 1024px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
    .cred-grid { grid-template-columns: 1fr; gap: 18px; }
    .cred__thumb { height: 210px; }
    .cred__body { padding: 18px 18px 20px; }
    .cred__zoom { opacity: 1; transform: none; }
    .lightbox { padding: 4vh 4vw; }
    .lightbox img { max-height: 66vh; }
    .lightbox__close { top: 12px; right: 12px; width: 42px; height: 42px; }
    .cred-note { padding: 16px 18px; font-size: .86rem; }
}
