:root {
  --bg-deep:      #05070D;
  --bg-night:     #0A0E1A;
  --bg-elevated:  #11162A;
  --bg-glass:     rgba(20, 26, 45, 0.55);

  --gold:         #D4AF37;
  --gold-bright:  #E8C25C;
  --gold-soft:    #F4D77A;
  --gold-deep:    #9D7D1F;
  --gold-muted:   rgba(212, 175, 55, 0.12);
  --gold-strong:  rgba(212, 175, 55, 0.28);

  --pink:         #FFB7C5;
  --mint:         #A8E6CF;
  --lemon:        #FFE5A0;
  --lavender:     #C7B8EA;

  --live-green:   #25D366;

  --cta-red:      #E63E5A;
  --cta-red-bright: #F25670;

  --ink:          #F5F0E1;
  --ink-soft:     #D8D2BF;
  --ink-mute:     #B8B5A8;
  --ink-faint:    #6E7088;

  --glow-gold:        0 0 40px rgba(212, 175, 55, 0.35);
  --glow-gold-strong: 0 0 80px rgba(232, 194, 92, 0.55);
  --glow-red:         0 0 40px rgba(230, 62, 90, 0.45);
  --glow-red-strong:  0 0 80px rgba(230, 62, 90, 0.7);
  --glow-green:       0 14px 40px -10px rgba(37, 211, 102, 0.5);
  --shadow-card:      0 24px 64px rgba(0, 0, 0, 0.55);
  --shadow-float:     0 30px 40px rgba(0, 0, 0, 0.5);

  --font-display: "Almarai", "Tajawal", system-ui, sans-serif;
  --font-body:    "Tajawal", "Almarai", system-ui, sans-serif;
  --font-luxe:    "Cormorant Garamond", "Tajawal", Georgia, serif;

  --fs-hero:    clamp(2.5rem, 7vw + 0.5rem, 6rem);
  --fs-display: clamp(2rem, 4vw + 0.75rem, 3.75rem);
  --fs-h2:      clamp(1.75rem, 3vw + 0.75rem, 2.75rem);
  --fs-h3:      clamp(1.25rem, 1.5vw + 0.75rem, 1.625rem);
  --fs-body:    clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  --fs-small:   0.875rem;
  --fs-tiny:    0.75rem;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-glide: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   200ms;
  --dur-med:    380ms;
  --dur-slow:   700ms;

  --z-base:    1;
  --z-content: 10;
  --z-sticky:  50;
  --z-cursor:  90;
  --z-fab:     95;
  --z-overlay: 100;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }

[lang="en"] {
  font-family: var(--font-luxe);
  letter-spacing: 0.02em;
}

[lang="ar"],
:lang(ar) { letter-spacing: normal; }

@media (max-width: 600px) {
  .eyebrow[lang="ar"] { font-size: 0.85rem; padding: 7px 16px; }
  .footer__heading   { font-size: 1.05rem; margin-bottom: 14px; }
  .final-cta__tel    { font-size: 1.1rem; }
  .footer__wa-line   { font-size: 1rem; }
}

.num {
  font-family: var(--font-display);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
}

.h-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.h-2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.2;
}
.h-3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.3;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-luxe);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-pill);
}
.eyebrow[lang="ar"] {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.skip-link {
  position: absolute; inset-inline-start: -9999px;
  background: var(--gold); color: var(--bg-deep);
  padding: var(--space-2); border-radius: var(--radius-sm);
  z-index: var(--z-overlay);
  font-weight: 700;
}
.skip-link:focus { inset-inline-start: var(--space-2); top: var(--space-2); }

.container {
  width: min(1240px, 100% - 2 * var(--space-3));
  margin-inline: auto;
}

::selection { background: var(--gold); color: var(--bg-deep); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

section {
  position: relative;
  padding-block: var(--space-16);
}
@media (max-width: 768px) {
  section { padding-block: var(--space-8); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-1);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--cta-red);
  color: white;
  box-shadow: var(--glow-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red-strong);
  background: var(--cta-red-bright);
}
.btn--secondary {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
}
.btn--secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-bright);
  color: var(--gold-soft);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--bg-deep);
  box-shadow: var(--glow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-strong);
}
.btn--lg { padding: 1.2rem 2.5rem; font-size: 1.15rem; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.95rem; }

.btn__arrow { transition: transform var(--dur-fast) var(--ease-out); }
[dir="rtl"] .btn__arrow { transform: scaleX(-1); }
.btn:hover .btn__arrow { transform: scaleX(-1) translateX(2px); }

.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: var(--z-sticky);
  padding: var(--space-2) 0;
  background: rgba(10, 14, 26, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-block-end: 1px solid var(--gold-muted);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-out);
}
.site-header[data-state="visible"] { transform: translateY(0); }
.site-header__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); }

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-header__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.site-header__bird {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
@media (max-width: 600px) {
  .site-header__mark { width: 34px; height: 34px; }
  .site-header__bird { width: 34px; height: 34px; }
}
.site-header__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-luxe);
}
.site-header__word-top {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.site-header__word-bot {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold-bright);
  margin-top: 2px;
}

.site-header__nav { display: flex; gap: var(--space-3); }
.site-header__nav a { color: var(--ink-mute); font-size: var(--fs-small); transition: color var(--dur-fast); }
.site-header__nav a:hover { color: var(--gold-bright); }
@media (max-width: 820px) { .site-header__nav { display: none; } }

.scroll-progress {
  position: fixed; inset-block-start: 0; inset-inline-start: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: var(--z-overlay);
  transition: width 60ms linear;
}

.cursor-spotlight {
  position: fixed; top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 194, 92, 0.12), transparent 70%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  display: none;
  mix-blend-mode: screen;
}
.has-spotlight .cursor-spotlight { display: block; }

.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 18%, rgba(232, 194, 92, 0.10), transparent 55%),
    radial-gradient(ellipse at 22% 28%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 70%, var(--bg-elevated) 100%);
  isolation: isolate;
  padding-block: var(--space-12) var(--space-8);
}
.hero__sky { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__stars { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__cloud {
  position: absolute; inset-inline: -10%;
  height: 220px;
  background-repeat: repeat-x;
  background-size: contain;
  opacity: 0.35;
  filter: blur(4px);
  will-change: transform;
}
.hero__cloud--3 {
  top: 8%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3000 200' width='3000' height='200' preserveAspectRatio='none'%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='18'/%3E%3C/filter%3E%3Cg filter='url(%23b)' fill='rgba(212,175,55,0.18)'%3E%3Cellipse cx='250' cy='100' rx='240' ry='40'/%3E%3Cellipse cx='750' cy='110' rx='200' ry='35'/%3E%3Cellipse cx='1300' cy='95' rx='280' ry='42'/%3E%3Cellipse cx='1900' cy='105' rx='240' ry='38'/%3E%3Cellipse cx='2500' cy='100' rx='260' ry='40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.18;
}
.hero__cloud--2 {
  top: 38%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3000 200' width='3000' height='200' preserveAspectRatio='none'%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='22'/%3E%3C/filter%3E%3Cg filter='url(%23b)' fill='rgba(232,194,92,0.22)'%3E%3Cellipse cx='180' cy='110' rx='280' ry='50'/%3E%3Cellipse cx='820' cy='95' rx='260' ry='48'/%3E%3Cellipse cx='1500' cy='105' rx='320' ry='52'/%3E%3Cellipse cx='2200' cy='100' rx='280' ry='50'/%3E%3Cellipse cx='2800' cy='110' rx='240' ry='44'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.22;
}
.hero__cloud--1 {
  bottom: -5%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3000 200' width='3000' height='200' preserveAspectRatio='none'%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='28'/%3E%3C/filter%3E%3Cg filter='url(%23b)' fill='rgba(244,215,122,0.25)'%3E%3Cellipse cx='200' cy='120' rx='340' ry='62'/%3E%3Cellipse cx='900' cy='105' rx='320' ry='58'/%3E%3Cellipse cx='1600' cy='115' rx='380' ry='66'/%3E%3Cellipse cx='2300' cy='105' rx='340' ry='62'/%3E%3Cellipse cx='2850' cy='115' rx='280' ry='56'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.32;
}

.hero__beam {
  position: absolute;
  width: 60vw; height: 110vh;
  top: -20vh;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.4;
}
.hero__beam--warm {
  inset-inline-end: -20vw;
  background: radial-gradient(ellipse, rgba(232, 194, 92, 0.55), transparent 60%);
}
.hero__beam--cool {
  inset-inline-start: -20vw;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.4), transparent 60%);
}

.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-3);
  max-width: 880px;
}

.hero__title {
  margin: var(--space-2) 0 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #E0D9C0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(232, 194, 92, 0.28);
}
.hero__sub {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.3rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}
.hero__sub .num { color: var(--gold-bright); font-weight: 700; }
.hero__ctas {
  display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: center;
  margin-top: var(--space-3);
}
.hero__caption { font-size: var(--fs-small); color: var(--ink-faint); margin-top: var(--space-1); }

.showcase {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.07), transparent 50%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-night));
  text-align: center;
  overflow: hidden;
}
.showcase__head { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.showcase__title {
  margin: 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.showcase__sub { color: var(--ink-mute); max-width: 64ch; margin: 0 auto; }

.stage {
  position: relative;
  height: 540px;
  margin-top: var(--space-8);
  perspective: 1200px;
}
@media (max-width: 1024px) { .stage { height: 460px; } }
@media (max-width: 760px)  { .stage { height: 360px; } }
@media (max-width: 480px)  { .stage { height: 280px; } }

.beam {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.beam path {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.5;
  stroke-dasharray: 4 9;
  opacity: 0.25;
  animation: beamFlow 30s linear infinite;
}
@keyframes beamFlow { to { stroke-dashoffset: -260; } }

.dev {
  position: absolute;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  transform-style: preserve-3d;
  will-change: transform;
}
.dev svg { width: 100%; height: auto; }
.dev--tv     { width: 46%; top:  8%; right: 27%; animation: floatA 8s ease-in-out infinite; }
.dev--laptop { width: 30%; top: 38%; right:  6%; animation: floatB 9s ease-in-out 0.4s infinite; }
.dev--tablet { width: 18%; top: 18%; right: 70%; animation: floatA 10s ease-in-out 0.8s infinite; }
.dev--phone  { width:  9%; top: 45%; right: 80%; animation: floatB 7s ease-in-out 0.2s infinite; }
.dev--car    { width: 22%; top: 60%; right: 38%; animation: floatA 11s ease-in-out 0.6s infinite; }

@media (max-width: 760px) {
  .dev--tv     { width: 52%; right: 24%; }
  .dev--laptop { width: 34%; }
  .dev--tablet { width: 20%; }
  .dev--phone  { width: 11%; }
  .dev--car    { width: 26%; }
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(0.4deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(10px) rotate(-0.4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .dev { animation: none !important; }
  .beam path { animation: none !important; }
}

.counters { background: var(--bg-night); padding-block: 60px; }
.counters__head { text-align: center; margin-bottom: var(--space-4); }
.counters__head h2 { margin: 0; font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem); }
.counters__head p { color: var(--ink-mute); margin: var(--space-1) 0 0; font-size: 0.95rem; }

.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
@media (max-width: 760px) { .counters__grid { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.01));
  border: 1px solid var(--gold-muted);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 130px;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  opacity: 0;
}
.stat[data-visible="true"] { opacity: 1; transition: opacity 400ms var(--ease-out), transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out); }
.stat:hover { transform: translateY(-3px); border-color: var(--gold-strong); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { color: var(--ink-mute); font-size: 0.85rem; font-weight: 500; margin: 0; }

.channels { background: var(--bg-deep); }
.genre-ticker {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-2);
  margin-bottom: var(--space-8);
  direction: ltr; }
.genre-ticker::before,
.genre-ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.genre-ticker::before { left: 0;  background: linear-gradient(to right, var(--bg-deep), transparent); }
.genre-ticker::after  { right: 0; background: linear-gradient(to left,  var(--bg-deep), transparent); }

.genre-ticker__track {
  display: flex; gap: 16px; align-items: center;
  width: max-content;
  animation: scrollGenres 40s linear infinite;
  will-change: transform;
}
.genre-ticker:hover .genre-ticker__track { animation-play-state: paused; }
@keyframes scrollGenres {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .genre-ticker__track { animation: none; }
}

.genre-pill,
.genre-pill * {
  background: transparent;
  background-color: transparent;
}
.genre-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: rgba(20, 26, 45, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  direction: rtl; transition: transform var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.genre-pill:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-bright);
}
.genre-pill svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: none !important;
}
.genre-pill svg rect[fill="gold"],
.genre-pill svg rect[fill="#D4AF37"] { display: none; }
.genre-pill:hover svg { color: var(--gold-bright); }

.channels__title { margin: var(--space-2) 0 var(--space-2); }
.channels__sub { color: var(--ink-soft); max-width: 60ch; margin-bottom: var(--space-8); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bento { grid-template-columns: 1fr; } }

.bento__cell {
  grid-column: auto;
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex; flex-direction: column;
  gap: var(--space-2);
  position: relative; overflow: hidden;
  min-height: 180px;
  transition: border-color var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.bento__cell:hover {
  border-color: var(--gold-strong);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.icon-tile {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.04));
  border: 1px solid var(--gold-muted);
  color: var(--gold-bright);
  flex-shrink: 0;
}
.icon-tile svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.bento__cell h3 { margin: 0; }
.bento__desc { color: var(--ink-soft); margin: 0; }
.bento__desc .num { color: var(--gold-bright); font-weight: 700; }

.devices { background: var(--bg-night); text-align: center; }
.devices__title { margin: var(--space-2) 0 var(--space-8); }

.constellation {
  position: relative;
  aspect-ratio: 800 / 500;
  max-width: 860px;
  margin: 0 auto var(--space-6);
}
.constellation__lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.constellation__lines .line {
  stroke: #D4AF37;
  stroke-width: 0.2;
  stroke-dasharray: 0.6 1;
  opacity: 0.5;
  fill: none;
  animation: lineDraw 8s linear infinite;
}
@keyframes lineDraw { to { stroke-dashoffset: -8; } }
@media (prefers-reduced-motion: reduce) { .constellation__lines .line { animation: none; } }

.emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(140px, 18vw, 180px);
  aspect-ratio: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, var(--gold-soft) 0%, var(--gold) 40%, var(--gold-deep) 100%);
  box-shadow:
    0 0 0 1px var(--gold-bright),
    0 0 0 8px rgba(212, 175, 55, 0.08),
    0 0 0 16px rgba(212, 175, 55, 0.04),
    0 24px 60px -10px rgba(232, 194, 92, 0.35);
  display: grid; place-items: center;
  animation: emblemBreath 4s ease-in-out infinite;
  z-index: 2;
}
.emblem__core {
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #1A1408, #0A0703);
  box-shadow: inset 0 0 0 1px rgba(232, 194, 92, 0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  padding: 14% 0;
}
.emblem__mark {
  width: 65%;
  height: auto;
  object-fit: contain;
  margin-top: -4%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
.emblem__word {
  font-family: var(--font-luxe);
  font-size: clamp(0.5rem, 0.8vw, 0.6rem);
  letter-spacing: 0.4em;
  color: var(--gold-bright);
  font-weight: 600;
  white-space: nowrap;
}
@keyframes emblemBreath {
  0%, 100% {
    box-shadow:
      0 0 0 1px var(--gold-bright),
      0 0 0 8px rgba(212, 175, 55, 0.08),
      0 0 0 16px rgba(212, 175, 55, 0.04),
      0 24px 60px -10px rgba(232, 194, 92, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px var(--gold-bright),
      0 0 0 12px rgba(212, 175, 55, 0.12),
      0 0 0 28px rgba(212, 175, 55, 0.05),
      0 24px 80px -10px rgba(232, 194, 92, 0.5);
  }
}
@media (prefers-reduced-motion: reduce) { .emblem { animation: none; } }

.device {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-1);
  z-index: 3;
  cursor: default;
  transition: transform var(--dur-med) var(--ease-out);
}
.device:hover { transform: translate(-50%, -50%) scale(1.08); }
.device__tile {
  width: 76px; height: 76px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #161C30, #0F1424);
  border: 1px solid var(--gold-strong);
  border-radius: 22px;
  color: var(--gold-bright);
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}
.device:hover .device__tile {
  border-color: var(--gold-bright);
  box-shadow: 0 0 30px rgba(232, 194, 92, 0.35);
}
.device__tile svg { width: 38%; height: 38%; }
.device__label {
  font-size: 0.85rem;
  color: var(--ink-mute);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .device__tile { width: 56px; height: 56px; }
  .device__label { font-size: 10px; }
  .emblem { width: clamp(110px, 22vw, 150px); }
}

.devices__caption {
  color: var(--ink-soft);
  max-width: 50ch; margin: 0 auto;
}

.pricing { background: var(--bg-deep); }
.pricing__title { margin: var(--space-2) 0 var(--space-2); }
.pricing__sub { color: var(--ink-soft); margin-bottom: var(--space-6); max-width: 60ch; }

.currency-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 5px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-pill);
  max-width: 560px;
  margin: var(--space-4) auto var(--space-3);
}
.curr-btn {
  flex: 1 1 90px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  transition: background var(--dur-med) var(--ease-out), color var(--dur-fast);
}
.curr-btn small {
  font-family: var(--font-luxe);
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.05em;
}
.curr-btn.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1A1408;
  box-shadow: 0 4px 14px -4px rgba(212, 175, 55, 0.6);
}
.curr-btn.active small { opacity: 0.85; }
.curr-btn:not(.active):hover { color: var(--gold-bright); }
@media (max-width: 480px) {
  .curr-btn { flex-basis: 70px; padding: 8px 10px; font-size: 0.85rem; }
  .curr-btn small { display: none; }
}

.family-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: var(--space-4) auto var(--space-8);
  padding: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-pill);
  max-width: 720px;
  flex-wrap: wrap;
}
.family-tab {
  flex: 1 1 200px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: background var(--dur-med) var(--ease-out), color var(--dur-fast);
}
.family-tab span {
  display: block;
  line-height: 1.1;
}
.family-tab small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.78;
  margin-top: 3px;
  letter-spacing: 0;
}
.family-tab.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1A1408;
  box-shadow: 0 6px 20px -8px rgba(212, 175, 55, 0.6);
}
.family-tab.active small { opacity: 0.85; }
.family-tab:not(.active):hover { color: var(--gold-bright); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.plans-grid.hidden { display: none; }
.plans-grid--center { max-width: 540px; margin-inline: auto; }

.plan {
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3) var(--space-3);
  display: flex; flex-direction: column; gap: var(--space-2);
  position: relative;
  overflow: visible;
  transition: border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out);
}
.plan:hover {
  border-color: var(--gold-strong);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}
.plan.featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-night), var(--bg-night)) padding-box,
    linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-deep)) border-box;
  box-shadow: var(--glow-gold-strong);
}

.plan-badge {
  position: absolute; top: 0; inset-inline-end: var(--space-3);
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1A1408;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 20px -8px rgba(212, 175, 55, 0.7);
}

.plan-name { margin: 0; color: var(--ink); }
.plan-tag {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--ink-faint);
  margin-bottom: var(--space-1);
}

.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: var(--space-2);
  direction: ltr;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan.featured .plan-price .amount {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-price .currency {
  font-family: var(--font-luxe);
  font-size: 1.15rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.plan-features {
  list-style: none; padding: 0; margin: 0 0 var(--space-3);
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.plan-features li {
  display: flex; align-items: center; gap: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.plan-check {
  width: 16px; height: 16px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              background var(--dur-fast);
  cursor: pointer;
  align-self: stretch;
}
.cta-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1A1408;
  box-shadow: 0 8px 24px -10px rgba(212, 175, 55, 0.7);
}
.cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(232, 194, 92, 0.9);
}

.kids {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 20% 30%, rgba(255, 216, 107, 0.10), transparent 60%),
    radial-gradient(500px 350px at 80% 70%, rgba(168, 230, 207, 0.08), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(255, 200, 150, 0.06), transparent 60%),
    var(--bg-night);
}
.kids__decor { position: absolute; inset: 0; pointer-events: none; opacity: 1; z-index: 0; }
.kids__decor svg { position: absolute; }
.kids__cloud { animation: drift 25s ease-in-out infinite; opacity: 0.4; }
.kids__cloud--a { top: 12%; right: 8%; width: 90px; }
.kids__cloud--b { top: 40%; right: 60%; width: 70px; animation-delay: -8s; animation-duration: 28s; }
.kids__cloud--c { bottom: 18%; right: 22%; width: 110px; animation-delay: -16s; animation-duration: 32s; }
@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(20px); }
}
.kids__star { animation: twinkle 3s ease-in-out infinite; opacity: 0.5; }
.kids__star--a { top: 10%; right: 30%; width: 22px; }
.kids__star--b { top: 25%; right: 78%; width: 16px; animation-delay: -1s; }
.kids__star--c { bottom: 30%; right: 8%; width: 20px; animation-delay: -1.5s; }
.kids__star--d { bottom: 10%; right: 65%; width: 18px; animation-delay: -2s; }
.kids__star--e { top: 60%; right: 90%; width: 14px; animation-delay: -2.5s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.2); }
}
@media (prefers-reduced-motion: reduce) {
  .kids__cloud, .kids__star { animation: none !important; }
}

.kids__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 760px) { .kids__grid { grid-template-columns: 1fr; gap: var(--space-6); } }

.kids .eyebrow {
  color: #FFD86B;
  border-color: rgba(255, 216, 107, 0.3);
}
.kids__title {
  margin: var(--space-2) 0 var(--space-2);
  background: linear-gradient(180deg, var(--ink) 0%, #FFD86B 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kids__body { color: var(--ink-soft); margin-bottom: var(--space-4); max-width: 50ch; }

.kids-features {
  list-style: none; padding: 0; margin: 0 0 var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.kids-features li {
  display: flex; align-items: center; gap: var(--space-2);
  color: var(--ink-soft);
}
.kids-features__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.kids-features__icon svg { width: 20px; height: 20px; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.kids-features__icon--lemon    { background: rgba(255, 216, 107, 0.15); color: #FFD86B;          border: 1px solid rgba(255, 216, 107, 0.25); }
.kids-features__icon--mint     { background: rgba(168, 230, 207, 0.15); color: var(--mint);     border: 1px solid rgba(168, 230, 207, 0.25); }
.kids-features__icon--lavender { background: rgba(199, 184, 234, 0.15); color: var(--lavender); border: 1px solid rgba(199, 184, 234, 0.25); }

.kids__cta { background: linear-gradient(135deg, #FFD86B, #E8B33A); color: var(--bg-deep); box-shadow: 0 14px 40px -10px rgba(255, 216, 107, 0.5); }
.kids__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(255, 216, 107, 0.7); }

.kids__illu {
  position: relative;
  width: min(80%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.kids__safe {
  position: relative;
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 216, 107, 0.18), transparent 60%),
    radial-gradient(circle at 65% 70%, rgba(168, 230, 207, 0.15), transparent 60%),
    var(--bg-elevated);
  display: grid; place-items: center;
  border: 1px solid rgba(255, 216, 107, 0.18);
  box-shadow: inset 0 0 80px rgba(255, 216, 107, 0.10);
}
.kids__sun {
  width: 50%;
  filter: drop-shadow(0 0 30px rgba(255, 216, 107, 0.55));
}
.kids__sun svg { width: 100%; height: auto; }

.kids__joy {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: floatA 6s ease-in-out infinite;
}
.kids__joy svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.kids__joy--tr { top: 4%;     inset-inline-end: 0;     background: rgba(168, 230, 207, 0.18); color: var(--mint);     animation-delay: 0s;   }
.kids__joy--tl { top: 4%;     inset-inline-start: 0;   background: rgba(255, 216, 107, 0.18); color: #FFD86B;          animation-delay: 0.5s; }
.kids__joy--br { bottom: 4%;  inset-inline-end: 0;     background: rgba(199, 184, 234, 0.18); color: var(--lavender); animation-delay: 1s;   }
.kids__joy--bl { bottom: 4%;  inset-inline-start: 0;   background: rgba(255, 203, 164, 0.18); color: #FFCBA4;          animation-delay: 1.5s; }
@media (prefers-reduced-motion: reduce) { .kids__joy { animation: none !important; } }

.how { background: var(--bg-deep); }
.how__title { margin: var(--space-2) 0 var(--space-2); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity 700ms var(--ease-glide), transform 700ms var(--ease-glide);
}
.step[data-visible="true"] { opacity: 1; transform: translateY(0); }
.step h3 { margin: 0; }
.step__num {
  position: absolute; top: var(--space-3); inset-inline-end: var(--space-3);
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 800;
}
.step__icon { width: 40px; height: 40px; color: var(--gold-bright); margin-bottom: var(--space-3); fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.step__body { color: var(--ink-soft); margin: var(--space-1) 0 0; }

.how__note {
  text-align: center;
  margin-top: var(--space-6);
  color: var(--ink-mute);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  letter-spacing: 0;
}
.how__note .num { color: var(--gold-bright); font-weight: 700; }

.trust { background: var(--bg-night); text-align: center; }
.trust__title { margin: var(--space-2) 0 var(--space-2); }
.trust__counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2);
  margin-block: var(--space-6) var(--space-8);
}
@media (max-width: 760px) { .trust__counters { grid-template-columns: repeat(2, 1fr); } }

.payments { max-width: 900px; margin: 0 auto; }
.payments__label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-bottom: var(--space-3);
}
.payments__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px;
}
.pay-card {
  flex: 1 1 160px;
  min-height: 80px;
  display: grid; place-items: center;
  padding: 14px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--gold-muted);
  border-radius: 14px;
  overflow: visible;
  transition: border-color var(--dur-med), transform var(--dur-fast) var(--ease-out);
}
.pay-card:hover {
  border-color: var(--gold-strong);
  transform: translateY(-2px);
}
.pay-card img,
.pay-card svg {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  opacity: 0.95;
}
.pay-card--color img { opacity: 1; }

.payments__note {
  margin-top: var(--space-3);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--ink-mute);
}
.payments__note svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.faq { background: var(--bg-deep); }
.faq__inner { max-width: 800px; }
.faq__title { margin: var(--space-2) 0 var(--space-6); }
.faq__list { border-block-start: 1px solid var(--gold-muted); }
.faq__item {
  border-block-end: 1px solid var(--gold-muted);
  padding: var(--space-3) 0;
}
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron { width: 20px; height: 20px; color: var(--gold-bright); transition: transform var(--dur-med) var(--ease-out); flex-shrink: 0; }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out);
}
.faq__a p { margin: var(--space-2) 0 0; color: var(--ink-soft); line-height: 1.7; }

.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230, 62, 90, 0.15), transparent 60%),
    var(--bg-deep);
  padding-block: var(--space-16);
  position: relative;
  overflow: hidden;
}
.final-cta__inner { max-width: 700px; margin-inline: auto; }
.final-cta__title { margin: var(--space-2) 0 var(--space-3); }
.final-cta__title .num { color: var(--cta-red); }
.final-cta__sub { color: var(--ink-soft); margin-bottom: var(--space-6); font-size: 1.1rem; }
.final-cta__btn {
  animation: pulseGlowRed 2.8s ease-in-out infinite;
  font-size: 1.25rem;
}
@keyframes pulseGlowRed {
  0%, 100% { box-shadow: 0 0 32px rgba(230, 62, 90, 0.4); }
  50%      { box-shadow: 0 0 64px rgba(230, 62, 90, 0.7); }
}
.final-cta__phone { margin-top: var(--space-3); color: var(--ink-mute); font-size: var(--fs-small); }
.final-cta__tel {
  color: var(--gold-bright);
  margin-inline-start: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.final-cta__tel:hover { color: var(--gold-soft); }
@media (prefers-reduced-motion: reduce) { .final-cta__btn { animation: none; } }

.site-footer {
  background: var(--bg-night);
  padding-block: var(--space-8) var(--space-4);
  border-block-start: 1px solid var(--gold-muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-block-end: 1px solid var(--gold-muted);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-2);
}
.footer__bird {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.footer__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-luxe);
}
.footer__word-top {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.footer__word-bot {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold-bright);
  margin-top: 3px;
}
.footer__tagline { color: var(--ink-soft); margin-bottom: var(--space-2); }
.footer__copy { color: var(--ink-mute); font-size: var(--fs-small); margin: 0; }

.footer__col { display: flex; flex-direction: column; gap: var(--space-1); }
.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--gold);
  margin: 0 0 var(--space-2);
  font-weight: 700;
}
.footer__col a { color: var(--ink-soft); transition: color var(--dur-fast); cursor: pointer; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__muted { color: var(--ink-mute); font-size: var(--fs-small); }

.footer__wa-line {
  display: inline-flex; align-items: center; gap: 6px;
  direction: ltr;
  unicode-bidi: isolate;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.footer__bottom {
  margin-top: var(--space-4);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-2);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  color: var(--ink-mute);
  transition: color var(--dur-fast), background-color var(--dur-fast), border-color var(--dur-fast);
  cursor: pointer;
}
.footer__social a:hover { color: var(--gold-bright); border-color: var(--gold); background: rgba(212, 175, 55, 0.06); }
.footer__signature {
  font-family: var(--font-body); font-size: var(--fs-tiny);
  color: var(--ink-mute); margin: 0;
  letter-spacing: 0;
}

.fab {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: var(--z-fab);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5);
  text-decoration: none;
  animation: fabPulse 2.4s ease-in-out infinite;
  transition: transform var(--dur-fast) var(--ease-out);
  direction: rtl;
}
.fab:hover {
  transform: translateY(-3px) scale(1.03);
  animation-play-state: paused;
}
.fab__circle {
  width: 26px; height: 26px;
  background: white;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fab__circle svg { width: 16px; height: 16px; color: #128C7E; }
.fab__text { display: flex; flex-direction: column; line-height: 1.15; }
.fab__primary { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }
.fab__secondary { font-size: 0.7rem; font-weight: 400; opacity: 0.85; }

@keyframes fabPulse {
  0%, 100% {
    box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.5),
                0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.6),
                0 0 0 18px rgba(37, 211, 102, 0);
  }
}
@media (prefers-reduced-motion: reduce) { .fab { animation: none; } }

@media (max-width: 600px) {
  .fab { bottom: 16px; left: 16px; padding: 12px 18px 12px 14px; }
  .fab__secondary { display: none; }
}

.ripple {
  position: absolute; transform: translate(-50%, -50%);
  width: 0; height: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: rippleOut 600ms var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes rippleOut { to { width: 360px; height: 360px; opacity: 0; } }
