/* ==========================================================
   FIGO IPTV V2 — DESIGN SYSTEM
   A premium dark-theme media player brand site.
   Zero Bootstrap. Pure CSS Grid + Flexbox + Custom Props.
   ========================================================== */

/* ---------- 1. TOKENS & RESET ---------- */
:root {
  /* surfaces */
  --obsidian: #0a0a0f;
  --surface: #13131f;
  --surface-2: #1c1c2e;
  --surface-3: #252540;
  --border: rgba(255,255,255,.06);
  --border-2: rgba(255,255,255,.10);
  --glass: rgba(255,255,255,.03);
  --glass-2: rgba(255,255,255,.06);

  /* accents */
  --iris: #7c5cfc;
  --iris-dim: rgba(124,92,252,.15);
  --iris-glow: #a78bfa;
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,.12);
  --mint: #34d399;
  --mint-dim: rgba(52,211,153,.12);
  --rose: #f43f5e;

  /* text */
  --snow: #f1f0fb;
  --snow-2: #dddaf0;
  --mist: #9896b0;
  --mist-2: #6b6985;

  /* spacing scale */
  --sp-1: .25rem;   /* 4 */
  --sp-2: .5rem;    /* 8 */
  --sp-3: .75rem;   /* 12 */
  --sp-4: 1rem;     /* 16 */
  --sp-5: 1.5rem;   /* 24 */
  --sp-6: 2rem;     /* 32 */
  --sp-7: 2.5rem;   /* 40 */
  --sp-8: 3rem;     /* 48 */
  --sp-9: 4rem;     /* 64 */
  --sp-10: 5rem;    /* 80 */
  --sp-11: 6rem;    /* 96 */
  --sp-12: 8rem;    /* 128 */

  /* radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* transitions */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .15s;
  --t-mid: .3s;
  --t-slow: .5s;

  /* shadows */
  --sh-sm: 0 1px 3px rgba(0,0,0,.3);
  --sh-md: 0 4px 16px rgba(0,0,0,.4);
  --sh-lg: 0 8px 40px rgba(0,0,0,.5);
  --sh-glow: 0 0 40px var(--iris-dim);

  /* layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--snow-2);
  background: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--iris);
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--iris-glow); text-decoration: none; transition: color var(--t-fast) ease; }
a:hover { color: var(--amber); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--snow);
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw + .5rem, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw + .25rem, 1.75rem); }
h4 { font-size: 1.15rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--iris-glow), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: .06em;
}

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.section {
  padding: var(--sp-11) 0;
  position: relative;
}

.section--alt {
  background: var(--surface);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--iris-glow);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--iris);
  border-radius: 2px;
}

.section-head {
  max-width: 680px;
  margin-bottom: var(--sp-9);
}

.section-head p {
  color: var(--mist);
  font-size: 1.1rem;
  margin-top: var(--sp-4);
  line-height: 1.7;
}

/* ---------- 4. NAVIGATION ---------- */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-4) var(--sp-5);
  transition: background var(--t-mid) ease, box-shadow var(--t-mid) ease;
}

.nav-wrap.scrolled {
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.nav-logo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--snow);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  letter-spacing: -.03em;
}

.nav-logo .mark {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--iris), var(--amber));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-links a {
  padding: var(--sp-2) var(--sp-4);
  font-size: .9rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--snow);
  background: var(--glass-2);
}

.nav-cta {
  padding: var(--sp-2) var(--sp-5) !important;
  background: var(--iris) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--iris-glow) !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--glass-2);
  place-items: center;
  color: var(--snow);
  font-size: 1.3rem;
}

.nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10,10,15,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
  }

  .nav-overlay.open {
    display: flex;
  }

  .nav-overlay a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--snow);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--r-md);
    transition: background var(--t-fast);
  }

  .nav-overlay a:hover {
    background: var(--glass-2);
    color: var(--iris-glow);
  }

  .nav-overlay .close-btn {
    position: absolute;
    top: var(--sp-5);
    right: var(--sp-5);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--mist);
    background: var(--glass-2);
    border-radius: var(--r-md);
  }
}

/* ---------- 5. HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) var(--sp-5) var(--sp-10);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(124,92,252,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(245,158,11,.10) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(52,211,153,.07) 0%, transparent 70%);
  animation: meshShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes meshShift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-2%, 3%); }
  100% { transform: scale(1) translate(2%, -2%); }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  margin-bottom: var(--sp-5);
}

.hero p {
  font-size: clamp(1.05rem, 1.2vw + .5rem, 1.25rem);
  color: var(--mist);
  max-width: 560px;
  margin: 0 auto var(--sp-7);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-pill);
  transition: all var(--t-mid) var(--ease-out);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--iris);
  color: #fff;
  box-shadow: 0 4px 20px var(--iris-dim), inset 0 1px 0 rgba(255,255,255,.15);
}

.btn-primary:hover {
  background: var(--iris-glow);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,92,252,.3);
}

.btn-ghost {
  background: var(--glass-2);
  color: var(--snow);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  background: var(--glass);
  border-color: var(--iris);
  color: var(--iris-glow);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--obsidian);
  box-shadow: 0 4px 20px var(--amber-dim);
}

.btn-amber:hover {
  background: #fbbf24;
  color: var(--obsidian);
  transform: translateY(-2px);
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- 6. TRUST STRIP ---------- */
.trust-strip {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--mist);
  font-size: .9rem;
  font-weight: 500;
}

.trust-item .ico {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--glass-2);
  display: grid;
  place-items: center;
  color: var(--iris-glow);
  font-size: 1.1rem;
}

/* ---------- 7. BENTO GRID ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.bento-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid);
}

.bento-tile:hover {
  border-color: var(--iris-dim);
  transform: translateY(-4px);
  box-shadow: var(--sh-glow);
}

.bento-tile--wide {
  grid-column: span 2;
}

.bento-tile--tall {
  grid-row: span 2;
}

.bento-tile .tile-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
}

.bento-tile .tile-icon.iris  { background: var(--iris-dim); color: var(--iris-glow); }
.bento-tile .tile-icon.amber { background: var(--amber-dim); color: var(--amber); }
.bento-tile .tile-icon.mint  { background: var(--mint-dim); color: var(--mint); }

.bento-tile h3 {
  margin-bottom: var(--sp-3);
}

.bento-tile p {
  color: var(--mist);
  font-size: .95rem;
  line-height: 1.7;
}

/* ---------- 8. SPLIT SHOWCASE ---------- */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.showcase--reverse {
  direction: rtl;
}

.showcase--reverse > * {
  direction: ltr;
}

.showcase-text .section-label {
  margin-bottom: var(--sp-3);
}

.showcase-text h2 {
  margin-bottom: var(--sp-4);
}

.showcase-text p {
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.showcase-text ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.showcase-text li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--snow-2);
  font-size: .95rem;
}

.showcase-text li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint-dim);
  color: var(--mint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .7rem;
  margin-top: 2px;
}

.showcase-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- DISCLAIMER BANNER ---------- */
.disclaimer-banner {
  padding: var(--sp-5) 0;
  background: rgba(245,158,11,.06);
  border-top: 1px solid rgba(245,158,11,.15);
  border-bottom: 1px solid rgba(245,158,11,.15);
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.disclaimer-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.6;
}

.disclaimer-inner p {
  color: var(--mist);
  font-size: .88rem;
  line-height: 1.7;
}

.disclaimer-inner strong {
  color: var(--amber);
}

/* ---------- 9. PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  text-align: center;
  position: relative;
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-mid), box-shadow var(--t-mid);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--iris-dim);
  box-shadow: var(--sh-glow);
}

.price-card.popular {
  border-color: var(--iris);
  background: linear-gradient(180deg, rgba(124,92,252,.08), var(--surface));
  box-shadow: 0 0 50px var(--iris-dim);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--iris), var(--iris-glow));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-pill);
}

.price-card .duration {
  font-size: .9rem;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: var(--sp-3);
}

.price-card .amount {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--snow);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.price-card .amount .currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}

.price-card .period {
  font-size: .85rem;
  color: var(--mist-2);
  margin-bottom: var(--sp-6);
}

.price-card .features {
  text-align: left;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.price-card .features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: .88rem;
  color: var(--snow-2);
}

.price-card .features li svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- 10. TESTIMONIALS ---------- */
.testimonial-track {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sp-4);
  scrollbar-width: none;
}

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

.testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

.testimonial-card .stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

.testimonial-card .quote {
  color: var(--snow-2);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--iris), var(--amber));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}

.testimonial-card .name {
  font-weight: 600;
  color: var(--snow);
  font-size: .9rem;
}

.testimonial-card .role {
  color: var(--mist-2);
  font-size: .8rem;
}

/* ---------- 11. FAQ / ACCORDION ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-mid);
}

.faq-item.open {
  border-color: var(--iris-dim);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-size: 1rem;
  font-weight: 600;
  color: var(--snow);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}

.faq-trigger:hover {
  color: var(--iris-glow);
}

.faq-trigger .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--glass-2);
  display: grid;
  place-items: center;
  font-size: .85rem;
  color: var(--mist);
  transition: transform var(--t-mid) var(--ease-out), background var(--t-mid);
  flex-shrink: 0;
}

.faq-item.open .faq-trigger .icon {
  transform: rotate(45deg);
  background: var(--iris-dim);
  color: var(--iris-glow);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
}

.faq-body-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--mist);
  font-size: .95rem;
  line-height: 1.75;
}

/* ---------- 12. CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: var(--sp-10) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--iris-dim) 0%, rgba(245,158,11,.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  color: var(--mist);
  font-size: 1.05rem;
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

/* ---------- 13. FORMS ---------- */
.form-group {
  position: relative;
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: var(--sp-2);
  letter-spacing: .02em;
}

.form-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  color: var(--snow);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--mist-2);
}

.form-input:focus {
  border-color: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-dim);
}

.form-input.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .15em;
  text-align: center;
  font-size: 1.15rem;
  text-transform: uppercase;
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

/* ---------- 14. FOOTER ---------- */
.footer-wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -1px;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  fill: var(--surface);
}

.footer {
  background: var(--surface);
  padding: var(--sp-9) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  color: var(--mist);
  font-size: .9rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  color: var(--mist);
  font-size: .9rem;
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--snow);
}

.footer-contact p {
  color: var(--mist);
  font-size: .9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--iris-glow);
}

.footer-disclaimer {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
}

.footer-disclaimer p {
  color: var(--mist-2);
  font-size: .8rem;
  line-height: 1.7;
  max-width: 800px;
}

.footer-bottom {
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom .copy {
  color: var(--mist-2);
  font-size: .8rem;
}

.payment-icons {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}

.payment-icons .pay-icon {
  width: 44px;
  height: 28px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: .55rem;
  font-weight: 800;
  color: var(--mist);
  letter-spacing: .04em;
}

/* ---------- 15. BREADCRUMB ---------- */
.breadcrumb-bar {
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-6);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-bar h1 {
  font-size: clamp(1.6rem, 2.5vw + .5rem, 2.2rem);
  margin-bottom: var(--sp-2);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .85rem;
  color: var(--mist-2);
}

.breadcrumb-nav a {
  color: var(--mist);
}

.breadcrumb-nav a:hover {
  color: var(--iris-glow);
}

.breadcrumb-nav .sep {
  color: var(--mist-2);
}

/* ---------- 16. POLICY / CONTENT PAGES ---------- */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--sp-9) var(--sp-5);
}

.policy-content h2 {
  font-size: 1.4rem;
  margin: var(--sp-8) 0 var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h4 {
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--snow);
}

.policy-content p {
  color: var(--mist);
  margin-bottom: var(--sp-4);
  line-height: 1.8;
}

.policy-content ul {
  margin: var(--sp-3) 0 var(--sp-5) var(--sp-6);
}

.policy-content li {
  position: relative;
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-2);
  color: var(--mist);
  line-height: 1.7;
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--iris);
}

/* ---------- 17. ACTIVATE / FORM PAGES ---------- */
.activate-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--sp-9) var(--sp-5);
}

.activate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}

.activate-card h2 {
  text-align: center;
  margin-bottom: var(--sp-2);
}

.activate-card .subtitle {
  text-align: center;
  color: var(--mist);
  font-size: .95rem;
  margin-bottom: var(--sp-7);
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-7);
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glass-2);
  border: 2px solid var(--border-2);
  transition: all var(--t-fast);
}

.step-dot.active {
  background: var(--iris);
  border-color: var(--iris);
  box-shadow: 0 0 12px var(--iris-dim);
}

.step-dot.done {
  background: var(--mint);
  border-color: var(--mint);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
}

/* Contact info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
}

.info-card .ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--iris-dim);
  color: var(--iris-glow);
  display: grid;
  place-items: center;
  margin: 0 auto var(--sp-4);
  font-size: 1.2rem;
}

.info-card h4 {
  color: var(--snow);
  margin-bottom: var(--sp-2);
  font-size: 1rem;
}

.info-card p {
  color: var(--mist);
  font-size: .88rem;
  line-height: 1.6;
}

/* Contact form card */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- 18. REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}

.reveal-children.visible > * { opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: .10s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: .15s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: .20s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: .25s; }
.reveal-children.visible > *:nth-child(6) { transition-delay: .30s; }

/* ---------- 19. ABOUT PAGE ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

.value-card .num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--iris-dim);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.value-card h3 {
  margin-bottom: var(--sp-3);
  font-size: 1.1rem;
}

.value-card p {
  color: var(--mist);
  font-size: .9rem;
  line-height: 1.7;
}

.org-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  margin-top: var(--sp-9);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.org-item .label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist-2);
  margin-bottom: var(--sp-1);
}

.org-item .value {
  color: var(--snow);
  font-weight: 600;
  font-size: .95rem;
}

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tile--wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; gap: var(--sp-6); }
  .showcase--reverse { direction: ltr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: var(--sp-9) 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-tile--wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .trust-strip-inner { gap: var(--sp-5); }
  .info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 90vh; min-height: 90dvh; padding-top: var(--sp-10); }
  .hero-actions { flex-direction: column; align-items: center; }
  .testimonial-card { flex: 0 0 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .bento-tile { padding: var(--sp-5); }
  .price-card { padding: var(--sp-5); }
  .activate-card { padding: var(--sp-5); }
  .contact-form-card { padding: var(--sp-5); }
}

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

/* ---------- 22. PRINT ---------- */
@media print {
  .nav-wrap, .nav-overlay, .footer, .footer-wave, .cta-banner { display: none; }
  body { background: #fff; color: #111; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero::before, .hero::after { display: none; }
}
