/* ============================================================
   ZAP ZONE DEFENDER
   Navbar + Hero — 100vh, mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
svg {
    display: block;
}

a {
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* ── Tokens ──────────────────────────────────────────────── */
:root {
    --nav-h: 60px;
    /* navbar height */

    --purple: #7c3aed;
    --purple-mid: #9333ea;
    --purple-light: #a855f7;
    --purple-pale: #d8b4fe;
    --white: #ffffff;
    --w90: rgba(255, 255, 255, 0.90);
    --w70: rgba(255, 255, 255, 0.70);
    --w50: rgba(255, 255, 255, 0.50);
    --w20: rgba(255, 255, 255, 0.20);
    --w10: rgba(255, 255, 255, 0.10);
    --w06: rgba(255, 255, 255, 0.06);
    --gold: #f59e0b;
    --bg: #0f172a; /* Softer, richer dark slate instead of harsh black */
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.25s;
    --r: 10px;
    --pill: 9999px;
}

/* ── Base ────────────────────────────────────────────────── */
html {
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    background: var(--bg);
    color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(6, 4, 15, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--w10);
    transition: background var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

/* scrolled state — added via JS */
.navbar.scrolled {
    background: rgba(6, 4, 15, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Brand */
.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.navbar__brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
    flex-shrink: 0;
}

.navbar__brand-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--w90);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.navbar__brand-name strong {
    font-weight: 800;
    color: var(--white);
}

/* Desktop links */
.navbar__nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.navbar__link {
    padding: 0.4rem 0.75rem;
    border-radius: var(--pill);
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--w70);
    transition: color var(--dur) var(--ease),
        background var(--dur) var(--ease);
    white-space: nowrap;
}

.navbar__link:hover {
    color: var(--white);
    background: var(--w06);
}

/* Desktop CTA */
.navbar__cta {
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--pill);
    border: 1.5px solid rgba(168, 85, 247, 0.55);
    background: rgba(124, 58, 237, 0.18);
    color: var(--purple-pale);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease),
        border-color var(--dur) var(--ease),
        color var(--dur) var(--ease),
        transform var(--dur) var(--ease);
}

.navbar__cta:hover {
    background: rgba(124, 58, 237, 0.35);
    border-color: var(--purple-pale);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
    margin-left: auto;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--r);
    color: var(--w90);
    transition: background var(--dur) var(--ease);
    flex-shrink: 0;
}

.navbar__hamburger:hover {
    background: var(--w10);
}

.navbar__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--dur) var(--ease),
        opacity var(--dur) var(--ease);
    transform-origin: center;
}

/* Animated X when open */
.navbar__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.navbar__mobile {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 5, 18, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--w10);
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
    /* hidden by default */
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease),
        transform var(--dur) var(--ease);
}

.navbar__mobile[aria-hidden="false"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar__mobile-link {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--w70);
    border-bottom: 1px solid var(--w10);
    transition: color var(--dur) var(--ease);
}

.navbar__mobile-link:hover {
    color: var(--white);
}

.navbar__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.9rem;
    border-radius: var(--r);
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
    transition: filter var(--dur) var(--ease),
        transform var(--dur) var(--ease);
}

.navbar__mobile-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ============================================================
   HERO  —  exactly 100vh, positioned below navbar
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Background ──────────────────────────────────────────── */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

/* ── Overlay ─────────────────────────────────────────────── */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to right,
            rgba(15, 23, 42, 0.97) 0%,
            rgba(15, 23, 42, 0.91) 30%,
            rgba(15, 23, 42, 0.65) 55%,
            rgba(15, 23, 42, 0.22) 75%,
            rgba(15, 23, 42, 0.00) 100%),
        linear-gradient(to bottom,
            rgba(15, 23, 42, 0.60) 0%,
            transparent 18%),
        linear-gradient(to top,
            rgba(15, 23, 42, 0.90) 0%,
            transparent 28%),
        radial-gradient(ellipse 55% 65% at 70% 52%,
            rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

/* ── Content wrapper — sits below navbar, fills remaining height ── */
.hero__wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    /* default: content at bottom on mobile */
    padding: calc(var(--nav-h) + 1rem) 1.25rem 1.25rem;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* ── Content column ──────────────────────────────────────── */
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    max-width: 700px;
}

/* ── Star badge ──────────────────────────────────────────── */
.hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.38rem 0.85rem 0.38rem 0.65rem;
    border-radius: var(--pill);
    border: 1px solid var(--w20);
    background: var(--w06);
    backdrop-filter: blur(8px);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--w90);
    width: fit-content;
}

.stars-icons {
    display: flex;
    gap: 1px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── H1 ──────────────────────────────────────────────────── */
.hero__title {
    font-size: clamp(2rem, 7.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
}

.hero__title-accent {
    background: linear-gradient(115deg, #a855f7 0%, #d8b4fe 55%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Descriptor ──────────────────────────────────────────── */
.hero__descriptor {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--purple-pale);
    letter-spacing: 0.01em;
    border-left: 2px solid rgba(168, 85, 247, 0.55);
    padding-left: 0.7rem;
    line-height: 1.45;
}

.hero__descriptor-icon {
    color: var(--purple-light);
    flex-shrink: 0;
}

/* ── Body copy ───────────────────────────────────────────── */
.hero__body {
    font-size: 0.855rem;
    font-weight: 400;
    color: var(--w70);
    line-height: 1.7;
    max-width: 48ch;
}

/* ── Feature list (2-col grid) ───────────────────────────── */
.hero__feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
    list-style: none;
}

.hero__feat {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero__feat-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(168, 85, 247, 0.30);
    background: rgba(124, 58, 237, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-pale);
    backdrop-filter: blur(4px);
    transition: border-color var(--dur) var(--ease),
        background var(--dur) var(--ease),
        transform var(--dur) var(--ease);
}

.hero__feat:hover .hero__feat-icon {
    border-color: var(--purple-light);
    background: rgba(124, 58, 237, 0.28);
    transform: scale(1.08);
}

.hero__feat-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero__feat-body strong {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--w90);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.hero__feat-body span {
    font-size: 0.62rem;
    color: var(--w50);
    line-height: 1.35;
}

/* ── CTA buttons ─────────────────────────────────────────── */
.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Primary */
.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, #6d28d9 0%, var(--purple) 40%, var(--purple-light) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.35),
        0 4px 18px rgba(124, 58, 237, 0.50),
        0 10px 36px rgba(124, 58, 237, 0.22);
    transition:
        background-position var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        transform var(--dur) var(--ease);
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
    width: 100%;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1.5px rgba(196, 181, 253, 0.5),
        0 6px 26px rgba(124, 58, 237, 0.65),
        0 14px 44px rgba(124, 58, 237, 0.28);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary__shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
    pointer-events: none;
}

.btn-primary:hover .btn-primary__shimmer {
    transform: translateX(100%);
}

/* Secondary */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--w90);
    border: 1.5px solid var(--w20);
    background: var(--w06);
    backdrop-filter: blur(8px);
    transition:
        border-color var(--dur) var(--ease),
        background var(--dur) var(--ease),
        transform var(--dur) var(--ease);
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
    width: 100%;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.45);
    background: var(--w10);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-secondary--sm {
    padding: 0.7rem 1.25rem;
    font-size: 0.75rem;
    border-width: 1px;
}

/* ── Trust bar ───────────────────────────────────────────── */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.64rem;
    font-weight: 500;
    color: var(--w50);
    white-space: nowrap;
}

.trust-item svg {
    color: var(--purple-pale);
    flex-shrink: 0;
}

.trust-sep {
    width: 1px;
    height: 11px;
    background: var(--w20);
    flex-shrink: 0;
}


/* ============================================================
   TABLET  ≥ 640px
   ============================================================ */
@media (min-width: 640px) {

    .hero__wrap {
        align-items: center;
        padding: calc(var(--nav-h) + 2rem) 1.5rem 1.5rem;
        height: 100%;
    }

    .hero__cta-group {
        flex-direction: row;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        flex: 1;
        max-width: 260px;
    }


}

/* ============================================================
   DESKTOP  ≥ 960px  — side-by-side, tight 100vh
   ============================================================ */
@media (min-width: 960px) {

    :root {
        --nav-h: 64px;
    }

    /* Show desktop nav + CTA, hide hamburger */
    .navbar__inner {
        padding: 0 1.5rem;
    }

    .navbar__nav {
        display: flex;
    }

    .navbar__cta {
        display: inline-flex;
    }

    .navbar__hamburger {
        display: none;
    }

    /* Image reveals on right */
    .hero__bg img {
        object-position: 68% center;
    }

    .hero__overlay {
        background:
            linear-gradient(to right,
                rgba(6, 4, 15, 0.97) 0%,
                rgba(6, 4, 15, 0.93) 26%,
                rgba(6, 4, 15, 0.68) 46%,
                rgba(6, 4, 15, 0.18) 66%,
                rgba(6, 4, 15, 0.00) 100%),
            linear-gradient(to bottom,
                rgba(6, 4, 15, 0.55) 0%,
                transparent 15%),
            radial-gradient(ellipse 50% 70% at 72% 52%,
                rgba(124, 58, 237, 0.22) 0%, transparent 70%);
    }

    .hero__wrap {
        align-items: center;
        padding: 0 1.5rem 0;
        height: 100%;
    }

    .hero__content {
        gap: 1.05rem;
        max-width: 750px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 3.4vw, 3.6rem);
    }

    .hero__feats {
        gap: 0.55rem 1rem;
    }

    .hero__feat-icon {
        width: 36px;
        height: 36px;
    }

    .hero__feat-body strong {
        font-size: 0.72rem;
    }

    .hero__feat-body span {
        font-size: 0.63rem;
    }

    .hero__cta-group {
        flex-direction: row;
        gap: 0.65rem;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        flex: none;
        max-width: none;
    }


}

@media (min-width: 1200px) {

    .navbar__inner {
        padding: 0 2rem;
    }

    .hero__wrap {
        padding: 0 2rem 0;
    }

    .hero__content {
        max-width: 850px;
        gap: 1.1rem;
    }

    .hero__title {
        font-size: clamp(2.5rem, 3.2vw, 3.8rem);
    }
}

/* ============================================================
   DISCLOSURE SECTION
   ============================================================ */
.disclosure {
    background: var(--bg);
    padding: 5rem 1.25rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclosure__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.disclosure__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.disclosure__title svg {
    color: var(--purple-light);
}

.disclosure__content {
    font-size: 0.95rem;
    color: var(--w70);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.disclosure__content strong {
    color: var(--purple-pale);
    font-weight: 600;
}

.disclosure__cta-wrap {
  display: flex;
  justify-content: center;
}

.disclosure__cta-wrap .btn-secondary {
    border-color: rgba(168, 85, 247, 0.4);
    color: var(--white);
    background: rgba(124, 58, 237, 0.15);
}

.disclosure__cta-wrap .btn-secondary:hover {
    border-color: var(--purple-light);
    background: rgba(124, 58, 237, 0.3);
}

/* ============================================================
   SPECIFICATIONS SECTION
   ============================================================ */
.specs {
  background: #ffffff;
  padding: 4rem 1.25rem 5rem;
  border-top: 1px solid #e2e8f0;
}

.specs__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.specs__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.specs__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.specs__subtitle {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

.specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* Removed align-items: center so columns stretch and sticky works */
}

.specs__image-col {
  /* Container stretches in grid, creating scroll track for sticky child */
}

.specs__image-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.specs__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.specs__image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.specs__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e2e8f0;
}

.specs__row {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  gap: 0.4rem;
}

.specs__row dt {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6d28d9;
  letter-spacing: 0.02em;
}

.specs__row dd {
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .specs__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .specs__row dt {
    flex: 0 0 200px; /* Fixed width for labels on larger screens */
  }
}

@media (min-width: 960px) {
  .specs__grid {
    grid-template-columns: 1.2fr 1fr; /* Image takes slightly more space */
    gap: 4rem;
  }
  
  .specs__row dt {
    flex: 0 0 160px; /* Adjust label width for 2-column layout */
  }
}

/* ============================================================
   COMPONENTS SECTION
   ============================================================ */
.components {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.components__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.components__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.components__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.components__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.components__table-wrap {
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: var(--r);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.components__table-title {
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #cbd5e1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.components__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.components__table th,
.components__table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.components__table th {
    background: #ffffff;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.components__table td strong {
    color: #6d28d9;
    font-weight: 700;
}

.components__table tbody tr:last-child td {
    border-bottom: none;
}

.components__table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.components__footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.components__footer p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.components__tagline {
    font-size: 1.1rem;
    color: #1e293b;
}

.components__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.components__cta-wrap .btn-primary {
    max-width: 320px;
}

/* ============================================================
   NOTICE SECTION
   ============================================================ */
.notice {
    background: #f1f5f9;
    padding: 5rem 1.25rem 6rem;
    border-top: 1px solid #e2e8f0;
}

.notice__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.notice__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.notice__intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice__checklist-header {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.notice__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .notice__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 960px) {
    .notice__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice__card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--r);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.notice__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border-color: #94a3b8;
}

.notice__card svg {
    color: #6d28d9;
    flex-shrink: 0;
}

.notice__card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
}

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.overview {
    background: #ffffff; /* Alternating with uses section's #f8fafc */
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.overview__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.overview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .overview__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.overview__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.overview__content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.overview__content p:last-child {
    margin-bottom: 0;
}

.overview__image-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.overview__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.overview__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   USES SECTION
   ============================================================ */
.uses {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.uses__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.uses__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.uses__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.uses__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.uses__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .uses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .uses__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.uses__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.uses__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.uses__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #6d28d9;
    margin-bottom: 0.75rem;
}

.uses__card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.uses__footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.uses__tagline {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 2.5rem;
    background: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--r);
}

.uses__tagline strong {
    color: #0f172a;
}

.uses__cta-wrap {
    display: flex;
    justify-content: center;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.features__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.features__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.features__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.features__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.features__layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.features__image-col {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    width: 100%;
}

.features__image {
    width: 100%;
    height: auto;
    display: block;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.features__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.features__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features__icon svg {
    width: 16px;
    height: 16px;
}

.features__text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.features__text p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   MATERIAL SECTION
   ============================================================ */
.material {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.material__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.material__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .material__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.material__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.material__content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.material__content p:last-child {
    margin-bottom: 0;
}

.material__image-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.material__image-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.material__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.material__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.how-it-works__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .how-it-works__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.how-it-works__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.how-it-works__content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.how-it-works__content p:last-child {
    margin-bottom: 0;
}

.how-it-works__image-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.how-it-works__image-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.how-it-works__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.how-it-works__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   GUIDE SECTION (Placement & Usage)
   ============================================================ */
.guide {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.guide__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.guide__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.guide__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.guide__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.guide__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .guide__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.guide__subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.mt-8 { margin-top: 2.5rem; }
.mb-6 { margin-bottom: 2rem; }

.guide__table-wrap {
    background: #ffffff;
    border-radius: var(--r);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    margin-bottom: 2rem;
}

.guide__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.guide__table th,
.guide__table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.guide__table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.guide__table td strong {
    color: #6d28d9;
    font-weight: 700;
}

.guide__table tbody tr:last-child td {
    border-bottom: none;
}

.guide__list {
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.guide__list li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.guide__note {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--r);
    border-left: 4px solid #6d28d9;
}

.guide__tagline {
    font-size: 1.1rem;
    color: #1e293b;
}

.guide__text-sm {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.guide__image-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.guide__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.guide__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.guide__steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide__step {
    display: flex;
    gap: 1rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: var(--r);
    border: 1px solid #e2e8f0;
}

.guide__step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #6d28d9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.guide__step-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.guide__step-text strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.2rem;
}

/* ============================================================
   MAINTENANCE SECTION
   ============================================================ */
.maintenance {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.maintenance__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.maintenance__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.maintenance__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.maintenance__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.maintenance__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

@media (min-width: 768px) {
    .maintenance__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.maintenance__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.maintenance__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.maintenance__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #6d28d9;
    margin-bottom: 1rem;
}

.maintenance__card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.maintenance__card ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.maintenance__card li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.maintenance__card li:last-child {
    margin-bottom: 0;
}

.maintenance__card--alert {
    border-left: 4px solid #ef4444;
}

.maintenance__card--alert h3 {
    color: #b91c1c;
}

.maintenance__footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance__tagline {
    font-size: 1.1rem;
    color: #1e293b;
    background: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--r);
}

.maintenance__tagline strong {
    color: #0f172a;
}

/* ============================================================
   EXPECTATIONS SECTION
   ============================================================ */
.expectations {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.expectations__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.expectations__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.expectations__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.expectations__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.expectations__content {
    max-width: 800px;
    margin: 0 auto;
}

.expectations__subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    text-align: center;
}

.expectations__table-wrap {
    background: #ffffff;
    border-radius: var(--r);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    margin-bottom: 3.5rem;
}

.expectations__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.expectations__table th,
.expectations__table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.expectations__table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.expectations__table td strong {
    color: #6d28d9;
    font-weight: 700;
}

.expectations__table tbody tr:last-child td {
    border-bottom: none;
}

.expectations__realistic {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: var(--r);
    border: 1px solid #e2e8f0;
    margin-bottom: 3.5rem;
}

.expectations__realistic p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.expectations__realistic p:last-child {
    margin-bottom: 0;
}

.expectations__footer {
    text-align: center;
}

.expectations__tagline {
    font-size: 1.1rem;
    color: #1e293b;
    background: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--r);
    display: inline-block;
    width: 100%;
}

.expectations__tagline strong {
    color: #0f172a;
}

/* ============================================================
   EXPERIENCES SECTION
   ============================================================ */
.experiences {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.experiences__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.experiences__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.experiences__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.experiences__content {
    max-width: 800px;
    margin: 0 auto;
}

.experiences__content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experiences__disclaimer {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--r);
    border: 1px solid #e2e8f0;
    margin-top: 2.5rem;
    border-left: 4px solid #6d28d9;
}

.experiences__disclaimer p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================================
   STORIES SECTION
   ============================================================ */
.stories {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.stories__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.stories__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stories__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.stories__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .stories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stories__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.stories__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.stories__profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.stories__profile img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e7ff;
}

.stories__profile div {
    display: flex;
    flex-direction: column;
}

.stories__profile strong {
    font-size: 1.05rem;
    color: #0f172a;
}

.stories__profile span {
    font-size: 0.85rem;
    color: #64748b;
}

.stories__card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   PURCHASE SECTION
   ============================================================ */
.purchase {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.purchase__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.purchase__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.purchase__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.purchase__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.purchase__content {
    max-width: 800px;
    margin: 0 auto;
}

.purchase__block {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--r);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.purchase__block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.purchase__block p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.purchase__subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    margin-top: 3.5rem;
    text-align: center;
}

.purchase__table-wrap {
    background: #ffffff;
    border-radius: var(--r);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    margin-bottom: 2.5rem;
}

.purchase__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.purchase__table th,
.purchase__table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.purchase__table th {
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.purchase__table td strong {
    color: #6d28d9;
    font-weight: 700;
}

.purchase__table tbody tr:last-child td {
    border-bottom: none;
}

.purchase__note {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: var(--r);
    border-left: 4px solid #6d28d9;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.purchase__cta-wrap {
    display: flex;
    justify-content: center;
}

/* ============================================================
   BUNDLES SECTION
   ============================================================ */
.bundles {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.bundles__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.bundles__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.bundles__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.bundles__intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.bundles__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.bundles__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.bundles__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.bundles__card--recommended {
    border: 2px solid #6d28d9;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.15);
    transform: scale(1.02);
}

.bundles__card--recommended:hover {
    transform: scale(1.02) translateY(-4px);
}

.bundles__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6d28d9;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}

.bundles__image-wrap {
    width: 100%;
    height: 180px;
    background: #f1f5f9;
    border-radius: calc(var(--r) - 4px);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bundles__placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
}

.bundles__offer {
    color: #16a34a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bundles__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.bundles__price {
    margin-bottom: 1.5rem;
}

.bundles__price-val {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.bundles__price-unit {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.bundles__btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.bundles__text-content {
    max-width: 800px;
    margin: 0 auto;
}

.bundles__text-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.bundles__note {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--r);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.bundles__note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================================
   TARGET AUDIENCE SECTION
   ============================================================ */
.target-audience {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.target-audience__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.target-audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .target-audience__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.target-audience__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.target-audience__intro {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.target-audience__subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.target-audience__list {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.target-audience__list li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.target-audience__list li strong {
    color: #1e293b;
}

.target-audience__list--alt li {
    color: #64748b;
}

.target-audience__note {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: var(--r);
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6d28d9;
}

.mt-6 { margin-top: 1.5rem; }

.target-audience__image-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.target-audience__image-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.target-audience__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.target-audience__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.comparison__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.comparison__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.comparison__table-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--r);
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    position: relative;
}

.comparison__scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px; /* Forces scrolling on small devices */
}

.comparison__table th,
.comparison__table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    vertical-align: top;
    color: #475569;
}

.comparison__table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    font-size: 1rem;
}

.comparison__col-feature {
    width: 15%;
    font-weight: 700;
    color: #0f172a;
}

.comparison__col-brand {
    width: 35%;
    background: #f3e8ff;
    color: #4c1d95;
    border-left: 2px solid #6d28d9;
    border-right: 2px solid #6d28d9;
}

.comparison__table thead .comparison__col-brand {
    background: #6d28d9;
    color: #ffffff;
    border: 2px solid #6d28d9;
    border-bottom: none;
}

.comparison__brand-cell {
    background: #faf5ff;
    border-left: 2px solid #6d28d9;
    border-right: 2px solid #6d28d9;
    color: #4c1d95;
}

.comparison__table tbody tr:last-child .comparison__brand-cell {
    border-bottom: 2px solid #6d28d9;
}

.comparison__col-alt {
    width: 25%;
}

.comparison__table td:first-child {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   SHIPPING & RETURNS SECTION
   ============================================================ */
.shipping {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.shipping__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.shipping__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .shipping__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.shipping__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.shipping__block {
    margin-bottom: 2rem;
}

.shipping__block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.shipping__block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.shipping__block--guarantee {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    border-left: 4px solid #10b981; /* Trust Green */
}

.shipping__guarantee-icon {
    flex-shrink: 0;
    color: #10b981;
}

.shipping__image-col {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.shipping__image {
    width: 100%;
    height: auto;
    border-radius: var(--r);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.faq__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .faq__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
}

.faq__column {
    display: flex;
    flex-direction: column;
}

.faq__item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
    list-style: none; /* Hide default marker */
}

.faq__question::-webkit-details-marker {
    display: none; /* For Safari */
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6d28d9;
}

/* 
   Since the path is an UP arrow: d="M18 15l-6-6-6 6"
   When <details> is NOT open (closed state), point it DOWN.
   When <details> IS open, let it point UP.
*/
.faq__item:not([open]) .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.25rem 1.25rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   MONEY-BACK GUARANTEE SECTION
   ============================================================ */
.guarantee-section {
    background: #4c1d95; /* Deep Purple */
    padding: 4rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .guarantee-section__content {
        flex-direction: row;
        gap: 3rem;
        padding: 3rem;
    }
}

.guarantee-section__image-col {
    flex-shrink: 0;
}

.guarantee-section__image {
    width: 150px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
    .guarantee-section__image {
        width: 180px;
    }
}

.guarantee-section__text-col {
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-section__text-col {
        text-align: left;
    }
}

.guarantee-section__title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.guarantee-section__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   SECURITY & CHECKOUT ASSURANCE SECTION
   ============================================================ */
.security-section {
    background: #f8fafc;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.security-section__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.security-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .security-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.security-section__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.security-section__block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.security-section__badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.security-section__image-col {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.security-section__image {
    width: 100%;
    height: auto;
    border-radius: var(--r);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}

/* ============================================================
   CONTACT SUPPORT SECTION
   ============================================================ */
.support-section {
    background: #ffffff;
    padding: 5rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.support-section__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.support-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 960px) {
    .support-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.support-section__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.support-section__block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.support-section__block a {
    color: #6d28d9;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(109, 40, 217, 0.3);
    text-underline-offset: 4px;
    transition: text-decoration-color var(--dur) var(--ease);
}

.support-section__block a:hover {
    text-decoration-color: #6d28d9;
}

.support-section__badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.support-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    padding: 0.75rem 1.25rem;
    border-radius: var(--pill);
    border: 1px solid #e2e8f0;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.support-section__image-col {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.support-section__image {
    width: 100%;
    height: auto;
    border-radius: var(--r);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}


/* ============================================================
   FOOTER SECTION
   ============================================================ */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 5rem 1.25rem 2rem;
    font-size: 0.95rem;
}

.site-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.site-footer__brand strong {
    font-weight: 800;
}

.site-footer__text {
    line-height: 1.7;
    max-width: 400px;
}

.site-footer__heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.site-footer__nav a:hover {
    color: #ffffff;
}

.site-footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================================
   GLOBAL X-SPACING FIX (Aligns all sections with Navbar & Hero)
   ============================================================ */
@media (min-width: 640px) {
    .disclosure, 
    .specs, 
    .components, 
    .overview, 
    .uses, 
    .features,
    .material,
    .how-it-works,
    .guide,
    .maintenance,
    .expectations,
    .experiences,
    .stories,
    .purchase,
    .bundles,
    .target-audience,
    .comparison,
    .shipping,
    .guarantee-section,
    .faq,
    .security-section,
    .support-section,
    .site-footer,
    .legal-page,
    .notice {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .disclosure, 
    .specs, 
    .components, 
    .overview, 
    .uses, 
    .features,
    .material,
    .how-it-works,
    .guide,
    .maintenance,
    .expectations,
    .experiences,
    .stories,
    .purchase,
    .bundles,
    .target-audience,
    .comparison,
    .shipping,
    .guarantee-section,
    .faq,
    .security-section,
    .support-section,
    .site-footer,
    .legal-page,
    .notice {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-page {
    background: #ffffff;
    padding: 6rem 1.25rem 4rem;
    color: #475569;
}

.legal-page__inner {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.legal-page__content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page__content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page__content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.legal-page__content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page__content a {
    color: #6d28d9;
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* -------------------------------------------------------
   FLOATING MOBILE BUY BUTTON
   ------------------------------------------------------- */
.floating-buy-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
    z-index: 9999;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating-buy-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-buy-btn:hover,
.floating-buy-btn:active {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.7);
    color: var(--white);
}

.floating-buy-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .floating-buy-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .floating-buy-btn {
        display: flex;
    }
}
