/* =========================================
   BARQ — Apple Liquid Glass Redesign
   IBM Plex Sans Arabic (AR) + Plus Jakarta Sans (EN)
   ========================================= */

:root {
  --bg: #060608;
  --bg-2: #0C0C11;
  --bg-3: #131318;
  --accent: #D4A017;
  --accent-h: #F0C030;
  --accent-dim: rgba(212, 160, 23, 0.08);
  --text: #E8E8EC;
  --text-2: #7C7C8A;
  --text-3: #45454F;
  --border: rgba(255, 255, 255, 0.06);
  --border-h: rgba(255, 255, 255, 0.13);
  --font-ar: 'IBM Plex Sans Arabic', sans-serif;
  --font-en: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Type scale — Perfect Fourth (1.333) */
  --text-xs: 0.75rem;    /* 12px — captions, labels */
  --text-sm: 0.875rem;   /* 14px — small body, descriptions */
  --text-base: 1rem;     /* 16px — body text */
  --text-md: 1.125rem;   /* 18px — large body, card titles */
  --text-lg: 1.333rem;   /* ~21px — section subtitles */
  --text-xl: 1.777rem;   /* ~28px — section titles */
  --text-2xl: 2.369rem;  /* ~38px — large headings */
  --text-3xl: 3.157rem;  /* ~50px — hero title */
  --text-4xl: 4.209rem;  /* ~67px — hero display */
  --nav-h: 72px;
  --radius-lg: 16px;
  --radius-md: 12px;
  /* Liquid glass tokens */
  --glass-bg: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.06);
  --glass-blur: 20px;
}


/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: var(--font-en); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }


/* === Container === */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* === Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* =========================================
   NAV — liquid glass
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6, 6, 8, 0.4);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(6, 6, 8, 0.45);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
}
.nav__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav__links {
  display: none;
  gap: 30px;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active {
  color: var(--accent-h);
}

.nav__end {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-2);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
html[lang="en"] .lang-btn { font-family: var(--font-ar); }
.lang-btn:hover {
  border-color: var(--border-h);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
  width: 24px;
}
.burger span {
  height: 1.5px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.burger.open span:first-child { transform: rotate(45deg) translate(2.3px, 2.3px); }
.burger.open span:last-child  { transform: rotate(-45deg) translate(2.3px, -2.3px); }

/* Mobile menu — liquid glass */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(12, 12, 17, 0.75);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border-bottom: 1px solid var(--glass-border);
  padding: 8px 20px 24px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu__links a {
  display: block;
  padding: 13px 12px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu__links a:hover {
  background: rgba(255, 255, 255, 0.04);
}


/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  top: 5%;
  right: -8%;
  width: min(520px, 65vw);
  height: min(520px, 65vw);
  background: radial-gradient(circle, rgba(212, 160, 23, 0.15), transparent 70%);
  animation: drift1 18s ease-in-out infinite;
}
.hero__orb--2 {
  bottom: 15%;
  left: -5%;
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  background: radial-gradient(circle, rgba(0, 180, 255, 0.07), transparent 70%);
  animation: drift2 22s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(-18px, 14px); }
  66%      { transform: translate(12px, -10px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(10px, -14px); }
}

/* Lightning bolt — modern geometric glass */
.hero__bolt {
  display: none;
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  height: 115%;
  width: auto;
  pointer-events: none;
  z-index: 5;
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  animation: boltStrike 1.8s cubic-bezier(0.22, 0.68, 0.35, 1) 0.3s forwards;
}

@keyframes boltStrike {
  0%   { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0% 0); }
}

.hero__bolt-glow {
  animation: boltGlowPulse 5s ease-in-out 2.3s infinite;
}
@keyframes boltGlowPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero__bolt-glass {
  animation: boltGlassPulse 6s ease-in-out 2.5s infinite;
}
@keyframes boltGlassPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

.hero__bolt-inner {
  animation: boltGlassPulse 6s ease-in-out 2.7s infinite;
}

.hero__bolt-edge {
  animation: boltEdgePulse 5s ease-in-out 2.3s infinite;
}
@keyframes boltEdgePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 0 50px;
}

.hero__text {
  max-width: 100%;
}

.hero__eyebrow {
  font-size: var(--text-sm);
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero__title {
  font-size: clamp(var(--text-2xl), 7.5vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 48px;
  max-width: 18ch;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}



/* =========================================
   SECTIONS — base
   ========================================= */
.sect {
  padding: 100px 0;
  position: relative;
}
.sect::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sect--accent::after,
.sect--raised::after {
  display: none;
}
.sect--accent {
  background: #0a0908;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 160, 23, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.sect--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}
.sect--raised {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.sect__header {
  margin-bottom: 56px;
}
.sect__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sect__heading {
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  max-width: 480px;
}

/* Light variant for accent backgrounds */
.sect__header--light .sect__label { color: var(--accent); }
.sect__header--light .sect__heading { color: #fff; }


/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  white-space: nowrap;
}

.btn--accent {
  background: var(--accent);
  color: #0a0a0c;
}
.btn--accent:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.35);
}

.btn--outline {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn--wa {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
  color: #0a0a0c;
  border: 1px solid rgba(240, 192, 48, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 8px rgba(212, 160, 23, 0.15);
}
.btn--wa:hover {
  background: linear-gradient(135deg, var(--accent-h) 0%, #f5d050 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 32px rgba(212, 160, 23, 0.3);
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
}
.btn--full { width: 100%; }
.btn__ico { width: 18px; height: 18px; flex-shrink: 0; }


/* =========================================
   SERVICES — full-width interactive rows
   ========================================= */
.services {
  display: flex;
  flex-direction: column;
}

.service {
  display: block;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
  cursor: default;
}
.service:first-child {
  border-top: 1px solid var(--border);
}
.service:hover {
  background: var(--accent);
}

.service__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  padding: 28px 0;
  align-items: baseline;
}

.service__num {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.06em;
  transition: color 0.35s;
  padding-top: 3px;
}

.service__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: #fff;
  transition: color 0.35s;
}

.service__desc {
  grid-column: 2;
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  transition: color 0.35s;
}

.service:hover .service__num  { color: rgba(0, 0, 0, 0.35); }
.service:hover .service__title { color: #0a0a0c; }
.service:hover .service__desc  { color: rgba(0, 0, 0, 0.6); }


/* =========================================
   PORTFOLIO — Pinterest masonry + glass
   ========================================= */
.portfolio-grid {
  columns: 1;
  column-gap: 18px;
}

.pf-card {
  position: relative;
  display: block;
  break-inside: avoid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  margin-bottom: 18px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pf-card:hover {
  transform: scale(1.025);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pf-card--tall {
  min-height: 340px;
}

.pf-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-card__name {
  font-size: var(--text-md);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.pf-card__cat {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* Portfolio link reset */
a.pf-card { text-decoration: none; color: inherit; display: block; }

/* Card gradient backgrounds */
.pf-card--1 {
  background: linear-gradient(135deg, #1a1508 0%, #D4A017 100%);
}
.pf-card--2 {
  background: linear-gradient(135deg, #0c1520 0%, #1a4a6e 100%);
}
.pf-card--3 {
  background: linear-gradient(135deg, #0c1a18 0%, #1a6050 100%);
}
.pf-card--4 {
  background: linear-gradient(135deg, #1e150a 0%, #6e4a1a 100%);
}
.pf-card--5 {
  background: linear-gradient(135deg, #1a120a 0%, #5c3a1e 60%, #8b5e3c 100%);
}
.pf-card--5 iframe {
  position: absolute;
  top: 0; left: 0;
  width: 400%; height: 400%;
  transform: scale(0.25);
  transform-origin: top left;
  border: none;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.pf-card--5 .pf-card__content { z-index: 1; }


/* =========================================
   STEPS — glass cards on accent bg
   ========================================= */
.steps {
  display: grid;
  gap: 20px;
}

.step {
  background: rgba(212, 160, 23, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: inset 0 1px 0 rgba(212, 160, 23, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: rgba(212, 160, 23, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(212, 160, 23, 0.08),
    0 0 30px rgba(212, 160, 23, 0.06);
}

.step__num {
  font-family: var(--font-en);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1;
  color: rgba(212, 160, 23, 0.15);
  margin-bottom: 14px;
}
.step__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.step__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}


/* =========================================
   TRUST BANNER — liquid glass
   ========================================= */
.trust-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  margin-bottom: 44px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(212, 160, 23, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 40px rgba(212, 160, 23, 0.06);
}
.trust-banner__icon {
  width: 24px;
  height: 24px;
  color: var(--accent-h);
  flex-shrink: 0;
}
.trust-banner span {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
}


/* =========================================
   PRICING — glass cards
   ========================================= */
.pricing {
  display: grid;
  gap: 18px;
}

.price-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.price-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 16px 48px rgba(0, 0, 0, 0.3);
}

.price-card--pop {
  border-color: rgba(212, 160, 23, 0.25);
  background: rgba(212, 160, 23, 0.06);
}
.price-card--pop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-h), transparent);
  border-radius: 0 0 2px 2px;
}

.price-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 160, 23, 0.15);
}

.price-card__name {
  font-size: var(--text-md);
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.price-card__pricing {
  margin-bottom: 26px;
}

.price-card__tagline {
  font-size: var(--text-sm);
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-card__amount {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-card__list li {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.5;
  padding-inline-start: 18px;
  position: relative;
}
.price-card__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  width: 6px;
  height: 10px;
  border-radius: 0;
  background: none;
  opacity: 1;
  border-bottom: 2px solid var(--accent-h);
  border-inline-end: 2px solid var(--accent-h);
  transform: rotate(45deg);
}

/* =========================================
   SCARCITY BANNER
   ========================================= */
.scarcity-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 24px;
  margin-bottom: 36px;
  border-radius: var(--radius-md);
  background: rgba(229, 57, 53, 0.06);
  border: 1px solid rgba(229, 57, 53, 0.2);
  font-size: var(--text-sm);
  color: var(--text-2);
}
.scarcity-banner strong {
  color: #ef5350;
  font-weight: 700;
}
.scarcity-banner__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef5350;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.scarcity-banner__sep {
  color: var(--text-3);
}


/* =========================================
   HERO STATS BAR
   ========================================= */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
}

.hero__stat {
  padding: 0 20px;
  position: relative;
}
.hero__stat:first-child {
  padding-inline-start: 0;
}
.hero__stat:last-child {
  padding-inline-end: 0;
}
.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: var(--text-3);
  opacity: 0.5;
}

.hero__stat-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-2);
}


/* =========================================
   SECTION CTA (repeated CTAs)
   ========================================= */
.sect-cta {
  text-align: center;
  padding: 40px 20px;
}


/* =========================================
   FAQ SECTION
   ========================================= */
.faq-list {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text);
  text-align: start;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent-h);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-2);
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item--open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.8;
}
.faq-item--open .faq-answer {
  max-height: 200px;
}


/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 6, 8, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--glass-border);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta__btn {
  padding: 14px 20px;
  font-size: var(--text-base);
}


/* =========================================
   PROBLEM AGITATION — glass cards
   ========================================= */
.problems {
  display: grid;
  gap: 18px;
}

.problem-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.problem-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 12px 40px rgba(0, 0, 0, 0.25);
}

.problem-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 160, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.problem-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-h);
}

.problem-card__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.problem-card__desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.75;
}


/* =========================================
   GUARANTEE SECTION
   ========================================= */
.guarantee-sect {
  padding: 60px 0;
}
.guarantee-sect::after {
  display: none;
}

.guarantee {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 60px rgba(212, 160, 23, 0.06);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.guarantee__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid rgba(212, 160, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.guarantee__badge svg {
  width: 28px;
  height: 28px;
  color: var(--accent-h);
}

.guarantee__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent-h);
  margin-bottom: 12px;
}

.guarantee__text {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.8;
}

/* Guarantee tap shimmer animation */
@keyframes guaranteeShimmer {
  0%   { transform: translateX(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes guaranteePulse {
  0%   { transform: scale(1); border-color: rgba(212,160,23,0.2); }
  40%  { transform: scale(1.02); border-color: rgba(212,160,23,0.5);
         box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 30px rgba(212,160,23,0.2); }
  100% { transform: scale(1); border-color: rgba(212,160,23,0.2); }
}
.guarantee--tapped::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.15) 35%,
    rgba(240,192,48,0.3) 50%, rgba(212,160,23,0.15) 65%, transparent);
  animation: guaranteeShimmer 0.6s ease-out forwards;
  pointer-events: none;
}
.guarantee--tapped { animation: guaranteePulse 0.5s ease-out; }


/* =========================================
   BONUSES — grid cards
   ========================================= */
.bonuses-grid {
  display: grid;
  gap: 16px;
}

.bonus-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.bonus-card:hover {
  border-color: rgba(212, 160, 23, 0.2);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 0 24px rgba(212, 160, 23, 0.06);
}

.bonus-card__value {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 160, 23, 0.12);
}

.bonus-card__name {
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.bonus-card__desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.6;
}


/* =========================================
   CTA / CONTACT FORM — glass fields
   ========================================= */
.cta {
  padding: 110px 0;
}
.cta__inner {
  text-align: center;
}
.cta__title {
  font-size: clamp(var(--text-xl), 4.5vw, var(--text-2xl));
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
/* Contact form */
.cta__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: start;
}

.form-field {
  position: relative;
}
.form-field--full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 20px 18px 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: var(--text-base);
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(212, 160, 23, 0.35);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 3px rgba(212, 160, 23, 0.08);
}

.form-field label {
  position: absolute;
  top: 16px;
  inset-inline-start: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-sm);
  pointer-events: none;
  transition: all 0.25s var(--ease);
}
.form-field input:not(:placeholder-shown) + label,
.form-field input:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field textarea:focus + label {
  top: 6px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(212, 160, 23, 0.8);
  letter-spacing: 0.02em;
}

.cta__form .btn {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.cta__alt {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}
.cta__alt a {
  color: var(--accent-h);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-inline-start: 4px;
  transition: opacity 0.2s;
}
.cta__alt a:hover {
  opacity: 0.8;
}


/* =========================================
   FOOTER
   ========================================= */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  background: var(--bg);
}

.footer__top {
  margin-bottom: 36px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__logo { width: 28px; height: 28px; object-fit: contain; }
.footer__wordmark { font-size: var(--text-md); font-weight: 700; }
.footer__tagline { font-size: var(--text-sm); color: var(--text-2); }

.footer__grid {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
}
.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text-2);
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: var(--text-sm);
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }

.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all 0.25s;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.footer__socials a:hover {
  border-color: rgba(212, 160, 23, 0.3);
  color: var(--accent-h);
  background: rgba(212, 160, 23, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(240, 192, 48, 0.1),
    0 0 20px rgba(212, 160, 23, 0.1);
}
.footer__socials svg { width: 14px; height: 14px; }

.footer__bar {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--text-3);
}


/* =========================================
   MOBILE — Hero stats stacked, touch states,
   scroll-flash animations, performance
   ========================================= */

/* 1. Hero stats stacked on mobile */
.hero__stats {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero__stat {
  padding: 0;
}
.hero__stat:not(:last-child)::after {
  display: none;
}

/* 2. Touch-active states (mirror hover for tap feedback) */
.service:active {
  background: var(--accent);
}
.service:active .service__num  { color: rgba(0, 0, 0, 0.35); }
.service:active .service__title { color: #0a0a0c; }
.service:active .service__desc  { color: rgba(0, 0, 0, 0.6); }

.problem-card:active {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 12px 40px rgba(0, 0, 0, 0.25);
}
.pf-card:active {
  transform: scale(1.025);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.price-card:active {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 16px 48px rgba(0, 0, 0, 0.3);
}
.bonus-card:active {
  border-color: rgba(212, 160, 23, 0.2);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 0 24px rgba(212, 160, 23, 0.06);
}
.faq-question:active {
  color: var(--accent-h);
}
.btn--accent:active {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.35);
}
.btn--outline:active {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.btn--wa:active {
  background: linear-gradient(135deg, var(--accent-h) 0%, #f5d050 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 32px rgba(212, 160, 23, 0.3);
}

/* 4. Service row scroll-flash keyframes */
@keyframes serviceFlash {
  0%   { background-color: var(--accent); }
  100% { background-color: transparent; }
}
@keyframes serviceFlashNum {
  0%   { color: rgba(0, 0, 0, 0.35); }
  100% { color: var(--text-3); }
}
@keyframes serviceFlashTitle {
  0%   { color: #0a0a0c; }
  100% { color: #fff; }
}
@keyframes serviceFlashDesc {
  0%   { color: rgba(0, 0, 0, 0.6); }
  100% { color: var(--text-2); }
}
.service--flash {
  animation: serviceFlash 0.6s var(--ease) forwards;
}
.service--flash .service__num {
  animation: serviceFlashNum 0.6s var(--ease) forwards;
}
.service--flash .service__title {
  animation: serviceFlashTitle 0.6s var(--ease) forwards;
}
.service--flash .service__desc {
  animation: serviceFlashDesc 0.6s var(--ease) forwards;
}

/* 5. Guarantee badge pulse */
@keyframes shieldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(212, 160, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}
.guarantee__badge--pulse {
  animation: shieldPulse 0.8s ease-out;
}

/* 6. Section label gold shimmer */
@keyframes labelShimmer {
  0%   { text-shadow: 0 0 12px rgba(212, 160, 23, 0.7), 0 0 24px rgba(212, 160, 23, 0.3); }
  100% { text-shadow: none; }
}
.sect__label--shimmer {
  animation: labelShimmer 1s ease-out forwards;
}

/* 7. Enhanced mobile reveal — pop from scale(0.95) */
@media (max-width: 767px) {
  /* 1. Hero spacing — bump padding */
  .wrap { padding: 0 24px; }

  /* Mobile header — Apple liquid glass */
  .nav {
    background: rgba(6, 6, 8, 0.25);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 -1px 0 rgba(255, 255, 255, 0.03),
      0 4px 24px rgba(0, 0, 0, 0.2);
  }
  .nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(212,160,23,0.03) 50%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
    border-radius: inherit;
  }
  .nav.scrolled {
    background: rgba(6, 6, 8, 0.35);
    backdrop-filter: blur(60px) saturate(2.0) brightness(1.08);
    -webkit-backdrop-filter: blur(60px) saturate(2.0) brightness(1.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(255, 255, 255, 0.04),
      0 8px 40px rgba(0, 0, 0, 0.35);
  }

  /* Mobile menu — enhanced glass */
  .mobile-menu {
    background: rgba(10, 10, 14, 0.45);
    backdrop-filter: blur(50px) saturate(1.8);
    -webkit-backdrop-filter: blur(50px) saturate(1.8);
  }
  .mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), rgba(212,160,23,0.06), rgba(255,255,255,0.08), transparent);
    pointer-events: none;
  }
  .mobile-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.08), transparent);
    pointer-events: none;
  }

  /* Services mobile card redesign */
  .services {
    padding: 0;
    gap: 14px;
  }
  .service {
    border-bottom: none;
    border-radius: var(--radius-lg);
    background: rgba(19, 19, 24, 0.85);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
  }
  .service:first-child {
    border-top: none;
  }
  .service::before {
    display: none;
  }
  .service__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    max-width: none;
    text-align: right;
    align-items: flex-start;
    direction: rtl;
  }
  .service__num {
    font-size: var(--text-2xl);
    color: rgba(212, 160, 23, 0.15);
    line-height: 1;
    padding-top: 0;
  }
  .service__desc {
    grid-column: auto;
  }
  .service:hover {
    background: rgba(19, 19, 24, 0.85);
    border-color: rgba(212, 160, 23, 0.25);
  }
  .service:hover .service__num  { color: rgba(212, 160, 23, 0.2); }
  .service:hover .service__title { color: #fff; }
  .service:hover .service__desc  { color: var(--text-2); }
  .service:active {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
  }
  .service:active .service__num  { color: rgba(212, 160, 23, 0.25); }
  .service:active .service__title { color: var(--accent-h); }
  .service:active .service__desc  { color: var(--text); }

  /* Service card flash animation overrides */
  @keyframes serviceFlash {
    0%   { border-color: rgba(212, 160, 23, 0.4); background-color: rgba(212, 160, 23, 0.08); }
    100% { border-color: var(--glass-border); background-color: rgba(19, 19, 24, 0.85); }
  }

  /* 3. Button press animation */
  .btn:active {
    transform: scale(0.96);
    transition-duration: 0.1s;
  }

  /* 7. Card pop reveal */
  .problem-card.reveal,
  .price-card.reveal,
  .bonus-card.reveal {
    transform: translateY(30px) scale(0.95);
  }
  .problem-card.reveal.is-visible,
  .price-card.reveal.is-visible,
  .bonus-card.reveal.is-visible {
    transform: none;
  }

  /* Hero title dramatic reveal */
  .hero__title.reveal {
    transform: translateY(30px) scale(0.92);
  }
  .hero__title.reveal.is-visible {
    transform: none;
  }

  /* 9. Performance — remove backdrop-filter on below-fold cards */
  .problem-card,
  .bonus-card,
  .step {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(19, 19, 24, 0.85);
  }
  .problem-card {
    border: 1px solid var(--glass-border);
  }
  .bonus-card {
    border: 1px solid var(--glass-border);
  }

  /* 10. Scarcity banner stacks below 480px */
  .sect-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer social icons — 44x44 touch targets */
  .footer__socials a {
    width: 44px;
    height: 44px;
  }
  .footer__socials svg {
    width: 16px;
    height: 16px;
  }

  /* Portfolio iframe mobile override */
  .pf-card--5 iframe { width: 333.33%; height: 333.33%; transform: scale(0.3); }
}

/* Scarcity banner vertical stack on very small screens */
@media (max-width: 480px) {
  .scarcity-banner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .scarcity-banner__sep {
    display: none;
  }
}


/* =========================================
   RESPONSIVE — Tablet (768px+)
   ========================================= */
@media (min-width: 768px) {
  .wrap { padding: 0 40px; }
  .sect { padding: 120px 0; }
  .hero__bolt { display: block; }

  .hero__title {
    font-size: clamp(var(--text-3xl), 7vw, var(--text-4xl));
  }

  /* Restore horizontal stats row */
  .hero__stats {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .hero__stat {
    padding: 0 20px;
  }
  .hero__stat:first-child {
    padding-inline-start: 0;
  }
  .hero__stat:last-child {
    padding-inline-end: 0;
  }
  .hero__stat:not(:last-child)::after {
    display: block;
  }

  .service__inner {
    grid-template-columns: 40px 1fr 1.2fr;
    gap: 24px;
    padding: 36px 0;
    align-items: center;
  }
  .service__desc {
    grid-column: auto;
    text-align: end;
  }

  .portfolio-grid {
    columns: 2;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .pricing {
    grid-template-columns: 1fr 1.25fr 1fr;
    align-items: start;
  }
  .price-card--pop {
    padding: 40px 30px;
  }

  .problems {
    grid-template-columns: repeat(3, 1fr);
  }

  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__form {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bar-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* =========================================
   RESPONSIVE — Desktop (1024px+)
   ========================================= */
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .burger { display: none; }
  .sticky-cta { display: none; }

  .hero__wrap {
    padding-bottom: 80px;
  }

  .service__inner {
    grid-template-columns: 50px 1fr 1.5fr;
    gap: 32px;
    padding: 44px 0;
  }
  .service__title { font-size: var(--text-lg); }

  .step__num { font-size: var(--text-3xl); }

  .bonuses-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* =========================================
   REDUCED MOTION — respect user preference
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .service--flash,
  .service--flash .service__num,
  .service--flash .service__title,
  .service--flash .service__desc,
  .guarantee__badge--pulse,
  .sect__label--shimmer {
    animation: none;
  }
  .guarantee--tapped,
  .guarantee--tapped::before { animation: none; }
  .guarantee--tapped::before { display: none; }
  .reveal {
    transition-duration: 0.01ms;
  }
  .hero__orb--1,
  .hero__orb--2 {
    animation: none;
  }
}


/* =========================================
   LTR — English overrides
   ========================================= */
html[lang="en"] {
  direction: ltr;
}
html[lang="en"] .sect__label {
  font-family: var(--font-en);
}
html[lang="en"] .service__num,
html[lang="en"] .step__num {
  font-family: var(--font-en);
}
