/* ===============================
   ROOT VARIABLES (COLORS)
================================ */
:root {
  --bg-main: #0B0B0B;
  --bg-header-footer: #000000;
  --bg-card: #1A1A1A;
  --bg-hover: #222222;

  --text-main: #FFFFFF;
  --text-secondary: #C7C7C7;
  --text-muted: #919191;

  --accent-main: #D4AF37;
  --accent-hover: #A88C2A;

  --border-color: #2A2A2A;

  /* Spacing scale (8px-based, with small/large utility steps) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 56px;
  --space-11: 64px;
  --space-12: 80px;
  --space-13: 96px;
  --space-14: 112px;
  --space-15: 120px;

  --section-padding-desktop: var(--space-15);
  --section-padding-tablet: var(--space-12);
  --section-padding-mobile: var(--space-10);

  --radius-main: 16px;
  
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: clip;
  overflow-y: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   BASE
================================ */
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  overflow-y: visible;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      180deg,
      #070707 0%,
      #0b0b0b 45%,
      #090909 100%
    );
}


/* ===============================
   LAYOUT
================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}


/* ===============================
   SECTION (CONTENT ONLY)
================================ */
.section {
  padding: var(--section-padding-desktop) 0;
}

/* ===============================
   TYPOGRAPHY
================================ */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}


p {
  color: var(--text-secondary);
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-main);
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease,
              background-color .25s ease, color .25s ease;
  
}

.btn--primary {
  background: #f5c542;
  color: #111;
  transition: 
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.btn--primary:hover {
  background: #ffd766;
  box-shadow: 0 0 0 4px rgba(245,197,66,0.25);
  transform: translateY(-1px);
}

.btn--secondary {
  border: 2px solid rgba(255,255,255,0.6);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}





/* ===============================
   HEADER
================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(0,0,0,0.92);

  border-bottom: 1px solid rgba(255,255,255,0.06);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}


/* ===============================
   HEADER INNER
================================ */

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: 32px;
}
.nav--desktop ul {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.header__contact {
  display: flex;
  align-items: center;
}

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  text-decoration: none;
  color: #fff;
  line-height: 1.2;
}

.phone-number {
  font-size: 15px;
  font-weight: 600;
}

.phone-hours {
  font-size: 12px;
  opacity: 0.6;
}


/* ===============================
   LOGO
================================ */

 .logo {
  width: 100px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;   
  border-radius: 0;
  box-shadow: none;

  padding: 0;
  flex-shrink: 0;
}

.logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}


.logo__text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  white-space: nowrap;
}





/* ===============================
   NAVIGATION (DESKTOP)
================================ */

.nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);

  padding: 10px 14px;          
  border-radius: var(--radius-main);

  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-main);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.nav a:hover::after {
  width: 100%;
}

/* ===============================
   HEADER CTA BUTTON
================================ */

.header .btn--primary {
  background-color: var(--accent-main);
  color: #000;
  font-weight: 600;

  padding: 12px 26px;     
  font-size: 14px;
  border-radius: 8px;

  box-shadow: 0 6px 18px rgba(212,175,55,0.35);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header .btn--primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(212,175,55,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}


/* ===============================
   HERO (VIDEO)
================================ */

.hero {
  position: relative;
  padding: 0;
  background: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px; 

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.55) 65%,
    var(--bg-main) 100%
  );

  z-index: 2;
  pointer-events: none;
}



.hero--video { 
  position: relative; 
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%; 
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  --hx: 35%;
  --hy: 35%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

/* Background (tile effect) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  --tile-size: 96px;
  --grout-gold: rgba(212,175,55,0.35);
  --grout-gold-soft: rgba(212,175,55,0.18);
  --tile-dark: #050505;
  --tile-mid: #0b0b0b;

  background:
    radial-gradient(
      560px at 50% 30%,
      rgba(212,175,55,0.14),
      transparent 70%
    ),
    radial-gradient(
      900px at 50% 100%,
      rgba(0,0,0,0.0),
      rgba(0,0,0,0.7) 70%
    ),
    linear-gradient(180deg, #060606, #050505);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      220px at var(--gx, 50%) var(--gy, 55%),
      rgba(255,255,255,0.12),
      transparent 70%
    ),
    radial-gradient(
      420px at var(--gx, 50%) var(--gy, 55%),
      rgba(212,175,55,0.22),
      transparent 75%
    );
  mix-blend-mode: screen;
  opacity: 0.8;
  pointer-events: none;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--grout-gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grout-gold) 1px, transparent 1px),
    linear-gradient(to right, var(--grout-gold-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grout-gold-soft) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.25)),
    radial-gradient(
      320px at var(--gx, 50%) var(--gy, 55%),
      rgba(212,175,55,0.20),
      transparent 70%
    ),
    linear-gradient(180deg, var(--tile-mid), var(--tile-dark));
  background-size:
    var(--tile-size) var(--tile-size),
    var(--tile-size) var(--tile-size),
    calc(var(--tile-size) * 4) calc(var(--tile-size) * 4),
    calc(var(--tile-size) * 4) calc(var(--tile-size) * 4),
    100% 100%,
    100% 100%,
    100% 100%;
  background-position:
    center,
    center,
    center,
    center,
    center,
    center,
    center;
  opacity: 0.95;
  pointer-events: none;
  transform-origin: center 60%;
  transform: perspective(900px) rotateX(10deg) translateY(0) scale(1.22);
  animation: gridDrift 26s linear infinite;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.20));
}

.hero__bg .grid-spark {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(3px 3px at 20% 40%, rgba(212,175,55,0.30), transparent 70%),
    radial-gradient(3px 3px at 55% 60%, rgba(212,175,55,0.30), transparent 70%),
    radial-gradient(3px 3px at 80% 30%, rgba(212,175,55,0.30), transparent 70%);
  opacity: 0.0;
  animation: gridSpark 12s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes gridDrift {
  0% {
    transform: perspective(900px) rotateX(10deg) translateY(0) scale(1.22);
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      center,
      center,
      center;
  }
  100% {
    transform: perspective(900px) rotateX(10deg) translateY(30px) scale(1.22);
    background-position:
      0 320px,
      320px 0,
      0 160px,
      160px 0,
      center,
      center,
      center;
  }
}

@keyframes gridSpark {
  0%, 70% { opacity: 0; }
  80% { opacity: 0.35; }
  100% { opacity: 0; }
}


/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0,0,0,0.58),
      rgba(0,0,0,0.38) 40%,
      rgba(0,0,0,0.08) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0,0,0,0.58) 0%,
      rgba(0,0,0,0.32) 55%,
      rgba(0,0,0,0.10) 100%
    );
}

/* Interactive tile layer */
.hero__tiles {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(var(--tile-cols, 12), 1fr);
  grid-template-rows: repeat(var(--tile-rows, 8), 1fr);

  pointer-events: none;
  opacity: 0;

  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-origin: var(--mx, 50%) var(--my, 50%);
  transition: transform 0.15s ease;
}

.hero__tiles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    240px at var(--mx, 50%) var(--my, 50%),
    rgba(212,175,55,0.20),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero__tiles.is-active::before {
  opacity: 1;
}

.hero__tile {
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.10);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hero__tile.is-hot {
  background: rgba(212,175,55,0.22);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
  transform: scale(1.03);
}

/* Hero content */
.hero__inner { 
  position: relative; 
  z-index: 3; 
  min-height: 100svh;
  min-height: 100dvh;
  display: flex; 
  align-items: center; 
}

.hero__content {
  display: grid;
  gap: var(--space-6); 
  max-width: 720px;
  margin-bottom: 0;
}






.hero__content h1 {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;

  text-shadow:
    0 8px 36px rgba(0,0,0,0.9);
}



.hero__content p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: var(--space-7);
  line-height: 1.6;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.96);

  padding-left: 14px;
  border-left: 3px solid var(--accent-main);

  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}



.hero__benefits {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.hero__benefits li {
  position: relative;
  padding-left: 26px; 

  background: none;
  box-shadow: none;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.hero__benefits li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  

  width: 12px;
  height: 26px; 

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--accent-main);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}


.hero__actions .btn--primary {
  background: linear-gradient(
    135deg,
    #f5c542,
    #ffdf7e
  );

  box-shadow:
    0 18px 45px rgba(245,197,66,0.5),
    inset 0 1px 0 rgba(255,255,255,0.45);

  font-weight: 700;
  letter-spacing: 0.2px;
}


.hero__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 50px rgba(245,197,66,0.55);
}


.hero__actions .btn--secondary {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}

.hero__trust {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);

  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  
  padding: 0;
  list-style: none;

  font-size: 14px;
  color: rgba(255,255,255,0.96);
}

.hero__trust-list li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(3px);
}

.hero__trust-list span {
  opacity: 0.8;
  font-size: 13px;
}

.hero__trust-list strong {
  font-weight: 700;
  color: #fff;
}

/* ===============================
   HERO BUTTONS
================================ */

.hero__actions {
  display: flex;
  gap: var(--space-5);
}

.btn--hero {
  padding: 16px 34px;     
  font-size: 15px;
  border-radius: var(--radius-main);
}




/* ===============================
   RESPONSIVE
================================ */

/* ===============================
   SERVICES
================================ */

.services .container {
  display: grid;
  gap: var(--space-8);
}

.services__actions {
  display: flex;
  justify-content: center;
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-7);
  margin-bottom: 0px;
  align-items: stretch;
}

.services.section {
  position: relative;
}

.services.section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,0.35),
    transparent
  );
}


/* CARD */
.services article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;

  min-height: 420px;
  padding: 36px;

  background: linear-gradient(
    180deg,
    rgba(32, 32, 32, 0.95),
    rgba(24, 24, 24, 0.95)
  );

  border-radius: var(--radius-main);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* ACCENT LINE */
.services article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-main),
    transparent
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.services article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-main);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0);
  transition: box-shadow 0.3s ease;
  pointer-events: none;
}


/* HOVER EFFECT */
.services article:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.35);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.55),
    inset 0 0 22px rgba(212,175,55,0.08);
}

.services article:hover::before {
  opacity: 1;
}

.services article:hover::after {
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.28);
}


/* TITLE */
.services article h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.services article p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}


/* FEATURES LIST */
.service__list {
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.88);
}

.service__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #f5c400;
}


/* CTA LINK */
.service__cta {
  margin-top: auto;
  display: inline-block;

  font-size: 14px;
  font-weight: 500;
  color: var(--accent-main);
  text-decoration: none;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.service__cta:hover {
  transform: translateX(6px);
  opacity: 0.9;
}


.services__subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  opacity: 0.95;

  letter-spacing: normal;
  text-transform: none;
}

.services__subtitle--location {
  opacity: 0.92;
}


.services__intro {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.services__intro h2 {
  margin: 0;
}

/* ===============================
   SERVICES PAGE
================================ */

.services-page-hero {
  padding-top: calc(var(--header-h, 92px) + clamp(20px, 4vw, 52px));
  padding-bottom: clamp(40px, 7vw, var(--space-12));
  position: relative;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      520px at 20% 20%,
      rgba(212,175,55,0.12),
      transparent 70%
    );
  pointer-events: none;
}

.services-page-hero__inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  gap: var(--space-5);
  position: relative;
  margin-inline: auto;
  padding: var(--space-7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius-main) + 4px);
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01) 55%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 70px rgba(0,0,0,0.35);
}

.services-page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
}

.services-page-hero__subtitle {
  max-width: 900px;
  color: rgba(255,255,255,0.88);
}

.services-page-hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: 0;
  margin: var(--space-1) 0 0;
}

.services-page-hero__chips li {
  padding: var(--space-2) var(--space-3);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  background: rgba(212,175,55,0.08);
}

.services-page-hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.services-process.section {
  --section-pt-sm: var(--space-8);
  --section-pb-sm: var(--space-7);
}

.services-proof.section {
  --section-pt-sm: var(--space-7);
  --section-pb-sm: var(--space-8);
}

.services-process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.services-process__timeline::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: var(--space-7);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,0.55),
    transparent
  );
}

.services-process__step {
  position: relative;
  padding: var(--space-10) var(--space-5) var(--space-5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-main);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-process__step:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 14px 28px rgba(0,0,0,0.32),
    inset 0 0 22px rgba(212,175,55,0.07);
}

.services-process__index {
  position: absolute;
  top: var(--space-3);
  left: var(--space-5);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #151515;
  background: linear-gradient(135deg, #f3cd62, #d4af37);
  box-shadow: 0 6px 16px rgba(212,175,55,0.32);
}

.services-process__step h3 {
  font-size: 17px;
  margin-bottom: var(--space-2);
}

.services-process__step p {
  color: rgba(255,255,255,0.84);
}

.services-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.services-proof__grid article {
  padding: var(--space-7);
  border-radius: var(--radius-main);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.services-proof__grid h3 {
  font-size: 18px;
  margin-bottom: var(--space-3);
}

.services-proof__grid p {
  color: rgba(255,255,255,0.82);
}

@media (max-width: 900px) {
  .services-page-hero {
    padding-top: calc(var(--header-h, 72px) + var(--space-6));
    padding-bottom: var(--space-8);
  }

  .services-page-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-process__timeline::before {
    display: none;
  }

  .services-process__timeline,
  .services-proof__grid {
    grid-template-columns: 1fr;
  }

  .services-page-hero__inner {
    padding: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .page-home .hero__inner {
    align-items: flex-start;
    min-height: clamp(620px, 90svh, 880px);
    min-height: clamp(620px, 90dvh, 880px);
    padding-top: calc(var(--header-h, 92px) + 22px);
    padding-bottom: 68px;
  }

  .page-home .hero__content {
    max-width: 900px;
  }
}

@media (min-width: 768px) {
  .services-process.section {
    --section-pt-lg: var(--space-9);
    --section-pb-lg: var(--space-8);
  }

  .services-proof.section {
    --section-pt-lg: var(--space-8);
    --section-pb-lg: var(--space-9);
  }
}

@media (min-width: 1024px) {
  .services-process.section {
    --section-pt-lg: var(--space-10);
    --section-pb-lg: var(--space-9);
  }

  .services-proof.section {
    --section-pt-lg: var(--space-9);
    --section-pb-lg: var(--space-11);
  }
}



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


.footer {
  padding: var(--space-12) 0 var(--space-9);
  position: relative;

  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);

  border-top: 1px solid rgba(255,255,255,0.06);
}

/* GRID */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: var(--space-9);
  align-items: flex-start;
}

/* BRAND */
.footer__brand-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

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

.footer__brand strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-main);
}

.footer__brand p {
  margin-top: var(--space-3);
  max-width: 360px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.footer__why {
  margin-top: var(--space-2);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.6;
}

/* CONTACT */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 14px;
  font-style: normal;
}

.footer__contact::before {
  content: "";
  width: 28px;
  height: 2px;
  margin-bottom: var(--space-4);
  background: var(--accent-main);
  opacity: 0.6;
}

.footer__contact a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);

  font-weight: 500;
  color: var(--text-main);
  opacity: 0.9;

  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    text-shadow 0.25s ease;
}

.footer__contact a:hover {
  color: var(--accent-main);
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 200, 60, 0.35);
}

.footer__contact a {
  line-height: 1.4;
}

.footer__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.footer__value {
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.35;
}


/* PHONE - stronger */
.footer__phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

/* CTA */
.footer__cta {
  display: flex;
  justify-content: flex-end;
}

.footer__cta-card {
  width: 100%;
  max-width: 320px;
  padding: var(--space-5);
  border-radius: var(--radius-main);
  border: 1px solid rgba(212,175,55,0.45);
  background: linear-gradient(
    180deg,
    rgba(212,175,55,0.10),
    rgba(255,255,255,0.03)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 12px 30px rgba(0,0,0,0.35);
}

.footer__cta-card p {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  color: rgba(255,255,255,0.84);
}

.footer__cta .btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  background: transparent;
  border: 2px solid var(--accent-main);
  color: var(--accent-main);

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.footer__cta .btn:hover {
  background: rgba(212,175,55,0.12);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
  transform: translateY(-1px);
}

/* SEO TEXT */
.footer__seo {
  max-width: 760px;
  margin: var(--space-10) auto 0;
  padding: 0 var(--space-4);

  font-size: 12.5px;
  line-height: 1.65;
  text-align: center;
  color: var(--text-muted);

  position: relative;
}

.footer__seo::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto var(--space-6);
  background: rgba(255,255,255,0.12);
}

/* BOTTOM */
.footer__bottom {
  margin-top: var(--space-11);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer__bottom small {
  font-size: 12.5px;
  letter-spacing: 0.25px;
  color: var(--text-muted);
}



.cta {
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.12),
    rgba(0,0,0,0.9) 60%
  );
}

.section.cta {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
  position: relative;
  background: none;
}

.section.cta::before {
  content: "";
  position: absolute;
  inset: -40px 0;
  z-index: 0;

  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(212,175,55,0.10),
      rgba(212,175,55,0.04) 35%,
      transparent 70%
    );

  pointer-events: none;
}

/* Keep CTA content above decorative gradient layer. */
.section.cta > * {
  position: relative;
  z-index: 1;
}
.section.cta .btn {
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}

.section.cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(212,175,55,0.45);
}



.cta__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.cta__content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cta__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.84);
  max-width: 520px;
  margin-bottom: 26px;
}

.cta__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta__points li {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta__phone {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.cta__phone strong {
  color: #fff;
}


@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta {
    padding: 90px 0;
  }
}







/* ===============================
   ACCESSIBILITY
================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .hero__tiles {
    display: none;
  }
  .hero__bg::before,
  .hero__bg .grid-spark {
    animation: none !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2200;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f5c542;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 12px;
}

:where(main, section, div, form)[id] {
  scroll-margin-top: calc(var(--header-h, 88px) + 16px);
}

/* ===============================
   MOBILE MENU (RESTORED)
================================ */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.nav--mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;

  background: linear-gradient(
    180deg,
    rgba(15,15,15,0.98),
    rgba(8,8,8,0.98)
  );

  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1200;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.nav--mobile.active {
  transform: translateX(0);
}

.nav--mobile ul {
  list-style: none;
  padding: 120px 32px 32px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  flex: 1; 
}


.nav--mobile a {
  font-size: 22px;
  font-weight: 500;
  color: #fff;

  padding: 18px 20px;
  border-radius: var(--radius-main);

  display: flex;
  align-items: center;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav--mobile a:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}


/* CTA LINK (Get Quote) */
.nav--mobile .menu-cta {
  margin-top: auto; 
  justify-content: center;

  background: var(--accent-main);
  color: #000;
  font-weight: 600;

  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.nav--mobile .menu-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-close:hover {
  background: rgba(255,255,255,0.12);
}

.menu-header {
  position: relative;
  padding: 24px;
}

/* PHONE CTA */
.menu-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1; 
  
  height: 64px;           
  padding: 0 16px;        

  border-radius: var(--radius-main);    
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.04)
  );

  color: #fff;
  text-decoration: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 10px 30px rgba(0,0,0,0.5);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Accessible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.portfolio__filter:focus-visible,
.faq__question:focus-visible {
  outline: 2px solid rgba(245, 197, 66, 0.95);
  outline-offset: 2px;
}

/* Touch feedback */
@media (hover: none) and (pointer: coarse) {
  .btn:active,
  .portfolio__filter:active,
  .faq__question:active,
  .nav--mobile .menu-card:active,
  .menu-cta:active {
    transform: scale(0.98);
  }

  .nav--mobile .menu-card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
  }

  .menu-phone:hover,
  .menu-cta:hover {
    transform: none;
  }
}

.phone-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-main);
  background: linear-gradient(
    145deg,
    rgba(212,175,55,0.18),
    rgba(212,175,55,0.06)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-main);
  line-height: 1;
}


.menu-phone:hover {
  transform: translateY(-2px);
}

/* TEXT */
.phone-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.phone-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.phone-number {
  font-size: 18px;
  font-weight: 600;
}

/* CLOSE BUTTON  */
.menu-close {
  width: 44px;
  height: 44px;

  flex-shrink: 0;       

  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-main);
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.menu-top {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(420px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 0;
}



/* TAP FEEDBACK (mobile) */
.menu-phone:active {
  transform: scale(0.97);
}

.mobile-cta {
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Keep phone icon stable to avoid visual jitter in menu header. */
.phone-icon {
  font-size: 10px;
  position: relative;
  animation: none;
}

/* === MOBILE CTA BUTTON FIX === */
.nav--mobile .mobile-cta {
  margin-top: auto;               
  justify-content: center;

  background: linear-gradient(
    135deg,
    #f5c542,
    #ffdf7e
  );
  color: #000 !important;

  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;

  padding: 20px 24px;
  border-radius: var(--radius-main);

  box-shadow:
    0 18px 40px rgba(245,197,66,0.45),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav--mobile .mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(245,197,66,0.35),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.nav--mobile .mobile-cta:active {
  transform: scale(0.97);
}

.nav--mobile .mobile-cta:hover {
  background: linear-gradient(
    135deg,
    #f5c542,
    #ffdf7e
  );
  transform: translateY(-2px);
}

/* Hide desktop menu on mobile + small tablet */
@media (max-width: 1023.98px) {
  .nav--desktop {
    display: none;
  }

  .burger {
    display: flex;
  }
} 

@media (min-width: 1024px) {
  .nav--mobile,
  .nav--mobile.active {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
}

body.menu-open {
  overflow: hidden;
}

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



/* ===============================
   LAYOUT
================================ */

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: stretch;
}


/* ===============================
   LEFT - CONTACT INFO
================================ */

.contact__info {
  background: rgba(22, 22, 22, 0.95);
  padding: 48px;
  border-radius: var(--radius-main);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}

.contact__info h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 32px;
}
.contact__info h3 {
  margin-bottom: 6px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  padding: 14px 14px 14px 12px;
  min-height: 78px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius-main) - 2px);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact__item:not(a) {
  cursor: default;
}

.contact__item strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  display: block;
  margin-bottom: 5px;
}

.contact__item p,
.contact__value {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.contact__value--strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.contact__item--email .contact__value--strong {
  font-size: 16px;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .contact__item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,175,55,0.38);
    transform: translateX(4px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 3px 0 0 rgba(212,175,55,0.95);
  }

  .contact__item:hover strong {
    color: var(--accent-main);
  }

  .contact__item:hover .contact__icon {
    background: linear-gradient(
      145deg,
      rgba(212,175,55,0.35),
      rgba(212,175,55,0.12)
    );
  }
}

/* Divider */
.contact__divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
}

/* ===============================
   ICONS (SVG SAFE)
================================ */

.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-main);
  background: linear-gradient(
    145deg,
    rgba(212,175,55,0.18),
    rgba(212,175,55,0.06)
  );

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-main);
}

.contact__icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: var(--accent-main);
}

.contact__item-body {
  display: grid;
  gap: 3px;
  align-content: center;
}

.contact__item-body strong,
.contact__item-body .contact__value {
  display: block;
}

.contact__meta {
  margin-bottom: 18px;
}

.contact__meta-text {
  color: rgba(255,255,255,0.85);
}

.contact__areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
}

.contact__areas li {
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.34);
  background: rgba(212,175,55,0.08);
}

/* ===============================
   RIGHT - FORM
================================ */

.contact__form {
  background: rgba(22, 22, 22, 0.95);
  padding: 48px;
  border-radius: var(--radius-main);
  border: 1px solid rgba(255,255,255,0.06);

  display: flex;
  flex-direction: column;
  gap: 24px; 
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 16px; 
}



/* Inputs */
.contact__form input:not([type="checkbox"]),
.contact__form textarea,
.contact__form select {
  width: 100%;
  height: 52px;

  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: var(--radius-main);

  padding: 0 16px;

  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}



.contact__form input:not([type="checkbox"])::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact__form input:not([type="checkbox"]):focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent-main);
  background: #0e0e0e;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.18);
}

.contact__form textarea {
  height: auto;
  min-height: 130px;
  padding: 14px 16px;
  resize: none;
}

.form__group--consent {
  gap: 0;
}

.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.84);
}

.contact__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--accent-main);
  cursor: pointer;
}

.contact__consent a {
  color: var(--accent-main);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.6);
}

.contact__consent a:hover {
  text-decoration-color: rgba(212,175,55,0.95);
}

.contact__consent input[aria-invalid="true"] {
  outline: 2px solid rgba(255, 122, 122, 0.65);
  outline-offset: 1px;
}

.contact__consent-error {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #ff9d9d;
}




/* Button */
.contact__form .btn {
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.contact__phone {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  transition: color 0.25s ease;
}

.contact__phone:hover {
  color: var(--accent-main);
}

.contact__form-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  
}
.contact__form select {
  padding-right: 48px;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}


.contact__form select:invalid {
  color: rgba(255,255,255,0.4);
}
.contact__form select:valid {
  color: #fff;
}

.contact__trust {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.contact__note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.contact__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  margin-top: -8px;
}

.form__group--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact__submit-status {
  margin: -6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.contact__submit-status[data-state="ok"] {
  color: rgba(138, 230, 167, 0.96);
}

.contact__submit-status[data-state="warn"] {
  color: rgba(255, 214, 122, 0.95);
}

.contact__submit-status[data-state="error"] {
  color: rgba(255, 136, 136, 0.95);
}

.contact__next {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-main);
  background: rgba(255,255,255,0.02);
  padding: 14px 16px;
}

.contact__next h3 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.contact__next-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.contact__next-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.contact__next-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,175,55,0.92);
}

.contact__trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__trust-row li {
  border: 1px solid rgba(212,175,55,0.32);
  background: rgba(212,175,55,0.08);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.2;
}

.contact__map-block {
  margin-top: 34px;
}

.contact-map {
  background: rgba(22, 22, 22, 0.95);
  padding: 32px;
  border-radius: var(--radius-main);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.contact-map--ready {
  animation: map-card-enter 420ms ease forwards;
}

@keyframes map-card-enter {
  from {
    opacity: 0.6;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-map h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.contact-map__subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.contact-map__search {
  position: relative;
  z-index: 2;
}

.contact-map__search-fallback {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius-main);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  line-height: 1.5;
}

.contact-map__canvas {
  width: 100%;
  min-height: 360px;
  border-radius: calc(var(--radius-main) - 2px);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  background: #0e0e0e;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-map__canvas[hidden] {
  display: none;
}

.contact-map--fallback .contact-map__canvas {
  display: block;
}

.contact-map__canvas--fallback {
  min-height: 360px;
}

.contact-map__iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.contact-map:hover .contact-map__canvas {
  border-color: rgba(212,175,55,0.48);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.2), 0 18px 40px rgba(0,0,0,0.32);
}

.contact-map__selected {
  margin: 0;
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.45;
  border-radius: calc(var(--radius-main) - 2px);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.74);
}

.contact-map__result {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  border-radius: calc(var(--radius-main) - 2px);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.86);
}

.contact-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-map__cta[hidden] {
  display: none !important;
}

.contact-map__cta {
  min-width: 220px;
}

.contact-map__result[data-state="ok"] {
  border-color: rgba(96, 204, 134, 0.45);
  background: rgba(96, 204, 134, 0.12);
}

.contact-map__result[data-state="warn"] {
  border-color: rgba(255, 171, 90, 0.45);
  background: rgba(255, 171, 90, 0.12);
}

.contact-map__result[data-state="error"] {
  border-color: rgba(255, 110, 110, 0.45);
  background: rgba(255, 110, 110, 0.12);
}

.contact-map .mapboxgl-ctrl-geocoder {
  width: 100%;
  max-width: none;
  min-width: 0;
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: var(--radius-main);
  box-shadow: none;
  font-family: inherit;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-map .mapboxgl-ctrl-geocoder:focus-within {
  border-color: var(--accent-main);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}

.contact-map .mapboxgl-ctrl-geocoder--input,
.contact-map .mapboxgl-ctrl-geocoder input.mapboxgl-ctrl-geocoder--input {
  height: 52px;
  padding: 0 44px;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  opacity: 1;
  background: transparent;
  font-size: 14px;
  border: 0;
  outline: 0;
}

.contact-map .mapboxgl-ctrl-geocoder--input::placeholder,
.contact-map .mapboxgl-ctrl-geocoder input.mapboxgl-ctrl-geocoder--input::placeholder {
  color: rgba(255,255,255,0.35);
  -webkit-text-fill-color: rgba(255,255,255,0.35);
}

.contact-map .mapboxgl-ctrl-geocoder--input:focus,
.contact-map .mapboxgl-ctrl-geocoder input.mapboxgl-ctrl-geocoder--input:focus {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.contact-map .mapboxgl-ctrl-geocoder--icon {
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  fill: rgba(255,255,255,0.64);
}

.contact-map .mapboxgl-ctrl-geocoder--icon-search {
  left: 14px;
}

.contact-map .mapboxgl-ctrl-geocoder--icon-close {
  width: 16px;
  height: 16px;
  position: static;
  top: auto;
  right: auto;
  left: auto;
  transform: none;
  margin: 0;
}

.contact-map .mapboxgl-ctrl-geocoder--button {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 32px;
  background: transparent;
  min-width: 32px;
  min-height: 32px;
  margin: auto 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  z-index: 2;
}

.contact-map .mapboxgl-ctrl-geocoder--button:hover {
  background: rgba(255,255,255,0.08);
}

.contact-map .mapboxgl-ctrl-geocoder .suggestions,
.contact-map .mapboxgl-ctrl-geocoder--suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  border-radius: 12px;
  background: #141414;
  border: 1px solid #2b2b2b;
  box-shadow: 0 16px 36px rgba(0,0,0,0.52);
  z-index: 30;
}

.contact-map .mapboxgl-ctrl-geocoder--suggestion,
.contact-map .mapboxgl-ctrl-geocoder .suggestions > li > a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  line-height: 1.35;
}

.contact-map .mapboxgl-ctrl-geocoder .suggestions > li + li {
  margin-top: 4px;
}

.contact-map .mapboxgl-ctrl-geocoder--suggestion-title {
  color: #fff;
}

.contact-map .mapboxgl-ctrl-geocoder--suggestion-address {
  color: rgba(255,255,255,0.68);
}

.contact-map .mapboxgl-ctrl-geocoder--suggestion:hover,
.contact-map .mapboxgl-ctrl-geocoder .suggestions > li > a:hover,
.contact-map .mapboxgl-ctrl-geocoder .suggestions > li > a:focus {
  background: rgba(212,175,55,0.16);
}

.contact-map .mapboxgl-ctrl-geocoder .suggestions > li.mapboxgl-ctrl-geocoder--powered-by {
  margin-top: 6px;
  padding: 8px 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-map .mapboxgl-ctrl-geocoder .suggestions > li.mapboxgl-ctrl-geocoder--powered-by > a {
  padding: 0;
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  background: transparent;
}

.contact-map .mapboxgl-ctrl-logo,
.contact-map .mapboxgl-ctrl-attrib {
  font-size: 11px;
}

.contact__form--ads {
  box-shadow:
    0 50px 100px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn--lg {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
}


@media (max-width: 900px) {
  .contact__form {
    box-shadow: 0 30px 60px rgba(0,0,0,0.65);
  }
}


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

.reviews {
  position: relative;
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
}

.reviews::before {
  inset: 20px 0; 
}


.reviews__title {
  margin-bottom: 16px;
}

.reviews__subtitle {
  margin-bottom: 64px;
}



.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-main);
  font-size: 13px;
  color: #fff;
}

.reviews__google {
  font-weight: 600;
}

.reviews__rating {
  color: #d4af37;
  font-weight: 700;
}

.reviews__stars {
  color: #d4af37;
  letter-spacing: 2px;
}

.reviews__count {
  opacity: 0.7;
}

.reviews__title {
  font-size: 36px;
  margin-bottom: 12px;
}

.reviews__subtitle {
  max-width: 560px;
  opacity: 0.85;
  margin-bottom: 48px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-main);
  border: 1px solid rgba(212,175,55,0.28);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.review::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  opacity: 0.08;
  color: #d4af37;
}

.review__stars {
  color: #d4af37;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review__text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.96;
  margin-bottom: 24px;
}

.review__author strong {
  display: block;
  font-size: 14px;
}

.review__author span {
  font-size: 12px;
  opacity: 0.6;
}


.review {
  transition:
    box-shadow .45s ease,
    background .45s ease,
    border-color .45s ease;
}

.review:hover {
  border-color: rgba(212,175,55,0.28);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.review:hover .review__text {
  opacity: 0.96;
}

.review:hover::before {
  opacity: 0.08;
  transform: none;
}

/* Default reveal state (before JS toggles classes). */
.js-reveal {
  opacity: 1;
  transform: none;
}

/* Hidden pre-reveal state toggled by JS. */
.js-reveal.is-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

/* Visible state once the element enters viewport. */
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   FAQ
================================ */



.faq__title {
  text-align: center;
  margin-bottom: var(--space-5);
}

.faq__subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-13);
  opacity: 0.84;
}


.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.faq__item {
  border-radius: var(--radius-main);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  will-change: transform;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.faq__item.active {
  border-color: rgba(212,175,55,0.38);
  background: linear-gradient(
    180deg,
    rgba(212,175,55,0.09),
    rgba(255,255,255,0.03)
  );
  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(212,175,55,0.22);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  position: relative;
  padding: var(--space-5) var(--space-11) var(--space-5) var(--space-6);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  
  transition:
    background 0.25s ease,
    color 0.25s ease;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__question:hover {
  background: rgba(255,255,255,0.03);
}

.faq__item.active .faq__question {
  color: #fff;
}

.faq__icon {
  position: absolute;
  right: var(--space-6);
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent-main);
  border-bottom: 2px solid var(--accent-main);
  transform: translateY(-50%) rotate(45deg);
  transition:
    transform 0.35s cubic-bezier(.4,0,.2,1),
    opacity 0.25s ease,
    filter 0.25s ease;
  opacity: 0.75;
}


.faq__item.active .faq__icon {
  transform: translateY(-50%) rotate(-135deg) scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.45));
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4,0,.2,1);
}

.faq__answer p {
  padding: var(--space-5) var(--space-6);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq__item.active .faq__answer p {
  opacity: 1;
  transform: translateY(0);
}


/* FEATURED FAQ */
.faq__item--featured {
  background: linear-gradient(
    180deg,
    rgba(212,175,55,0.10),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow:
    0 10px 30px rgba(212,175,55,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.faq__item--featured .faq__question {
  font-weight: 600;
}

.faq__item--featured::after {
  content: "MOST COMMON";
  position: absolute;
  top: 10px;
  right: 56px; 
  padding: 3px 8px;
  font-size: 9px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: var(--radius-main);
  color: var(--accent-main);
  opacity: 0.8;
}

/* =====================
   404 PAGE
===================== */

.page-404 {
  background: #000;
}

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: radial-gradient(
    circle at top,
    rgba(212,175,55,0.08),
    rgba(0,0,0,0.95) 60%
  );
}

.error-404__inner {
  position: relative;
  max-width: 640px;
  padding: 20px;
}

.error-404__inner::before {
  content: "";
  position: absolute;
  inset: -60px -80px;
  background: radial-gradient(
    circle at center,
    rgba(212,175,55,0.08),
    rgba(0,0,0,0.85) 60%
  );
  z-index: -1;
}

.error-404__inner img {
  margin-bottom: 24px;
  opacity: 0.85;
}


.error-404 h1 {
  font-size: clamp(90px, 14vw, 140px);
  font-weight: 800;
  color: var(--accent-main);
  margin: 20px 0 10px;
}

.error-404 h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.error-404 p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.error-404__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.error-404__actions .btn {
  min-width: 200px;
}

.error-404__link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.error-404__link:hover {
  color: var(--accent-main);
}

.error-404__proof {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
  .error-404__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.faq-subtitle {
  opacity: 0.65;
  margin-bottom: 48px;
}

.seo-text {
  margin-top: 120px;
  font-size: 12px;
  opacity: 0.18;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}



/* ===============================
   MOBILE MENU - PREMIUM CARDS
================================ */

.menu-screen-inner {
  padding: 28px 20px calc(170px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  min-height: 0;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

body.menu-open .menu-screen-inner {
  overflow-y: auto;
}

/* GRADIENT BACKGROUND */
.nav--mobile {
  background: linear-gradient(
    160deg,
    #0b0b0b,
    #151515 50%,
    #0b0b0b
  );
}

/* CARDS */
.menu-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 0;
  flex: initial;
}

.menu-cards li {
  margin: 0;
  width: 100%;
}


.nav--mobile .menu-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: var(--radius-main);

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);

  color: #fff;
  text-decoration: none;

  transition:
    transform 0.35s cubic-bezier(.4,0,.2,1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Visual hierarchy: first two links are primary actions. */
.nav--mobile .menu-cards li:nth-child(-n+2) .menu-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,175,55,0.22);
}

.nav--mobile .menu-cards li:nth-child(n+3) .menu-card {
  background: rgba(255,255,255,0.035);
}

.nav--mobile .menu-card:hover {
  transform: translateY(-1.5px);
  background: rgba(255,255,255,0.065);
  box-shadow: 0 14px 32px rgba(0,0,0,0.55);
}

@media (hover: none) and (pointer: coarse) {
  .nav--mobile .menu-card:hover {
    transform: none;
    background: rgba(255,255,255,0.04);
    box-shadow: none;
  }
}


.menu-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-main);

  background: linear-gradient(
    145deg,
    rgba(212,175,55,0.18),
    rgba(212,175,55,0.06)
  );

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-main);
  line-height: 1;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 6px 14px rgba(0,0,0,0.45);
}

/* TEXT */
.menu-title {
  font-size: 17px;
  font-weight: 600;
}

/* CTA */
.menu-cta {
  margin-top: 22px;
  padding: 14px;
  border-radius: var(--radius-main);
  letter-spacing: 0.2px;

  text-align: center;
  font-weight: 700;
  font-size: 15.5px;

  background: linear-gradient(
    135deg,
    #f5c542,
    #ffdf7e
  );

  color: #000;
  text-decoration: none;

  animation: ctaFade .6s ease .25s both;

  box-shadow:
  0 14px 30px rgba(245,197,66,0.38),
  inset 0 1px 0 rgba(255,255,255,0.55);


  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.menu-cta:hover {
  transform: translateY(-1.5px);
  box-shadow:
    0 22px 44px rgba(245,197,66,0.5),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.menu-cta:active {
  transform: scale(0.985);
}



/* LOCATION */
.menu-location {
  width: 100%;   
  margin: 0; 
  line-height: 1; 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;

  text-align: center;
  letter-spacing: 0.2px;
  font-size: 13px;
  opacity: 0.85;
  color: rgba(255,255,255,0.45);
}


.menu-location .pin {
  margin-right: 2px;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-main);
  line-height: 1;
}

.menu-footer {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 32px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));

  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;

  z-index: 100;
}

.footer__legal a {
  color: inherit;
  text-decoration: underline;
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 420px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #0f131b;
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.cookie-notice__text {
  margin: 0 0 0.75rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-notice__text a {
  color: #f5c542;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice__btn {
  width: 100%;
  border-color: rgba(212, 175, 55, 0.42);
}

@media (max-width: 600px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

.mobile-sticky-cta {
  position: fixed;
  left: calc(12px + env(safe-area-inset-left, 0px));
  right: calc(12px + env(safe-area-inset-right, 0px));
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}

.mobile-sticky-cta .btn {
  width: 100%;
  max-width: 420px;
}

.page-privacy {
  background:
    radial-gradient(1200px 600px at 90% -20%, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(1000px 500px at -20% 10%, rgba(255, 255, 255, 0.08), transparent 55%),
    #0f1115;
}

.privacy-page {
  padding-top: calc(var(--header-h, 88px) + 24px);
}

.privacy-hero__panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  padding: 30px;
}

.privacy-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.privacy-hero h1 {
  margin: 0;
}

.privacy-hero__updated {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.76);
}

.privacy-hero__lead {
  margin: 0;
  max-width: 940px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.privacy-content {
  padding-top: 26px;
}

.privacy-content__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.privacy-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(10, 12, 16, 0.72);
  padding: 22px;
}

.privacy-card h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
}

.privacy-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.privacy-card--contact {
  grid-column: 1 / -1;
}

.privacy-contact {
  margin-top: 10px;
}

.privacy-contact a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.95);
  text-underline-offset: 3px;
}





