:root {
  --logo-scale: 0.5; /* Default scale, adjust this value to control the shrinking size */

  /* New tokens for this page */
  --apw-teal: #18B19C;
  --apw-ink-900: #e7ecf2;
  --apw-ink-700: #a8b0bb;
  --apw-metal: #d7dee7;
  --apw-bg-deep: #0b0e13;
  --apw-panel: rgba(255,255,255,0.08);
  --apw-panel-2: rgba(255,255,255,0.04);
  --apw-ring: rgba(127,212,255,0.6);
  --apw-glass-b: rgba(255,255,255,0.14);
  --apw-glass-sheen: rgba(255,255,255,0.07);
  --apw-radius-lg: 20px;
  --apw-radius-md: 14px;
  --apw-shadow: 0 10px 28px rgba(0,0,0,.28);
  --apw-shadow-lg: 0 16px 42px rgba(0,0,0,.34);
}

/* ===== FULL-BLEED PAGE FIX ===== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0b0e13; /* keep your dark base */
  overflow-x: hidden;   /* prevent side scroll */
}

main, .apw-theme, section {
  width: 100vw;           /* full viewport width */
  max-width: 100vw;
  box-sizing: border-box; /* padding doesn't shrink it */
  margin: 0;
  padding: 0;
}

/* ===================== KEEP: LOADING (unchanged) ===================== */
/* ===== SPLASH / LOADING OVERLAY ===== */
#loading{
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 1;
  transition: opacity .6s ease;
}

#loading.hide{
  opacity: 0;
  pointer-events: none;
}

.loading-logo{
  width: 100px;
  will-change: transform;
  /* animation applied dynamically via .fly class */
}

/* spin then fly: we’ll set --fly-x / --fly-y from JS */
.loading-logo.fly{
  animation:
    splashSpin 1.2s ease-in-out 0s 1,
    flyToLogo 0.9s cubic-bezier(.2,.7,.2,1) 1.2s 1 forwards;
}

@keyframes splashSpin{
  from{ transform: translate(0,0) scale(1) rotate(0deg); }
  to  { transform: translate(0,0) scale(1) rotate(360deg); }
}

@keyframes flyToLogo{
  to{ transform: translate(var(--fly-x, 0px), var(--fly-y, -45vh)) scale(var(--logo-scale, .5)); }
}

/* ===== FORCE-CENTER THE LOGO (manual nudge ready) ===== */
:root{
  --logo-nudge-x: 0px; /* tweak this to slide logo left(-) / right(+) */
}

/* Hard-size the navbar logo so it never explodes */
.logo {
  height: 48px;           /* pick 44–56px if you like */
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 480px){
  .logo { height: 40px; }
}

/* Make the header reserve space equal to --header-h */
:root { --header-h: 84px; }
header { height: var(--header-h); }
.navbar { min-height: var(--header-h); }
.apw-theme{ padding-top: var(--header-h); }  /* you already have this */


header { position: fixed; left: 0; right: 0; z-index: 2000; }

/* make navbar a positioning context */
.navbar{
  position: relative !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 16px;
}

/* hard center: independent of cart/menu widths */
.logo-link{
  position: absolute !important;
  left: 50%;
  transform: translateX(calc(-50% + var(--logo-nudge-x)));
  display: inline-flex;
  align-items: center;
  z-index: 2100;          /* stays above background */
  pointer-events: auto;   /* clickable */
}

/* keep cart on left and clickable */
#header-cart-btn{
  grid-column: 1;
  justify-self: start;
  position: relative;
  width: 36px; height: 36px; display: grid; place-items: center;
  z-index: 2100;
}
#header-cart-btn .cart-icon{ width:22px; height:22px; display:block; }

/* badge: smaller + higher so it doesn't cover icon */
#header-cart-btn .cart-count{
  position: absolute;
  top: -7px; right: -7px;      /* raise & tuck */
  min-width: 14px; height: 14px; line-height: 14px;
  font-size: 10px; padding: 0 4px; border-radius: 999px;
  background: var(--apw-teal,#67C1FF); color:#fff; font-weight:700; text-align:center;
  box-shadow: 0 0 0 2px #fff;
}

/* keep hamburger on right and always clickable */
#menu-toggle{
  grid-column: 3;
  justify-self: end;
  position: relative;
  background: none; border: 0; cursor: pointer;
  z-index: 2100;
}

/* menu sheet sits under the header controls, over the page */
:root{ --header-h: 84px; }                 /* adjust if your header is taller */
#nav-menu{
  position: fixed; top: var(--header-h); left: 0; right: 0;
  z-index: 2050;                           /* below cart/menu (2100) */
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
#nav-menu.active{ opacity:1; transform:none; pointer-events:auto; }

/* content offset so header doesn’t cover the top */
.apw-theme{ padding-top: var(--header-h); }


/* =========================
 LUX THEME TOKENS
 ========================= */
:root {
  /* Palette */
  --lux-bg-deep: #0b0e13;
  --lux-bg: #0e1218;
  --lux-panel: #11161e;
  --lux-ink: #e8ebef;
  --lux-ink-dim: #a9b2bd;
  --lux-line: rgba(255,255,255,0.08);

  /* Accents */
  --lux-gold: #c8a96a;         /* champagne gold */
  --lux-gold-soft: #e6dcc7;    /* soft highlight */
  --lux-platinum: #d9dde4;     /* cool metal edge */

  /* Shadows / radiance */
  --lux-shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --lux-shadow-md: 0 8px 24px rgba(0,0,0,0.35);

  /* Type scale */
  --title-size: clamp(2.4rem, 2.2rem + 1.2vw, 4rem);
  --subtitle-size: clamp(1.1rem, 1rem + 0.6vw, 1.6rem);

  /* Header spacing (assumes fixed header height ~84px) */
  --header-h: 84px;
}

/* =========================
   GENERIC FULL-BLEED SECTIONS
   ========================= */
.section {
  position: relative;
  width: 100%;
  color: var(--lux-ink);
  text-align: center;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(1200px 800px at 80% -10%, #151b25 0%, transparent 60%),
              radial-gradient(900px 700px at -10% 100%, #0f141c 0%, transparent 60%),
              linear-gradient(180deg, var(--lux-bg), var(--lux-bg-deep) 45%, var(--lux-bg) 100%);
}

.section.fullscreen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
  z-index: -1;
}

.text-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: 16px;
}

.title {
  font-family: 'Montserrat', 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.05;
  font-size: var(--title-size);
  margin: 0;
  color: var(--lux-ink);
  text-shadow: 0 6px 18px rgba(0,0,0,0.5);
  /* Subtle gold sheen */
  background: linear-gradient(180deg, var(--lux-ink) 60%, var(--lux-platinum));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--subtitle-size);
  font-weight: 600;
  margin: 8px 0 0;
  color: var(--lux-gold);
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

@media (max-width: 768px) {
  .section.fullscreen { height: 60vh; }
}

/* ---------- Black divider, reimagined as deep luxury divider ---------- */
.section.black-divider {
  width: 100%;
  height: 43vh;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0c1016, #0a0e14 70%, #0c1016);
  border-block: 1px solid var(--lux-line);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}

.section.black-divider h2 {
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 3rem);
  font-family: 'Montserrat', 'Lato', system-ui, sans-serif;
  font-weight: 800;
  color: var(--lux-gold);
  margin-bottom: 12px;
  letter-spacing: .03em;
}

.section.black-divider p {
  font-size: clamp(1rem, 0.95rem + .4vw, 1.25rem);
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--lux-ink-dim);
  line-height: 1.6;
  max-width: 900px;
}

@media (max-width: 768px) {
  .section.black-divider {
    height: auto;
    padding: 20px 16px;
  }
}

/* ===================== HEADER CART: compact rounded + correct badge ===================== */
.cart-button{
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.cart-icon-wrapper{
  position: relative;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--lux-shadow-sm);
  transition: box-shadow .2s ease, transform .08s ease, background .2s ease;
}

.cart-icon-wrapper:hover{
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

.cart-icon{
  width: 22px; height: 22px; object-fit: contain; display: block;
}

/* Badge uses gold now */
.cart-count{
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: var(--lux-gold);
  color: #111;
  font-size: 11px; font-weight: 800; line-height: 18px; text-align: center;
  box-shadow: 0 0 0 2px #fff; /* white ring for separation */
}

@media (max-width: 480px){
  .cart-icon-wrapper{ width: 34px; height: 34px; }
  .cart-icon{ width: 20px; height: 20px; }
  .cart-count{ top: -3px; right: -3px; min-width: 16px; height: 16px; line-height: 16px; font-size: 10px; }
}

:root {
  --logo-scale: 0.5; /* Default scale, adjust this value to control the shrinking size */

  /* New tokens for this page */
  --apw-teal: #18B19C;
  --apw-ink-900: #e7ecf2;
  --apw-ink-700: #a8b0bb;
  --apw-metal: #d7dee7;
  --apw-bg-deep: #0b0e13;
  --apw-panel: rgba(255,255,255,0.08);
  --apw-panel-2: rgba(255,255,255,0.04);
  --apw-ring: rgba(127,212,255,0.6);
  --apw-glass-b: rgba(255,255,255,0.14);
  --apw-glass-sheen: rgba(255,255,255,0.07);
  --apw-radius-lg: 20px;
  --apw-radius-md: 14px;
  --apw-shadow: 0 10px 28px rgba(0,0,0,.28);
  --apw-shadow-lg: 0 16px 42px rgba(0,0,0,.34);
}

/* ===== FULL-BLEED PAGE FIX ===== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0b0e13; /* keep your dark base */
  overflow-x: hidden;   /* prevent side scroll */
}

main, .apw-theme, section {
  width: 100vw;           /* full viewport width */
  max-width: 100vw;
  box-sizing: border-box; /* padding doesn't shrink it */
  margin: 0;
  padding: 0;
}

/* ===================== KEEP: LOADING (unchanged) ===================== */
/* ===== SPLASH / LOADING OVERLAY ===== */
#loading{
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 1;
  transition: opacity .6s ease;
}

#loading.hide{
  opacity: 0;
  pointer-events: none;
}

.loading-logo{
  width: 100px;
  will-change: transform;
  /* animation applied dynamically via .fly class */
}

/* spin then fly: we’ll set --fly-x / --fly-y from JS */
.loading-logo.fly{
  animation:
    splashSpin 1.2s ease-in-out 0s 1,
    flyToLogo 0.9s cubic-bezier(.2,.7,.2,1) 1.2s 1 forwards;
}

@keyframes splashSpin{
  from{ transform: translate(0,0) scale(1) rotate(0deg); }
  to  { transform: translate(0,0) scale(1) rotate(360deg); }
}

@keyframes flyToLogo{
  to{ transform: translate(var(--fly-x, 0px), var(--fly-y, -45vh)) scale(var(--logo-scale, .5)); }
}

/* ===== FORCE-CENTER THE LOGO (manual nudge ready) ===== */
:root{
  --logo-nudge-x: 0px; /* tweak this to slide logo left(-) / right(+) */
}

/* Hard-size the navbar logo so it never explodes */
.logo {
  height: 48px;           /* pick 44–56px if you like */
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 480px){
  .logo { height: 40px; }
}

/* Make the header reserve space equal to --header-h */
:root { --header-h: 84px; }
header { height: var(--header-h); }
.navbar { min-height: var(--header-h); }
.apw-theme{ padding-top: var(--header-h); }  /* you already have this */


header { position: fixed; left: 0; right: 0; z-index: 2000; }

/* make navbar a positioning context */
.navbar{
  position: relative !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 16px;
}

/* hard center: independent of cart/menu widths */
.logo-link{
  position: absolute !important;
  left: 50%;
  transform: translateX(calc(-50% + var(--logo-nudge-x)));
  display: inline-flex;
  align-items: center;
  z-index: 2100;          /* stays above background */
  pointer-events: auto;   /* clickable */
}

/* keep cart on left and clickable */
#header-cart-btn{
  grid-column: 1;
  justify-self: start;
  position: relative;
  width: 36px; height: 36px; display: grid; place-items: center;
  z-index: 2100;
}
#header-cart-btn .cart-icon{ width:22px; height:22px; display:block; }

/* badge: smaller + higher so it doesn't cover icon */
#header-cart-btn .cart-count{
  position: absolute;
  top: -7px; right: -7px;      /* raise & tuck */
  min-width: 14px; height: 14px; line-height: 14px;
  font-size: 10px; padding: 0 4px; border-radius: 999px;
  background: var(--apw-teal,#67C1FF); color:#fff; font-weight:700; text-align:center;
  box-shadow: 0 0 0 2px #fff;
}

/* keep hamburger on right and always clickable */
#menu-toggle{
  grid-column: 3;
  justify-self: end;
  position: relative;
  background: none; border: 0; cursor: pointer;
  z-index: 2100;
}

/* menu sheet sits under the header controls, over the page */
:root{ --header-h: 84px; }                 /* adjust if your header is taller */
#nav-menu{
  position: fixed; top: var(--header-h); left: 0; right: 0;
  z-index: 2050;                           /* below cart/menu (2100) */
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
#nav-menu.active{ opacity:1; transform:none; pointer-events:auto; }

/* content offset so header doesn’t cover the top */
.apw-theme{ padding-top: var(--header-h); }


/* =========================
 LUX THEME TOKENS
 ========================= */
:root {
  /* Palette */
  --lux-bg-deep: #0b0e13;
  --lux-bg: #0e1218;
  --lux-panel: #11161e;
  --lux-ink: #e8ebef;
  --lux-ink-dim: #a9b2bd;
  --lux-line: rgba(255,255,255,0.08);

  /* Accents */
  --lux-gold: #c8a96a;         /* champagne gold */
  --lux-gold-soft: #e6dcc7;    /* soft highlight */
  --lux-platinum: #d9dde4;     /* cool metal edge */

  /* Shadows / radiance */
  --lux-shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --lux-shadow-md: 0 8px 24px rgba(0,0,0,0.35);

  /* Type scale */
  --title-size: clamp(2.4rem, 2.2rem + 1.2vw, 4rem);
  --subtitle-size: clamp(1.1rem, 1rem + 0.6vw, 1.6rem);

  /* Header spacing (assumes fixed header height ~84px) */
  --header-h: 84px;
}

/* ===========================
   AP Custom Watches — Landing
   =========================== */

/* ---- Theme Tokens ---- */
:root {
  --apw-bg-deep: #0b0e13;
  --apw-panel: rgba(255,255,255,0.06);
  --apw-panel-2: rgba(255,255,255,0.04);
  --apw-glass-b: rgba(255,255,255,0.12);
  --apw-glass-sheen: rgba(255,255,255,0.075);
  --apw-ring: rgba(127,212,255,0.5);
  --apw-ink-1000: #f4f7fb;  /* Headlines */
  --apw-ink-900: #e7ecf2;   /* Body */
  --apw-ink-700: #a9b2bf;   /* Muted */
  --apw-teal: #18B19C;      /* Accent */
  --apw-gold: #c6a560;      /* Subtle luxe accent; used sparingly */

  --apw-radius-lg: 20px;
  --apw-radius-md: 14px;
  --apw-radius-sm: 10px;

  --apw-shadow: 0 18px 40px rgba(0,0,0,.35);
  --apw-shadow-soft: 0 12px 28px rgba(0,0,0,.26);
  --apw-maxw: 1200px;
  --apw-gap: clamp(16px, 2.2vw, 28px);

  --apw-card-border: 1px solid rgba(255,255,255,0.08);
  --apw-gradient: radial-gradient(1200px 700px at 80% -10%, rgba(24,177,156,0.12), transparent 60%),
                  radial-gradient(900px 600px at -10% 120%, rgba(198,165,96,0.06), transparent 55%);
}

/* ---- Page Base ---- */
.page {
  color: var(--apw-ink-900);
  background: var(--apw-bg-deep);
  background-image: var(--apw-gradient);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

.page * {
  box-sizing: border-box;
}

.page section,
.page .trust,
.page .other-products {
  width: min(100%, var(--apw-maxw));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 28px);
}

/* ---- Headings & Type ---- */
h1, h2, h3, h4 {
  color: var(--apw-ink-1000);
  letter-spacing: .2px;
  line-height: 1.2;
  margin: 0 0 .4em;
  margin-top: 90px;
}

h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 750; }
h3 { font-size: clamp(18px, 2.1vw, 22px); font-weight: 700; }
h4 { font-size: clamp(16px, 1.8vw, 18px); font-weight: 700; }

.lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--apw-ink-900);
  opacity: .95;
}

.sub {
  color: var(--apw-ink-900);
  opacity: .9;
  font-size: clamp(16px, 1.7vw, 20px);
  margin-top: 8px;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 5vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) 0;
  margin-top: clamp(8px, 3vw, 16px);
}

.hero .bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--apw-panel), var(--apw-panel-2));
  border: var(--apw-card-border);
  box-shadow: inset 0 1px 0 var(--apw-glass-sheen);
  font-size: 13px;
  color: var(--apw-ink-900);
  white-space: nowrap;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Hero Art */
.hero .art {
  position: relative;
  isolation: isolate;
}
.hero .art::after {
  content: "";
  position: absolute;
  inset: -6%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(24,177,156,0.18), transparent 60%);
  filter: blur(30px);
  z-index: -1;
}
.hero .art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--apw-radius-lg);
  border: var(--apw-card-border);
  box-shadow: var(--apw-shadow);
  transform: translateZ(0);
  transition: transform .5s ease;
}
.hero .art img:hover { transform: translateY(-4px); }

/* ---- Buttons ---- */
.btn {
  --btn-bg: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  --btn-text: var(--apw-ink-1000);
  --btn-border: var(--apw-card-border);
  --btn-ring: 0 0 0 0 rgba(24,177,156,0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: var(--btn-border);
  box-shadow: inset 0 1px 0 var(--apw-glass-sheen), 0 8px 14px rgba(0,0,0,.18);
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 var(--apw-glass-sheen), 0 12px 20px rgba(0,0,0,.24); }
.btn:active { transform: translateY(0); }

.btn-primary {
  --btn-bg: linear-gradient(180deg, rgba(24,177,156,.22), rgba(24,177,156,.18));
  --btn-border: 1px solid rgba(24,177,156,.45);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
.btn-ghost {
  --btn-bg: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
}

/* ---- Trust Strip ---- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--apw-gap);
  margin: 14px auto clamp(14px, 3vw, 26px);
}
.trust .tile {
  background: linear-gradient(180deg, var(--apw-panel), var(--apw-panel-2));
  border: var(--apw-card-border);
  border-radius: var(--apw-radius-md);
  padding: 14px 16px;
  text-align: center;
  box-shadow: var(--apw-shadow-soft);
  font-size: 14px;
  color: var(--apw-ink-900);
}
.trust .tile strong {
  color: var(--apw-ink-1000);
  font-weight: 800;
}

/* ---- Sections ---- */
.section {
  padding: clamp(26px, 5vw, 58px) 0;
}

/* ---- Three-up Cards ---- */
.grid-3 {
  display: grid;
  gap: var(--apw-gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}
.card {
  background: linear-gradient(180deg, var(--apw-panel), var(--apw-panel-2));
  border: var(--apw-card-border);
  border-radius: var(--apw-radius-lg);
  padding: clamp(16px, 2.6vw, 22px);
  box-shadow: var(--apw-shadow-soft);
}
.card p { color: var(--apw-ink-900); opacity: .95; }

/* ---- Process Steps (Timeline) ---- */
.steps {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}
.step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 14px 14px 0;
  position: relative;
}
.step > div:first-child {
  position: relative;
  margin-top: 6px;
  width: 28px; height: 28px;
}
.step > div:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, rgba(255,255,255,0.85) 18%, rgba(24,177,156,.35) 65%, rgba(24,177,156,.05) 100%);
  border: 1px solid rgba(24,177,156,.5);
  box-shadow: 0 0 0 6px rgba(24,177,156,.06), 0 6px 18px rgba(0,0,0,.35);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 42px;
  width: 2px;
  height: calc(100% - 34px);
  background: linear-gradient(180deg, rgba(24,177,156,.4), rgba(24,177,156,.05));
}
.step h4 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--apw-ink-900); opacity: .95; }

/* ---- Testimonials ---- */
.quotes {
  display: grid;
  gap: var(--apw-gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}
.quote {
  padding: 18px;
  border-radius: var(--apw-radius-lg);
  border: var(--apw-card-border);
  background:
    linear-gradient(180deg, var(--apw-panel), var(--apw-panel-2)),
    radial-gradient(600px 220px at 10% -20%, rgba(24,177,156,.12), transparent 60%);
  box-shadow: var(--apw-shadow-soft);
}
.quote p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--apw-ink-1000);
  margin: 0 0 10px;
}
.quote .who {
  color: var(--apw-ink-700);
  font-size: 13px;
}

/* ---- CTA Band ---- */
.cta-band {
  text-align: center;
  padding: clamp(24px, 5vw, 56px) 0;
  margin-top: 6px;
  border-radius: var(--apw-radius-lg);
  background:
    linear-gradient(180deg, rgba(24,177,156,.08), rgba(24,177,156,.05)),
    linear-gradient(180deg, var(--apw-panel), var(--apw-panel-2));
  border: var(--apw-card-border);
  box-shadow: var(--apw-shadow);
}

/* ---- Popular Platforms / Product Cards ---- */
.other-products {
  padding: clamp(20px, 4.5vw, 52px) 0;
}
.product-card-container {
  display: grid;
  gap: var(--apw-gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}
.product-card {
  background: linear-gradient(180deg, var(--apw-panel), var(--apw-panel-2));
  border: var(--apw-card-border);
  border-radius: var(--apw-radius-lg);
  padding: 14px;
  box-shadow: var(--apw-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--apw-shadow); }
.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--apw-radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1117;
}
.product-title {
  margin: 2px 2px 8px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 750;
  color: var(--apw-ink-1000);
}
.view-details-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  color: var(--apw-ink-1000);
  transition: transform .15s ease;
}
.view-details-btn:hover { transform: translateY(-1px); }

.add-to-cart-btn {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(24,177,156,.45);
  background: linear-gradient(180deg, rgba(24,177,156,.22), rgba(24,177,156,.18));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease;
  box-shadow: 0 10px 18px rgba(24,177,156,.18);
}
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(24,177,156,.26); }
.add-to-cart-btn:active { transform: translateY(0); }

/* ---- Utility Alignments ---- */
.emph { color: var(--apw-teal); }
.muted { color: var(--apw-ink-700); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero .art { order: -1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .product-card-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .trust { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .product-card-container { grid-template-columns: 1fr; }
  .cta-row { width: 100%; }
  .cta-row .btn { flex: 1 1 auto; }
}

/* ---- Nice Focus States (A11y) ---- */
:where(a, button, .btn, .view-details-btn, .add-to-cart-btn) {
  outline: none;
}
:where(a, button, .btn, .view-details-btn, .add-to-cart-btn):focus-visible {
  box-shadow: 0 0 0 3px rgba(255,255,255,.15), 0 0 0 6px var(--apw-ring);
}

/* ---- Subtle Entrances ---- */
@media (prefers-reduced-motion: no-preference) {
  .hero > div, .hero .art, .trust .tile, .card, .quote, .product-card {
    animation: apwFadeUp .6s ease both;
  }
  .hero > div { animation-delay: .02s; }
  .hero .art { animation-delay: .08s; }
  .trust .tile:nth-child(1) { animation-delay: .06s; }
  .trust .tile:nth-child(2) { animation-delay: .12s; }
  .trust .tile:nth-child(3) { animation-delay: .18s; }
  .trust .tile:nth-child(4) { animation-delay: .24s; }
}

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

  
  /* ====================== CART (OVERLAY + SIDE DRAWER) ====================== */
  
  /* Prevent background scroll when cart is open */
  body.modal-open { overflow: hidden; }
  
  /* Overlay: hidden by default; clickable when active */
  #cart-modal-overlay.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 2150;                           /* below cart (2200), above page */
    transition: opacity .3s ease, visibility 0s linear .3s;
  }
  #cart-modal-overlay.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .3s ease;
  }
  
  /* ---------- Side Cart Drawer ---------- */
  /* Requires: <div id="cart-modal" class="side-cart"> */
  :root { --header-h: 84px; }                /* match your header height */
  
  .side-cart {
    position: fixed;
    top: var(--header-h, 84px);
    right: -100%;
    height: calc(100vh - var(--header-h, 84px));
    width: min(420px, 92vw);                 /* default width on tablets/desktop */
    background: #fff;
    color: #0d1116;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 40px rgba(0,0,0,.35);
    border-left: 1px solid #e5e7eb;
    transition: right .3s ease;
  }
  .side-cart.active { right: 0; }
  
  /* ~1/3 screen on wide displays */
  @media (min-width: 1100px) {
    .side-cart { width: 33.333vw; max-width: 560px; }
  }
  
  /* Fullscreen on small phones */
  @media (max-width: 600px) {
    .side-cart {
      top: 0;
      height: 100vh;
      width: 100vw;
    }
  }
  
  /* ---------- Header / Content / Footer ---------- */
  .side-cart .cart-modal-header,
  .side-cart .cart-modal-content,
  .side-cart .cart-modal-footer {
    padding: 20px;
  }
  
  .side-cart .cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
  }
  .side-cart .cart-modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
  }
  .side-cart #cart-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    color: #111827;
    line-height: 1;
  }
  
  /* Scrollable items area */
  .side-cart .cart-modal-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: #374151;
  }
  
  /* Footer with subtotal + checkout */
  .side-cart .cart-modal-footer {
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .side-cart .cart-subtotal-text {
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
  }
  .side-cart .cart-subtotal-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #374151;
    margin-left: 8px;
  }
  .side-cart .checkout-btn {
    margin-left: auto;
    background: #000;
    color: #fff;
    padding: 12px 16px;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .25s ease, background-color .2s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    max-width: 50%;
  }
  .side-cart .checkout-btn:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
  }
  
  /* ---------- Cart Item Rows ---------- */
  .side-cart .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .side-cart .cart-item:last-child { border-bottom: none; }
  
  .side-cart .cart-item-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .side-cart .cart-item-details {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0; /* enable ellipsis */
  }
  
  .side-cart .cart-item-name {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .side-cart .cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d1d5db;
    padding: 6px;
    border-radius: 8px;
    height: 36px;
    background: #fff;
  }
  .side-cart .quantity-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
  }
  .side-cart .quantity-value {
    width: 28px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .side-cart .cart-item-price {
    margin-left: auto;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
  }
  
  .side-cart .remove-item-btn {
    font-size: .85rem;
    font-weight: 800;
    color: #111827;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    align-self: center;
    height: 36px;
    display: flex;
    align-items: center;
  }
  
  /* Optional: terms checkbox row (if you use it) */
  .side-cart .terms-checkbox-container {
    margin: 10px 0;
    font-size: 14px;
    align-self: flex-start;
  }
  .side-cart .terms-checkbox-container input[type="checkbox"] { margin-right: 6px; }
  
  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 600px) {
    .side-cart .cart-item { flex-wrap: wrap; justify-content: flex-start; }
    .side-cart .cart-item-thumbnail {
      width: 64px; height: 64px; margin-bottom: 8px;
    }
    .side-cart .cart-item-name { font-size: .95rem; }
    .side-cart .cart-item-price { font-size: .95rem; margin-top: 4px; }
    .side-cart .cart-item-quantity { margin-top: 8px; }
    .side-cart .checkout-btn { max-width: 100%; }
    .side-cart .cart-modal-footer { flex-wrap: wrap; gap: 10px; }
  }

/* Footer Styles */
.site-footer {
  background-color: #414141; /* Dark grey background */
  color: #fff; /* White text */
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative; /* To ensure footer-bottom can align correctly */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Navigation, Social Media, and Info */
.footer-nav,
.footer-social,
.footer-info {
  flex: 1 1 calc(33.33% - 20px); /* Responsive grid */
  min-width: 200px;
}

.footer-nav h3,
.footer-social h3,
.footer-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
  color: #ccc; /* Light grey links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
  color: #C2A671; /* Green hover color */
}

/* Footer Info Section */
.footer-info {
  font-size: 0.9rem;
  color: #ccc; /* Light grey text */
  line-height: 1.6; /* Better readability */
}

.footer-info p {
  margin: 10px 0; /* Add spacing between lines */
}

.footer-info a {
  color: #C2A671; /* Replace with your brand's specific green color code */
  text-decoration: none; /* Optional: removes underline from the link */
}

.footer-info a:hover {
  color: #C2A671; /* Darker green for hover, adjust as needed */
  text-decoration: underline; /* Optional: adds underline on hover for better usability */
}


/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #bbb; /* Lighter grey for bottom text */
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  font-size: 1rem; /* Slightly larger for clarity */
  font-weight: bold; /* Make Reel Free stand out */
  color: #fff;
}

.footer-brand {
  font-weight: 700; /* Bold */
  color: #fff;
}

.footer-year {
  font-weight: 500; /* Medium */
  color: #ccc;
}

.footer-rights {
  font-weight: 300; /* Light */
  color: #bbb;
}

.footer-divider {
  margin: 0 0.3rem;
  color: #999;
}

/* Media Query for Footer */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column; /* Stack footer sections vertically */
      align-items: center;
      text-align: center;
  }

  .footer-nav,
  .footer-social,
  .footer-info {
      flex: 1 1 100%; /* Each section takes full width */
      margin-bottom: 20px; /* Add spacing between stacked sections */
  }

  .footer-bottom {
      margin-top: 20px; /* Adjust margin for smaller screens */
  }
}

/* ===========================
 Footer Chatbot Launcher
 =========================== */

 .footer-chat {
  /* mobile: flows under contact email */
  margin-top: 14px;
}

.rf-chatnote {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #9fd8cf; /* subtle teal tint under dark footer */
}

/* The pill button with two words: Help • Chat */
.rf-chatbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 0;
  background: #18B19C;         /* brand teal */
  color: #0c2b27;               /* ink on teal */
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2, 24, 43, 0.18);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rf-chatbtn:hover { transform: translateY(-1px); }
.rf-chatbtn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(2, 24, 43, 0.16); }
.rf-chatbtn:focus-visible { outline: 3px solid #67C1FF; outline-offset: 2px; }

.rf-chatbtn-help { opacity: 0.95; }
.rf-chatbtn-dot  { opacity: 0.75; }
.rf-chatbtn-chat {
  background: #ffffff;
  color: #09443c;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
  font-weight: 800;
}

/* Desktop positioning: attach to bottom-right corner of the footer */
@media (min-width: 768px) {
  .site-footer {
    position: relative; /* already present, ensures absolute positioning is relative */
  }
  .footer-chat {
    position: absolute;
    right: 18px;
    bottom: 18px;
    margin-top: 0; /* override mobile spacing */
    text-align: right;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rf-chatbtn { transition: none !important; }
}
