/* ═══════════════════════════════════════════
   URBAN LIFESTYLE REWARDS — Design System
   Aesthetic: Bold Editorial Dark Luxury
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ─── TOKENS: DARK MODE (default) ─── */
:root {
  --bg:        #080809;
  --surface:   #111115;
  --surface2:  #1a1a20;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.14);
  --text:      #f0f0f4;
  --muted:     #8a8a96;
  --accent:    #e8002d;
  --accent2:   #ff1a45;
  --gold:      #f0c040;
  --green:     #22c55e;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --r:         12px;
  --r-lg:      20px;
  --t:         all 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 24px 60px rgba(0,0,0,0.6);
  --glow:      0 0 40px rgba(232,0,45,0.25);
  --header-bg: rgba(8,8,9,0.92);
  --header-bg-scroll: rgba(8,8,9,0.98);
  --hero-gradient: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(232,0,45,0.12) 0%, transparent 70%);
  --page-banner-bg: #111115;
  --nav-drawer-bg: rgba(8,8,9,0.97);
  --footer-bg: #111115;
  --scrollbar-track: #080809;
  /* How far each arrow sits outside the carousel edge on desktop */
  --arrow-offset: 28px;
}

/* ─── TOKENS: LIGHT MODE ─── */
[data-theme="light"] {
  --bg:        #f5f5f7;
  --surface:   #ffffff;
  --surface2:  #e0e0f4;
  --border:    rgba(0,0,0,0.08);
  --border2:   rgba(0,0,0,0.15);
  --text:      #00000d;
  --muted:     #6b6b7a;
  --accent:    #cc0025;
  --accent2:   #e8002d;
  --gold:      #b8860b;
  --green:     #16a34a;
  --shadow:    0 24px 60px rgba(0,0,0,0.12);
  --glow:      0 0 40px rgba(204,0,37,0.18);
  --header-bg: rgba(245,245,247,0.92);
  --header-bg-scroll: rgba(245,245,247,0.98);
  --hero-gradient: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(204,0,37,0.07) 0%, transparent 70%);
  --page-banner-bg: #ffffff;
  --nav-drawer-bg: rgba(245,245,247,0.97);
  --footer-bg: #ffffff;
  --scrollbar-track: #eaeaef;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--accent); color: #fff; padding: 8px 16px;
  border-radius: var(--r); font-size: 14px; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══ NAV ═══ */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled { background: var(--header-bg-scroll); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 72px; gap: 32px;
}
@media (max-width: 900px) {
  .nav-inner { gap: 12px; padding: 0 16px; }
}
.nav-logo img { height: 80px; width: auto; }
@media (max-width: 900px) {
  .nav-logo img { height: 56px; }
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  border-radius: 8px;
  transition: var(--t);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-links .nav-hot a { color: var(--gold); }
.nav-links .nav-hot a:hover { background: rgba(240,192,64,0.1); }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: var(--t); white-space: nowrap;
}
.nav-phone:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--glow); }
.nav-phone i { font-size: 12px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.nav-drawer {
  display: none; position: fixed; inset: 72px 0 0; z-index: 998;
  background: var(--nav-drawer-bg); backdrop-filter: blur(20px);
  padding: 24px; overflow-y: auto;
  flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; animation: slideDown 0.3s ease; }
.nav-drawer a {
  display: block; padding: 14px 16px;
  font-size: 18px; font-weight: 600; color: var(--muted);
  border-radius: var(--r); border: 1px solid transparent;
  transition: var(--t);
}
.nav-drawer a:hover { color: var(--text); border-color: var(--border2); background: var(--surface); }
.nav-drawer .drawer-phone {
  margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 16px; border-radius: var(--r); font-weight: 700; font-size: 16px;
}
@media (max-width: 360px) {
  .nav-drawer { padding: 16px; }
  .nav-drawer a { font-size: 16px; padding: 12px 14px; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  /* overflow:clip clips visual overflow without creating a new block-
     formatting context. This lets .carousel-arrow elements sit outside
     .hero-carousel using negative offsets while still being contained
     within the hero section — nothing bleeds into adjacent sections.  */
  overflow: clip;
  padding: 0 0 40px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-gradient);
  pointer-events: none;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,0,45,0.15); border: 1px solid rgba(232,0,45,0.3);
  color: var(--accent); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hero h1 .accent { color: var(--accent); }
.hero-price-row {
  display: flex; align-items: baseline; gap: 10px; margin: 24px 0;
}
.hero-price {
  font-family: var(--font-head); font-size: 72px; line-height: 1;
  color: var(--gold);
}
.hero-price-note {
  font-size: 16px; color: var(--muted); font-weight: 500;
}
.hero-specs {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.hero-specs li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text);
}
.hero-specs li i {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border-radius: 8px;
  color: var(--accent); font-size: 13px; flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-img {
  position: relative; display: flex; justify-content: center; align-items: center;
  height: 480px;
}
.hero-img .glow-ring {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,0,45,0.2) 0%, transparent 70%);
  border-radius: 50%; animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.15); opacity: 1; }
}
.hero-img img { position: relative; z-index: 1; width: auto; height: 100%; max-height: 480px; object-fit: contain; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.8)); }

/* Carousel dots */
.hero-nav { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border2); border: none; cursor: pointer;
  transition: var(--t);
}
.hero-dot.active { width: 28px; border-radius: 4px; background: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   HERO CAROUSEL
   overflow:visible lets the arrows escape the carousel boundary
   and sit in the hero's padding gutters on each side — well
   clear of the slide content (product image / ad).
   The parent .hero { overflow:clip } provides the outer clipping
   wall so nothing bleeds into the page.
══════════════════════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  min-height: 560px;
  overflow: visible;           /* arrows live outside this box */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  -webkit-overflow-scrolling: touch;
}

.hero {
  padding: 60px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
          transition: opacity 0.6s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   CAROUSEL ARROWS
   ──────────────────────────────────────────────────────────────
   DESKTOP  — arrows sit OUTSIDE .hero-carousel using negative
   left/right offsets so they are never over the slide content.
   translateX(-50%) / translateX(50%) centres each circle on the
   carousel edge.  translateY(-50%) vertically centres them and is
   set once in the base rule — it is never re-declared in :hover
   so the button cannot jump vertically.

   The standalone `scale` property (not inside `transform`) stacks
   on top of the existing transform values without overwriting them,
   giving a smooth scale-up on hover with zero jump.

   MOBILE   — arrows revert to inside the carousel, flush at the
   left/right edges, so they stay within the viewport.
══════════════════════════════════════════════════════════════ */
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;

  border: 2px solid rgba(255,255,255,0.28);
  background: rgba(20,20,24,0.65);
  color: #fff;
  font-size: 15px;

  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;

  -webkit-backdrop-filter: blur(10px) saturate(1.4);
          backdrop-filter: blur(10px) saturate(1.4);

  /* Only transition non-transform properties + standalone `scale`.
     Never list `transform` here — that would fight translateY(-50%). */
  -webkit-transition:
    background   0.22s ease,
    border-color 0.22s ease,
    box-shadow   0.22s ease,
    scale        0.22s ease;
          transition:
    background   0.22s ease,
    border-color 0.22s ease,
    box-shadow   0.22s ease,
    scale        0.22s ease;

  will-change: scale;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow);
  scale: 1.12;
}
.carousel-arrow:active {
  scale: 0.95;
  transition-duration: 0.08s;
}

/* ── DESKTOP: outside the carousel, in the hero's padding gutter ── */
@media (min-width: 769px) {
  .carousel-arrow--prev {
    /* Pull left of the carousel; centre the circle on the edge */
    left: calc(-1 * var(--arrow-offset));
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .carousel-arrow--next {
    right: calc(-1 * var(--arrow-offset));
    -webkit-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%);
  }
}

/* Light theme */
[data-theme="light"] .carousel-arrow {
  border-color: rgba(0,0,0,0.14);
  background: rgba(245,245,247,0.88);
  color: var(--text);
}
[data-theme="light"] .carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Tablet 769–900px: a touch smaller, same outside placement ── */
@media (min-width: 769px) and (max-width: 900px) {
  .carousel-arrow { width: 42px; height: 42px; font-size: 13px; }
  :root { --arrow-offset: 22px; }
}

/* ── Mobile ≤ 768px: arrows go INSIDE the carousel at the edges ── */
@media (max-width: 768px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-width: 1.5px;
    opacity: 0.85;
    /* Reset the desktop translateX — plain vertical centring only */
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .carousel-arrow--prev { left: 8px; }
  .carousel-arrow--next { right: 8px; }
}

/* ── Small phones ≤ 480px ── */
@media (max-width: 480px) {
  .carousel-arrow { width: 32px; height: 32px; font-size: 11px; opacity: 0.78; }
  .carousel-arrow--prev { left: 4px; }
  .carousel-arrow--next { right: 4px; }
}

/* ── Landscape phones (short height) ── */
@media (orientation: landscape) and (max-height: 500px) {
  .carousel-arrow {
    width: 30px; height: 30px; font-size: 10px; opacity: 0.75;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .carousel-arrow--prev { left: 4px; }
  .carousel-arrow--next { right: 4px; }
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 24px;
}
.trust-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.trust-strip img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.trust-strip span { font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-divider { color: var(--border2); }
@media (max-width: 480px) {
  .trust-strip { padding: 12px 16px; }
  .trust-strip-inner { gap: 10px; }
  .trust-strip img { height: 22px; }
  .trust-strip span { font-size: 12px; }
  .trust-divider { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   HERO CAROUSEL — MOBILE  (≤ 768px)
   Split into THREE layers:
     1. Shared mechanics (both orientations)
     2. Portrait  → stacked:  image centred above, text below
     3. Landscape → side-by-side: text left, phone right
══════════════════════════════════════════════════════════════ */

/* ── 1. SHARED MECHANICS (both orientations) ── */
@media (max-width: 768px) {
  .hero {
    min-height: 0 !important;
    overflow: visible;
    padding: 32px 16px;
  }
  .hero-carousel {
    min-height: 0 !important;
    height: auto;
    overflow: visible;
    border-radius: 16px;
  }
  .hero-slide {
    position: relative !important;
    inset: auto;
    width: 100%;
    height: auto;
    opacity: 0;
    display: none;
    pointer-events: none;
    -webkit-transition: none;
            transition: none;
  }
  .hero-slide.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .hero-img {
    height: auto;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .hero-img img {
    width: 100%;
    height: auto;
    max-height: none;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0,0,0,0.7));
  }
}

/* ── 2. PORTRAIT (stacked: image above, centred text below) ── */
@media (max-width: 768px) and (orientation: portrait) {
  .hero { padding: 20px 0 28px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-img {
    order: -1;
    width: 200px;
    margin: 0 auto 14px;
  }
  .hero-img .glow-ring { width: 180px; height: 180px; }

  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 10px; }
  .hero h1 {
    font-size: clamp(52px, 16vw, 80px);
    line-height: 0.88; margin-bottom: 6px;
  }
  .hero-price-row {
    margin: 10px 0; gap: 8px;
    -webkit-justify-content: center; justify-content: center;
    -webkit-align-items: baseline;   align-items: baseline;
  }
  .hero-price { font-size: 52px; }
  .hero-price-note { font-size: 14px; }

  .hero-specs {
    gap: 7px; margin-bottom: 14px;
    -webkit-align-items: flex-start; align-items: flex-start;
    text-align: left;
    display: -webkit-inline-flex; display: inline-flex;
    -webkit-flex-direction: column; flex-direction: column;
    max-width: 300px;
    margin-left: auto; margin-right: auto;
  }
  .hero-specs li { font-size: 13px; gap: 10px; }
  .hero-specs li i { width: 26px; height: 26px; font-size: 12px; -webkit-flex-shrink: 0; flex-shrink: 0; }

  .hero-btns {
    -webkit-flex-direction: column; flex-direction: column;
    -webkit-align-items: center;    align-items: center;
    gap: 8px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%; max-width: 300px;
    -webkit-justify-content: center; justify-content: center;
    font-size: 14px; padding: 13px 24px;
  }

  .hero-nav {
    -webkit-justify-content: center; justify-content: center;
    margin-top: 14px; gap: 10px;
  }
}

/* Portrait — narrow phones (≤ 390px) */
@media (max-width: 390px) and (orientation: portrait) {
  .hero-img { width: 170px; }
  .hero-img .glow-ring { width: 150px; height: 150px; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-price { font-size: 44px; }
  .hero-specs { max-width: 260px; }
}

/* Portrait — very small phones (≤ 360px) */
@media (max-width: 360px) and (orientation: portrait) {
  .hero-img { width: 150px; }
  .hero-img .glow-ring { width: 130px; height: 130px; }
  .hero h1 { font-size: clamp(40px, 13vw, 56px); }
  .hero-price { font-size: 40px; }
  .hero-specs { max-width: 240px; }
  .hero-specs li { font-size: 12px; }
}

/* ── 3. LANDSCAPE phones (side-by-side: text left, phone right) ── */
@media (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 14px 0 18px; min-height: 0 !important; overflow: visible; }
  .hero-carousel { min-height: 0 !important; height: auto; overflow: visible; }
  .hero-slide {
    position: relative !important;
    inset: auto; width: 100%; height: auto;
    opacity: 0; display: none; pointer-events: none;
    -webkit-transition: none; transition: none;
  }
  .hero-slide.active { display: block; opacity: 1; pointer-events: auto; z-index: 1; }

  .hero-grid {
    grid-template-columns: 1fr 120px;
    -webkit-column-gap: 10px; column-gap: 10px;
    row-gap: 0;
    -webkit-align-items: center; align-items: center;
    text-align: left;
    padding-left: 44px;
    padding-right: 12px;
  }

  .hero-img { order: 0; width: 120px; }
  .hero-img .glow-ring { width: 105px; height: 105px; }

  .hero-badge { font-size: 9px; padding: 3px 9px; margin-bottom: 5px; }
  .hero h1 { font-size: clamp(32px, 7vw, 48px); line-height: 0.88; margin-bottom: 4px; }
  .hero-price-row { margin: 5px 0; gap: 5px; -webkit-align-items: baseline; align-items: baseline; }
  .hero-price { font-size: 34px; }
  .hero-price-note { font-size: 12px; }
  .hero-specs { gap: 3px; margin-bottom: 8px; }
  .hero-specs li { font-size: 11px; gap: 6px; }
  .hero-specs li i { width: 20px; height: 20px; font-size: 10px; -webkit-flex-shrink: 0; flex-shrink: 0; }

  .hero-btns { -webkit-flex-direction: column; flex-direction: column; gap: 5px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    -webkit-justify-content: center; justify-content: center;
    font-size: 11px; padding: 8px 12px;
  }
  .hero-nav { margin-top: 8px; gap: 8px; }
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: var(--t); cursor: pointer; border: none; font-family: inherit;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: var(--glow); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  border: 1px solid var(--border2);
  transition: var(--t); cursor: pointer; font-family: inherit;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); background: rgba(255,255,255,0.04); transform: translateY(-2px); }

/* ═══ SECTIONS ═══ */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 768px) {
  section { padding: 52px 0; }
  .container { padding: 0 16px; }
}

.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--muted); max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
@media (max-width: 768px) {
  .section-header { margin-bottom: 32px; }
  .section-sub { font-size: 15px; }
}

/* ═══ STATS ═══ */
.stats-section { background: var(--surface); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.stat-card {
  background: var(--surface); padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
}
.stat-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(232,0,45,0.1); border-radius: 12px;
  color: var(--accent); font-size: 20px; margin-bottom: 8px;
}
.stat-number {
  font-family: var(--font-head); font-size: 52px; line-height: 1;
  color: var(--text);
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: 40px; }
}

/* ═══ DEALS / CARDS ═══ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}
.deal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--t); position: relative;
  display: flex; flex-direction: column;
}
.deal-card:hover {
  border-color: rgba(232,0,45,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow);
}
.deal-card__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.deal-card__badge.gold { background: var(--gold); color: #000; }
.deal-card__img {
  background: var(--surface2); height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.deal-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(232,0,45,0.08), transparent 70%);
}
.deal-card__img img { max-height: 180px; object-fit: contain; transition: var(--t); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.deal-card:hover .deal-card__img img { transform: scale(1.05) translateY(-4px); }
.deal-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
@media (max-width: 480px) {
  .deal-card__body { padding: 16px; }
  .deal-card__name { font-size: 19px; margin-bottom: 10px; }
  .deal-card__price { font-size: 36px; }
}
.deal-card__data {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,0,45,0.1); border: 1px solid rgba(232,0,45,0.2);
  color: var(--accent); font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 12px;
  word-break: break-word; white-space: normal; line-height: 1.4;
}
.deal-card__name { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.deal-card__pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.deal-card__price {
  font-family: var(--font-head); font-size: 42px; color: var(--gold); line-height: 1;
}
.deal-card__term { font-size: 13px; color: var(--muted); }
.deal-card .btn-primary { width: 100%; justify-content: center; padding: 12px; margin-top: auto; }

/* ═══ HOW IT WORKS ═══ */
.hiw-section { background: var(--surface); }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.hiw-card { background: var(--surface); padding: 48px 32px; position: relative; transition: var(--t); }
.hiw-card:hover { background: var(--surface2); }
.hiw-num {
  font-family: var(--font-head); font-size: 80px; line-height: 1;
  color: rgba(232,0,45,0.12); position: absolute; top: 16px; right: 20px;
  pointer-events: none;
}
.hiw-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: rgba(232,0,45,0.12); border-radius: 14px;
  color: var(--accent); font-size: 22px; margin-bottom: 20px;
}
.hiw-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.hiw-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-card { padding: 28px 24px; }
  .hiw-num { font-size: 56px; }
}

/* ═══ FEATURES ═══ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.feature-item { background: var(--bg); padding: 40px 36px; display: flex; gap: 20px; align-items: flex-start; transition: var(--t); }
.feature-item:hover { background: var(--surface); }
.feature-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(232,0,45,0.1); border-radius: 14px; color: var(--accent); font-size: 22px; }
.feature-icon img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) saturate(100%) invert(12%) sepia(95%) saturate(7493%) hue-rotate(344deg) brightness(95%) contrast(108%); }
.feature-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } .feature-item { padding: 22px 16px; } }

/* ═══ TESTIMONIALS ═══ */
.testi-section { background: var(--surface); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--t);
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.testi-stars { display: flex; gap: 4px; color: var(--gold); font-size: 13px; }
.testi-quote { font-size: 15px; line-height: 1.75; color: var(--text); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 14px; font-weight: 700; }
.testi-info span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .testi-card { padding: 22px 18px; gap: 12px; } }

/* ═══ CTA BAND ═══ */
.cta-band {
  background: var(--accent);
  padding: 72px 24px; text-align: center;
}
@media (max-width: 768px) {
  .cta-band { padding: 48px 20px; }
  .cta-band p { font-size: 16px; }
}
.cta-band h2 { font-family: var(--font-head); font-size: clamp(40px, 6vw, 80px); line-height: 1; letter-spacing: 0.02em; margin-bottom: 16px; }
.cta-band p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.cta-band .btn-white { background: #fff; color: var(--accent); }
.cta-band .btn-white:hover { background: rgba(255,255,255,0.9); color: var(--accent); }

/* ═══ FOOTER ═══ */
footer {
  background: var(--footer-bg); border-top: 1px solid var(--border);
  padding: 72px 24px 0;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.8; max-width: 280px; }
.footer-brand img { height: 150px; width: auto; }
@media (max-width: 768px) {
  footer { padding: 48px 16px 0; }
  .footer-brand img { height: 100px; }
  .footer-grid { padding-bottom: 36px; }
}
.footer-social { display: flex; gap: 8px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border2); border-radius: 8px; color: var(--muted);
  font-size: 14px; transition: var(--t);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,0,45,0.08); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: var(--t); }
.footer-col ul li a:hover { color: var(--text); }
.footer-newsletter p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.footer-form { display: flex; gap: 8px; }
.footer-form input {
  flex: 1; background: var(--bg); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 10px 14px;
  color: var(--text); font-size: 14px; font-family: inherit;
  outline: none; transition: var(--t);
}
.footer-form input:focus { border-color: var(--accent); }
.footer-form button {
  background: var(--accent); color: #fff; border: none;
  padding: 10px 18px; border-radius: var(--r); font-weight: 700;
  font-size: 14px; cursor: pointer; transition: var(--t); font-family: inherit;
}
.footer-form button:hover { background: var(--accent2); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 768px) {
  .footer-bottom { padding: 16px; }
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-cert img { height: 36px; opacity: 0.6; filter: brightness(0) invert(1); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-form { flex-direction: column; }
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ═══ PAGE BANNER (sub pages) ═══ */
.page-banner {
  padding: 80px 24px;
  background: var(--page-banner-bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
@media (max-width: 768px) {
  .page-banner { padding: 48px 16px 40px; }
  .page-banner h1 { font-size: clamp(40px, 12vw, 72px); }
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(232,0,45,0.08), transparent 70%);
}
.page-banner-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.page-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.page-banner h1 { font-family: var(--font-head); font-size: clamp(48px, 7vw, 96px); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 16px; }
.page-banner p { font-size: 17px; color: var(--muted); max-width: 500px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-top: 20px; }
.breadcrumb-nav a { color: var(--muted); transition: var(--t); }
.breadcrumb-nav a:hover { color: var(--text); }
.breadcrumb-nav .sep { opacity: 0.4; }

/* ═══ CONTRACTS PAGE ═══ */
.contracts-section { padding: 80px 0; }
@media (max-width: 768px) { .contracts-section { padding: 40px 0; } }
.contracts-intro { max-width: 640px; margin-bottom: 48px; }
@media (max-width: 768px) { .contracts-intro { margin-bottom: 28px; } }
.eligibility-banner {
  background: var(--surface2); border: 1px solid var(--border2);
  border-left: 4px solid var(--accent);
  border-radius: var(--r); padding: 24px 28px;
  margin-bottom: 48px;
}
.eligibility-banner h3 { font-size: 16px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.eligibility-banner h3 i { color: var(--accent); }
.eligibility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.eligibility-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.eligibility-item i { color: var(--green); font-size: 11px; }
@media (max-width: 600px) {
  .eligibility-banner { padding: 18px 16px; margin-bottom: 28px; }
  .eligibility-grid { grid-template-columns: 1fr; }
}

/* ═══ CONTACT PAGE ═══ */
.contact-section { padding: 80px 0; }
@media (max-width: 768px) {
  .contact-section { padding: 40px 0; }
  .contact-form-card { padding: 24px 20px; }
  .contact-form-card h2 { font-size: 32px; }
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; }
.contact-form-card h2 { font-family: var(--font-head); font-size: 40px; margin-bottom: 8px; }
.contact-form-card p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; background: var(--bg); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 12px 16px;
  color: var(--text); font-size: 15px; font-family: inherit;
  outline: none; transition: var(--t);
  appearance: none;
}
/* iOS Safari auto-zooms the viewport when focused inputs are < 16px.
   Force 16px on touch devices to prevent this disruptive behaviour. */
@media (pointer: coarse) {
  .form-field input,
  .form-field textarea,
  .form-field select { font-size: 16px; }
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,0,45,0.1); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-submit { width: 100%; padding: 14px; font-size: 16px; }
.success-message {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-message i { font-size: 48px; color: var(--green); }
.success-message h4 { font-size: 22px; font-weight: 800; }
.success-message p { color: var(--muted); }
.success-message button { margin-top: 12px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 260px; display: block; border: none; }
.contact-info-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px;
  transition: var(--t); cursor: pointer;
  text-decoration: none; color: var(--text);
}
.contact-info-card:hover { border-color: rgba(232,0,45,0.3); background: var(--surface2); color: var(--text); }
.contact-info-card i { font-size: 20px; color: var(--accent); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(232,0,45,0.1); border-radius: 10px; flex-shrink: 0; }
.contact-info-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-info-card span { font-size: 13px; color: var(--muted); }
.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 16px 24px; border-radius: var(--r-lg);
  font-weight: 700; font-size: 16px;
  transition: var(--t); text-decoration: none;
}
.whatsapp-btn:hover { background: #1fba57; transform: translateY(-2px); color: #fff; }
.whatsapp-btn i { font-size: 22px; }

.hours-section { background: var(--surface); padding: 80px 0; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.hours-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; text-align: center;
}
.hours-card-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(232,0,45,0.1); border-radius: 14px; color: var(--accent); font-size: 22px; margin: 0 auto 16px; }
.hours-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.hours-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.hours-card a { color: inherit; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hours-section { padding: 40px 0; }
  .hours-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .hours-card { padding: 24px 20px; }
}

/* ═══ HUAWEI LP ═══ */
.lp-hero { padding: 80px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.lp-hero-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.lp-urgency { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,192,64,0.15); border: 1px solid rgba(240,192,64,0.3); color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 20px; }
.lp-hero h1 { font-family: var(--font-head); font-size: clamp(56px, 8vw, 100px); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 4px; }
.lp-hero h1 span { color: var(--gold); }
.lp-hero .sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; }
.lp-inclusions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0 28px; }
.lp-incl { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.lp-incl i { font-size: 20px; color: var(--accent); }
.lp-incl strong { font-size: 15px; font-weight: 800; display: block; }
.lp-incl span { font-size: 12px; color: var(--muted); }
.lp-countdown { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; margin-bottom: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lp-countdown-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.lp-countdown-timer { display: flex; gap: 12px; }
.lp-cd-unit { text-align: center; }
.lp-cd-unit span { font-family: var(--font-head); font-size: 32px; color: var(--gold); display: block; line-height: 1; }
.lp-cd-unit small { font-size: 10px; color: var(--muted); }
.lp-hero-img { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lp-hero-img .glow { position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(232,0,45,0.2), transparent 70%); border-radius: 50%; animation: breathe 4s ease-in-out infinite; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.lp-hero-img img { max-height: 420px; width: auto; max-width: 100%; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7)); }
.lp-stock-badge { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; display: flex; align-items: center; gap: 8px; font-size: 13px; }
.lp-stock-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.lp-specs-section { padding: 80px 0; }
.lp-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.lp-spec-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 32px; display: flex; align-items: center; gap: 20px; transition: var(--t); }
.lp-spec-card:hover { border-color: var(--border2); }
.lp-spec-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(232,0,45,0.1); border-radius: 12px; color: var(--accent); font-size: 20px; flex-shrink: 0; }
.lp-spec-body strong { display: block; font-size: 16px; font-weight: 800; }
.lp-spec-body span { font-size: 14px; color: var(--muted); }

@media (max-width: 768px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 16px; }
  .lp-hero { padding: 40px 0; }
  .lp-hero-img { order: -1; }
  .lp-hero-img img { max-height: 280px; max-width: 260px; width: 100%; }
  .lp-hero-img .glow { width: 220px; height: 220px; }
  .lp-inclusions { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lp-incl { padding: 12px 8px; }
  .lp-incl strong { font-size: 13px; }
  .lp-countdown { flex-direction: column; gap: 8px; padding: 12px 16px; text-align: center; }
  .lp-countdown-timer { justify-content: center; gap: 16px; }
  .lp-specs-section { padding: 40px 0; }
  .lp-specs-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .lp-spec-card { padding: 20px; }
}
@media (max-width: 400px) {
  .lp-inclusions { grid-template-columns: 1fr; }
  .lp-cd-unit span { font-size: 26px; }
}

/* ═══ ENQUIRY FORMS (MODAL) ═══ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
.modal-overlay.active { display: block; }
.enquiry-form {
  display: none; position: fixed; z-index: 1001;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95);
  width: 90%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
  -webkit-overflow-scrolling: touch;
}
.enquiry-form.active { display: block; transform: translate(-50%, -50%) scale(1); }

/* ── Mobile: bottom sheet — avoids soft keyboard clipping ── */
@media (max-width: 640px) {
  .enquiry-form {
    top: auto; bottom: 0; left: 0; right: 0;
    width: 100%; max-width: 100%; max-height: 88vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    transform: translateY(8px) scale(0.99);
    animation: sheetUp 0.32s cubic-bezier(0.32,0.72,0,1) forwards;
  }
  .enquiry-form.active { transform: translateY(0) scale(1); }
  .enquiry-form::before {
    content: ''; display: block;
    width: 40px; height: 4px;
    background: var(--border2); border-radius: 2px;
    margin: 10px auto 0;
  }
}
@keyframes sheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes popIn { from { transform: translate(-50%, -50%) scale(0.92); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.form-header img { height: 36px; width: auto; }
.form-header h2 { font-size: 18px; font-weight: 800; }
.close-button {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px; color: var(--muted);
  font-size: 16px; cursor: pointer; background: none; transition: var(--t);
}
.close-button:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,0,45,0.08); }
.form-body { padding: 24px; }
.form-progress {
  display: flex; align-items: center; gap: 0; margin-bottom: 28px;
  background: var(--bg); border-radius: var(--r); padding: 4px; border: 1px solid var(--border);
}
.form-progress__step {
  flex: 1; padding: 8px 12px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--muted);
  border-radius: 8px; transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-progress__step span {
  width: 22px; height: 22px; background: var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; transition: var(--t);
}
@media (max-width: 400px) {
  .form-progress__step { font-size: 11px; padding: 6px 8px; gap: 5px; }
  .form-progress__step span { width: 18px; height: 18px; font-size: 10px; }
}
.form-progress__step--active { background: rgba(232,0,45,0.15); color: var(--accent); }
.form-progress__step--active span { background: var(--accent); color: #fff; }
.form-progress__line { width: 1px; background: var(--border); height: 20px; flex-shrink: 0; display: none; }
.form-row { display: flex; flex-direction: column; gap: 14px; }
.form-field-half { width: 100%; }
.form-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) {
  .form-fields-row { grid-template-columns: 1fr; }
  .form-body { padding: 16px; }
  .form-header { padding: 14px 16px; }
}
.form-step__intro { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.radio-group { margin-bottom: 14px; }
.radio-group__question { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.radio-group__options { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-option {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 16px;
  font-size: 14px; cursor: pointer; transition: var(--t);
  flex: 1 1 auto;
}
.radio-option:hover { border-color: var(--accent); }
.radio-option input { accent-color: var(--accent); }
.step-nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.btn-next { background: var(--accent); color: #fff; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; display: flex; align-items: center; gap: 8px; transition: var(--t); font-family: inherit; }
.btn-next:hover { background: var(--accent2); }
.btn-prev { background: var(--surface2); color: var(--muted); padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; border: 1px solid var(--border); display: flex; align-items: center; gap: 8px; transition: var(--t); font-family: inherit; }
.btn-prev:hover { color: var(--text); border-color: var(--border2); }
.step-nav button[type="submit"] { background: var(--accent); color: #fff; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: var(--t); font-family: inherit; }
.step-nav button[type="submit"]:hover { background: var(--accent2); }
.form-feedback { font-size: 13px; margin-top: 8px; color: var(--accent); }

/* ═══ WHATSAPP FAB ═══ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--t);
}
.whatsapp-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); color: #fff; }
.whatsapp-fab::before {
  content: 'Chat with us';
  position: absolute; right: 68px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 13px; font-weight: 600; font-family: var(--font-body);
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--t);
}
.whatsapp-fab:hover::before { opacity: 1; }
@media (pointer: coarse), (max-width: 480px) {
  .whatsapp-fab::before { display: none; }
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══ HERO CAROUSEL SLIDE VISIBILITY (desktop only) ═══ */
@media (min-width: 769px) {
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.6s ease;
            transition: opacity 0.6s ease;
  }
  .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
}

/* Required label asterisk */
label.required::after { content: ' *'; color: var(--accent); }

.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0; }
.text-muted { color: var(--muted); }
.mt-0{margin-top:0} .mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}

/* ═══ THEME TOGGLE ═══ */
.theme-toggle {
  position: relative;
  width: 52px; height: 28px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
  outline: none;
  padding: 0;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle:focus-visible { box-shadow: 0 0 0 3px rgba(232,0,45,0.3); }

.theme-toggle__track {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6px; height: 100%; font-size: 11px;
  pointer-events: none; line-height: 1;
}
.theme-toggle__thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: var(--accent); border-radius: 50%;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
[data-theme="light"] .theme-toggle__thumb { transform: translateX(24px); }

.theme-toggle__icon-dark  { opacity: 1;  transition: opacity 0.2s; }
.theme-toggle__icon-light { opacity: 0;  transition: opacity 0.2s; }
[data-theme="light"] .theme-toggle__icon-dark  { opacity: 0; }
[data-theme="light"] .theme-toggle__icon-light { opacity: 1; }

.nav-theme-wrap { display: flex; align-items: center; gap: 10px; }

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position: fixed; bottom: 88px; right: 24px; z-index: 900;
  width: 44px; height: 44px;
  background: var(--surface); border: 1px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  cursor: pointer; opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
}
@media (max-width: 480px) {
  .back-to-top { right: 16px; bottom: 80px; width: 40px; height: 40px; }
  .whatsapp-fab { right: 16px; bottom: 20px; width: 50px; height: 50px; font-size: 23px; }
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: var(--glow), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px) scale(1.05);
}
.back-to-top:active { transform: translateY(0) scale(0.97); }

.back-to-top svg {
  position: absolute; top: -4px; left: -4px;
  width: calc(100% + 8px); height: calc(100% + 8px);
  transform: rotate(-90deg); pointer-events: none; overflow: visible;
}
.back-to-top svg circle {
  fill: none; stroke: var(--accent); stroke-width: 2.5;
  stroke-linecap: round; stroke-dasharray: 135; stroke-dashoffset: 135;
  transition: stroke-dashoffset 0.1s linear;
}
.back-to-top:hover svg circle { stroke: rgba(255,255,255,0.4); }

/* Theme transition — smooth full-page theme switch */
*, *::before, *::after {
  transition-property: background-color, border-color, color, box-shadow, opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}
.theme-toggle__thumb,
.hero-img img,
.deal-card,
.deal-card__img img,
.nav-phone,
.btn-primary,
.btn-ghost,
.back-to-top,
.reveal,
.testi-card,
.whatsapp-btn,
.whatsapp-fab,
.carousel-arrow,
.lp-spec-card,
.contact-info-card,
.hiw-card,
.feature-item {
  transition: var(--t), background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

/* ═══ ABOUT US ═══ */
.about-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  display: grid; grid-template-columns: 280px 1fr;
  align-items: center; gap: 64px;
}
.about-logo-col {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 40px 32px;
  position: relative; overflow: hidden;
}
.about-logo-col::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,0,45,0.08), transparent 70%);
  pointer-events: none;
}
.about-logo {
  width: 100%; max-width: 200px; height: auto; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.about-text-col { display: flex; flex-direction: column; gap: 20px; }
.about-body { font-size: 17px; line-height: 1.8; color: var(--muted); max-width: 600px; }
.about-body strong { color: var(--text); font-weight: 700; }
.about-stats {
  display: flex; gap: 40px; padding: 24px 28px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); flex-wrap: wrap;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat__num { font-family: var(--font-head); font-size: 40px; line-height: 1; color: var(--text); }
.about-stat__plus { font-size: 28px; color: var(--accent); }
.about-stat__label { font-size: 13px; color: var(--muted); font-weight: 500; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-col { max-width: 240px; margin: 0 auto; }
  .about-stats { gap: 24px; }
}
@media (max-width: 768px) {
  .about-section { padding: 52px 0; }
  .about-logo-col { padding: 28px 20px; }
  .about-body { font-size: 15px; }
  .about-stats { padding: 18px 20px; gap: 20px; }
  .about-stat__num { font-size: 32px; }
}
@media (max-width: 480px) {
  .about-stats { flex-direction: column; gap: 16px; }
  .about-stat__num { font-size: 28px; }
}

/* ═══ LIGHT MODE specific overrides ═══ */
[data-theme="light"] .hero::before {
  background: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(204,0,37,0.06) 0%, transparent 70%);
}
[data-theme="light"] .deal-card { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .deal-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 30px rgba(204,0,37,0.15); }
[data-theme="light"] .stat-card { box-shadow: none; }
[data-theme="light"] .hiw-card:hover { background: #f8f8fa; }
[data-theme="light"] .testi-card { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
[data-theme="light"] .testi-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
[data-theme="light"] .enquiry-form { box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
[data-theme="light"] .lp-hero { background: #fff; }
[data-theme="light"] .form-field input,
[data-theme="light"] .form-field textarea { background: #f8f8fa; }
[data-theme="light"] .form-progress { background: #f0f0f3; }
[data-theme="light"] .radio-option { background: #f8f8fa; }
[data-theme="light"] .radio-option:hover { border-color: var(--accent); background: rgba(204,0,37,0.04); }
[data-theme="light"] .nav-drawer a { color: #3a3a48; }
[data-theme="light"] .nav-drawer a:hover { color: var(--text); background: #f0f0f4; }
[data-theme="light"] .contact-form-card { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
[data-theme="light"] .hours-card { background: #f8f8fa; }
[data-theme="light"] .lp-spec-card { background: #fff; box-shadow: 0 1px 8px rgba(0,0,0,0.05); }
[data-theme="light"] .lp-hero-img .glow { background: radial-gradient(circle, rgba(204,0,37,0.12), transparent 70%); }
[data-theme="light"] .page-banner::before {
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(204,0,37,0.05), transparent 70%);
}
[data-theme="light"] .cta-band { background: var(--accent); }
[data-theme="light"] .back-to-top { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
[data-theme="light"] .feature-item { background: #f8f8fa; }
[data-theme="light"] .feature-item:hover { background: #fff; }
[data-theme="light"] .trust-strip img { filter: brightness(0); opacity: 0.55; }
[data-theme="light"] .footer-cert img { filter: brightness(0); opacity: 0.45; }
[data-theme="light"] .about-logo { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12)); }

/* ═══════════════════════════════════════════
   CROSS-BROWSER & GLOBAL MOBILE OPTIMISATIONS
═══════════════════════════════════════════ */

/* ── Prevent horizontal overflow on every page ── */
html, body { max-width: 100%; overflow-x: hidden; }

/* ── Fix 100vh on iOS Safari (desktop only) ── */
@media (min-width: 769px) {
  .hero { min-height: 100vh; min-height: 100svh; }
}
@supports not (min-height: 100svh) {
  @media (min-width: 769px) { .hero { min-height: 100vh; } }
}

/* ── Improve tap targets on touch devices ── */
@media (pointer: coarse) {
  .btn-primary, .btn-ghost,
  .nav-phone, .nav-drawer a,
  .contact-info-card, .whatsapp-btn,
  .carousel-arrow, .hero-dot { min-height: 44px; }
  .hero-dot { min-width: 20px; min-height: 20px; padding: 6px; }
}

/* ── Smooth momentum scrolling on iOS ── */
main, .nav-drawer, .enquiry-form { -webkit-overflow-scrolling: touch; }

/* ── Fix backdrop-filter on older Safari/Edge ── */
.site-header,
.nav-drawer,
.carousel-arrow {
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
          backdrop-filter: blur(20px) saturate(1.4);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header  { background: var(--header-bg-scroll) !important; }
  .nav-drawer   { background: var(--nav-drawer-bg) !important; }
  .carousel-arrow { background: rgba(0,0,0,0.55); }
}

/* ── Fix flexbox gap in older Safari (< 14.1) ── */
@supports not (gap: 1px) {
  .hero-btns > * + * { margin-left: 12px; }
  .nav-links > * + *  { margin-left: 4px; }
  .hero-specs > * + * { margin-top: 10px; }
  .footer-social > * + * { margin-left: 8px; }
}

/* ── Prevent font scaling on device orientation change (iOS) ── */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

/* ── Fix image rendering across browsers ── */
img {
  -ms-interpolation-mode: bicubic;
  image-rendering: -webkit-optimize-contrast;
}

/* ── Contact page: stack grid on tablets too ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map iframe { height: 220px; }
}

/* ── Fix footer newsletter form on small screens ── */
@media (max-width: 480px) {
  .footer-form { -webkit-flex-direction: column; flex-direction: column; }
  .footer-form input,
  .footer-form button { width: 100%; }
  .footer-bottom { -webkit-flex-direction: column; flex-direction: column; text-align: center; }
}

/* ── Prevent button text wrapping on very small screens ── */
@media (max-width: 360px) {
  .btn-primary, .btn-ghost { white-space: normal; text-align: center; }
}

/* ── Fix for Microsoft Edge Legacy (EdgeHTML) and IE11 ── */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero-carousel { min-height: 580px; }
  .hero-slide { opacity: 0; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
  .hero-slide.active { opacity: 1; }
  .hero-img { height: 480px; }
}

/* ── Print styles ── */
@media print {
  .site-header, .nav-drawer, .whatsapp-fab, .back-to-top,
  .carousel-arrow, .hero-nav { display: none !important; }
  body { background: #fff; color: #000; }
}