/* ===========================
   IntelliScents Landing Page Theme
   Full Light/Dark Token System
   =========================== */

/* -----------------------------------
   1) BASE TOKEN SYSTEM (LIGHT MODE)
----------------------------------- */
:root {
  /* Core surfaces */
  --bg: #fdfdfc;
  --surface: #ffffff;
  --surface-2: #f5f6f8;
  --card-bg: #ffffff;

  /* Text */
  --ink: #111418;
  --ink-2: #53565a;

  /* Borders & dividers */
  --rule: #e5e7ea;
  --card-border: #d5d8dc;

  /* Shadows */
  --shadow: 0 8px 24px rgba(0,0,0,0.06);

  /* Gradients (silver/gold) */
  --silver-grad: linear-gradient(180deg,#ffffff 0%,#e9ecef 100%);
  --gold-grad: linear-gradient(180deg,#fff5da 0%,#f0d07c 100%);

  /* CTA green */
  --go-green: linear-gradient(180deg,#4CAF50 0%,#3E8E41 100%);
  --go-green-border: #3E8E41;

  /* Grid lines */
  --grid-line: rgba(180,185,195,0.06);

  /* Radius */
  --rad: 14px;

  /* Layout max width */
  --max: 1200px;

  --icon-color: #3a6ce8;
}

/* -----------------------------------
   2) SYSTEM DARK MODE (prefers-color-scheme)
----------------------------------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1112;
    --surface: #181a1c;
    --surface-2: #222426;
    --card-bg: #181a1c;

    --ink: #e8eaed;
    --ink-2: #969a9f;

    --rule: #292c2f;
    --card-border: #2f3236;

    --shadow: 0 8px 24px rgba(0,0,0,0.55);

    --silver-grad: linear-gradient(180deg,#26282b 0%,#2f3134 100%);
    --gold-grad: linear-gradient(180deg,#534623 0%,#6b592c 100%);

    --go-green: linear-gradient(180deg,#3fa746 0%,#348c3b 100%);
    --go-green-border: #2b6d32;

    --grid-line: rgba(255,255,255,0.04);
  }
}

/* -----------------------------------
   3) MANUAL OVERRIDE (html.dark)
   - This ALWAYS wins over system mode
----------------------------------- */
html.dark {
  color-scheme: dark;
}

html.dark {
  --bg: #0f1112;
  --surface: #181a1c;
  --surface-2: #222426;
  --card-bg: #181a1c;

  --ink: #e8eaed;
  --ink-2: #969a9f;

  --rule: #292c2f;
  --card-border: #2f3236;

  --shadow: 0 8px 24px rgba(0,0,0,0.55);

  --silver-grad: linear-gradient(180deg,#26282b 0%,#2f3134 100%);
  --gold-grad: linear-gradient(180deg,#534623 0%,#6b592c 100%);

  --go-green: linear-gradient(180deg,#3fa746 0%,#348c3b 100%);
  --go-green-border: #2b6d32;

  --grid-line: rgba(255,255,255,0.04);

  --icon-color: #87aaff;
}

/* ===================================
   GLOBAL STYLES
=================================== */
* { box-sizing:border-box; }

body {
  margin:0;
  background:var(--bg);
  font-family:Roboto,system-ui,-apple-system,Arial;
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  position:relative;
}

/* Subtle background grid */
body::before {
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background-image:
    linear-gradient(var(--grid-line) 1px,transparent 1px),
    linear-gradient(90deg,var(--grid-line) 1px,transparent 1px);
  background-size:80px 80px;
}

/* Layout container */
.wrap {
  max-width:var(--max);
  margin:0 auto;
  padding:24px;
}

/* ===================================
   HEADER
=================================== */
header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid var(--rule);
}

.trust-strip {
  display:flex;
  align-items:center;
  gap:18px;
  font-size:12px;
  color:var(--ink-2);
}

.trust-strip img {
  height:18px;
  opacity:.85;
  filter:grayscale(1);
}

/* -----------------------------------
   Dark mode toggle
----------------------------------- */
.theme-toggle {
  background:none;
  border:1px solid var(--rule);
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-size:16px;
  color:var(--ink);
  transition:background .2s,border-color .2s,color .2s;
}

.theme-toggle:hover {
  background:var(--surface);
}

html.dark .theme-toggle {
  border-color:var(--ink-2);
  color:var(--ink);
}

/* As seen in */
.as-seen {
  display:flex;
  align-items:center;
  gap:24px;
  padding:10px 0 0;
  font-size:12px;
  color:var(--ink-2);
}
.as-seen img {
  height:18px;
  opacity:.85;
  filter:grayscale(1);
}

/* ===================================
   HERO
=================================== */
.hero {
  background:var(--surface-2);
  border-radius:20px;
  padding:36px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-grid {
  display:grid;
  gap:28px;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
}
@media (max-width:900px) {
  .hero-grid { grid-template-columns:1fr; }
}

.hero-visual img {
  width:100%;
  border-radius:16px;
  border:1px solid var(--rule);
  background:var(--surface);
  box-shadow:var(--shadow);
}

.hero-content h1 {
  font-size:clamp(28px,4vw,44px);
  margin:0 0 10px 0;
}

.sub {
  color:var(--ink-2);
  font-size:18px;
  margin-bottom:14px;
}

/* ===================================
   OPTION SELECTOR
=================================== */
.selector {
  display:grid;
  gap:14px;
  margin-top:10px;
}

.option {
  border:1.5px solid var(--rule);
  border-radius:12px;
  background:var(--surface);
  cursor:pointer;
  transition:border-color .25s, box-shadow .25s;
  overflow:hidden;
  box-shadow:0 1px 3px rgba(0,0,0,0.05);
}

.option:hover {
  box-shadow:var(--shadow);
}

.option[data-active="true"] {
  border-color:#0071e3;
}

.option-label {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:18px 20px;
}

/* Left side */
.opt-left { flex:1 1 auto; }
.opt-title { font-weight:700; font-size:18px; margin-bottom:4px; }
.opt-sub { font-size:15px; color:var(--ink-2); }
.opt-bullets {
  margin-top:10px;
  font-size:14px;
  color:var(--ink-2);
}
.opt-bullets li {
  margin-left:18px;
  margin-bottom:4px;
}

/* Right side */
.opt-right {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.2;
}
.opt-price {
  font-size:18px;
  font-weight:700;
  color:var(--ink);
}
.opt-right span:last-child {
  font-size:14px;
  color:var(--ink-2);
}

/* Badge */
.badge {
  display:inline-block;
  margin-left:8px;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--gold-border);
  background:var(--gold-grad);
  color:#111;
  font-weight:600;
}

/* ===================================
   CTA BUTTONS
=================================== */
.cta {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.btn {
  padding:16px 28px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .15s, box-shadow .2s, filter .2s;
  box-shadow:0 3px 8px rgba(0,0,0,0.10);
}

.btn:active { transform:translateY(1px); }

/* Silver → green CTA */
.btn.silver {
  background:var(--go-green);
  border-color:var(--go-green-border);
  color:#fff;
}

/* Gold → also green CTA */
.btn.gold {
  background:var(--go-green);
  border-color:var(--go-green-border);
  color:#fff;
}

.btn.secondary {
  background:var(--surface);
  border:1px solid var(--rule);
  color:var(--ink);
}

/* Chips */
.chips {
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--ink-2);
}

.chip {
  padding:6px 10px;
  background:var(--surface);
  border-radius:999px;
  border:1px solid var(--rule);
}

/* ===================================
   GENERIC SECTIONS
=================================== */
section {
  padding:56px 0;
  border-top:1px solid var(--rule);
}

h2 {
  margin:0 0 22px 0;
  font-size:32px;
  text-align:center;
}

.cols-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
@media (max-width:900px) { .cols-3 { grid-template-columns:1fr; } }

/* Quote cards */
.quote {
  padding:16px;
  border:1px solid var(--card-border);
  border-radius:16px;
  background:var(--card-bg);
  box-shadow:var(--shadow);
  font-style:italic;
}

/* Comparison table */
.table {
  width:100%;
  border-collapse:collapse;
}
.table th,
.table td {
  padding:12px;
  border:1px solid var(--rule);
}
.table thead th {
  background:var(--surface);
}
/* ===========================
   TESTIMONIAL CAROUSEL
   =========================== */
.testimonials {
  padding: 56px 0;
  text-align: center;
}

.testimonial-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 4px 0 20px 0;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.ts-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s ease;
}

.ts-card:hover {
  transform: translateY(-4px);
}

.ts-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ts-stars {
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.ts-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ts-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Arrows */
.ts-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-secondary-bg);
  color: var(--ink);
  border: 1px solid var(--rule);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  z-index: 5;
}

.ts-nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.ts-prev { left: -10px; }
.ts-next { right: -10px; }

/* RESPONSIVE */
@media (max-width:1100px) {
  .ts-card { flex: 0 0 calc(50% - 16px); }
}

@media (max-width:700px) {
  .ts-card { flex: 0 0 85%; }
  .ts-prev { left: 0; }
  .ts-next { right: 0; }
}
/* ===========================
   WHY THIS WORKS — Cards
   =========================== */

.why-works {
  padding: 60px 0;
  position: relative;
}

.why-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, background .3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Image wrapper */
.why-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.why-card h3 {
  text-align: center;
  margin: 20px 0 6px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.why-card p {
  text-align: center;
  padding: 0 20px 24px 20px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
/* ===========================
   WHAT’S IN THE BUNDLE — 3 Columns Layout
   =========================== */

.bundle-features {
  padding: 60px 0;
  position: relative;
}

.bundle-features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

/* 3-column layout */

.bundle-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Center image column */

.bundle-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bundle-center img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Feature blocks */

.bundle-item {
  text-align: center;
  padding: 0 10px;
}

.bundle-icon {
  font-size: 36px;
  color: var(--icon-color);
  margin-bottom: 14px;
}

.bundle-item h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
}

.bundle-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 300px;
  margin: 0 auto;
}

/* Responsive behavior */

@media (max-width: 1100px) {
  .bundle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left right"
      "center center";
    gap: 30px;
  }

  .bundle-col:first-child {
    grid-area: left;
  }

  .bundle-center {
    grid-area: center;
  }

  .bundle-col:last-child {
    grid-area: right;
  }

  .bundle-center img {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .bundle-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right";
  }

  .bundle-col, .bundle-item p {
    max-width: 100%;
  }

  .bundle-center img {
    max-width: 320px;
    margin: 0 auto;
  }
}
.bundle-video {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
/* ===========================
   GUARANTEE — Split Layout
   =========================== */

.guarantee {
  padding: 70px 0;
  position: relative;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Image */
.guarantee-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: 100%;
  max-height: 460px;
  box-shadow: var(--shadow);
}

/* Right side content */
.guarantee-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 34px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.guarantee-subtitle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--ink-2);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.guarantee-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: var(--ink);
}

.guarantee-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 26px;
  max-width: 500px;
}

/* Buttons block */
.guarantee-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Responsive layout */
@media (max-width: 950px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .guarantee-content {
    padding: 32px 26px;
  }
}
/* ===========================
   BLACK BOOK EMAIL CAPTURE
   =========================== */

.blackbook {
  padding: 70px 0;
}

.blackbook-grid {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow);
  max-width: 1200px;
  margin: 0 auto;
}

/* Left image */

.blackbook-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  max-height: 420px;
}

/* Right side */

.blackbook-content {
  display: flex;
  flex-direction: column;
}

.blackbook-heading {
  margin: 0 0 26px 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink);
}

/* Form fields */

.blackbook-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 620px;
}

.blackbook-form input[type="text"],
.blackbook-form input[type="email"] {
  flex: 1 1 48%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}

/* Button */

.blackbook-btn {
  flex: 1 1 100%;
  margin-top: 6px;
  height: 54px;
  font-size: 18px;
  border-radius: 14px;
}

/* Responsive */

@media (max-width: 950px) {
  .blackbook-grid {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .blackbook-image img {
    max-height: 340px;
    margin: 0 auto;
  }

  .blackbook-heading {
    text-align: center;
    font-size: 34px;
  }

  .blackbook-form {
    justify-content: center;
  }

  .blackbook-btn {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .blackbook-form input[type="text"],
  .blackbook-form input[type="email"] {
    flex: 1 1 100%;
  }
}
/* Blackbook preheading */
.blackbook-preheading {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--ink-2);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Editable body paragraph */
.blackbook-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 26px 0;
}

/* Dark mode tokens are automatic through var(--ink-2) */

/* ================================
   SMELL TIMELINE (High Visibility)
   ================================ */

.smell-timeline {
    padding: 60px 0;
    position: relative;
}

/* Prevent grid from clipping arrows */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 20px;
    overflow: visible;              /* <— IMPORTANT */
}

/* Remove horizontal line */
.timeline-grid::before {
    display: none;
}

:root.dark .timeline-grid::before {
    background: rgba(255,255,255,0.18);
}

/* Timeline item must not clip arrows */
.timeline-item {
    position: relative;
    overflow: visible;              /* <— IMPORTANT */
}

/* Label Above Line */
.timeline-label {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ink);
}

/* HIGH VISIBILITY DOT */
.timeline-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 auto 26px auto;
    position: relative;
    z-index: 3;

    /* Strong accent fill */
    background: var(--accent);

    /* Strong white stroke in light mode */
    border: 3px solid #ffffff;

    /* Glow for visibility */
    box-shadow:
        0 0 4px rgba(0,0,0,0.25),
        0 2px 6px rgba(0,0,0,0.22);
}

/* Dark mode dot stroke + glow */
:root.dark .timeline-dot {
    border: 3px solid #1a1d23;
    box-shadow:
        0 0 6px rgba(0,0,0,0.7),
        0 2px 8px rgba(0,0,0,0.85);
}

/* --------------------------------
   ARROWS BETWEEN ITEMS
-------------------------------- */

/* Arrow line segment */
.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 62px;                      /* aligns with dot */
    right: -28px;                   /* extends into next column */
    width: 26px;
    height: 2px;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

:root.dark .timeline-item:not(:last-child)::after {
    background: rgba(255,255,255,0.45);
}

/* Arrowhead */
.timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 56px;
    right: -26px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(0,0,0,0.45);
    border-right: 2px solid rgba(0,0,0,0.45);
    transform: rotate(45deg);
    z-index: 3;
}

/* ARROWS — DARK MODE OVERRIDE */
:root.dark .timeline-item:not(:last-child)::after {
    background: rgba(255,255,255,0.65); /* brighter white line */
}

:root.dark .timeline-item:not(:last-child)::before {
    border-top: 2px solid rgba(255,255,255,0.75);
    border-right: 2px solid rgba(255,255,255,0.75);
}

/* Headline Below */
.timeline-headline {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--ink);
}

/* Body Text */
.timeline-body {
    text-align: center;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.55;
    max-width: 360px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1100px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 28px;
    }
    .timeline-item:not(:last-child)::after,
    .timeline-item:not(:last-child)::before {
        right: -18px;  /* tighter spacing on tablet */
    }
}

@media (max-width: 700px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .timeline-grid::before,
    .timeline-item::after,
    .timeline-item::before {
        display: none; /* remove arrows + line on mobile */
    }
}

/* ===================================
   STICKY BAR
=================================== */
.sticky {
  position:fixed;
  left:0; right:0; bottom:-120px;
  background:var(--surface);
  border-top:1px solid var(--rule);
  display:flex;
  justify-content:center;
  gap:8px;
  padding:10px;
  transition:bottom .25s;
  z-index:50;
}

.sticky.show { bottom:0; }

/* Selected sticky button */
.sticky .btn[data-active="true"] {
  border-color:#0071e3;
  opacity:1;
}

/* Non-selected sticky buttons fade */
.sticky .btn:not([data-active="true"]) {
  opacity:0.6;
}

/* Do NOT fade the checkout button */
#sticky-buy {
  opacity:1 !important;
}

/* ===================================
   FOOTER
=================================== */
.site-footer {
  background:var(--surface-2);
  padding:60px 24px 40px;
  margin-top:60px;
  border-top:1px solid var(--rule);
  color:var(--ink);
}

.footer-grid {
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  gap:40px;
  grid-template-columns:repeat(4,1fr);
}

.footer-col h4 {
  font-size:14px;
  font-weight:700;
  margin-bottom:12px;
  letter-spacing:.5px;
}

.footer-col a {
  display:block;
  margin-bottom:8px;
  text-decoration:none;
  color:var(--ink);
}
.footer-col a:hover {
  text-decoration:underline;
}

.newsletter-col p {
  font-size:13px;
  color:var(--ink-2);
  margin:0 0 12px 0;
}

.footer-email {
  display:flex;
  gap:6px;
  margin-bottom:10px;
}

.footer-email input {
  flex:1;
  height:40px;
  border-radius:12px;
  border:1px solid var(--rule);
  background:var(--surface);
  padding:0 12px;
  color:var(--ink);
}

.footer-email button {
  width:44px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--rule);
  background:var(--surface);
  font-size:20px;
  cursor:pointer;
}

.footer-privacy {
  font-size:12px;
  color:var(--ink-2);
}
.footer-privacy a { color:var(--ink); }

.footer-social {
  display:flex;
  gap:16px;
  margin-top:16px;
}
.footer-social img { width:20px; opacity:.85; }

.footer-logo {
  margin:40px auto 30px;
  text-align:center;
  font-size:32px;
  font-weight:700;
}

.footer-bottom {
  border-top:1px solid var(--rule);
  margin-top:24px;
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer-payments img {
  height:22px;
  opacity:.9;
  margin-right:8px;
}

.footer-region {
  display:flex;
  align-items:center;
  gap:8px;
}
.footer-region img { height:18px; }

/* Footer mobile */
@media (max-width:900px) {
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom {
    flex-direction:column;
    text-align:center;
  }
}

/* ===================================
   ANIMATION
=================================== */
@media (prefers-reduced-motion:no-preference) {
  [data-animate] {
    opacity:0;
    transform:translateY(24px);
    transition:all .6s ease;
  }
  [data-animate].visible {
    opacity:1;
    transform:none;
  }
}