/* ============================================================
   STOPLEAK INJECTION — DESIGN SYSTEM
   Brand: Black #0a0a0a · Gold #D4A017 · White #fff · Silver #9A9A9A
   Fonts: Oswald (headings) · Inter (body)
   ============================================================ */

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* Colors */
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --surface-1:    #161616;
  --surface-2:    #1e1e1e;
  --surface-3:    #262626;
  --border:       rgba(255,255,255,0.08);
  --border-gold:  rgba(212,160,23,0.25);

  --gold:         #D4A017;
  --gold-light:   #f0c040;
  --gold-dark:    #a87e12;
  --gold-alpha10: rgba(212,160,23,0.10);
  --gold-alpha20: rgba(212,160,23,0.20);
  --gold-alpha40: rgba(212,160,23,0.40);

  /* Gold gradients */
  --grad-gold:        linear-gradient(110deg, #9a6500 0%, #D4A017 28%, #F5D060 58%, #C09020 85%, #9a6500 100%);
  --grad-gold-btn:    linear-gradient(120deg, #b87200 0%, #D4A017 30%, #f5d060 55%, #e0aa18 75%, #b87200 100%);
  --grad-gold-text:   linear-gradient(100deg, #C8870A 0%, #E8B820 35%, #FFD966 60%, #D4A017 100%);
  --grad-gold-line:   linear-gradient(90deg, transparent 0%, #C8870A 20%, #F5D060 50%, #C8870A 80%, transparent 100%);

  --white:        #ffffff;
  --gray-100:     #f5f5f5;
  --gray-200:     #e0e0e0;
  --gray-400:     #999999;
  --gray-500:     #777777;
  --silver:       #9A9A9A;

  /* Typography */
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Spacing */
  --gap-xs:    8px;
  --gap-sm:    16px;
  --gap-md:    24px;
  --gap-lg:    48px;
  --gap-xl:    80px;
  --gap-2xl:   120px;

  /* Layout */
  --header-h:    72px;
  --wrap:        1440px;
  --pad-x:       clamp(1.25rem, 4vw, 3rem);

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-pill: 100px;

  /* Transitions */
  --t-fast:  150ms ease;
  --t-base:  220ms ease;
  --t-slow:  400ms ease;

  /* Z-index */
  --z-sticky-call: 50;
  --z-header:      100;
}


/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   3. GLOBAL UTILITY
   ============================================================ */

/* Wrapper */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Section padding */
.section { padding-block: var(--gap-xl); }
.section--dark { background: var(--black-soft); }


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base), box-shadow var(--t-base),
              transform var(--t-base);
  white-space: nowrap;
  user-select: none;
}

/* Size: sm */
.btn--sm {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

/* Size: md */
.btn--md {
  padding: 14px 28px;
  font-size: 0.9375rem;
}

/* Size: lg */
.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* Gold (primary CTA) — metallic gradient */
.btn--gold {
  background: var(--grad-gold-btn);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212,160,23,0.30);
  transition: background-position var(--t-slow), box-shadow var(--t-base),
              transform var(--t-base);
}
.btn--gold:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,160,23,0.50);
}
.btn--gold:active { transform: translateY(0); }

/* Ghost (outline white) */
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ============================================================
   5. HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}

/* Transparent by default — becomes solid on scroll */
.header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-gold);
}

/* Inner row */
.header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  /* height: var(--header-h); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.logo__img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo__sub {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 1px;
}

/* ---- Desktop nav ---- */
.nav { display: none; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .mobile-menu { display: none !important; }
}

.nav__list,
.nav .main-nav {
  display: flex;
  gap: 32px;
}

.nav > div {
  display: flex;
}

.nav__link,
.nav .main-nav > li > a {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-base);
}

.nav__link::after,
.nav .main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold-text);
  transition: width var(--t-base);
}

.nav__link:hover,
.nav .main-nav > li > a:hover { color: var(--white); }
.nav__link:hover::after,
.nav .main-nav > li > a:hover::after { width: 100%; }

@media (max-width: 1240px) {
  .nav__list,
  .nav .main-nav {
    gap: 20px;
  }

  .nav__link,
  .nav .main-nav > li > a {
    font-size: 0.75rem;
  }
}

/* ---- Header actions ---- */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: none;
  border-radius: var(--r-sm);
}
@media (min-width: 640px) {
  .header__phone { display: inline-flex; }
}

@media (max-width: 1023px) {
  .header__inner {
    min-height: 72px;
  }

  .logo__img {
    width: 72px;
    height: 72px;
  }
}

/* ---- Hamburger ---- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--gold-alpha10); }

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .hamburger { display: none; }
}



/* ---- Mobile menu ---- */
.mobile-menu {
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px var(--pad-x) 32px;
  border-top: 1px solid var(--border-gold);
  animation: menuSlideDown 250ms ease forwards;
}
.mobile-menu[hidden] { display: none; }

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu__list,
.mobile-menu .main-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.mobile-menu__link,
.mobile-menu .main-nav > li > a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-base), padding-left var(--t-base);
}
.mobile-menu__link:hover,
.mobile-menu .main-nav > li > a:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu__cta {
  width: 100%;
  justify-content: center;
  border-radius: var(--r-sm);
}


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

/* — Background — */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top 30%;
  /* reduce brightness so gold + white text pops */
  filter: brightness(0.28) saturate(0.7);
}



/* Subtle diagonal grain texture for depth */
.hero__texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(212,160,23,0.02) 2px,
    rgba(212,160,23,0.02) 4px
  );
  pointer-events: none;
}

/* Gold top accent line */
.hero__topline {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold-line);
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}

/* — Content — */
.hero__container {
  position: relative;
  z-index: 3;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: clamp(3.5rem, 9vh, 6rem);
  width: 100%;
}

/* Badge pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* gradient border via background trick */
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    var(--grad-gold-text) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 8px 22px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: transparent;
  color: #e8c050;
}

/* H1 */
.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__h1-gold {
  font-style: normal;
  display: block;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(212,160,23,0.30));
}

/* Subheadline */
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__sub strong { color: var(--white); font-weight: 600; }

/* Checklist row */
.hero__checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 44px;
}

.hero__check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}

/* CTA row */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

/* Trust statistics bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 32px;
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-bar__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 28px;
  gap: 4px;
}
.trust-bar__stat:first-child { padding-left: 0; }
.trust-bar__stat:last-child  { padding-right: 0; }

.trust-bar__num {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-bar__plus {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-bar__gold {
  font-size: 1.5rem;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.trust-bar__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Mobile trust bar */
@media (max-width: 640px) {
  .hero__ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 44px;
  }

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

  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
    padding: 20px 24px;
    width: 100%;
  }
  .trust-bar__sep { display: none; }
  .trust-bar__stat { padding-inline: 0; align-items: flex-start; }
}

/* — Scroll indicator — */
.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
}

.hero__scroll-dot {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, #F5D060, #D4A017, transparent);
  display: block;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.2; transform: scaleY(0.8); }
  50%       { opacity: 0.9; transform: scaleY(1); }
}


/* ============================================================
   7. STICKY CALL BUTTON
   ============================================================ */
.sticky-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: var(--z-sticky-call);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold-btn);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: var(--black);
  border-radius: var(--r-pill);
  padding: 16px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 36px rgba(212,160,23,0.55);
  cursor: pointer;
  transition: background-position var(--t-slow), transform var(--t-base), box-shadow var(--t-base);

  /* hidden initially, shown by JS when scroll > 300px */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.sticky-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-call:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(212,160,23,0.65);
}

/* Pulsing ring */
.sticky-call__ring {
  position: absolute;
  inset: -5px;
  border-radius: var(--r-pill);
  border: 2px solid #e8b820;
  animation: ringPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.22); }
}

/* Mobile: icon only */
@media (max-width: 479px) {
  .sticky-call {
    bottom: 40px;
    right: 20px;
    padding: 16px;
    border-radius: 50%;
  }
  .sticky-call__label { display: none; }
}


/* ============================================================
   8. REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal="1"] { transition-delay:  80ms; }
[data-reveal="2"] { transition-delay: 180ms; }
[data-reveal="3"] { transition-delay: 260ms; }
[data-reveal="4"] { transition-delay: 340ms; }
[data-reveal="5"] { transition-delay: 440ms; }

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   8. SHARED COMPONENTS
   ============================================================ */

.grad-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  display: block;
}

.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.sec-label__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--grad-gold-text);
  opacity: 0.45;
}


/* ============================================================
   9. PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--black-soft);
  padding-block: clamp(4rem, 9vh, 7rem);
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.18), transparent);
}
.problem__wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.problem__head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.problem__h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.problem__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 580px;
  margin-inline: auto;
}
.problem__sub strong { color: var(--white); font-weight: 600; }

.prob-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
@media (max-width: 900px) {
  .prob-cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

.prob-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.prob-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  padding: 1px;
  background: var(--grad-gold-text);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}
.prob-card:hover::before { opacity: 1; }
.prob-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.45); }

.prob-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.prob-card__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  letter-spacing: -0.02em;
}
.prob-card__icon {
  width: 56px; height: 56px;
  background: var(--gold-alpha10);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.prob-card__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.prob-card__text {
  font-size: 0.9375rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}
.prob-card__tag {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
}
.prob-card__tag--high   { background: rgba(220,60,60,0.12);  color: #ff7b7b; border: 1px solid rgba(220,60,60,0.25); }
.prob-card__tag--urgent { background: rgba(212,160,23,0.12); color: var(--gold-light); border: 1px solid var(--border-gold); }
.prob-card__tag--cost   { background: rgba(160,80,200,0.12); color: #c084fc; border: 1px solid rgba(160,80,200,0.25); }

.crack-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.crack-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 72px;
}
.crack-flow__dot { border-radius: 50%; background: var(--grad-gold-btn); flex-shrink: 0; }
.crack-flow__dot--sm   { width: 10px; height: 10px; opacity: 0.35; }
.crack-flow__dot--md   { width: 16px; height: 16px; opacity: 0.55; }
.crack-flow__dot--lg   { width: 22px; height: 22px; opacity: 0.80; }
.crack-flow__dot--xl   { width: 28px; height: 28px; }
.crack-flow__dot--cost { width: 34px; height: 34px; background: linear-gradient(135deg,#c0392b,#e74c3c); }
.crack-flow__arrow { display: flex; align-items: center; padding-top: 12px; padding-inline: 6px; }
.crack-flow__label { font-size: 0.72rem; font-weight: 500; color: var(--silver); text-align: center; line-height: 1.5; }
.crack-flow__label--cost { color: #ff7b7b; font-weight: 700; }
@media (max-width: 640px) { .crack-flow { display: none; } }

.prob-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 28px 36px;
}
.prob-cta__icon {
  width: 52px; height: 52px;
  background: var(--gold-alpha10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.prob-cta__text { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 4px; }
.prob-cta__text strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.prob-cta__text span { font-size: 0.9rem; color: var(--silver); line-height: 1.6; }
.prob-cta .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .prob-cta { padding: 24px 20px; gap: 16px; }
  .prob-cta .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   11. SERVICES SECTION
   ============================================================ */
.services {
  background: var(--black);
  padding-block: clamp(4rem, 9vh, 7rem);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.15), transparent);
}

.services__wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Head */
.services__head {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.services__h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.services__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-inline: auto;
}

/* ---- Service list ---- */
.svc-list {
  border-top: 1px solid var(--border);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.svc-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--t-slow);
}


/* Left side */
.svc-item__left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.svc-item__num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  flex-shrink: 0;
  margin-top: -8px;
  transition: opacity var(--t-slow);
}
.svc-item:hover .svc-item__num { opacity: 0.45; }

.svc-item__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-item__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-alpha10);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), border-color var(--t-base);
}
.svc-item:hover .svc-item__icon {
  background: var(--gold-alpha20);
  border-color: rgba(212,160,23,0.5);
}

.svc-item__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  transition: color var(--t-base);
}
.svc-item:hover .svc-item__title { color: var(--gold-light); }

.svc-item__tagline {
  font-size: 0.9375rem;
  color: var(--silver);
  line-height: 1.5;
  font-style: italic;
}

/* Right side */
.svc-item__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}

.svc-item__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-item__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.svc-item__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A017' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.svc-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t-base), color var(--t-base);
  width: fit-content;
  cursor: pointer;
}
.svc-item__cta::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--grad-gold-text);
  width: 0;
  transition: width var(--t-slow);
  position: absolute;
  bottom: -2px;
  left: 0;
}
.svc-item__cta:hover { gap: 14px; color: var(--gold-light); }

@media (max-width: 768px) {
  .svc-list {
    border-top: 0;
    display: grid;
    gap: 16px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .svc-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
  }

  .svc-item__left {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num icon"
      "text text";
    align-items: start;
    gap: 14px 12px;
  }

  .svc-item__head {
    display: contents;
  }

  .svc-item__num {
    grid-area: num;
    position: static;
    margin-top: 0;
    font-size: 2.9rem;
    line-height: 1;
    opacity: 0.22;
    justify-self: start;
  }

  .svc-item__icon {
    grid-area: icon;
    width: 56px;
    height: 56px;
    justify-self: end;
    border-radius: var(--r-md);
  }

  .svc-item__head > div:not(.svc-item__icon) {
    grid-area: text;
  }

  .svc-item__title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .svc-item__tagline {
    font-size: 0.9rem;
  }

  .svc-item__right {
    gap: 18px;
    padding-top: 0;
  }

  .svc-item__bullets {
    gap: 10px;
  }

  .svc-item__bullets li {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

/* ---- Bottom ribbon ---- */
.svc-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 16px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 24px 32px;
  width: 100%;
  max-width: 100%;
}

.svc-ribbon__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-inline: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.svc-ribbon__item svg { color: var(--gold); flex-shrink: 0; }
.svc-ribbon__item:first-child { padding-left: 0; }
.svc-ribbon__item:last-child  { padding-right: 0; }

.svc-ribbon__sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .svc-ribbon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }
  .svc-ribbon__sep { display: none; }
  .svc-ribbon__item {
    padding-inline: 0;
    white-space: normal;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  .svc-ribbon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .svc-item {
    padding: 24px 20px;
  }

  .svc-item__num {
    font-size: 2.4rem;
  }

  .svc-item__icon {
    width: 52px;
    height: 52px;
  }
}


/* ============================================================
   12. HOW IT WORKS
   ============================================================ */
.how {
  background: var(--black-soft);
  padding-block: clamp(4rem, 9vh, 7rem);
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.15), transparent);
}

.how__wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Head */
.how__head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 7vh, 5.5rem);
}
.how__h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.how__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-inline: auto;
}

/* ---- Steps grid ---- */
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  position: relative;
}



@media (max-width: 900px) {
  .how__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .how__steps::before { display: none; }
  .how-step__connector { display: none; }
}

/* Individual step */
.how-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 24px 0;
  z-index: 1;
}

/* Arrow connector — shown between steps, hidden on last */
.how-step__connector {
  position: absolute;
  top: 44px;
  right: -24px;
  z-index: 2;
  opacity: 0.6;
}
.how-step--last .how-step__connector { display: none; }

/* Number */
.how-step__num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* Icon circle */
.how-step__icon {
  width: 72px;
  height: 72px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: border-color var(--t-slow), background var(--t-slow), box-shadow var(--t-slow);
  flex-shrink: 0;
}

/* Last step icon — gold accent ring */
.how-step__icon--gold {
  border-color: var(--border-gold);
  background: var(--gold-alpha10);
  box-shadow: 0 0 28px rgba(212,160,23,0.15);
}

.how-step:hover .how-step__icon {
  border-color: rgba(212,160,23,0.45);
  background: var(--gold-alpha10);
  box-shadow: 0 0 24px rgba(212,160,23,0.12);
}

/* Active dot on icon top-right */
.how-step__icon::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-gold-btn);
  opacity: 0;
  transition: opacity var(--t-slow);
}
.how-step:hover .how-step__icon::before { opacity: 1; }

/* Title */
.how-step__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color var(--t-base);
}
.how-step:hover .how-step__title { color: var(--gold-light); }

/* Text */
.how-step__text {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 220px;
  margin-inline: auto;
}

/* Guaranteed badge — step 4 only */
.how-step__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 5px 14px;
  background: var(--gold-alpha10);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .how-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon text"
      "icon badge";
    align-items: flex-start;
    text-align: left;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    column-gap: 20px;
    row-gap: 10px;
  }

  .how-step--last { border-bottom: none; }
  .how-step__num { display: none; }

  .how-step__icon {
    grid-area: icon;
    margin-bottom: 0;
  }

  .how-step__title {
    grid-area: title;
    margin-bottom: 0;
  }

  .how-step__text {
    grid-area: text;
    max-width: none;
    margin-inline: 0;
  }

  .how-step__badge {
    grid-area: badge;
    justify-self: flex-start;
    margin-top: 2px;
  }
}

@media (max-width: 500px) {
  .how-step {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
  }

  .how-step__icon {
    width: 56px;
    height: 56px;
  }

  .how-step__title {
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .how-step__text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ---- Bottom CTA ---- */
.how__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 32px 40px;
}

.how__cta-text {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.how__cta-text strong { color: var(--white); font-weight: 600; display: block; margin-top: 4px; }

.how__cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how__cta { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .how__cta-btns .btn { flex: 1; justify-content: center; }
}


/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */
.why {
  background: var(--black);
  padding-block: clamp(4rem, 9vh, 7rem);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.15), transparent);
}

.why__wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Head */
.why__head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.why__h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.why__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-inline: auto;
}

/* ---- Bento layout ---- */
.why__bento {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .why__bento { grid-template-columns: 1fr; }
}

/* Big left card */
.why-big {
  background: var(--surface-1);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

@media (max-width: 1024px) {
  .why-big { position: static; }
}

.why-big__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}

/* Selling phrases list */
.why-big__phrases {
  display: flex;
  flex-direction: column;
  gap: 0;
	margin-bottom: 24px;
}

/* Each phrase: small muted label + big gold accent word */
.why-big__phrase {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: padding-left var(--t-base);
}

.why-big__phrase:last-child  { border-bottom: none; padding-bottom: 0; }
.why-big__phrase:hover       { padding-left: 8px; }

.why-big__phrase-plain {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  transition: color var(--t-slow);
}
.why-big__phrase:hover .why-big__phrase-plain { color: rgba(255,255,255,0.65); }

.why-big__phrase-accent {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(212,160,23,0.12));
  transition: filter var(--t-slow);
}
.why-big__phrase:hover .why-big__phrase-accent {
  filter: drop-shadow(0 0 24px rgba(212,160,23,0.38));
}

.why-big__btn { width: 100%; justify-content: center; }

/* ---- Feature cards grid ---- */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

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

.why-feat {
  background: var(--surface-1);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background var(--t-base);
  cursor: default;
}
.why-feat:hover { background: var(--surface-2); }

/* Corner radius on first/last */
.why-feat:first-child { border-radius: var(--r-lg) 0 0 0; }
.why-feat:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
.why-feat:nth-last-child(2) { border-radius: 0 0 0 var(--r-lg); }
.why-feat:last-child { border-radius: 0 0 var(--r-lg) 0; }

@media (max-width: 600px) {
  .why-feat:first-child  { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .why-feat:nth-child(2) { border-radius: 0; }
  .why-feat:nth-last-child(2) { border-radius: 0; }
  .why-feat:last-child   { border-radius: 0 0 var(--r-lg) var(--r-lg); }
}

.why-feat__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-alpha10);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), border-color var(--t-base);
}
.why-feat:hover .why-feat__icon {
  background: var(--gold-alpha20);
  border-color: rgba(212,160,23,0.5);
}

.why-feat__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color var(--t-base);
}
.why-feat:hover .why-feat__title { color: var(--gold-light); }

.why-feat__text {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.65;
}


/* ============================================================
   RESULTS / BEFORE & AFTER + VIDEO
   ============================================================ */

.results {
  background: #111114;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.results__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.results__head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.results__h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.results__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}

.results__slider {
  position: relative;
}

.results__pagination {
  display: none;
}

.results__video-pagination {
  display: none;
}

.why-features__pagination {
  display: none;
}

/* ── BA Grid ── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── BA Pair ── */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: #0a0a0a;
}

/* ── Image wrapper ── */
.ba-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ba-pair:hover .ba-img {
  transform: scale(1.045);
}

/* ── Badges ── */
.ba-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
}

.ba-badge--before {
  background: rgba(10,10,10,0.78);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ba-badge--after {
  background: var(--grad-gold-btn);
  color: #0a0a0a;
}

/* ── Video ── */
.results__video-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 24px 64px rgba(0,0,0,0.65);
}

.results__video-wrap--double {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

@media (max-width: 900px) {
  .results__video-wrap--double {
    max-width: 800px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.results__video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(10,10,10,0.82);
  color: #D4A017;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(212,160,23,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.results__video {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: contain;
  background: #000;
}

.results__video-wrap--double .results__video {
  max-height: 560px;
  height: auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .results__head {
    max-width: 640px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .results__sub {
    font-size: 0.98rem;
    max-width: 44ch;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .results__slider .ba-pair[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .results__slider--swiper .ba-grid.swiper-wrapper {
    display: flex;
    gap: 0;
    margin-bottom: 0;
  }

  .results__slider--swiper .ba-pair.swiper-slide {
    width: 100%;
    height: auto;
  }

  .results__slider--fallback .ba-grid {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .results__slider--fallback .ba-grid::-webkit-scrollbar {
    display: none;
  }

  .results__slider--fallback .ba-pair {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }

  .results__pagination {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
    gap: 8px;
  }

  .results__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 !important;
  }

  .results__pagination .swiper-pagination-bullet-active {
    background: var(--gold);
  }

  .results__video-wrap.results__video-wrap--fallback {
    display: flex;
    grid-template-columns: none;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .results__video-wrap.results__video-wrap--fallback::-webkit-scrollbar {
    display: none;
  }

  .results__video-wrap.results__video-wrap--fallback .results__video {
    flex: 0 0 100%;
    width: 100%;
    height: clamp(220px, 58vw, 320px);
    max-height: none;
    object-fit: contain;
    scroll-snap-align: start;
  }

  .results__video-pagination {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
  }

  .results__video-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 !important;
  }

  .results__video-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
  }

  .why-features.why-features--mobile-slider {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    background: transparent;
    border: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .why-features.why-features--mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .why-features.why-features--mobile-slider .why-feat {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
  }

  .why-features.why-features--mobile-slider .why-feat:first-child,
  .why-features.why-features--mobile-slider .why-feat:nth-child(2),
  .why-features.why-features--mobile-slider .why-feat:nth-last-child(2),
  .why-features.why-features--mobile-slider .why-feat:last-child {
    border-radius: var(--r-lg);
  }

  .why-features.why-features--mobile-slider .why-feat[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .why-features__pagination {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
  }

  .why-features__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 !important;
  }

  .why-features__pagination .swiper-pagination-bullet-active {
    background: var(--gold);
  }
}

@media (max-width: 700px) {
  .results {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
  }

  .results__head {
    max-width: 100%;
    margin-bottom: 1.75rem;
  }

  .results__h2 {
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .results__sub {
    font-size: 0.95rem;
    max-width: 36ch;
    line-height: 1.55;
  }

  .ba-grid {
    max-width: 100%;
    gap: 0.9rem;
    margin-bottom: 2rem;
  }

  .ba-pair {
    border-radius: 12px;
  }

  .ba-badge {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
    padding: 0.26rem 0.62rem;
    bottom: 0.55rem;
  }

  .results__video-wrap {
    border-radius: 12px;
  }

  .results__video-wrap.results__video-wrap--fallback .results__video {
    height: clamp(200px, 62vw, 280px);
  }

  .results__video-badge {
    top: 0.7rem;
    left: 0.7rem;
    font-size: 0.54rem;
    letter-spacing: 0.12em;
    padding: 0.34rem 0.62rem;
    max-width: calc(100% - 1.4rem);
  }
}

@media (max-width: 380px) {
  .ba-img-wrap {
    aspect-ratio: 1 / 1;
  }

  .results__video-badge {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
}


/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  background: var(--black);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.18), transparent);
}

.reviews__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.reviews__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reviews__h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Google badge ── */
.reviews__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.reviews__stars {
  display: flex;
  gap: 2px;
}

.reviews__star {
  color: #F5B800;
  font-size: 1rem;
  line-height: 1;
}

.reviews__score {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.reviews__count {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Grid ── */
.reviews__slider {
  position: relative;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.reviews__pagination {
  display: none;
}

/* Do not hide slider cards via reveal animation states */
.reviews__slider .rev-card[data-reveal] {
  opacity: 1;
  transform: none;
}

/* ── Card ── */
.rev-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.rev-card:hover {
  border-color: rgba(212,160,23,0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.rev-card__stars {
  color: #F5B800;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.rev-card__quote {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  font-style: normal;
  flex: 1;
  margin: 0;
}

.rev-card__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.rev-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-gold-btn);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-card__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.rev-card__location {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .reviews__grid:not(.swiper-wrapper) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .reviews__slider--swiper .reviews__grid.swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .reviews__slider--swiper .reviews__grid .rev-card.swiper-slide {
    height: auto;
  }

  .reviews__slider--fallback .reviews__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews__slider--fallback .reviews__grid::-webkit-scrollbar {
    display: none;
  }

  .reviews__slider--fallback .reviews__grid .rev-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }

  .reviews__pagination {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
  }

  .reviews__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 !important;
  }

  .reviews__pagination .swiper-pagination-bullet-active {
    background: var(--gold);
  }
}


/* ============================================================
   SMART CTA BLOCK
   ============================================================ */

.cta-block {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}

/* Radial gold glow background */
.cta-block__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,160,23,0.08) 0%, transparent 70%),
    #0a0a0a;
  z-index: -1;
}

.cta-block__bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.22), transparent);
}

.cta-block__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.22), transparent);
}

.cta-block__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.cta-block__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-block__inner .sec-label {
  width: 100%;
}

/* ── Heading ── */
.cta-block__heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ── Sub ── */
.cta-block__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 3rem;
}

/* ── Choices row ── */
.cta-block__choices {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

/* ── Single choice ── */
.cta-choice {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-choice__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.cta-choice__btn {
  width: 100%;
  justify-content: center;
  border-radius: 6px;
}

.cta-choice__note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

/* ── Divider OR ── */
.cta-block__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.cta-block__divider span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);

  padding: 0.35rem 0;
}

/* ── Trust strip ── */
.cta-block__trust {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-block__trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

.cta-block__trust li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .cta-block__choices {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-block__divider {
    flex-direction: row;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-block__divider::before,
  .cta-block__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }

  .cta-choice__btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cta-block__trust {
    gap: 1rem;
  }
}


/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background: var(--black-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.18), transparent);
}

.contact__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ── Left info ── */
.contact__sec-label {
  justify-content: flex-start;
}

.contact__sec-label .sec-label__line:last-child {
  display: none;
}

.contact__h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

/* ── Detail list ── */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.2rem;
}

.contact__detail-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.45;
  transition: color 0.2s ease;
}

a.contact__detail-value:hover {
  color: var(--gold);
}

/* ── Form card ── */
.contact__form-wrap {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Form groups ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
	margin-bottom: 12px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-label__opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.25);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-input:focus {
  border-color: rgba(212,160,23,0.5);
  background: rgba(212,160,23,0.04);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.08);
}

.form-input--textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  border-radius: 8px;
}

.contact__privacy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .contact__wrap {
    grid-template-columns: 1fr;
  }

  .contact__sec-label {
    justify-content: center;
  }

  .contact__sec-label .sec-label__line:last-child {
    display: block;
  }

  .contact__h2 {
    text-align: center;
  }

  .contact__desc {
    text-align: center;
    max-width: 100%;
  }

  .contact__details {
    margin-bottom: 0.5rem;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #0a0a0a;
  position: relative;
}

.footer__topline {
  height: 1px;
  background: var(--grad-gold-line);
  opacity: 0.5;
}

.footer__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Main grid ── */
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Brand col ── */
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 28ch;
  margin-bottom: 1.25rem;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s ease;
}

.footer__phone svg {
  flex-shrink: 0;
  color: var(--gold);
  -webkit-text-fill-color: unset;
}

.footer__phone:hover {
  opacity: 0.8;
}

/* ── Col titles ── */
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}

/* ── Nav col ── */
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: var(--gold);
}

/* ── Contact col ── */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__contact-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: var(--gold);
}

.footer__contact-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
}

/* ── Trust col ── */
.footer__trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer__trust-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Bottom bar ── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

.footer__legal {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}

.footer__totop {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer__totop:hover {
  border-color: rgba(212,160,23,0.4);
  color: var(--gold);
  background: rgba(212,160,23,0.06);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer__totop {
    align-self: flex-end;
  }
}
