/* ============================================================================
   RABTORA — Industrial Machinery landing page (machines/)

   This tier is LIGHT, unlike outdoor/, hoardings/ and vehicle-branding/. It is a
   product-catalogue page: 33 machines have to be legible as thumbnails, and the
   supplier photography is shot on white, so a navy field would frame every one
   of them in a grey box. The brand is carried by the navy furniture (topbar,
   hero, why-panel, quote panel, footer) and the gold accent instead.

   Palette and fonts still come from the main design system
   (assets/css/rabtora.css) — --navy and --gold are the same values. The one
   departure is the display face: this page is all Manrope, because the layout
   has no room for Fraunces' serif at thumbnail sizes.

   Written desktop-first; responsive.css steps it down by max-width, matching
   the convention already used by the other landing pages.
   ============================================================================ */

:root {
    /* Brand — identical values to the main site */
    --navy: #08142f;
    --navy-2: #0b1c3d;
    --navy-3: #102453;
    --gold: #c89b2c;
    --gold-l: #e0b344;
    --gold-d: #a87f1c;
    --gold-tint: #fdf7e8;

    /* Light surfaces */
    --page: #f7f8fa;
    --card: #ffffff;
    --line: #e6e9ef;
    --line-2: #eef0f4;

    /* Ink */
    --ink: #0b1c3d;
    --body-ink: #4a5468;
    --muted: #7c8699;

    --whatsapp: #25d366;
    --danger: #d94a3d;

    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --shadow: 0 1px 2px rgba(11, 28, 61, .04), 0 8px 24px rgba(11, 28, 61, .06);
    --shadow-lg: 0 18px 50px rgba(11, 28, 61, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font);
    background: var(--page);
    color: var(--body-ink);
    overflow-x: hidden;
    overflow-x: clip;
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font);
    color: var(--ink);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* --- Shared layout ------------------------------------------------------- */

.wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec { padding: 68px 0; position: relative; }
.sec--white { background: var(--card); }

/* Section heading: a small caps eyebrow flanked by hairlines, then the title.
   The hairlines are pseudo-elements so the eyebrow can be any length. */
.sec-head { text-align: center; margin-bottom: 38px; }

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
}
.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--line);
}

.sec-head h2 { font-size: 33px; }
.sec-head p {
    max-width: 62ch;
    margin: 12px auto 0;
    color: var(--muted);
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease),
                border-color .25s var(--ease), transform .25s var(--ease);
}
.btn i { font-size: 15px; }

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

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-3); transform: translateY(-2px); }

.btn--ghost-light { border-color: rgba(255, 255, 255, .38); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

.btn--sm { padding: 11px 20px; font-size: 11.5px; }
.btn--full { width: 100%; }

/* ============================== TOPBAR ================================== */

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 40px;
}
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-item i { color: var(--gold); font-size: 13px; }
.topbar a:hover { color: #fff; }

/* Hairline dividers between items, drawn as borders so they disappear with the
   item when responsive.css hides one. */
.topbar-group .topbar-item + .topbar-item {
    border-left: 1px solid rgba(255, 255, 255, .16);
    padding-left: 22px;
}

/* ============================== HEADER ================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 22px rgba(11, 28, 61, .09); }

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}
.site-header.scrolled .wrap { min-height: 66px; }

.logo img {
    height: 44px;
    width: auto;               /* 3:1 lockup — never size this by width */
    transition: height .3s var(--ease);
}
.site-header.scrolled .logo img { height: 38px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    padding: 6px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

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

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-size: 20px;
    transition: background .25s var(--ease);
}
.wa-btn:hover { background: var(--whatsapp); }

.menu-btn {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}
.hamburger { display: grid; gap: 4px; width: 17px; }
.hamburger span { height: 2px; background: var(--ink); border-radius: 2px; }

/* --- Mobile drawer ------------------------------------------------------- */

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 47, .55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
    z-index: 95;
}
.scrim.show { opacity: 1; pointer-events: auto; }

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100%;
    background: var(--navy);
    padding: 84px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: 96;
    overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.drawer .btn { margin-top: 20px; border-bottom: 0; }

/* =============================== HERO =================================== */

.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

/* The banner sits on the right half and is faded into the navy from the left,
   so the headline always has a solid field behind it whatever the viewport. */
.hero-media {
    position: absolute;
    inset: 0 0 0 38%;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, rgba(8, 20, 47, .82) 26%, rgba(8, 20, 47, .32) 62%, rgba(8, 20, 47, .48) 100%);
}

.hero .wrap { position: relative; z-index: 2; }
.hero-inner { padding: 66px 0 0; }

.hero-title {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    max-width: 620px;
}
.hero-title em { font-style: normal; color: var(--gold-l); display: block; }

.hero-sub {
    margin-top: 20px;
    max-width: 46ch;
    color: rgba(255, 255, 255, .82);
    font-size: 15.5px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-cta .btn--ghost-light i { color: var(--whatsapp); font-size: 17px; }

/* Feature strip along the bottom edge of the hero */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 48px;
    padding: 26px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-feature { display: flex; gap: 14px; }
.hero-feature i { color: var(--gold); font-size: 26px; line-height: 1; margin-top: 3px; }
.hero-feature h3 { color: #fff; font-size: 14.5px; font-weight: 800; }
.hero-feature p {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .7);
}

/* ========================= BROWSE BY CATEGORY =========================== */

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

.cat {
    position: relative;
    display: block;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px 26px 26px;
    overflow: hidden;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease),
                border-color .3s var(--ease);
}
.cat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #d8dde6;
}

.cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.cat-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 19px;
}
.cat-head h3 { font-size: 19px; }

.cat-list { display: grid; gap: 9px; margin-bottom: 26px; }
.cat-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.cat-list i { color: var(--gold); font-size: 12px; }

/* Product cutout, bottom-right. Behind the text, because the checklist is the
   content and the machine is the illustration. */
.cat-img {
    position: absolute;
    right: -8px;
    bottom: 62px;
    width: 47%;
    max-width: 190px;
    pointer-events: none;
    mix-blend-mode: multiply;   /* kills the off-white box on supplier crops */
}
.cat .btn { position: relative; z-index: 2; }

/* ========================= POPULAR EQUIPMENT ============================ */

.pop { position: relative; }

.pop-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 8px;
    scrollbar-width: none;
}
.pop-track::-webkit-scrollbar { display: none; }

.pop-card {
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.pop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pop-media {
    height: 140px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.pop-media img { max-height: 140px; width: auto; object-fit: contain; mix-blend-mode: multiply; }

.pop-card h3 { font-size: 14.5px; line-height: 1.35; }
.pop-cat { margin-top: 5px; font-size: 12.5px; color: var(--muted); }

.pop-card .btn {
    margin: auto auto 0;        /* pinned to the card foot whatever the title runs to */
    padding-top: 9px;
    padding-bottom: 9px;
    border-color: var(--gold);
    color: var(--gold-d);
    background: transparent;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: none;
    font-weight: 700;
}
.pop-card .btn:hover { background: var(--gold); color: #fff; }

.pop-nav {
    position: absolute;
    top: 42%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.pop-nav:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pop-nav[disabled] { opacity: .35; cursor: default; }
.pop-nav[disabled]:hover { background: #fff; color: var(--ink); border-color: var(--line); }
.pop-prev { left: -19px; }
.pop-next { right: -19px; }

/* ======================== COMPLETE CATALOGUE ============================ */

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}
.filter {
    padding: 9px 20px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease),
                border-color .25s var(--ease);
}
.filter:hover { border-color: var(--navy); }
.filter[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 14px;
}

.prod {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 10px 16px;
    cursor: pointer;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease),
                border-color .3s var(--ease);
}
.prod:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #d8dde6;
}
.prod[hidden] { display: none; }

.prod-media { height: 108px; display: grid; place-items: center; width: 100%; }
.prod-media img {
    max-height: 108px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}
/* Eight entries in the index are documentary shots of the machine in service,
   not white-background catalogue cutouts. Multiply-blending one of those turns
   the tile almost black, so they are framed as photographs instead — filled,
   cropped and rounded — and marked .is-photo in the markup. */
.prod-media img.is-photo,
.pop-media img.is-photo {
    place-self: stretch;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    border-radius: 5px;
    mix-blend-mode: normal;
}

/* main.js hides an <img> whose file is missing so the tile keeps its shape
   instead of showing a broken-image glyph. */
.prod-media img.is-missing,
.pop-media img.is-missing { display: none; }

.prod-num {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .06em;
}
.prod-name {
    margin-top: 3px;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
}

.index-empty { text-align: center; color: var(--muted); padding: 30px 0; }

/* Tiles past the ninth are held back until "View all" is pressed (see main.js).
   Kept separate from the filter's hidden attribute so the two never collide. */
.prod.capped { display: none; }

.index-more-wrap { display: flex; justify-content: center; margin-top: 22px; }
.index-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 26px;
    border: 1px solid var(--navy);
    border-radius: 5px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.index-more:hover { background: var(--navy); color: #fff; }
.index-more[hidden] { display: none; }
.index-more i { transition: transform .25s var(--ease); }
.index-more.is-open i { transform: rotate(180deg); }

/* ===================== WHY / INDUSTRIES / HOW IT WORKS ================== */

/* Three panels flush against each other, edge to edge — the navy one bleeds to
   the left viewport edge exactly as in the approved design. */
.band {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.band > * { padding: 46px 40px; }
.band h2 {
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: .01em;
    padding-bottom: 12px;
    margin-bottom: 26px;
    position: relative;
}
.band h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    background: var(--gold);
}

/* --- Why choose us (navy) --- */
.why { background: var(--navy); }
.why h2 { color: #fff; }
.why-list { display: grid; gap: 22px; }
.why-item { display: flex; gap: 15px; }
.why-item .ico {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 44, .5);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 15px;
}
.why-item h3 { color: #fff; font-size: 14.5px; }
.why-item p { margin-top: 3px; font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, .68); }

/* --- Industries --- */
.industries { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.industries h2 { text-align: center; }
.industries h2::after { left: 50%; transform: translateX(-50%); }
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 16px;
    text-align: center;
}
.ind i { font-size: 30px; color: var(--navy-2); }
.ind span { display: block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--ink); }

/* --- How it works --- */
.how { position: relative; overflow: hidden; }
.how-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .07;
    z-index: 0;
}
.how > *:not(.how-bg) { position: relative; z-index: 1; }

.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 16px; }
.step-num {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}
.step h3 { font-size: 14.5px; }
.step p { margin-top: 3px; font-size: 13px; line-height: 1.55; color: var(--body-ink); }

/* ============================== QUOTE =================================== */

.quote { background: var(--navy); padding: 0; }
.quote .wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 52px;
}

.quote-aside h2 { color: #fff; font-size: 30px; text-transform: uppercase; }
.quote-aside p { margin-top: 16px; color: rgba(255, 255, 255, .78); font-size: 14.5px; }

.quote-usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.quote-usp { text-align: center; }
.quote-usp i { font-size: 24px; color: var(--gold); }
.quote-usp span {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255, 255, 255, .78);
}

.quote-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

/* The form itself lives in the modal, so this panel is only the invitation to
   open it — which keeps the section about a screen shorter on a phone. */
.quote-card--cta { text-align: center; padding: 34px 30px; }
.quote-card--cta h3 { font-size: 21px; }
.quote-card--cta > p { margin-top: 12px; color: var(--body-ink); font-size: 14.5px; }
.quote-card--cta .submit-btn { margin-top: 22px; }
.quote-card--cta .form-note { margin: 14px 0 0; }
.quote-card--cta .form-note a { color: var(--gold-d); font-weight: 700; }

/* =============================== RFQ MODAL ============================== */

.rfq-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(8, 20, 47, .62);
    padding: 20px;
    overflow-y: auto;
}
.rfq-backdrop.active { display: flex; align-items: flex-start; justify-content: center; }

.rfq-modal {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px 28px 26px;
    box-shadow: var(--shadow-lg);
}

.rfq-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
}
.rfq-close:hover { background: var(--card); color: var(--ink); }

.rfq-title { font-size: 22px; padding-right: 30px; }
.rfq-sub {
    margin: 8px 0 20px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
}

.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
/* Quantity is a short value; the requirement textarea takes the remaining two
   columns so the two rows above it stay on the same 3-column rhythm. */
.field-row--2 { grid-template-columns: 1fr 2fr; }
.field { margin-bottom: 16px; }
.field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.req { color: var(--danger); }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 14px;
    color: var(--ink);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #a8b0bf; }
.field select { appearance: none; cursor: pointer; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 155, 44, .14);
}

/* Native select arrow is replaced so it matches across browsers */
.select-wrap { position: relative; }
.select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--muted);
    pointer-events: none;
}

.form-note { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }

.form-error {
    display: none;
    margin-bottom: 14px;
    padding: 11px 14px;
    border-radius: 5px;
    background: #fdeceb;
    border: 1px solid #f5c9c5;
    color: #a3302a;
    font-size: 13.5px;
}
.form-error.show { display: block; }

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(420px, 100%);
    margin: 4px auto 0;
    padding: 15px 30px;
    background: var(--gold);
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s var(--ease);
}
.submit-btn:hover { background: var(--gold-d); }
.submit-btn[disabled] { opacity: .6; cursor: default; }

.form-success { display: none; text-align: center; padding: 26px 10px; }
.form-success.show { display: block; }
.form-success .tick {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
}
.form-success h3 { font-size: 21px; }
.form-success p { margin-top: 10px; color: var(--body-ink); }

/* ============================== FOOTER ================================== */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .68);
    font-size: 13.5px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.15fr 1fr 1.1fr;
    gap: 34px;
    padding: 48px 0 38px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { line-height: 1.6; }

.footer-socials { display: flex; gap: 9px; margin-top: 18px; }
.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    transition: background .25s var(--ease), border-color .25s var(--ease);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col a:hover { color: var(--gold-l); }

.footer-contact li { display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); font-size: 13px; margin-top: 4px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
    letter-spacing: .04em;
}
.footer-bottom strong { color: var(--gold-l); font-weight: 800; }

/* ========================= FLOATING / STICKY ============================ */

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .34);
    z-index: 80;
    transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }

/* Two-up action bar pinned to the bottom edge. Phone only — responsive.css
   turns it on and hides .wa-float so they never stack on top of each other. */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
}
.mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.mobile-bar .mb-wa { background: var(--whatsapp); }
.mobile-bar .mb-quote { background: var(--gold); }

/* ============================== REVEAL ================================== */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .pop-track { scroll-behavior: auto; }
    * { transition-duration: .01ms !important; }
}
