/* ═══════════════════════════════════════════════════════════════════
   NEW CLEAN SERVICES — LANDING V2
   Design system: same brand tokens as main site, enhanced UI/UX
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* Brand palette (identical to main site) */
    --red:        #E30613;
    --red-dark:   #B8040F;
    --red-light:  #FF2333;
    --navy:       #1A2B5E;
    --navy-light: #243875;
    --navy-deep:  #111D42;
    --gold:       #D4A843;
    --gold-light: #F5D16A;
    --green:      #22C55E;
    --white:      #FFFFFF;
    --off-white:  #F8F9FA;
    --gray-light: #F0F0F2;
    --gray:       #888888;
    --text-dark:  #1A1A1A;
    --text-mid:   #444444;

    /* V2 system */
    --radius-sm: 12px;
    --radius:    18px;
    --radius-lg: 26px;
    --shadow-sm: 0 2px 10px rgba(26,43,94,.08);
    --shadow:    0 10px 34px rgba(26,43,94,.12);
    --shadow-lg: 0 24px 60px rgba(17,29,66,.22);
    --shadow-red: 0 10px 28px rgba(227,6,19,.32);
    --grad-red:  linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    --grad-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    --grad-navy: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    --ease-pop:  cubic-bezier(.34,1.56,.64,1);
    --ease-out:  cubic-bezier(.22,.61,.36,1);
    --header-h:  74px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.7;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
.hidden { display: none !important; }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }
@media (max-width: 600px) { .container { width: calc(100% - 32px); } }

/* Focus visibility */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

/* ═══ SCROLL PROGRESS ═══ */
#scroll-progress {
    position: fixed; top: 0; right: 0; height: 4px; width: 0;
    background: linear-gradient(270deg, var(--red), var(--gold));
    z-index: 1001; transition: width .1s linear;
    border-radius: 0 0 0 4px;
}

/* ═══ ANNOUNCEMENT BAR ═══ */
#announce-bar {
    background: var(--grad-navy);
    color: var(--gold-light);
    text-align: center;
    padding: 9px 14px;
    font-weight: 800; font-size: 13.5px;
    position: relative; overflow: hidden;
}
#announce-bar::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(245,209,106,.14), transparent 70%);
    animation: btn-shine 4s infinite;
    pointer-events: none;
}
#announce-bar .ab-code {
    display: inline-block;
    background: rgba(245,209,106,.16);
    border: 1px dashed var(--gold);
    color: var(--gold-light);
    padding: 1px 12px; border-radius: 100px;
    margin-inline-start: 8px;
    letter-spacing: 1px; cursor: pointer;
    transition: background .25s;
}
#announce-bar .ab-code:hover { background: rgba(245,209,106,.3); }
@media (max-width: 600px) { #announce-bar { font-size: 12px; padding: 8px 10px; } }

/* ═══ HEADER (light, sticky) ═══ */
#header {
    position: sticky; top: 0; z-index: 1000;
    height: var(--header-h);
    display: flex; align-items: center;
    background: rgba(251,249,244,.9);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid rgba(26,43,94,.07);
    transition: box-shadow .35s;
}
#header.scrolled { box-shadow: 0 4px 24px rgba(26,43,94,.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-svg-wrap { width: 74px; height: 46px; filter: drop-shadow(0 4px 10px rgba(227,6,19,.25)); transition: transform .3s var(--ease-pop); }
.nav-logo:hover .logo-svg-wrap { transform: rotate(-6deg) scale(1.06); }
.logo-svg-wrap svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-ar { font-weight: 900; font-size: 16px; color: var(--navy); }
.logo-en { font-size: 9.5px; letter-spacing: 2.5px; font-weight: 700; color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 6px; }
.nav-links a {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 15px; border-radius: 100px;
    font-weight: 700; font-size: 14.5px; color: var(--navy);
    transition: background .25s, color .25s;
}
.nav-links a i { color: var(--red); font-size: 12.5px; }
.nav-links a:hover { background: rgba(26,43,94,.07); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
    display: flex; align-items: center; gap: 7px;
    font-weight: 800; font-size: 13.5px; color: var(--red);
    direction: ltr;
}
.nav-phone i { font-size: 12px; }

.btn-nav-cta {
    background: var(--grad-red); color: var(--white);
    padding: 11px 26px; border-radius: 100px;
    font-weight: 800; font-size: 14.5px;
    box-shadow: var(--shadow-red);
    position: relative; overflow: hidden;
    transition: transform .25s var(--ease-pop), box-shadow .25s;
}
.btn-nav-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 34px rgba(227,6,19,.42); }
.btn-nav-cta::after {
    content: ''; position: absolute; top: 0; inset-inline-start: -80%;
    width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-20deg);
    animation: btn-shine 3.2s infinite;
}
@keyframes btn-shine { 0%, 55% { inset-inline-start: -80%; } 100% { inset-inline-start: 180%; } }

@media (max-width: 900px) { .nav-links, .nav-phone span { display: none; } }
@media (max-width: 600px) {
    .logo-text { display: none; }
    .nav-phones { display: none; }
    .btn-nav-cta { padding: 10px 20px; font-size: 13.5px; }
}
.nav-phones { display: flex; gap: 14px; }

/* ═══ HERO (light editorial) ═══ */
#hero {
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 12% 8%, rgba(212,168,67,.14), transparent 60%),
        radial-gradient(ellipse 46% 42% at 88% 88%, rgba(227,6,19,.07), transparent 60%),
        #FBF9F4;
    padding: 40px 0 56px;
    overflow: hidden; isolation: isolate;
}
/* faint dotted texture */
#hero::before {
    content: ''; position: absolute; inset: 0; z-index: -1; opacity: .35;
    background-image: radial-gradient(rgba(26,43,94,.10) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, black, transparent);
}
/* diagonal gold streak */
#hero::after {
    content: ''; position: absolute; z-index: -1;
    width: 480px; height: 130px;
    inset-inline-end: -110px; top: 46px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,.16), rgba(227,6,19,.1), transparent);
    transform: rotate(-14deg); border-radius: 100px;
}

.hero-inner {
    display: grid; grid-template-columns: 1.06fr .94fr;
    gap: 46px; align-items: center;
}
.hero-content { color: var(--navy); }

.hero-tag {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(227,6,19,.07);
    border: 1px solid rgba(227,6,19,.28);
    color: var(--red-dark);
    padding: 8px 18px; border-radius: 100px;
    font-weight: 800; font-size: 13.5px;
    margin-bottom: 22px;
    animation: fade-up .7s var(--ease-out) both;
}
.hero-tag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 6px rgba(227,6,19,.18); } }

.hero-title {
    font-size: clamp(31px, 4.8vw, 54px);
    font-weight: 900; line-height: 1.3;
    margin-bottom: 16px;
    color: var(--navy);
    animation: fade-up .7s .1s var(--ease-out) both;
}
.hero-title .highlight {
    color: var(--red);
    position: relative; display: inline-block;
    white-space: nowrap;
}
/* hand-drawn marker underline */
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 2px; inset-inline: -3px; height: 11px;
    background: rgba(212,168,67,.5);
    border-radius: 8px 3px 9px 4px; z-index: -1;
    transform: scaleX(0) rotate(-1deg); transform-origin: right center;
    animation: draw-line .8s .9s var(--ease-out) forwards;
}
@keyframes draw-line { to { transform: scaleX(1) rotate(-1deg); } }

.hero-sub {
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--text-mid);
    max-width: 520px; margin-bottom: 22px;
    animation: fade-up .7s .2s var(--ease-out) both;
}

.hero-modes { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; animation: fade-up .7s .3s var(--ease-out) both; }
.hero-mode-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    border: 1px solid rgba(26,43,94,.13);
    box-shadow: var(--shadow-sm);
    padding: 8px 16px; border-radius: 100px;
    font-size: 13.5px; color: var(--navy);
    transition: transform .25s var(--ease-pop), box-shadow .25s;
}
.hero-mode-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-mode-pill i { color: var(--red); }
.hero-mode-pill.accent { background: rgba(34,197,94,.09); border-color: rgba(34,197,94,.4); }
.hero-mode-pill.accent i { color: var(--green); }

.hero-stats {
    display: flex; align-items: center; gap: 22px;
    margin-bottom: 30px;
    animation: fade-up .7s .4s var(--ease-out) both;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num { font-size: 30px; font-weight: 900; color: var(--red); line-height: 1.2; }
.hero-stat .lbl { font-size: 13px; color: var(--gray); }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(26,43,94,.14); }

/* product blob visual (desktop decoration under stats) */
.hero-visual {
    position: relative;
    display: flex; align-items: flex-end; gap: 18px;
    animation: fade-up .7s .5s var(--ease-out) both;
}
.hero-blob {
    position: relative;
    width: 210px; height: 190px; flex-shrink: 0;
    background: linear-gradient(140deg, var(--red) 0%, var(--red-dark) 55%, var(--gold) 130%);
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    box-shadow: 0 22px 44px rgba(227,6,19,.25);
    animation: blob-morph 9s ease-in-out infinite alternate;
}
@keyframes blob-morph {
    50%  { border-radius: 54% 46% 44% 56% / 46% 56% 44% 54%; }
    100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
}
.hero-blob img {
    position: absolute; inset-inline-start: 50%; bottom: 8px;
    height: 215px; transform: translateX(50%);
    filter: drop-shadow(0 16px 22px rgba(17,29,66,.35));
    animation: float-y 4.5s ease-in-out infinite alternate;
}
@keyframes float-y { to { transform: translateX(50%) translateY(-9px); } }
.hero-price-badge {
    position: absolute; top: -10px; inset-inline-end: -14px;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--navy);
    font-weight: 900; font-size: 12.5px;
    padding: 7px 13px; border-radius: 100px;
    box-shadow: var(--shadow);
    animation: float-y 3.6s .6s ease-in-out infinite alternate;
}
.hero-price-badge strong { color: var(--red); font-size: 14px; }
.hero-review-card {
    background: var(--white);
    border: 1px solid rgba(26,43,94,.09);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 12px 16px;
    max-width: 250px;
    font-size: 12.5px; color: var(--text-mid);
    animation: float-y 5s 1s ease-in-out infinite alternate;
}
.hero-review-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 3px; }
.hero-review-card .who { font-weight: 800; color: var(--navy); font-size: 11.5px; margin-top: 5px; }

/* Hero form panel */
.hero-form-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    position: relative;
    animation: hero-panel-in .8s .25s var(--ease-pop) both;
}
@keyframes hero-panel-in { from { opacity: 0; transform: translateY(34px) scale(.96); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } }
.hero-form-panel::before {
    content: ''; position: absolute; inset: -2px; z-index: -1;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--gold), transparent 34%, transparent 66%, var(--red));
    opacity: .8;
}
.hero-form-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 900; font-size: 16px; color: var(--navy);
    padding-bottom: 14px; margin-bottom: 6px;
    border-bottom: 1px dashed var(--gray-light);
}
.hero-form-eyebrow i { color: var(--gold); animation: bolt-blink 2.4s infinite; }
@keyframes bolt-blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

@media (max-width: 1080px) { .hero-visual { display: none; } }
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; gap: 26px; }
    #hero { padding: 26px 0 44px; }
    .hero-stats { margin-bottom: 0; }
}
@media (max-width: 600px) {
    .hero-stats { gap: 14px; }
    .hero-stat .num { font-size: 24px; }
    .hero-form-panel { padding: 16px; }
}

/* ═══ TRUST BAR ═══ */
#trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    position: relative; z-index: 5;
}
.trust-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 16px 0; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 14px; color: var(--navy);
}
.trust-item i {
    width: 38px; height: 38px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(227,6,19,.08); color: var(--red);
    font-size: 15px;
    transition: transform .3s var(--ease-pop);
}
.trust-item:hover i { transform: rotate(-8deg) scale(1.12); }
.trust-divider { width: 1px; height: 26px; background: var(--gray-light); }
@media (max-width: 900px) {
    .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .trust-divider { display: none; }
    .trust-item { font-size: 12.5px; }
}

/* ═══ SECTIONS COMMON ═══ */
section { padding: 54px 0; }
.section-label {
    display: inline-block;
    background: rgba(227,6,19,.08); color: var(--red);
    font-weight: 800; font-size: 13px;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 14px;
}
.section-title { font-size: clamp(25px, 3.4vw, 38px); font-weight: 900; color: var(--navy); line-height: 1.35; margin-bottom: 12px; }
.section-title span { color: var(--red); }
.section-sub { color: var(--text-mid); font-size: 15.5px; max-width: 620px; }
.section-head-center { text-align: center; margin-bottom: 28px; }
.section-head-center .section-sub { margin-inline: auto; }

/* ═══ REVEAL ANIMATION SYSTEM ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .6s var(--ease-out), transform .6s var(--ease-pop); }
.reveal-scale.visible { opacity: 1; transform: none; }

/* ═══ PRODUCTS ═══ */
#products { background: var(--off-white); }
.products-header { text-align: center; margin-bottom: 26px; }
.products-header .section-sub { margin-inline: auto; }

.toggle-wrap {
    display: inline-flex; position: relative;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 100px; padding: 5px; margin-top: 22px;
    box-shadow: var(--shadow-sm);
}
.toggle-indicator {
    position: absolute; top: 5px; bottom: 5px;
    width: calc(50% - 5px);
    background: var(--grad-red);
    border-radius: 100px;
    box-shadow: var(--shadow-red);
    transition: inset-inline-start .35s var(--ease-pop);
    inset-inline-start: 5px;
}
.toggle-wrap.rent-active .toggle-indicator { inset-inline-start: 50%; }
.toggle-btn {
    position: relative; z-index: 1;
    padding: 11px 34px; border-radius: 100px;
    font-weight: 800; font-size: 15px; color: var(--text-mid);
    display: flex; align-items: center; gap: 8px;
    transition: color .3s;
}
.toggle-btn.active { color: var(--white); }

.products-subhead {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin: 26px 0 16px;
    font-weight: 900; font-size: 19px; color: var(--navy);
}
.products-subhead .sh-badge {
    background: var(--grad-gold); color: var(--navy);
    font-size: 12px; font-weight: 800;
    padding: 4px 14px; border-radius: 100px;
}
.products-subhead .sh-hint { font-size: 13px; font-weight: 600; color: var(--gray); }

.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 20px; text-align: center;
    position: relative; cursor: pointer;
    transition: transform .35s var(--ease-pop), box-shadow .35s, border-color .35s;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(227,6,19,.25);
}
.product-card::after {
    content: 'اطلب الآن ←';
    position: absolute; inset-inline: 0; bottom: 0;
    background: var(--grad-red); color: var(--white);
    font-weight: 800; font-size: 13.5px;
    padding: 9px; transform: translateY(100%);
    transition: transform .3s var(--ease-out);
}
.product-card:hover::after { transform: translateY(0); }

.p-img-wrap { height: 170px; display: grid; place-items: center; margin-bottom: 14px; }
.p-img-wrap img { max-height: 165px; width: auto; transition: transform .45s var(--ease-pop); filter: drop-shadow(0 12px 18px rgba(26,43,94,.16)); }
.product-card:hover .p-img-wrap img { transform: scale(1.08) rotate(-2deg); }
.p-img-placeholder { font-size: 46px; color: var(--gray-light); display: grid; place-items: center; height: 100%; }

.p-name { font-weight: 900; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.p-desc { font-size: 13px; color: var(--text-mid); min-height: 40px; margin-bottom: 12px; }
.p-price-tag {
    display: inline-block;
    background: rgba(34,197,94,.1); color: #15803D;
    font-weight: 900; font-size: 16.5px;
    padding: 6px 18px; border-radius: 100px;
}
.p-gift-tag { margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--gold); }

/* package cards */
.product-card.package { border: 2px solid rgba(212,168,67,.5); background: linear-gradient(180deg, #FFFDF6, var(--white)); }
.product-card.package.hero-pkg { border-color: var(--gold); box-shadow: 0 10px 34px rgba(212,168,67,.24); }
.pkg-ribbon {
    position: absolute; top: 14px; inset-inline-start: -34px;
    background: var(--grad-gold); color: var(--navy);
    font-size: 11.5px; font-weight: 900;
    padding: 5px 40px; transform: rotate(45deg);
    z-index: 2; box-shadow: var(--shadow-sm);
}
.pkg-stack { position: relative; height: 165px; width: 100%; }
.pkg-stack img { position: absolute; filter: drop-shadow(0 10px 14px rgba(26,43,94,.18)); transition: transform .45s var(--ease-pop); }
.pkg-main   { height: 150px; inset-inline-start: 50%; transform: translateX(50%); bottom: 0; z-index: 2; }
.pkg-side-a { height: 105px; inset-inline-start: 8%; bottom: 0; z-index: 1; opacity: .95; }
.pkg-side-b { height: 100px; inset-inline-end: 6%; bottom: 0; z-index: 1; opacity: .95; }
.pkg-side-c { height: 78px; inset-inline-end: 26%; bottom: 2px; z-index: 3; }
.product-card:hover .pkg-main { transform: translateX(50%) scale(1.07); }
.pkg-contents { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 12px; font-size: 12.5px; font-weight: 700; color: var(--text-mid); margin-bottom: 12px; }
.pkg-contents i { color: var(--green); margin-inline-start: 3px; }

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-card { padding: 14px 10px; }
    .p-img-wrap { height: 120px; }
    .p-img-wrap img { max-height: 115px; }
    .pkg-stack { height: 120px; }
    .pkg-main { height: 108px; }
    .pkg-side-a { height: 76px; }
    .pkg-side-b { height: 72px; }
    .pkg-side-c { height: 56px; }
    .p-desc { min-height: unset; }
    .p-name { font-size: 14.5px; }
    .p-price-tag { font-size: 14px; padding: 5px 14px; }
}

/* ═══ TRUST & CREDIBILITY (navy) ═══ */
#trust-credibility { background: var(--grad-navy); position: relative; overflow: hidden; }
#trust-credibility::before {
    content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,.22), transparent 65%);
    filter: blur(80px); inset-inline-end: -140px; top: -140px;
}
.trust-badges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.trust-badge {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: transform .35s var(--ease-pop), background .35s, border-color .35s;
}
.trust-badge:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: rgba(212,168,67,.5); }
.tb-icon {
    flex-shrink: 0;
    width: 52px; height: 52px; border-radius: 15px;
    display: grid; place-items: center;
    background: var(--grad-gold); color: var(--navy);
    font-size: 21px; box-shadow: 0 8px 22px rgba(212,168,67,.35);
}
.tb-title { font-weight: 900; font-size: 17px; color: var(--white); margin-bottom: 6px; }
.tb-text { font-size: 13.5px; color: rgba(255,255,255,.72); }
.tb-text em { color: var(--gold-light); font-style: normal; font-weight: 800; }
@media (max-width: 900px) { .trust-badges-grid { grid-template-columns: 1fr; } }

/* ═══ UGC VIDEOS ═══ */
#ugc-section { background: var(--white); }
.ugc-header { text-align: center; margin-bottom: 24px; }
.ugc-title {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: clamp(23px, 3vw, 32px); font-weight: 900; color: var(--navy);
}
.ugc-title i { color: var(--red); }
.ugc-sub { color: var(--text-mid); margin-top: 8px; }
.ugc-grid { display: grid; gap: 20px; }
.ugc-grid-vertical { grid-template-columns: repeat(3, 1fr); margin-bottom: 20px; }
.ugc-grid-landscape { grid-template-columns: repeat(2, 1fr); }
.ugc-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; background: var(--navy-deep);
    aspect-ratio: 9 / 16;
    box-shadow: var(--shadow);
    transition: transform .35s var(--ease-pop), box-shadow .35s;
}
.ugc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ugc-card-landscape { aspect-ratio: 16 / 9; }
.ugc-card video { width: 100%; height: 100%; object-fit: cover; }
.ugc-badge {
    position: absolute; top: 12px; inset-inline-start: 12px; z-index: 3;
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(17,29,66,.72); backdrop-filter: blur(6px);
    color: var(--white); font-size: 11.5px; font-weight: 800;
    padding: 5px 12px; border-radius: 100px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-light); animation: pulse-dot 1.4s infinite; }
.video-play-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: grid; place-items: center;
    background: linear-gradient(to top, rgba(17,29,66,.55), rgba(17,29,66,.08));
    transition: opacity .3s;
}
.vpo-btn {
    width: 64px; height: 64px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.94); color: var(--red);
    font-size: 21px; padding-inline-start: 4px;
    box-shadow: 0 12px 30px rgba(17,29,66,.4);
    transition: transform .3s var(--ease-pop);
    animation: play-pulse 2s infinite;
}
@keyframes play-pulse { 50% { box-shadow: 0 12px 30px rgba(17,29,66,.4), 0 0 0 14px rgba(255,255,255,.14); } }
.video-play-overlay:hover .vpo-btn { transform: scale(1.12); }
.ugc-card.playing .video-play-overlay { opacity: 0; pointer-events: none; }
@media (max-width: 900px) {
    .ugc-grid-vertical { grid-template-columns: 1fr 1fr; }
    .ugc-grid-landscape { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ugc-grid-vertical { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ═══ LEAD FORM SECTION (bottom) ═══ */
#lead-form { background: var(--grad-navy); position: relative; overflow: hidden; }
#lead-form::before {
    content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(227,6,19,.32), transparent 65%);
    filter: blur(90px); inset-inline-start: -160px; bottom: -160px;
}
.form-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: center; position: relative; }
.form-info .section-title { color: var(--white); }
.form-info .section-title span { color: var(--gold-light); }
.form-info .section-sub { color: rgba(255,255,255,.72); }
.form-info-points { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.fip { display: flex; gap: 14px; align-items: center; }
.fip-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px;
    display: grid; place-items: center;
    background: rgba(212,168,67,.16); border: 1px solid rgba(212,168,67,.4);
    color: var(--gold-light); font-size: 17px;
}
.fip-text { color: rgba(255,255,255,.82); font-size: 14.5px; }
.fip-text strong { color: var(--white); }
@media (max-width: 992px) { .form-layout { grid-template-columns: 1fr; gap: 30px; } }

/* ═══ THE FORM (shared component) ═══ */
.lead-form-mount { width: 100%; }
.form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 4px;
    position: relative;
}
#lead-form .form-box { box-shadow: var(--shadow-lg); padding: 24px; }
.hero-form-panel .form-box { padding: 12px 4px 4px; }

.form-progress { margin-bottom: 18px; }
.progress-steps { display: flex; justify-content: space-between; margin-bottom: 8px; padding-inline: 4px; }
.ps-dot {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--gray-light); color: var(--gray);
    font-size: 12.5px; font-weight: 900;
    transition: all .35s var(--ease-pop);
    position: relative;
}
.ps-dot.active {
    background: var(--grad-red); color: var(--white);
    transform: scale(1.18);
    box-shadow: 0 0 0 5px rgba(227,6,19,.14);
}
.ps-dot.done { background: var(--green); color: var(--white); }
.progress-bar-track { height: 7px; background: var(--gray-light); border-radius: 100px; overflow: hidden; }
.progress-bar-fill {
    height: 100%; width: 33%;
    background: linear-gradient(270deg, var(--red), var(--gold));
    border-radius: 100px;
    transition: width .5s var(--ease-out);
    position: relative;
}
.progress-bar-fill::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
    animation: btn-shine 2.4s infinite;
}

.form-step { display: none; animation: step-in .45s var(--ease-out); }
.form-step.active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateX(-22px); } }

.step-title-form { font-weight: 900; font-size: 19px; color: var(--navy); text-align: center; }
.step-subtitle-form { font-size: 13.5px; color: var(--gray); text-align: center; margin: 4px 0 18px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.choice-card {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 16px 12px; text-align: center; cursor: pointer;
    transition: all .28s var(--ease-pop);
    position: relative;
    background: var(--white);
}
.choice-card:hover { border-color: rgba(227,6,19,.4); transform: translateY(-3px); }
.choice-card.selected {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(227,6,19,.05), rgba(227,6,19,.02));
    box-shadow: 0 8px 22px rgba(227,6,19,.14);
}
.choice-card.selected::after {
    content: '\2713';
    position: absolute; top: -9px; inset-inline-end: -7px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--green); color: var(--white);
    display: grid; place-items: center;
    font-size: 12px; font-weight: 900;
    animation: check-pop .35s var(--ease-pop);
    box-shadow: 0 4px 10px rgba(34,197,94,.4);
}
@keyframes check-pop { from { transform: scale(0); } }
.cc-icon { font-size: 26px; display: block; margin-bottom: 8px; color: var(--red); }
.choice-card.selected .cc-icon { color: var(--red-dark); }
.cc-title { font-weight: 900; font-size: 15px; color: var(--navy); }
.cc-sub { font-size: 11.5px; color: var(--gray); }

.choice-grid.mode-grid .choice-card { padding: 13px 10px; }

/* B2B mini panel */
.b2b-msg {
    background: linear-gradient(135deg, rgba(212,168,67,.12), rgba(212,168,67,.04));
    border: 1px solid rgba(212,168,67,.45);
    border-radius: var(--radius-sm);
    padding: 16px; margin-top: 4px;
    animation: step-in .4s var(--ease-out);
}
.b2b-msg h4 { color: var(--navy); font-size: 15.5px; margin-bottom: 6px; }
.b2b-msg p { font-size: 13px; color: var(--text-mid); margin-bottom: 12px; }
.btn-call {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--navy); color: var(--white);
    padding: 10px 22px; border-radius: 100px;
    font-weight: 800; font-size: 14px;
    transition: transform .25s var(--ease-pop), background .25s;
}
.btn-call:hover { transform: translateY(-2px); background: var(--navy-light); }

/* inputs */
.form-group { margin-bottom: 13px; text-align: right; }
.form-group label { display: block; font-weight: 800; font-size: 13.5px; color: var(--navy); margin-bottom: 6px; }
.form-group .required { color: var(--red); }
.form-input {
    width: 100%;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    font-size: 14.5px; font-weight: 600;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-input:focus {
    outline: none; border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227,6,19,.09);
}
.form-input.error { border-color: var(--red); animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(5px); } 50% { transform: translateX(-5px); } 75% { transform: translateX(3px); } }
input[type="tel"].form-input { direction: ltr; text-align: right; }
.input-hint { font-size: 11.5px; color: var(--gray); margin-top: 4px; }
.input-error-msg { font-size: 12px; font-weight: 700; color: var(--red); margin-top: 4px; display: none; }
.input-error-msg.show { display: block; animation: step-in .3s; }

/* product check list */
.pci-group-title { font-weight: 900; font-size: 14.5px; color: var(--navy); margin: 14px 0 9px; }
.pci-group-title.pkg-title { color: var(--gold); }
.product-checks { display: flex; flex-direction: column; gap: 9px; }
.product-check-item {
    display: flex; align-items: center; gap: 11px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 11px 13px; cursor: pointer;
    transition: all .25s var(--ease-pop);
    background: var(--white);
    position: relative;
}
.product-check-item:hover { border-color: rgba(227,6,19,.35); }
.product-check-item.checked {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(227,6,19,.05), transparent);
    transform: scale(1.012);
}
.product-check-item input { accent-color: var(--red); width: 19px; height: 19px; flex-shrink: 0; cursor: pointer; }
.product-check-item.pkg-item { border-color: rgba(212,168,67,.55); background: #FFFDF6; }
.product-check-item.pkg-item.checked { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,168,67,.13), #FFFDF6); }
.pci-info { flex: 1; }
.pci-name { font-weight: 800; font-size: 13.5px; color: var(--navy); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pci-price { font-weight: 900; font-size: 14px; color: #15803D; }
.pci-gift { font-size: 11.5px; font-weight: 700; color: var(--gold); }
.pci-gift.pkg-save { color: #B8860B; }
.pci-tag-pop {
    background: var(--grad-gold); color: var(--navy);
    font-size: 10px; font-weight: 900;
    padding: 2px 9px; border-radius: 100px;
}

.step3-subtotal {
    position: sticky; bottom: 0; z-index: 2;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--navy); color: var(--white);
    border-radius: var(--radius-sm);
    padding: 11px 16px; margin-top: 13px;
    font-weight: 800; font-size: 14px;
    box-shadow: 0 -6px 18px rgba(26,43,94,.18);
}
.step3-subtotal .val { color: var(--gold-light); font-size: 16.5px; font-weight: 900; }

/* order summary */
.order-summary {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 15px; margin-bottom: 14px;
}
.os-title { font-weight: 900; font-size: 14.5px; color: var(--navy); margin-bottom: 9px; }
.os-items { display: flex; flex-direction: column; gap: 5px; margin-bottom: 9px; }
.os-item { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-mid); gap: 10px; }
.os-item .oi-price { font-weight: 800; color: var(--navy); white-space: nowrap; }
.os-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--text-mid); padding-top: 7px; border-top: 1px dashed #E2E2E6; }
.os-row i { color: var(--navy); margin-inline-end: 4px; }
.text-green { color: #15803D !important; font-weight: 900; }
.os-discount-value { color: var(--red); font-weight: 900; }
.os-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 9px; padding-top: 9px; border-top: 2px solid var(--navy);
    font-weight: 900; font-size: 16.5px; color: var(--navy);
}

/* promo */
.promo-wrap {
    background: linear-gradient(135deg, rgba(212,168,67,.1), rgba(212,168,67,.03));
    border: 1px dashed rgba(212,168,67,.6);
    border-radius: var(--radius-sm);
    padding: 13px; margin-bottom: 14px;
}
.promo-label { font-weight: 800; font-size: 13px; color: var(--navy); margin-bottom: 8px; }
.promo-row { display: flex; gap: 8px; }
.promo-input { flex: 1; text-transform: uppercase; letter-spacing: 1px; }
.promo-btn {
    background: var(--navy); color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0 22px; font-weight: 800; font-size: 13.5px;
    transition: background .25s, transform .2s;
}
.promo-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.promo-msg { font-size: 12.5px; font-weight: 700; margin-top: 7px; }
.promo-msg.ok { color: #15803D; }
.promo-msg.err { color: var(--red); }
.promo-uses-hint { font-size: 11px; color: var(--gray); margin-top: 3px; }

/* COD banner */
.cod-banner {
    display: flex; gap: 12px; align-items: center;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.35);
    border-radius: var(--radius-sm);
    padding: 12px 14px; margin-bottom: 15px;
}
.cod-banner-icon {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--green); color: var(--white); font-size: 17px;
}
.cod-banner-title { font-weight: 900; font-size: 13.5px; color: #14532D; }
.cod-banner-sub { font-size: 11.5px; color: #166534; }

/* nav buttons */
.form-nav { display: flex; gap: 10px; margin-top: 16px; }
.btn-next {
    flex: 1;
    background: var(--grad-red); color: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-weight: 900; font-size: 15.5px;
    box-shadow: var(--shadow-red);
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    position: relative; overflow: hidden;
    transition: transform .25s var(--ease-pop), box-shadow .25s, opacity .25s;
}
.btn-next:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(227,6,19,.4); }
.btn-next:active:not(:disabled) { transform: scale(.98); }
.btn-next:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.btn-next.loading { pointer-events: none; }
.btn-next.loading::before {
    content: ''; width: 18px; height: 18px;
    border: 3px solid rgba(255,255,255,.35); border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-back {
    background: var(--gray-light); color: var(--text-mid);
    border-radius: var(--radius-sm);
    padding: 14px 20px; font-weight: 800; font-size: 14px;
    transition: background .25s;
}
.btn-back:hover { background: #E4E4E8; }

/* success */
.form-success { display: none; text-align: center; padding: 28px 12px; animation: step-in .5s var(--ease-out); }
.form-success.show { display: block; }
.success-check {
    width: 86px; height: 86px; margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(34,197,94,.1);
    display: grid; place-items: center;
    animation: check-pop .55s var(--ease-pop);
}
.success-check svg { width: 52px; height: 52px; }
.success-check .cir { stroke: var(--green); stroke-width: 2.4; fill: none; stroke-dasharray: 166; stroke-dashoffset: 166; animation: draw-stroke .7s .15s var(--ease-out) forwards; }
.success-check .chk { stroke: var(--green); stroke-width: 3.4; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw-stroke .45s .7s var(--ease-out) forwards; }
@keyframes draw-stroke { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 21px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-mid); max-width: 380px; margin: 0 auto; }

/* confetti canvas */
.confetti-bit {
    position: fixed; width: 9px; height: 9px; z-index: 3000;
    pointer-events: none; border-radius: 2px;
    animation: confetti-fall 2.6s var(--ease-out) forwards;
}
@keyframes confetti-fall {
    to { transform: translateY(105vh) rotate(720deg); opacity: 0; }
}

/* ═══ TESTIMONIALS ═══ */
#testimonials { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 20px; }
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px; position: relative;
    transition: transform .35s var(--ease-pop), box-shadow .35s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-quote {
    position: absolute; top: 10px; inset-inline-end: 20px;
    font-size: 66px; font-weight: 900;
    color: rgba(227,6,19,.09); line-height: 1;
    font-family: Georgia, serif;
}
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 13.5px; color: var(--text-mid); margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 11px; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-navy); color: var(--gold-light);
    font-weight: 900; font-size: 16px;
}
.review-name { font-weight: 900; font-size: 13.5px; color: var(--navy); }
.review-loc { font-size: 11.5px; color: var(--gray); }

/* ═══ TV FEATURE ═══ */
#tv-feature { background: var(--white); }
.tv-wrap { text-align: center; max-width: 860px; margin-inline: auto; }
.tv-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(26,43,94,.06); color: var(--navy);
    font-weight: 800; font-size: 13px;
    padding: 7px 18px; border-radius: 100px; margin-bottom: 14px;
}
.tv-eyebrow i { color: var(--red); }
.tv-title { font-size: clamp(23px, 3vw, 32px); font-weight: 900; color: var(--navy); margin-bottom: 26px; }
.tv-video-frame {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; aspect-ratio: 16 / 9;
    background: var(--navy-deep);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 1px solid var(--gray-light);
}
.tv-video-frame video { width: 100%; height: 100%; object-fit: cover; }

/* ═══ FAQ ═══ */
#faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}
.faq-item.open { border-color: rgba(227,6,19,.3); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    padding: 17px 20px; text-align: right;
    font-weight: 800; font-size: 15px; color: var(--navy);
}
.faq-q .fq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--gray-light); color: var(--navy);
    font-size: 12px;
    transition: all .35s var(--ease-pop);
}
.faq-item.open .fq-icon { background: var(--grad-red); color: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 20px 18px; font-size: 13.5px; color: var(--text-mid); }

/* ═══ FOOTER ═══ */
#footer { background: var(--navy-deep); color: var(--white); padding: 54px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-bottom: 34px; }
.footer-brand { max-width: 300px; }
.brand-name { font-weight: 900; font-size: 18px; margin-bottom: 4px; }
.brand-tag { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-col h5 { font-size: 14.5px; font-weight: 900; color: var(--gold-light); margin-bottom: 13px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.68); transition: color .25s, padding .25s; }
.footer-col a:hover { color: var(--gold-light); padding-inline-start: 5px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 12.5px; color: rgba(255,255,255,.5);
}
.social-links { display: flex; gap: 9px; }
.social-link {
    width: 38px; height: 38px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.08); color: var(--white);
    font-size: 15px;
    transition: transform .3s var(--ease-pop), background .3s;
}
.social-link:hover { transform: translateY(-4px); }
.sl-fb:hover { background: #1877F2; }
.sl-ig:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.sl-wa:hover { background: #25D366; }
.sl-ph:hover { background: var(--red); }

/* ═══ WHATSAPP FLOAT (left side per client request) ═══ */
.wa-float {
    position: fixed; bottom: 22px; left: 22px; right: auto; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    display: grid; place-items: center;
    background: #25D366; color: var(--white); font-size: 27px;
    box-shadow: 0 10px 28px rgba(37,211,102,.45);
    transition: transform .3s var(--ease-pop);
    animation: wa-bob 3.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wa-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ═══ STICKY MOBILE CTA BAR ═══ */
#mobile-cta {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 950;
    display: none;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 -8px 30px rgba(26,43,94,.14);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    transform: translateY(110%);
    transition: transform .4s var(--ease-out);
}
#mobile-cta.show { transform: translateY(0); }
#mobile-cta .mc-order {
    flex: 1.5;
    background: var(--grad-red); color: var(--white);
    border-radius: var(--radius-sm);
    padding: 13px; text-align: center;
    font-weight: 900; font-size: 15px;
    box-shadow: var(--shadow-red);
}
#mobile-cta .mc-call {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--navy); color: var(--white);
    border-radius: var(--radius-sm);
    padding: 13px; font-weight: 800; font-size: 14px;
}
@media (max-width: 768px) {
    #mobile-cta { display: flex; }
    .wa-float { bottom: 84px; width: 52px; height: 52px; font-size: 24px; }
    body { padding-bottom: 0; }
    section { padding: 38px 0; }
}

/* === OFFER BANNER (compact two-column, humanized) === */
#offer-banner { padding: 28px 0; background: var(--white); }
.offer-card {
    position: relative;
    max-width: 920px; margin-inline: auto;
    display: grid; grid-template-columns: 1.35fr .85fr;
    gap: 26px; align-items: center;
    text-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grad-navy);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
    padding: 26px 30px;
}
.offer-side {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; text-align: center;
    border-inline-start: 2px dashed rgba(245,209,106,.35);
    padding-inline-start: 26px;
}
.offer-card::before, .offer-card::after {
    content: ''; position: absolute; border-radius: 50%; z-index: -1;
    filter: blur(70px); opacity: .55; pointer-events: none;
}
.offer-card::before {
    width: 380px; height: 380px; inset-inline-start: -120px; top: -140px;
    background: radial-gradient(circle, rgba(227,6,19,.5), transparent 65%);
}
.offer-card::after {
    width: 320px; height: 320px; inset-inline-end: -100px; bottom: -140px;
    background: radial-gradient(circle, rgba(212,168,67,.4), transparent 65%);
}
.offer-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(227,6,19,.18);
    border: 1px solid rgba(255,74,88,.45);
    color: #FF9DA3;
    font-weight: 800; font-size: 12px;
    padding: 4px 13px; border-radius: 100px; margin-bottom: 10px;
}
.offer-title { font-size: clamp(19px, 2.3vw, 25px); font-weight: 900; line-height: 1.45; margin-bottom: 4px; color: var(--white); }
.offer-title em { font-style: normal; color: var(--gold-light); }
.offer-sub { font-size: 13.5px; color: rgba(255,255,255,.78); margin-bottom: 14px; }
.offer-price-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.offer-old-price {
    font-size: 16px; font-weight: 800; color: rgba(255,255,255,.55);
    text-decoration: line-through; text-decoration-color: var(--red-light); text-decoration-thickness: 3px;
}
.offer-new-price {
    background: var(--grad-gold); color: var(--navy);
    font-size: 24px; font-weight: 900;
    padding: 6px 20px; border-radius: 13px;
    box-shadow: 0 10px 26px rgba(212,168,67,.4);
    transform: rotate(-2deg);
}
.offer-new-price small { font-size: 13px; font-weight: 800; }
.offer-save-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(34,197,94,.16);
    border: 1px solid rgba(34,197,94,.5);
    color: #7EE2A8;
    font-weight: 800; font-size: 13px;
    padding: 6px 14px; border-radius: 100px;
}
.offer-coupon {
    display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
    border: 2px dashed var(--gold);
    background: rgba(245,209,106,.08);
    border-radius: var(--radius-sm);
    padding: 7px 14px; margin-bottom: 0;
    font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85);
    cursor: pointer;
    transition: background .25s, transform .25s var(--ease-pop);
}
.offer-coupon:hover { background: rgba(245,209,106,.16); transform: scale(1.02); }
.offer-coupon .oc-code { font-weight: 900; font-size: 16px; color: var(--gold-light); letter-spacing: 2px; }
.offer-coupon .oc-copy { color: var(--gold-light); font-size: 12px; }
.offer-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    background: var(--grad-red); color: var(--white);
    padding: 12px 26px; border-radius: 100px;
    font-weight: 900; font-size: 15px;
    box-shadow: 0 12px 30px rgba(227,6,19,.45);
    position: relative; overflow: hidden;
    transition: transform .25s var(--ease-pop), box-shadow .25s;
}
.offer-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px rgba(227,6,19,.55); }
.offer-cta::after {
    content: ''; position: absolute; top: 0; inset-inline-start: -80%;
    width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-20deg);
    animation: btn-shine 3s infinite;
}
@media (max-width: 760px) {
    .offer-card { grid-template-columns: 1fr; gap: 12px; text-align: center; padding: 18px 16px; }
    .offer-side { border-inline-start: none; padding-inline-start: 0; gap: 9px; }
    .offer-coupon { justify-content: center; }
    .offer-sub { margin-bottom: 10px; }
    #offer-banner { padding: 18px 0; }
}
/* ═══ HOW-IT-WORKS STRIP ═══ */
#steps-strip { padding: 0 0 40px; background: var(--white); }
.steps-inner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: #FBF9F4;
    border: 1px solid rgba(26,43,94,.08);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
}
.step-item { display: flex; align-items: center; gap: 14px; position: relative; }
.step-num {
    flex-shrink: 0;
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-navy); color: var(--gold-light);
    font-weight: 900; font-size: 18px;
    box-shadow: 0 8px 18px rgba(26,43,94,.25);
}
.step-item:nth-child(2) .step-num { background: var(--grad-red); color: var(--white); box-shadow: 0 8px 18px rgba(227,6,19,.3); }
.step-item:nth-child(3) .step-num { background: var(--grad-gold); color: var(--navy); box-shadow: 0 8px 18px rgba(212,168,67,.35); }
.step-txt strong { display: block; font-size: 14.5px; color: var(--navy); font-weight: 900; }
.step-txt span { font-size: 12.5px; color: var(--gray); }
.step-arrow {
    position: absolute; inset-inline-end: -14px; top: 50%;
    transform: translateY(-50%);
    color: rgba(26,43,94,.25); font-size: 15px;
}
@media (max-width: 768px) {
    .steps-inner { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
    .step-arrow { display: none; }
    #steps-strip { padding-bottom: 48px; }
}

/* ═══ STEP-3 MODE BADGE (buy vs rent clarity) ═══ */
.step-mode-badge {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: fit-content; margin: 6px auto 2px;
    padding: 5px 16px; border-radius: 100px;
    font-weight: 800; font-size: 12.5px;
    animation: check-pop .4s var(--ease-pop);
}
.step-mode-badge:empty { display: none; }
.step-mode-badge.mode-buy {
    background: rgba(26,43,94,.08); color: var(--navy);
    border: 1px solid rgba(26,43,94,.22);
}
.step-mode-badge.mode-rent {
    background: rgba(212,168,67,.14); color: #8A6A1B;
    border: 1px solid rgba(212,168,67,.5);
}

/* ═══ FLOATING MINI-CART ═══ */
#mini-cart {
    position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 940;
    display: flex; align-items: center; gap: 11px;
    background: var(--navy);
    color: var(--white);
    border-radius: 100px;
    padding: 9px 18px 9px 14px;
    box-shadow: 0 14px 34px rgba(17,29,66,.4);
    transform: translateY(140%) scale(.9);
    opacity: 0;
    transition: transform .45s var(--ease-pop), opacity .35s;
}
#mini-cart.show { transform: none; opacity: 1; }
#mini-cart.pulse .mc-icon { animation: cart-pulse .55s var(--ease-pop); }
@keyframes cart-pulse { 40% { transform: scale(1.28) rotate(-8deg); } }
#mini-cart .mc-icon {
    position: relative;
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-red);
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(227,6,19,.4);
}
#mini-cart .mc-count {
    position: absolute; top: -5px; inset-inline-end: -5px;
    min-width: 19px; height: 19px; border-radius: 100px;
    display: grid; place-items: center;
    background: var(--grad-gold); color: var(--navy);
    font-size: 11px; font-weight: 900; padding: 0 4px;
}
#mini-cart .mc-info { display: flex; flex-direction: column; line-height: 1.35; text-align: right; }
#mini-cart .mc-label { font-size: 10.5px; color: rgba(255,255,255,.65); font-weight: 700; }
#mini-cart .mc-total { font-size: 14.5px; font-weight: 900; color: var(--gold-light); }
#mini-cart .mc-go { font-size: 12px; color: rgba(255,255,255,.55); }
#mini-cart:hover { transform: translateY(-3px); }
@media (max-width: 768px) {
    #mini-cart { bottom: 84px; inset-inline-end: 14px; padding: 8px 15px 8px 12px; }
}

/* ═══ ADD-TO-CART TOAST ═══ */
#cart-toast {
    position: fixed; bottom: 90px; inset-inline: 0; z-index: 960;
    margin-inline: auto; width: fit-content; max-width: calc(100% - 32px);
    display: flex; align-items: center; gap: 10px;
    background: rgba(17,29,66,.94);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-radius: 100px;
    padding: 11px 20px;
    font-size: 13.5px; font-weight: 700;
    box-shadow: var(--shadow-lg);
    transform: translateY(24px); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease-pop), opacity .3s;
}
#cart-toast.show { transform: none; opacity: 1; pointer-events: auto; }
#cart-toast .ct-icon { color: var(--green); font-size: 17px; }
#cart-toast .ct-undo {
    color: var(--gold-light); font-weight: 800; font-size: 12.5px;
    text-decoration: underline; text-underline-offset: 3px;
    margin-inline-start: 4px;
}
@media (max-width: 768px) { #cart-toast { bottom: 150px; } }

/* ═══ PROMO POPUP ═══ */
.promo-overlay {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center;
    background: rgba(17,29,66,.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease-out);
    padding: 20px;
}
.promo-overlay.show { opacity: 1; pointer-events: auto; }
.promo-modal {
    position: relative;
    width: min(430px, 100%);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 26px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(26px) scale(.94);
    transition: transform .4s var(--ease-pop);
}
.promo-overlay.show .promo-modal { transform: none; }
.promo-modal::before {
    content: ''; position: absolute; inset: -2px; z-index: -1;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--gold), transparent 35%, transparent 65%, var(--red));
}
.promo-close {
    position: absolute; top: 12px; inset-inline-start: 12px;
    width: 34px; height: 34px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--gray-light); color: var(--text-mid);
    font-size: 14px;
    transition: background .25s, transform .25s var(--ease-pop);
}
.promo-close:hover { background: #E4E4E8; transform: rotate(90deg); }
.pm-icon {
    width: 64px; height: 64px; margin: 0 auto 12px;
    border-radius: 20px;
    display: grid; place-items: center;
    background: var(--grad-red); color: var(--white);
    font-size: 26px;
    box-shadow: var(--shadow-red);
    animation: float-y 3s ease-in-out infinite alternate;
}
.pm-tag {
    display: inline-block;
    background: rgba(212,168,67,.14); color: #A87F22;
    border: 1px solid rgba(212,168,67,.45);
    font-weight: 800; font-size: 12px;
    padding: 4px 14px; border-radius: 100px; margin-bottom: 10px;
}
.pm-headline { font-size: 23px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.pm-headline .pm-pct { color: var(--red); }
.pm-sub { font-size: 13.5px; color: var(--text-mid); margin-bottom: 16px; }
.pm-code-box {
    border: 2px dashed var(--gold);
    background: linear-gradient(135deg, rgba(212,168,67,.09), rgba(212,168,67,.02));
    border-radius: var(--radius-sm);
    padding: 14px; margin-bottom: 14px;
}
.pm-code-label { font-size: 11.5px; font-weight: 700; color: var(--gray); margin-bottom: 2px; }
.pm-code { font-size: 26px; font-weight: 900; letter-spacing: 4px; color: var(--navy); margin-bottom: 9px; }
.pm-copy {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: var(--white);
    padding: 9px 24px; border-radius: 100px;
    font-weight: 800; font-size: 13.5px;
    transition: background .25s, transform .25s var(--ease-pop);
}
.pm-copy:hover { background: var(--navy-light); transform: translateY(-2px); }
.pm-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%;
    background: var(--grad-red); color: var(--white);
    padding: 13px; border-radius: var(--radius-sm);
    font-weight: 900; font-size: 15px;
    box-shadow: var(--shadow-red);
    transition: transform .25s var(--ease-pop), box-shadow .25s;
}
.pm-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(227,6,19,.4); }
.pm-note { font-size: 11px; color: var(--gray); margin-top: 10px; }

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .reveal, .reveal-scale { opacity: 1; transform: none; }
}
