﻿/* =========================
   GILROY FONT
========================= */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =========================
   VARIABLES
========================= */
:root {
  --bg: #000;
  --panel: rgba(255, 255, 255, .04);
  --panel2: rgba(255, 255, 255, .07);
  --line: rgba(255, 255, 255, .12);

  --text: #fff;
  --muted: #A0A0A0;
  --soft: #6E6E6E;

  --accent: #296FA1;
  --accentSoft: rgba(41, 111, 161, .16);

  --shadow: 0 24px 70px rgba(0, 0, 0, .45);
  --glow: 0 0 60px rgba(41, 111, 161, .28);

  --r1: 36px;
  --r2: 28px;
  --r3: 20px;

  --container: min(1240px, calc(100vw - 32px));
  --topbar: 38px;
  --header-height: 110px;
  --header-gap: 24px;

  --font: Gilroy, Inter, sans-serif;
--main-bg:
    radial-gradient(ellipse at 50% -10%, rgba(41, 111, 161, 0.42), transparent 60%),
    radial-gradient(ellipse at 50% 110%, rgba(41, 111, 161, 0.42), transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(41, 111, 161, 0.12), transparent 70%),
    radial-gradient(ellipse at 20% 30%, rgba(41, 111, 161, 0.18), transparent 65%),
    radial-gradient(ellipse at 80% 70%, rgba(41, 111, 161, 0.18), transparent 65%),
    linear-gradient(180deg, #000000 0%, #020508 50%, #000000 100%);
}

/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  min-width: 320px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background: var(--main-bg);
  background-attachment: scroll;
  background-size: cover;
}


/* Fix for iOS viewport issues */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .24), transparent 24%, transparent 72%, rgba(0, 0, 0, .28)),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, .14) 70%, rgba(0, 0, 0, .32) 100%);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

/* Image optimization and loading states */
img {
  height: auto;
}

/* Image reveal — only for lazy-loaded images, not LCP/eager ones (prevents CLS/LCP regression) */
img[loading="lazy"] {
  animation: imageReveal 0.4s ease forwards;
}

@keyframes imageReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Image hover zoom effect */
a img,
button img {
  transition: transform 0.3s ease;
}

a:hover img,
button:hover img {
  transform: scale(1.02);
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer
}

/* Focus States for Accessibility */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Improve Touch Targets */
.carousel-nav-btn,
.accessories-tab-btn {
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
p {
  margin: 0
}

h1 {
  font-size: clamp(42px, 11vw, 112px);
  line-height: .9;
  letter-spacing: -.06em;
  max-width: 8ch;
}

h2 {
  font-size: clamp(32px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -.05em;
}

h3 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* =========================
   LAYOUT
========================= */
.section {
  width: var(--container);
  margin: 0 auto;
  min-height: auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  pointer-events: auto;
}

/* Ensure sections don't overflow on mobile */
@media (max-width: 768px) {
  .section {
    padding: 12px 0;
    min-height: auto;
  }
}

.head {
  max-width: 780px;
  margin: 0 auto 32px;
  display: grid;
  gap: 14px;
  text-align: center;
}

/* =========================
   HEADER — см. секцию APPLE-STYLE HEADER в конце файла
========================= */

/* =========================
   MOBILE NAVIGATION — см. секцию APPLE-STYLE HEADER в конце файла
 ========================= */

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 22px;

  border-radius: 999px;
  border: 1px solid transparent;

  font-weight: 700;
  transition: .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #103146 0%, var(--accent) 100%);
  box-shadow: 0 16px 40px rgba(41, 111, 161, .34);
  color: #fff;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding: 12px 20px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(41, 111, 161, .45);
  filter: brightness(1.1);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(41, 111, 161, .3);
}
/* =========================
   PANELS / CARDS
========================= */
.panel {
  border: 1px solid rgba(255, 255, 255, .08);

  background: linear-gradient(180deg,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .015));

  border-radius: var(--r2);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255, 255, 255, .06);

  backdrop-filter: blur(18px);
}

/* =========================
   HERO — FULLSCREEN SLIDER
========================= */
.section.hero {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: visible;
  margin-bottom: 80px;
}

/* ===== SLIDER CONTAINER ===== */
.hero-slider-new {
  position: relative;
  width: 100%;
  height: 100vh;
  height: var(--app-height, 100svh);
  min-height: 600px;
  overflow: hidden;
  background: #060c14;
  user-select: none;
}

.hero-slider-new-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===== SLIDE ===== */
.hero-slide-new {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide-new.hero-slide-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* <picture> fills the slot — img inside it is the actual image */
.hero-slide-bg picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.10);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Hero heights per platform ── */
/* Desktop  > 1023px : full viewport height (default above) */

/* Tablet  768 – 1023px */
@media (max-width: 1023px) {
  .hero-slider-new {
    height: 75vh;
    height: 75dvh;
    min-height: 520px;
  }
}

/* Mobile  < 768px */
@media (max-width: 767px) {
  .hero-slider-new {
    height: 65vh;
    height: 65dvh;
    min-height: 480px;
    max-height: 760px;
  }

  /* Portrait/square images: anchor to centre-top so face/subject stays visible */
  .hero-slide-bg img {
    object-position: center top;
  }
}

.hero-slide-new.hero-slide-active .hero-slide-bg img {
  transform: scale(1.0);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.48) 52%, rgba(0,0,0,0.12) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.78) 0%, transparent 44%);
}

/* ===== SLIDE CONTENT ===== */
.hero-slide-content {
  position: absolute;
  bottom: 160px;
  left: clamp(24px, 6vw, 96px);
  right: clamp(24px, 6vw, 96px);
  max-width: 700px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease 0.45s, transform 0.75s ease 0.45s;
}

.hero-slide-new.hero-slide-active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title-new {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 22px;
}

.hero-title-new .title-line {
  display: block;
}

.hero-title-new .title-line.accent {
  color: var(--accent);
}

.hero-subtitle-new {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
  margin: 0 0 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-cta-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 980px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 28px rgba(41,111,161,0.50);
  white-space: nowrap;
}

.hero-cta-new:hover {
  background: #3a9fd4;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(41,111,161,0.65);
}

.hero-cta-new:active {
  transform: scale(0.97);
}

.hero-cta-new svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.hero-cta-new:hover svg {
  transform: translateX(4px);
}

.hero-ghost-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  transition: color 0.2s, border-color 0.2s;
}

.hero-ghost-link:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.65);
}

/* ===== STATS BAR ===== */
.hero-stats-bar {
  position: absolute;
  bottom: 88px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 28px;
}

.hero-stat-val {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stat-sep {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ===== CONTROLS: DOTS + ARROWS ===== */
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 96px);
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.35s cubic-bezier(0.4,0,0.2,1);
}

.hero-dot.is-active {
  background: var(--accent);
  width: 32px;
}

.hero-slider-new-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrow-prev,
.hero-arrow-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-arrow-prev:hover,
.hero-arrow-next:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.42);
  transform: scale(1.08);
}

/* ===== AUTO-PLAY PROGRESS BAR ===== */
.hero-autoplay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 3px;
  background: rgba(255,255,255,0.10);
}

.hero-autoplay-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #5db4db);
  box-shadow: 0 0 12px rgba(41,175,225,0.5);
}

.hero-autoplay-fill.is-running {
  animation: heroAutoFill 5s linear forwards;
}

@keyframes heroAutoFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-slider-new {
    height: var(--app-height, 100svh);
  }

  .hero-slide-content {
    bottom: 175px;
    max-width: 100%;
  }

  .hero-stats-bar {
    bottom: 100px;
  }

  .hero-stat {
    padding: 0 16px;
  }

  .hero-stat-val {
    font-size: 20px;
  }

  .hero-stat-label {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .hero-slider-new {
    height: 86svh;
    min-height: 420px;
  }

  .hero-slide-content {
    top: 72px;
    bottom: auto;
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
  }

  .hero-title-new {
    font-size: 34px;
  }

  .hero-subtitle-new {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-cta-group {
    display: none;
  }

  .hero-stats-bar {
    bottom: 76px;
    gap: 0;
  }

  .hero-stat {
    padding: 0 10px;
  }

  .hero-stat-val {
    font-size: 17px;
  }

  .hero-controls {
    padding: 0 20px;
  }

  .hero-cta-new {
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-ghost-link {
    display: none;
  }
}

@keyframes wordFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* TECHNOLOGY SECTION ENHANCEMENTS - Premium Interactive */

/* Water/Glass Background Animation */
@keyframes waterGlassFlow {

  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  33% {
    transform: translateX(-2%) scale(1.02);
  }

  66% {
    transform: translateX(1%) scale(1.01);
  }
}

/* Particle & Droplet Motion */
@keyframes particleFloatSlow {

  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-25px) scale(1.2) rotate(180deg);
    opacity: 0.9;
  }
}

@keyframes dropletRise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleY(1);
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-120vh) scaleY(0.3);
  }
}


/* =========================
   STORYTELLING SCROLL IMMERSIVE (Enhanced 2025)
========================= */

/* Progressive Dark to Light */
/* Advanced Dust Particles */
@keyframes floatDust {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.35;
  }

  25% {
    transform: translateY(-30px) translateX(12px) scale(1.4) rotate(90deg);
    opacity: 0.85;
  }

  50% {
    transform: translateY(-15px) translateX(-8px) scale(0.9) rotate(180deg);
    opacity: 0.65;
  }

  75% {
    transform: translateY(-20px) translateX(5px) scale(1.2) rotate(270deg);
    opacity: 0.75;
  }
}

/* Typography & Layout */
/* Product Reveal Block 5 */
/* Glow Accents */
/* STICKY CTA Enhanced */
/* Scroll-triggered Reveals */
[data-reveal="fade"] {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}
[data-reveal="fade"].is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Parallax & Scroll Magic */
@keyframes backgroundParallax {

  0%,
  100% {
    transform: translateY(0px) scale(1.00);
  }

  50% {
    transform: translateY(-20px) scale(1.03);
  }
}


/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}


/* =========================
   ANIMATIONS
========================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease;
  pointer-events: auto;
}

[data-reveal="zoom"] {
  transform: translateY(28px) scale(.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.04)
  }
}

@keyframes heroOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heroOrbitCounter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes separatorSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes separatorSpinReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes wave {
  0% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(-3%)
  }

  100% {
    transform: translateX(0)
  }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:759px) {
  :root {
    --topbar: 36px;
    --header-height: 96px;
    --header-gap: 18px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-apple-stage {
    min-height: auto;
    padding: 18px 18px 96px;
    border-radius: 26px;
  }

  .hero-spec-ring {
    --orbit-radius: 190px;
    width: min(100%, 440px);
    transform: translate(-50%, -50%);
  }

  .hero-separator-lines {
    width: min(82%, 320px);
    transform: translate(-50%, -50%);
  }

  .hero-spec-node {
    width: 84px;
    height: 84px;
    padding: 8px;
  }

  .hero-spec-node strong {
    font-size: 11px;
  }

  .hero-poster-product {
    min-height: 280px;
    margin: 10px 0 22px;
  }

  .hero-product-image {
    width: min(100%, 360px);
    transform: none;
  }

.hero-apple-orbit {
    width: 92%;
    transform: translate(-50%, -50%);
  }

  .hero-apple-glow {
    width: 260px;
    height: 120px;
  }

  .section {
    padding: calc(var(--header-gap) + 18px) 0 56px;
  }

}



/* =========================
   ACCESSORIES SECTION — REDESIGN
========================= */

#accessories {
  position: relative;
  overflow: hidden;
}

/* -- Tab Switcher -- */
.accessories-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.accessories-tab-buttons {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}

.accessories-tab-btn {
  padding: 10px 28px;
  background: transparent;
  border: none;
  border-radius: 100px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  font-family: var(--font);
  white-space: nowrap;
  min-height: 44px;
}

.accessories-tab-btn:hover {
  color: var(--text);
}

.accessories-tab-btn-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(41,111,161,0.45);
}

/* -- Carousel Panels -- */
.accessories-carousel {
  width: 100%;
}

.carousel-panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.carousel-panel-active {
  display: block;
}

/* -- Stage Card -- */
.carousel-stage {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 44px 52px;
  margin-bottom: 16px;
  overflow: hidden;
}

.carousel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.carousel-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.carousel-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.carousel-copy h3 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.carousel-copy p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

.carousel-image {
  position: relative;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-panel-active .carousel-image img {
  transform: scale(1.04);
}

/* Play button */
.carousel-play-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
}

.carousel-play-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}

.carousel-play-btn svg {
  width: 20px;
  height: 20px;
}

/* -- Navigation Rail -- */
.carousel-rail-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: rgba(41,111,161,0.2);
  border-color: rgba(41,111,161,0.5);
  color: #fff;
}

.carousel-rail {
  display: flex;
  flex: 1;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}

.carousel-rail::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(25% - 6px);
  min-width: 90px;
  padding: 14px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  font-family: var(--font);
  min-height: 44px;
}

.carousel-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(41,111,161,0.35);
  color: rgba(255,255,255,0.9);
}

.carousel-item-number {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.8;
}

.carousel-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}

.carousel-item-active {
  background: linear-gradient(135deg, var(--accent), rgba(41,111,161,0.55));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(41,111,161,0.3);
}

.carousel-item-active .carousel-item-number {
  color: rgba(255,255,255,0.75);
  opacity: 1;
}

.carousel-item-active .carousel-item-title {
  color: #fff;
}

/* -- Responsive -- */
@media (max-width: 1023px) {
  .carousel-stage { padding: 32px 28px; }
  .carousel-content { grid-template-columns: 1fr; gap: 28px; }
  .carousel-image { height: 300px; }
  .carousel-item { flex: 0 0 calc(33.333% - 6px); }
}

@media (max-width: 759px) {
  .accessories-tabs-wrapper { margin-bottom: 28px; }
  .accessories-tab-buttons { flex-direction: column; width: 100%; border-radius: 20px; }
  .accessories-tab-btn { width: 100%; text-align: center; border-radius: 14px; padding: 12px 20px; }
  .carousel-stage { padding: 24px 20px; }
  .carousel-image { height: 240px; }
  .carousel-item { flex: 0 0 calc(50% - 4px); min-width: 100px; padding: 10px; }
}

@media (max-width: 479px) {
  .carousel-stage { padding: 20px 16px; border-radius: 16px; margin-bottom: 12px; }
  .carousel-content { gap: 18px; }
  .carousel-image { height: 190px; border-radius: 12px; }
  .carousel-copy { gap: 12px; }
  .carousel-copy h3 { font-size: 20px; }
  .carousel-copy p { font-size: 13px; line-height: 1.6; }
  .carousel-rail { gap: 6px; }
  .carousel-item { flex: 0 0 calc(50% - 3px); min-width: 90px; padding: 9px 8px; border-radius: 10px; gap: 3px; }
  .carousel-item-number { font-size: 9px; }
  .carousel-item-title { font-size: 11px; line-height: 1.3; }
  .carousel-nav-btn { width: 36px; height: 36px; min-width: 36px; }
  .carousel-nav-btn svg { width: 16px; height: 16px; }
}


/* ===== AUTHENTICITY VERIFICATION ===== */
#verify {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(41, 111, 161, .02) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 80px 0 100px;
}

.verify-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
}

.verify-header {
  text-align: center;
  margin-bottom: 48px;
}

.verify-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.verify-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
  line-height: 1.5;
}

.verify-form-wrap {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 32px;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.verify-input-group,
.verify-captcha-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verify-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.verify-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.verify-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.verify-input:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 111, 161, .15);
}

.verify-input-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

.verify-captcha {
  display: flex;
  align-items: center;
  gap: 16px;
}

.verify-captcha-question {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  min-width: 60px;
}

.verify-captcha-input {
  max-width: 100px;
  text-align: center;
}

/* Hide number input spinners */
.verify-captcha-input::-webkit-outer-spin-button,
.verify-captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.verify-captcha-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.verify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), rgba(41, 111, 161, .8));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(41, 111, 161, .4);
}

.verify-btn:active {
  transform: translateY(0);
}

.verify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}


.verify-help {
  margin-top: 32px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  overflow: hidden;
}

.verify-help-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.verify-help-header:hover {
  background: rgba(255, 255, 255, .03);
}

.verify-help-header svg {
  color: var(--accent);
  flex-shrink: 0;
}

.verify-help-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.verify-help-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  margin: 0;
}

.verify-help.expanded .verify-help-content {
  max-height: 160px;
  padding: 0 20px 20px;
}

/* Mobile */
@media (max-width: 767px) {
  #verify {
    padding: 80px 0 100px;
  }

  .verify-wrap {
    padding: 0 20px;
  }

  .verify-header {
    margin-bottom: 32px;
  }

  .verify-form-wrap {
    padding: 24px;
    border-radius: 20px;
  }

  .verify-input {
    padding: 14px 16px;
    font-size: 16px;
  }

  .verify-btn {
    padding: 16px 24px;
    font-size: 15px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === UTIL CLASSES (РІС‹РЅРµСЃРµРЅРЅС‹Рµ СЃС‚РёР»Рё) === */

.p-30 {
  padding: 30px;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}


/* ===== UTIL ===== */

.p-30 {
  padding: 30px;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* ===== HOTSPOT ===== */

/* ===== PANEL ===== */

/* ===== WATER ===== */

/* ===== INPUT ===== */

.input {
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 0 16px;
  color: #fff;
  font-size: 16px;
  transition: all 0.2s ease;
  width: 100%;
}

.input::placeholder {
  color: var(--soft);
}

.input:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(41, 111, 161, 0.1);
  box-shadow: 0 0 0 3px rgba(41, 111, 161, 0.15);
}

.input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 100, 100, 0.5);
}

/* ===== FAQ ===== */

/* СѓР±РёСЂР°РµРј СЃС‚Р°РЅРґР°СЂС‚РЅС‹Р№ СЃС‚СЂРµР»РѕС‡РЅС‹Р№ РјР°СЂРєРµСЂ */
/* РєР°СЃС‚РѕРјРЅС‹Р№ РїР»СЋСЃ */
/* РїСЂРё РѕС‚РєСЂС‹С‚РёРё */
/* С‚РµРєСЃС‚ */
/* ===== SPECS ===== */

@media (min-width: 760px) {
}

/* ===== HEADER ACTIONS ===== (удалены: spec-card, header-actions — не используются) */

@media (max-width: 759px) {
  /* адаптация табов стран для мобильных */
  .country-tabs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ===== NUMBERS ===== */

/* С†РёС„СЂС‹ */
/* С‚РµРєСЃС‚ */
/* ===== SCENARIOS ===== */

@media (min-width: 760px) {
}


/* С‚РµРєСЃС‚ */
/* hover СЌС„С„РµРєС‚ */
/* ===== AWARDS ===== */

/* ===== AWARDS PREMIUM REDESIGN ===== */
/* Premium shimmer effect */
/* Premium Benefits SVG Icon Styling */
@media (min-width: 760px) {
}

/* РєР°СЂС‚РѕС‡РєР° */
/* Р»РѕРіРѕС‚РёРї */
/* hover СЌС„С„РµРєС‚ */
/* ===== VIDEO ===== */

.video-wrapper {
  padding: 18px;
  overflow: hidden;
}

/* РєРѕРЅС‚РµР№РЅРµСЂ РІРёРґРµРѕ */
.video-box {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 */
  border-radius: 26px;
  overflow: hidden;

  background: linear-gradient(180deg,
      rgba(41, 111, 161, .18),
      rgba(255, 255, 255, .03));
}

/* iframe */
.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video placeholder glow effect */
.video-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(41, 111, 161, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== REVIEWS ===== */


/* ===== TESTIMONIALS (Apple-style) ===== */

.testimonials-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: transparent;
  border: none;
  padding: 32px 20px;
  text-align: center;
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-quote {
  display: none;
}

.testimonial-text {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  font-style: italic;
  font-family: 'Georgia', 'Times New Roman', serif;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author-text {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

/* навигация */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Р°РЅРёРјР°С†РёСЏ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* РјРѕР±РёР»СЊРЅР°СЏ Р°РґР°РїС‚Р°С†РёСЏ */
@media (max-width: 640px) {
  .testimonial-card {
    padding: 32px 20px;
  }

  .testimonial-text {
    font-size: 18px;
  }

}

/* ===== AWARDS NEW ===== */

.awards-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.award-card-new {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.award-card-new:hover {
  background: rgba(41, 111, 161, 0.1);
  border-color: rgba(41, 111, 161, 0.3);
  transform: translateY(-4px);
}

.award-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(41, 111, 161, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
}

.award-card-new {
  position: relative;
}

.award-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
}

.award-card-new h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.award-card-new p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.awards-trust-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.6);
}

.awards-trust-new svg {
  color: var(--accent);
}

.awards-trust-new span {
  font-size: 14px;
}

/* РјРѕР±РёР»СЊРЅР°СЏ Р°РґР°РїС‚Р°С†РёСЏ */
@media (max-width: 768px) {
  .awards-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .award-card-new {
    padding: 20px 14px;
  }

  .award-img {
    width: 60px;
    height: 60px;
  }
}

/* Award Modal */
.award-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.award-modal.active {
  display: flex;
}

.award-modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(41, 111, 161, 0.3);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.award-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.award-modal-close:hover {
  opacity: 1;
}

.award-modal-content img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.award-modal-content h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
}

.award-modal-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ===== SPECS NEW ===== */

.specs-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.spec-card-new {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.spec-card-new:hover {
  background: rgba(41, 111, 161, 0.1);
  border-color: rgba(41, 111, 161, 0.3);
  transform: translateY(-4px);
}

.spec-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(41, 111, 161, 0.15);
}

.spec-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.spec-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.spec-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* РјРѕР±РёР»СЊРЅР°СЏ Р°РґР°РїС‚Р°С†РёСЏ */
@media (max-width: 768px) {
  .specs-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .spec-card-new {
    padding: 20px 12px;
  }

  .spec-value {
    font-size: 18px;
  }
}

/* ===== FEATURES ===== */

/* РєР°СЂС‚РѕС‡РєР° */
/* РІРЅСѓС‚СЂРµРЅРЅСЏСЏ С‡Р°СЃС‚СЊ РєР°СЂС‚РѕС‡РєРё */
/* РёР·РѕР±СЂР°Р¶РµРЅРёРµ */
/* РёРЅРґРµРєСЃ */
/* Р·Р°РіРѕР»РѕРІРѕРє */
/* РѕРїРёСЃР°РЅРёРµ */
/* ===== LEAD ===== */

.lead-wrapper {
  padding: clamp(24px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}

/* glow СЌС„С„РµРєС‚ */
.lead-glow {
  position: absolute;
  right: -10%;
  bottom: -35%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(41, 111, 161, .24), transparent 65%);
  pointer-events: none;
}

/* СЃРµС‚РєР° */
.lead-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 760px) {
  .lead-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* РєРѕРЅС‚РµРЅС‚ */
.lead-content {
  display: grid;
  gap: 20px;
  align-content: start;
}

.lead-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.lead-content>p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
}

/* РїСЂРµРёРјСѓС‰РµСЃС‚РІР° */
.lead-benefits {
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}

.lead-benefits div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-benefits a {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease;
}

.lead-benefits a:hover {
  opacity: 0.7;
}

/* С„РѕСЂРјР° */
.lead-form {
  padding: 28px;
  display: grid;
  gap: 16px;
  white-space: normal;
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.lead-form .eyebrow {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead-form .input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 16px;
  transition: all .25s ease;
}

.lead-form .input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.lead-form .input:focus {
  background: rgba(255, 255, 255, .1);
  border-color: var(--accent);
  outline: none;
}

.lead-form .btn-primary {
  margin-top: 8px;
}

/* РїРѕРґРїРёСЃСЊ */
.form-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}

/* ===== FOOTER ===== */

.footer-wrapper {
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 20px;
}

.footer-head {
  margin: 0;
  text-align: left;
}

/* СЃРµС‚РєР° */
.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Map and locations responsive */
@media (max-width: 759px) {
  .map-box {
    height: 320px;
    border-radius: 20px;
  }

  .footer-side {
    order: -1;
  }

  .locations-list {
    max-height: none;
    overflow-y: visible;
  }

  .country-tabs-wrapper {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    padding: 4px 0;
  }

  .country-tab {
    padding: 8px 4px;
    font-size: 11px;
    min-width: auto;
    min-height: 48px;
  }

  .country-tab strong {
    font-size: 13px;
  }

  .country-tab span {
    display: none;
  }
}

/* РєР°СЂС‚Р° */
.map-box {
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(41, 111, 161, .24);
  background: linear-gradient(180deg,
      rgba(41, 111, 161, .16),
      rgba(255, 255, 255, .03));
  position: relative;
  flex-shrink: 0;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
}

/* РїСЂР°РІР°СЏ РєРѕР»РѕРЅРєР° */
.footer-side {
  display: grid;
  gap: 12px;
  align-content: start;
  position: relative;
  z-index: 1;
}

/* СЃРїРёСЃРѕРє */
.locations-list {
  display: grid;
  gap: 6px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
  margin-right: -8px;
  /* Ensure locations are always visible */
  visibility: visible;
  opacity: 1;
}

.locations-list::-webkit-scrollbar {
  width: 6px;
}

.locations-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .04);
  border-radius: 3px;
}

.locations-list::-webkit-scrollbar-thumb {
  background: rgba(41, 111, 161, .4);
  border-radius: 3px;
}

.locations-list::-webkit-scrollbar-thumb:hover {
  background: rgba(41, 111, 161, .6);
}

/* РєРѕРЅС‚РµР№РЅРµСЂ С‚Р°Р±РѕРІ СЃС‚СЂР°РЅ (РґРѕ С„СѓС‚РµСЂР°) */
.country-tabs-container {
  margin-bottom: 24px;
  padding: 0;
}

/* С‚Р°Р±С‹ СЃС‚СЂР°РЅ */
.country-tabs-wrapper {
  display: grid;
  gap: 12px;
  margin-bottom: 16px !important;
  grid-template-columns: repeat(3, 1fr);
  /* Keep tabs at top of footer side */
  position: relative;
  padding: 0 0 16px 0;
  margin: 0 0 16px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* С‚Р°Р±С‹ СЃС‚СЂР°РЅ (РІ РІРµСЂС…РЅРµРј РєРѕРЅС‚РµР№РЅРµСЂРµ - Р±РµР· СЂР°РјРєРё) */
.country-tabs-container .country-tabs-wrapper {
  border-bottom: none;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.country-tab {
  display: grid;
  gap: 4px;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  color: inherit;
  cursor: pointer;
  min-width: 100px;
  min-height: 56px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.country-tab:hover {
  border-color: rgba(41, 111, 161, .35);
  background: rgba(41, 111, 161, .07);
  transform: translateY(-1px);
}

.country-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.country-tab.is-active {
  border-color: rgba(41, 111, 161, .6);
  background: rgba(41, 111, 161, .13);
  box-shadow: inset 0 0 0 1px rgba(41, 111, 161, .25);
}

.country-tab strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
}

.country-tab span {
  display: block;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
  font-weight: 400;
}

/* РєРѕРЅС‚РµР№РЅРµСЂ СЃРѕ СЃРїРёСЃРєРѕРј РіРѕСЂРѕРґРѕРІ */
.cities-scroll-container {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.cities-list-container {
  display: grid;
  gap: 10px;
  animation: fadeIn .3s ease;
}

.cities-list-container.is-active {
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* СЃС‚Р°СЂС‹Рµ РєР»Р°СЃСЃС‹ (РґР»СЏ СЃРѕРІРјРµСЃС‚РёРјРѕСЃС‚Рё, РµСЃР»Рё РЅСѓР¶РЅС‹) */
/* call center */
.floating-social {
  right: 16px;
  bottom: 80px;
  /* Above floating-cta on mobile */
  flex-direction: row-reverse;
  align-items: center;
}

.footer-call {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(41, 111, 161, 0.15), rgba(41, 111, 161, 0.05));
  border: 1px solid rgba(41, 111, 161, 0.3);
  /* Match height with map for alignment */
  min-height: 150px;
  box-sizing: border-box;
}

.footer-call strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.footer-call a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-call a:hover {
  color: var(--accent);
}

.footer-call span {
  color: var(--muted);
  font-size: 13px;
}

/* Mobile call center */
@media (max-width: 759px) {
  .footer-call {
    padding: 24px 16px;
    min-height: auto;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-call a {
    font-size: 32px;
  }
}

/* РЅРёР¶РЅРёР№ Р±Р»РѕРє */
.footer-bottom {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
}

.footer-bottom-brand,
.footer-bottom-social,
.footer-bottom-coverage {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom strong {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bottom span,
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 16px;
}

/* Copyright */
.footer-copyright {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-content p {
  color: var(--soft);
  font-size: 13px;
  margin: 0;
}

.copyright-links {
  display: flex;
  gap: 24px;
}

.copyright-links a {
  color: var(--soft);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright-links a:hover {
  color: var(--accent);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 28px 20px;
    background: linear-gradient(180deg, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.85) 100%);
  }

  .footer-bottom-brand,
  .footer-bottom-social,
  .footer-bottom-coverage {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .copyright-content {
    flex-direction: column;
    text-align: center;
  }

  .copyright-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== FLOATING BUTTON ===== */

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;

  padding: 16px 24px;
  min-height: 56px;
  border-radius: 999px;
  border: 0;

  background: linear-gradient(135deg, #103146 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;

  box-shadow: 0 18px 40px rgba(41, 111, 161, .35);

  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(41, 111, 161, .45);
}

.floating-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(41, 111, 161, .4);
}

.floating-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ===== MODAL ===== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* фон */
.modal-overlay {
  min-height: 100%;
  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(14px);
}

/* окно */
.modal-content {
  width: min(100%, 520px);
  padding: 28px;
  position: relative;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;

  animation: modalFade .35s ease;
}

/* Close button */
.modal-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.modal-close:active {
  transform: scale(0.95);
}

/* Р°РЅРёРјР°С†РёСЏ */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* РєРЅРѕРїРєР° Р·Р°РєСЂС‹С‚РёСЏ */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;
  min-width: 38px;
  box-sizing: border-box;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: #fff;

  cursor: pointer;
}

/* Р·Р°РіРѕР»РѕРІРѕРє */
.modal-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 10px;
}

/* С‚РµРєСЃС‚ */
.modal-text {
  margin-bottom: 18px;
  color: var(--muted);
}

/* С„РѕСЂРјР° */
.modal-form {
  display: grid;
  gap: 14px;
}

/* РіСЂСѓРїРїР° */
.form-group {
  display: grid;
  gap: 8px;
}

.form-group span {
  color: #fff;
}

/* СЃС‚Р°С‚СѓСЃ */
.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}
.form-status.is-success {
  color: #4ade80;
}
.form-status.is-error {
  color: #f87171;
}
.modal-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== FLOATING SOCIAL (Fixed) ===== */
.floating-social {
  position: fixed;
  right: 24px;
  bottom: 88px;
  /* Above floating-cta (16px + 56px + 16px) */
  z-index: 95;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

.social-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.social-toggle:hover {
  background: rgba(41, 111, 161, 0.2);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(41, 111, 161, 0.3);
}

.floating-social.is-open .social-toggle {
  transform: rotate(90deg);
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-social.is-open .social-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.social-btn {
  place-items: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);

  backdrop-filter: blur(10px);

  transition: transform .3s ease, box-shadow .3s ease;
}

/* РёРєРѕРЅРєР° */
.social-btn img {
  width: 20px;
  height: 20px;
}

/* hover */
.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(41, 111, 161, .3);
}

/* С†РІРµС‚Р° Р±СЂРµРЅРґРѕРІ */
.social-btn.whatsapp:hover {
  background: #25D366;
}

.social-btn.telegram:hover {
  background: #0088cc;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-btn.youtube:hover {
  background: #ff0000;
}

/* ===== PHONE ===== */

/* hover СЌС„С„РµРєС‚ */
/* ===== SCROLL PROGRESS BAR ===== */

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(41, 111, 161, .6));
  width: 0%;
  z-index: 100;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(41, 111, 161, .4);
}

/* ===== HISTORY CHRONICLE ===== */

.history-chronicle {
  display: grid;
  gap: 26px;
  padding: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
}

.history-chronicle::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.history-chronicle > * {
  position: relative;
  z-index: 1;
}

.history-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 24px;
  align-items: stretch;
}

.history-stage-copy,
.history-stage-media {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
}

.history-stage-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px 34px 60px;
  /* Increased bottom padding to pull content up */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .88)),
    radial-gradient(circle at top left, rgba(41, 111, 161, .26), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .1);
}

.history-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #d8ebf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.history-stage-year {
  min-height: .95em;
  font-size: clamp(20px, 4vw, 28px);
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(41, 111, 161, .9);
  font-variant-numeric: tabular-nums;
}

.history-stage-copy h3 {
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
  font-size: clamp(32px, 5vw, 56px);
  line-height: .95;
  max-width: 11ch;
}

.history-stage-copy p:last-child {
  min-height: 5.2em;
  max-width: 44ch;
  font-size: 15px;
}

.history-stage-media {
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(41, 111, 161, .28), transparent 42%),
    linear-gradient(180deg, rgba(6, 9, 13, .9), rgba(7, 10, 14, .66));
  border: 1px solid rgba(41, 111, 161, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 24px 60px rgba(0, 0, 0, .36);
}

.history-stage-media::before,
.history-stage-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.history-stage-media::before {
  width: min(32vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(41, 111, 161, .22);
  box-shadow: inset 0 0 42px rgba(41, 111, 161, .08), 0 0 60px rgba(41, 111, 161, .14);
}

.history-stage-media::after {
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.history-stage-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .36);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.history-stage-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, .55));
  transition: opacity .28s ease, transform .28s ease;
}

.history-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  width: 100%;
  padding: 6px 0 10px;
}

.history-rail::before {
  display: none;
}

.history-rail::-webkit-scrollbar {
  height: 8px;
}

.history-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
}

.history-rail::-webkit-scrollbar-thumb {
  background: rgba(41, 111, 161, .45);
  border-radius: 999px;
}

.history-rail::before {
  content: "";
  position: absolute;
  left: 22px;
  width: max(100%, 1320px);
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 111, 161, .06), rgba(41, 111, 161, .55), rgba(41, 111, 161, .06));
}

.chrono-marker.history-step {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
  scroll-snap-align: start;
}

.chrono-marker.history-step:hover,
.chrono-marker.history-step.is-active {
  border-color: rgba(41, 111, 161, .46);
  background: linear-gradient(180deg, rgba(41, 111, 161, .18), rgba(255, 255, 255, .03));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 26px rgba(41, 111, 161, .12);
}

.history-step-model {
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: center;
  width: 100%;
}

@media (max-width: 1023px) {
  .history-stage {
    grid-template-columns: 1fr;
  }

  .history-stage-copy,
  .history-stage-media {
    min-height: 380px;
  }

  .history-stage-media {
    order: -1;
  }

  .history-rail::before {
    display: none;
  }
}

@media (max-width: 759px) {
  .history-chronicle {
    padding: 18px;
  }

  .history-stage-copy,
  .history-stage-media {
    min-height: auto;
    padding: 24px;
  }

  .history-stage-year {
    min-height: .95em;
    font-size: clamp(48px, 18vw, 78px);
  }

  .history-stage-copy h3 {
    max-width: none;
    min-height: auto;
    font-size: clamp(22px, 7vw, 32px);
  }

  .chrono-marker.history-step {
    flex-basis: 160px;
    min-height: 60px;
  }

  .history-rail {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(41, 111, 161, .45) rgba(255, 255, 255, .05);
    padding: 6px 4px 10px;
    gap: 12px;
    max-width: none;
  }

  .history-rail::-webkit-scrollbar {
    height: 8px;
  }

  .history-rail::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 999px;
  }

  .history-rail::-webkit-scrollbar-thumb {
    background: rgba(41, 111, 161, .45);
    border-radius: 999px;
  }
}

/* ===== PREMIUM BENEFITS ===== */

.premium-stage {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.premium-stage-copy {
  position: relative;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(41, 111, 161, .12), rgba(0, 0, 0, .6)),
    linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  border: 1px solid rgba(41, 111, 161, .2);
}

.premium-stage-copy h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.01em;
}

.premium-stage-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
}
@media (max-width: 1023px) {
  .premium-stage {
    grid-template-columns: 1fr;
  }

  .premium-stage-copy{
    order: -1;
  }

}

@media (max-width: 759px) {
  .premium-stage-copy {
    order: -1;
  }
}

/* Model Modal Content Layout */
/* ===== TECH BENEFITS ===== */

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(41, 111, 161, .12);
  color: rgba(41, 111, 161, .9);
}

@media (max-width: 1023px) {
}

@media (max-width: 759px) {
}

@media (max-width: 759px) {
}

/* ====================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ==================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  :root {
    --container: 1400px;
  }

  .section {
    padding: 100px 40px;
  }

}

/* Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --container: 960px;
  }
}

/* Tablet Landscape (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
  :root {
    --container: 860px;
  }

  .section {
    padding: 60px 24px;
  }

  .carousel-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .carousel-image {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Tablet Portrait (600px - 899px) */
@media (min-width: 600px) and (max-width: 899px) {
  :root {
    --container: 560px;
  }

  .section {
    padding: 50px 20px;
  }

  .head h2 {
    font-size: clamp(28px, 4vw, 40px);
  }

  .hero {
    min-height: 60vh;
  }

  .carousel-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carousel-image {
    height: 260px;
  }

  .carousel-rail {
    gap: 10px;
  }

  .carousel-item {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.lead-grid {
    grid-template-columns: 1fr;
  }
}

/* Large Phone (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  :root {
    --container: 440px;
  }

  .section {
    padding: 40px 16px;
  }

  .head {
    padding: 0 10px;
  }

  .head h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .head p {
    font-size: 15px;
  }

  .hero {
    min-height: 50vh;
  }

  .carousel-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .carousel-stage {
    padding: 20px 16px;
    margin-bottom: 24px;
  }

  .carousel-image {
    height: 220px;
  }

  .carousel-copy h3 {
    font-size: 22px;
  }

  .carousel-copy p {
    font-size: 14px;
  }

  .carousel-rail {
    gap: 8px;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 4px);
    min-width: 120px;
    padding: 10px;
  }

  .carousel-item-title {
    font-size: 13px;
  }

  .accessories-tab-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .accessories-tab-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

.award-card {
    flex: 0 0 92%;
    scroll-snap-align: center;
  }


  .lead-grid {
    grid-template-columns: 1fr;
  }

  .locations-list {
    max-height: 300px;
  }
}

/* Mobile Phone (320px - 479px) */
@media (max-width: 479px) {
  :root {
    --container: calc(100% - 32px);
  }

  body {
    font-size: 14px;
  }

  .section {
    padding: 32px 12px;
  }

  .head {
    padding: 0;
    gap: 12px;
  }

  .head .eyebrow {
    font-size: 11px;
  }

  .head h2 {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.2;
  }

  .head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero {
    min-height: 45vh;
  }

  .carousel-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .carousel-stage {
    padding: 16px 12px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .carousel-image {
    height: 360px;
    border-radius: 12px;
  }

  .carousel-copy {
    gap: 10px;
  }

  .carousel-copy .carousel-kicker {
    font-size: 11px;
  }

  .carousel-copy h3 {
    font-size: 18px;
  }

  .carousel-copy p {
    font-size: 13px;
    line-height: 1.5;
  }

  .carousel-rail {
    gap: 6px;
    padding-top: 0;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 3px);
    min-width: 100px;
    padding: 8px;
    border-radius: 10px;
  }

  .carousel-item-title {
    font-size: 11px;
    line-height: 1.3;
  }

  .carousel-nav-btn {
    width: 32px;
    height: 32px;
  }

  .carousel-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .accessories-tabs-wrapper {
    margin-bottom: 16px;
  }

  .accessories-tab-buttons {
    flex-direction: column;
    gap: 6px;
  }

  .accessories-tab-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .button,
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

.footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer h3 {
    font-size: 18px;
  }

  .locations-list {
    max-height: 250px;
    gap: 8px;
  }

  .location-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .award-card {
    padding: 14px;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lead-content {
    padding: 20px;
    text-align: center;
  }

  .lead-content h2 {
    font-size: 26px;
  }

  .lead-form {
    padding: 20px;
  }

  .lead-form .btn-primary {
    font-size: 15px;
    padding: 14px 16px;
  }

.modal-content {
    width: calc(100% - 32px);
    padding: 20px;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 20px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

}

/* ===== PREMIUM BENEFITS SECTION ===== */

/* --- LEFT: Big stage block --- */
.premium-stage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  background: linear-gradient(135deg,
      rgba(41, 111, 161, .18) 0%,
      rgba(255, 255, 255, .02) 100%);
  border-right: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  gap: 28px;
  min-height: 540px;
}

.premium-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(41, 111, 161, .22), transparent 55%);
  pointer-events: none;
}

/* Icon / sticker */
@keyframes stickerPop {
  0% {
    transform: scale(.7) rotate(-8deg);
    opacity: .4;
  }

  60% {
    transform: scale(1.12) rotate(4deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* Text copy */
.premium-stage-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.premium-stage-copy h3 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.03em;
  transition: opacity .25s ease, transform .25s ease;
}

.premium-stage-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.premium-stage-copy.is-fading h3,
.premium-stage-copy.is-fading p {
  opacity: 0;
  transform: translateY(8px);
}

/* Device image */
@keyframes deviceFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- RIGHT: Vertical scrollable rail --- */
/* Step buttons */
.premium-step {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  border-left: 3px solid transparent;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.premium-step:hover {
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.premium-step.is-active {
  background: linear-gradient(90deg, rgba(41, 111, 161, .22), rgba(41, 111, 161, .05));
  color: #fff;
  border-left-color: var(--accent);
}

.premium-step-title {
  font-size: 14px;
  font-weight: 700;
  color: inherit;
  display: block;
}

/* Mobile */
@media (max-width: 860px) {
.premium-stage {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    min-height: auto;
    gap: 20px;
  }

}

/* ===== AWARDS MODAL ===== */
.award-card {
  cursor: pointer;
  outline: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.award-card:hover,
.award-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.award-modal-layout {
  display: flex;
  min-height: 480px;
}

.award-modal-left {
  flex: 0 0 320px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

@supports (aspect-ratio: 9 / 16) {
  .award-modal-left {
    flex: none;
    height: 100%;
    min-height: 500px;
    aspect-ratio: 1 / 1.414;
  }
}


.award-modal-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .4));
  position: relative;
  z-index: 2;
}

.award-modal-right {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 860px) {
  .award-modal-layout {
    flex-direction: column;
  }

  .award-modal-left {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 50vh;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    aspect-ratio: 1 / 1.414;
  }

  .award-modal-right {
    padding: 30px;
  }
}

/* ===== BUYER BEWARE ===== */

.beware-wrapper {
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, .01) 0%, rgba(255, 255, 255, .03) 100%);
  border: 1px solid rgba(255, 255, 255, .06);
}

.beware-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(41, 111, 161, .08) 0%, transparent 50%);
  pointer-events: none;
}

.beware-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 500px;
}

.beware-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beware-lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.beware-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beware-list-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 8px 0;
}

.risk-title {
  color: #eb5757;
}

.benefit-title {
  color: #27ae60;
}

.beware-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.beware-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.beware-items li strong {
  color: #fff;
  font-weight: 600;
}

.beware-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.beware-visual {
  background: linear-gradient(180deg, rgba(41, 111, 161, .06), rgba(0, 0, 0, .3));
  border-left: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.beware-visual-inner {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beware-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 10;
  background: linear-gradient(135deg, rgba(41, 111, 161, .9), rgba(41, 111, 161, .5));
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 8px 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
  backdrop-filter: blur(8px);
  transform: rotate(4deg);
  transition: transform 0.3s ease;
}

.beware-badge:hover {
  transform: rotate(0deg) scale(1.05);
}

.badge-icon {
  font-size: 16px;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  white-space: nowrap;
}

.beware-product-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.beware-visual:hover .beware-product-img {
  transform: translateY(-8px) scale(1.02);
}

.trust-stats {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  z-index: 10;
  justify-content: center;
}

.trust-stat {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(10, 15, 22, .85);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  text-align: center;
}

.trust-stat strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-stat span {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  .beware-grid {
    grid-template-columns: 1fr;
  }

  .beware-visual {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 60px 20px;
  }

  .beware-badge {
    right: 0;
  }
}

@media (max-width: 600px) {
  .beware-lists-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .beware-content {
    padding: 30px 20px;
  }

  .beware-badge {
    right: 50%;
    transform: translateX(50%) rotate(0deg);
  }

  .beware-badge:hover {
    transform: translateX(50%) scale(1.05);
  }
}

/* [REMOVED] Dead CSS block "THE GLASS CABINET" — targeted [data-award-modal]
   which no longer exists in HTML (awards use .aw-modal). Deleted ~150 lines / 60+ !important. */

/* ===== APPLE-STYLE HEADER (dark theme) ===== */

/* Base Header */
.aura-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.35s ease,
              box-shadow 0.35s ease;
}

.aura-header.is-scrolled {
  height: 68px;
  background: rgba(6, 10, 16, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05),
              0 8px 40px rgba(0, 0, 0, 0.55);
}

/* Inner Layout */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 40px;
  transition: opacity 0.2s ease;
}

.hdr-logo:hover {
  opacity: 0.7;
}

.hdr-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.hdr-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hdr-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hdr-nav-list li {
  margin: 0;
  padding: 0;
}

.hdr-nav-link {
  display: block;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.hdr-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* Right Actions */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Phone */
.hdr-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.hdr-phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* Language Switcher Dropdown */
.hdr-lang-drop {
  position: relative;
}

.hdr-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.hdr-lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hdr-lang-toggle.is-open {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.hdr-lang-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.hdr-lang-toggle.is-open .hdr-lang-chevron {
  transform: rotate(180deg);
}

.hdr-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hdr-lang-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hdr-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}

.hdr-lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hdr-lang-option.is-active {
  color: #fff;
  background: rgba(41, 111, 161, 0.35);
}

.hdr-lang-option.is-active::after {
  content: '✓';
  margin-left: auto;
  font-size: 12px;
  color: var(--accent);
}

.lang-flag {
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-name {
  flex: 1;
}

.lang-code {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.hdr-lang-option.is-active .lang-code {
  color: var(--accent);
}

/* CTA Button */
.hdr-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 980px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 0 0 1px rgba(41, 111, 161, 0.5);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hdr-cta:hover {
  background: #3d8fc7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(41, 111, 161, 0.45);
}

/* Mobile Right Controls */
.hdr-mobile-right {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* Mobile phone icon — standalone, hidden on desktop */
.hdr-mobile-phone {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.hdr-mobile-phone:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
}

.mobile-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-container {
  max-width: 480px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

.mobile-header {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-logo-image {
  height: 28px;
  width: auto;
}

.mobile-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-item {
  margin: 0;
}

.mobile-link {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-link:hover {
  color: #fff;
  padding-left: 8px;
}

.mobile-actions {
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-contact:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.mobile-lang {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-lang-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 4px;
  margin-bottom: 2px;
}

.mobile-lang-options {
  display: flex;
  gap: 6px;
}

.mobile-lang-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.mobile-lang-opt:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.mobile-lang-opt.is-active {
  background: rgba(41, 111, 161, 0.3);
  border-color: rgba(41, 111, 161, 0.5);
  color: #fff;
  font-weight: 600;
}

.mobile-lang-opt .lang-flag {
  font-size: 18px;
}

.mobile-cta {
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  font-family: inherit;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.mobile-cta:hover {
  background: #3d8fc7;
  box-shadow: 0 8px 24px rgba(41, 111, 161, 0.4);
}

/* Social row inside mobile menu */
.mobile-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0 4px;
}

.mobile-social-row .social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .aura-header {
    background: rgba(6, 10, 16, 0.9) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
  }
  .hdr-nav,
  .hdr-actions {
    display: none;
  }

  .hdr-mobile-right {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 20px;
  }

  /* Mobile header layout: phone LEFT | logo CENTER | hamburger RIGHT */
  .hdr-mobile-phone {
    display: flex;
  }

  .header-inner {
    position: relative;
    justify-content: space-between;
  }

  .hdr-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .hdr-logo-img {
    height: 26px;
  }

  .mobile-logo-image {
    height: 26px;
  }
}


/* ===== COOKIE CONSENT BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 720px;
  background: rgba(12, 17, 26, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  animation: cookieSlideUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}

.cookie-text {
  flex: 1;
  font-family: var(--font, Gilroy, Inter, sans-serif);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 980px;
  font-family: var(--font, Gilroy, Inter, sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.cookie-btn:active {
  transform: scale(0.96);
}

.cookie-btn-accept {
  background: var(--accent, #296FA1);
  color: #fff;
  box-shadow: 0 2px 12px rgba(41, 111, 161, 0.35);
}

.cookie-btn-accept:hover {
  background: #3d8fc7;
  box-shadow: 0 4px 20px rgba(41, 111, 161, 0.55);
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.80);
  border-color: rgba(255, 255, 255, 0.20);
}

/* Tablet */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    border-radius: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    padding: 11px 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .cookie-content {
    padding: 16px 16px;
    gap: 14px;
  }

  .cookie-text {
    font-size: 13px;
  }

  .cookie-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* ===== END COOKIE CONSENT BANNER ===== */


/* ============================================================
   PAIN POINTS SECTION
   "Ваш дом выглядит чистым. Но это иллюзия."
============================================================ */

.pain-section {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: visible;
}

.pain-wrap {
  width: var(--container);
  margin: 0 auto 80px;
  padding: 72px 48px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pain-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.pain-wrap > * {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.pain-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.pain-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.pain-eyebrow::before,
.pain-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.pain-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
}

.pain-title__muted {
  color: rgba(255, 255, 255, 0.38);
}

.pain-lead {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 580px;
  margin-inline: auto;
}

/* ── Pain Grid ── */
.pain-swiper {
  margin-bottom: 80px;
}
/* Десктоп-грид — только на ≥769px, чтобы не мешать Swiper на мобилке */
@media (min-width: 769px) {
  .pain-swiper {
    overflow: hidden !important;
    width: 100% !important;
  }

  .pain-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    overflow: hidden;
    transform: none !important;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .pain-swiper .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.pain-pagination {
  display: none;
}
@media (max-width: 768px) {
  .pain-pagination {
    display: block;
    margin-top: 16px;
    text-align: center;
  }
}

/* ── Pain Card ── */
.pain-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 32px;
  background: rgba(6, 10, 16, 0.60);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.pain-card:hover {
  background: rgba(15, 22, 32, 0.90);
}

.pain-card:hover .pain-card__icon {
  color: var(--accent);
}

/* Icon */
.pain-card__icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.30);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.pain-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Body */
.pain-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.20);
  font-variant-numeric: tabular-nums;
}

.pain-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.pain-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

/* ── Bridge to Solution ── */
.pain-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.pain-bridge__line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(41,111,161,0.5), rgba(255,255,255,0.06));
}

.pain-bridge__content {
  text-align: center;
  max-width: 680px;
}

.pain-bridge__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

.pain-bridge__label::before,
.pain-bridge__label::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.pain-bridge__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 16px;
}

.pain-bridge__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 36px;
}

.pain-bridge__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 980px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 32px rgba(41, 111, 161, 0.45);
  letter-spacing: -0.01em;
}

.pain-bridge__cta:hover {
  background: #3a9fd4;
  transform: translateY(-2px);
  box-shadow: 0 10px 48px rgba(41, 111, 161, 0.65);
}

.pain-bridge__cta:active {
  transform: scale(0.97);
}

.pain-bridge__cta svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.pain-bridge__cta:hover svg {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .pain-wrap {
    padding: 80px 0 72px;
  }

  .pain-head {
    margin-bottom: 56px;
  }
}

@media (max-width: 768px) {
  .pain-wrap {
    padding: 0px 24px 48px;
    overflow-x: hidden;
    border-radius: 24px;
  }

  /* ── Pain Swiper mobile ── */
  .pain-swiper {
    overflow: hidden;
    margin-bottom: 32px;
    background: transparent !important;
    border: none !important;
    position: relative;
  }
  /* Сброс десктопного грида — Swiper берёт управление */
  .pain-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    gap: 0 !important;
  }

  /* Все слайды — боковые (уходят назад) */
  .pain-card.swiper-slide {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 22px 20px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: rgba(8, 13, 20, 0.70) !important;
    transform: scale(0.90);
    opacity: 0.42;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity   0.42s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.42s ease,
      background   0.42s ease !important;
    will-change: transform, opacity;
  }

  /* Активный слайд — выходит вперёд */
  .pain-card.swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
    border-color: rgba(41, 111, 161, 0.30) !important;
    background: none !important;
  }

  .pain-card__icon {
    width: 72px !important;
    height: 72px !important;
    flex-shrink: 0 !important;
    align-self: center !important;
    color: rgba(41, 111, 161, 0.70) !important;
  }
  .pain-card.swiper-slide-active .pain-card__icon {
    color: rgba(41, 111, 161, 1) !important;
  }

  .pain-card__num {
    display: none !important;
  }

  .pain-card__title {
    font-size: 16px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .pain-card__text {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.50) !important;
  }

  /* Точки пагинации */
  .pain-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 6px;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 20px;
    margin-bottom: 4px;
  }
  .pain-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  }
  .pain-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent);
  }

  .pain-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .pain-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  }

  .pain-dot.is-active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent);
  }

  .pain-head {
    margin-bottom: 32px;
  }

  .pain-bridge__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  .pain-bridge {
    gap: 32px;
  }

  .pain-bridge__line {
    height: 40px;
  }
}

/* ============================================================
   END PAIN POINTS SECTION
============================================================ */


/* ============================================================
   TECHNOLOGY SECTION  #technology
   Same design language as Pain Points
============================================================ */

#technology.section {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: visible;
}

.tech-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ── Hero split: text + image ── */
.tech-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left — text */
.tech-hero__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tech-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.tech-eyebrow::before,
.tech-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.tech-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
}

.tech-title__accent {
  color: var(--accent);
}

.tech-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 32px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 980px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* Right — product image */
.tech-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-product-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-product-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 111, 161, 0.28) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.tech-product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}

/* Floating spec chips */
.tech-spec {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(10, 16, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.tech-spec strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tech-spec span {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-spec--tl { top: 12%;  left: 0; }
.tech-spec--tr { top: 12%;  right: 0; }
.tech-spec--bl { bottom: 16%; left: 0; }
.tech-spec--br { bottom: 16%; right: 0; }

/* ── Tech cards grid ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  overflow: hidden;
}

.tech-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 28px;
  background: rgba(6, 10, 16, 0.60);
  transition: background 0.3s ease;
  position: relative;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.tech-card:hover {
  background: rgba(15, 22, 32, 0.90);
}

.tech-card:hover .tech-card__icon {
  color: var(--accent);
}

.tech-card__icon {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.tech-card__icon svg {
  width: 100%;
  height: 100%;
}

.tech-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.20);
}

.tech-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.tech-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tech-hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-wrap {
    padding: 80px 0 64px;
    gap: 48px;
  }

  .tech-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tech-hero__visual {
    order: -1;
  }

  .tech-product-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .tech-spec strong { font-size: 13px; }
  .tech-spec span   { font-size: 9px; }
  .tech-spec        { padding: 8px 10px; }
}

@media (max-width: 640px) {
  .tech-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .tech-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
  }

  .tech-card__icon {
    width: 36px;
    height: 36px;
    margin-top: 2px;
  }

  .tech-card__title { font-size: 15px; }

  .tech-wrap {
    padding: 64px 0 48px;
    gap: 40px;
  }
}

/* ── Technology mobile — stagePadding swiper ── */
@media (max-width: 768px) {

  /* Hub — прозрачный flex-столбец, overflow visible для peek */
  .thv-hub {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    gap: 0 !important;
  }

  /* Картинка — компактно сверху */
  .thv-center {
    order: -1 !important;
    grid-column: unset !important;
    padding: 28px 20px 20px !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 20px;
  }
  .thv-img  { width: 280px !important; }
  .thv-glow { display: none; }

  /* Статы и тогл — скрыть */
  .thv-stats      { display: none !important; }
  .thv-hub-toggle { display: none !important; }

  /* Оригинальные колонки — JS скрывает, CSS fallback */
  .thv-col--left,
  .thv-col--right { display: none !important; }

  /* ── tc-swiper: stagePadding ── */
  .tc-wrap { overflow-x: hidden; }

  .tc-swiper {
    overflow: visible !important;
    padding: 0 32px !important;
    margin-left: -24px !important;   /* нейтрализуем padding tc-wrap */
    margin-right: -24px !important;
    margin-bottom: 32px;
  }

  .tc-swiper .swiper-wrapper {
    display: flex !important;
    align-items: center;
    background: none !important;
    border: none !important;
  }

  /* Каждый слайд — карточка фичи */
  .tc-slide {
    width: var(--container) !important;
    transform: scale(0.90);
    opacity: 0.42;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity   0.42s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.42s ease,
      background   0.42s ease !important;
    will-change: transform, opacity;
  }

  .tc-slide.swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  /* Feature внутри слайда — вертикальная карточка */
  .tc-slide .thv-feature,
  .tc-slide .thv-feature--right {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    padding: 32px 24px 28px !important;
    border-radius: 20px !important;
    border: none !important;
    background: none !important;
    width: 100% !important;
  }

  .tc-slide.swiper-slide-active .thv-feature,
  .tc-slide.swiper-slide-active .thv-feature--right {
    border: none !important;
    background: none !important;
  }

  .tc-slide .thv-feature::before,
  .tc-slide .thv-feature::after { display: none !important; }

  /* Большая иконка по центру */
  .tc-slide .thv-icon {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(41, 111, 161, 0.90) !important;
    flex-shrink: 0 !important;
  }
  .tc-slide .thv-icon svg { width: 80px !important; height: 80px !important; }

  .tc-slide.swiper-slide-active .thv-icon {
    color: #fff !important;
  }

  /* Текст по центру */
  .tc-slide .thv-body {
    align-items: center !important;
    gap: 6px !important;
  }
  .tc-slide .thv-label {
    font-size: 10px !important;
    letter-spacing: 0.12em;
    color: rgba(41, 111, 161, 0.80) !important;
    text-transform: uppercase;
  }
  .tc-slide .thv-body h4 {
    font-size: 20px !important;
    letter-spacing: 0.02em;
    line-height: 1.2 !important;
    color: #fff !important;
    font-weight: 700 !important;
  }

  /* Пагинация */
  .tc-pagination {
    display: none !important;
  }

  .tc-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
  }

  .tc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  }

  .tc-dot.is-active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent);
  }
}

/* ============================================================
   END TECHNOLOGY SECTION
============================================================ */


/* ============================================================
   SPECS SECTION  #specs
   Three big feature cards: Power / Noise / Airflow
============================================================ */

#specs.section {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: visible;
}

.specs-wrap {
  width: var(--container);
  margin: 0 auto 80px;
  padding: 72px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.specs-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.specs-wrap > * {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.specs-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.specs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.specs-eyebrow::before,
.specs-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.specs-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}

.specs-title__muted {
  color: rgba(255, 255, 255, 0.35);
}

.specs-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
}

/* ── Three cards ── */
.specs-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  overflow: hidden;
}

/* ── Single spec card ── */
.spec-feat {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 36px;
  background: rgba(6, 10, 16, 0.60);
  position: relative;
  transition: background 0.3s ease;
}

.spec-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* Middle card gets subtle accent */
.spec-feat--accent {
  background: rgba(41, 111, 161, 0.06);
}

.spec-feat--accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(41,111,161,0.12), transparent 60%);
  pointer-events: none;
}

.spec-feat:hover {
  background: rgba(15, 22, 32, 0.90);
}

.spec-feat--accent:hover {
  background: rgba(41, 111, 161, 0.10);
}

/* Icon */
.spec-feat__icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.3s ease;
}

.spec-feat:hover .spec-feat__icon {
  color: var(--accent);
}

.spec-feat--accent .spec-feat__icon {
  color: var(--accent);
  opacity: 0.7;
}

.spec-feat__icon svg {
  width: 100%;
  height: 100%;
}

/* Number + name */
.spec-feat__top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-feat__num {
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}

.spec-feat__unit {
  font-size: 0.45em;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0;
}

.spec-feat__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* Progress bar */
.spec-feat__bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-feat__bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.spec-feat__bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), #5db4db);
  box-shadow: 0 0 12px rgba(41, 175, 225, 0.4);
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animate bar when parent grid becomes visible */
.specs-trio.is-visible .spec-feat__bar-fill {
  width: var(--bar-w);
}

.spec-feat__compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-feat__compare-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}

.spec-feat__compare-val {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
}

/* Description */
.spec-feat__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  margin-top: auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .specs-trio {
    grid-template-columns: 1fr;
  }

  .spec-feat {
    padding: 40px 32px;
    gap: 0px;
  }

  .spec-feat__num {
    font-size: 56px;
  }
}

@media (max-width: 640px) {
  .specs-wrap {
    padding: 64px 32px 56px;
    gap: 48px;
    border-radius: 24px;
  }

  .specs-trio {
    border-radius: 20px;
  }

  .spec-feat {
    padding: 32px 24px;
  }

  .spec-feat__num {
    font-size: 48px;
  }
}

/* ── Specs trio — stagePadding Swiper (mobile) ── */
@media (max-width: 768px) {
  .specs-wrap { overflow-x: hidden; }

  .specs-swiper {
    overflow: visible !important;
    padding: 0 28px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .specs-swiper .swiper-wrapper {
    display: flex !important;
    align-items: flex-start;
  }

  /* Inactive slide: shrink + fade */
  .specs-slide {
    height: auto !important;
    transform: scale(0.88);
    opacity: 0.35;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity   0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.45s ease !important;
    will-change: transform, opacity;
  }

  /* Active slide: full size + glow */
  .specs-slide.swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: drop-shadow(0 0 24px rgba(41, 111, 161, 0.35));
  }

  /* Card shell */
  .specs-slide .spec-feat {
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 24px !important;
    height: auto !important;
    padding: 28px 24px !important;
    gap: 20px !important;
    background: rgba(10, 16, 26, 0.82) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    position: relative;
    overflow: hidden;
  }

  /* Glowing top accent border */
  .specs-slide .spec-feat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), #5db4db, transparent);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.45s ease;
  }

  .specs-slide.swiper-slide-active .spec-feat::before {
    opacity: 1;
  }

  /* Icon circle */
  .specs-slide .spec-feat__icon {
    width: 44px !important;
    height: 44px !important;
    background: rgba(41, 111, 161, 0.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent) !important;
    padding: 10px;
    box-sizing: border-box;
  }

  .specs-slide .spec-feat__icon svg {
    width: 22px;
    height: 22px;
  }

  /* Big gradient number */
  .specs-slide .spec-feat__num {
    font-size: 64px !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
    line-height: 1 !important;
    background: linear-gradient(135deg, #fff 30%, rgba(93, 180, 219, 0.75));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .specs-slide .spec-feat__unit {
    -webkit-text-fill-color: initial;
    color: rgba(255, 255, 255, 0.42) !important;
  }

  /* Thicker progress bar */
  .specs-slide .spec-feat__bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
  }

  .specs-slide .spec-feat__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #5db4db);
    box-shadow: 0 0 16px rgba(41, 175, 225, 0.55);
    border-radius: 6px;
  }

  /* Pagination */
  .specs-pagination {
    display: flex !important;
    justify-content: center;
    margin-top: 22px;
    margin-bottom: 8px;
  }

  .specs-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    opacity: 1;
    cursor: pointer;
    margin: 0 4px !important;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  }

  .specs-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent);
  }
}

/* ============================================================
   END SPECS SECTION
============================================================ */






/* ================================================================
   PREMIUM DESIGN UPGRADE — Inspired by Bork / Apple Product Pages
   Elevates visual hierarchy, spacing, and interaction quality.
   Keeps brand colors: --accent: #296FA1
================================================================ */


/* ── 1. GLOBAL SECTION BREATHING ROOM ──────────────────────── */
/* Sections with `.section` that don't have their own -wrap containers */
#history,
#demo,
#reviews,
#buyer-beware,
#verify,
#lead {
  padding: 80px 0 100px;
}

#awards {
  padding: 72px 48px 80px;
}

/* Generic .section gets proper spacing by default */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Hero stays fullscreen */
.section.hero {
  padding: 0;
  min-height: 100vh;
  min-height: var(--app-height, 100svh);
}


/* ── 2. SECTION HEAD — GLOBAL IMPROVEMENTS ──────────────────── */
.head {
  max-width: 800px;
  margin: 0 auto 64px;
  gap: 18px;
}

.head h2 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
}

.head p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
}


/* ── 3. AWARDS SECTION — PREMIUM CARD GRID ──────────────────── */
#awards {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#awards::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

#awards > * {
  position: relative;
  z-index: 1;
}

.awards-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}

.award-card-new {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

/* Sheen sweep on hover */
.award-card-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.04) 60%, rgba(255,255,255,0) 80%);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.6s ease, opacity 0.3s ease;
  pointer-events: none;
}

.award-card-new:hover::before {
  transform: translateX(100%);
  opacity: 1;
}

.award-card-new:hover {
  background: rgba(41,111,161,0.08);
  border-color: rgba(41,111,161,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(41,111,161,0.2), 0 4px 16px rgba(0,0,0,0.3);
}

.award-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(41,111,161,0.18);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(41,111,161,0.25);
}

.award-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.05);
  transition: transform 0.35s ease;
}

.award-card-new:hover .award-img {
  transform: scale(1.08);
}

.award-card-new h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.award-card-new p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.4;
}

.awards-trust-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.awards-trust-new svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .awards-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .award-card-new {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .award-img {
    width: 64px;
    height: 64px;
  }
}


/* ── 4. VIDEO SECTION — PREMIUM PRESENTATION ────────────────── */
#demo {
  position: relative;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(41,111,161,0.4), rgba(255,255,255,0.06), rgba(41,111,161,0.15));
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(41,111,161,0.15);
}

.video-box {
  position: relative;
  padding-top: 56.25%;
  border-radius: 30px;
  overflow: hidden;
  background: #0a0f14;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Remove the old glow — the gradient border is enough */
.video-box::before {
  display: none;
}


/* ── 5. TESTIMONIALS — BORK-STYLE WIDE LAYOUT ───────────────── */
#reviews .head {
  margin-bottom: 48px;
}

.testimonials-container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.testimonial-card {
  display: none;
  animation: fadeInUp 0.5s ease;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 52px 60px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Decorative accent line */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

/* Large quote mark */
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 48px;
  font-size: 120px;
  line-height: 1;
  color: rgba(41,111,161,0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-quote {
  display: none;
}

.testimonial-text {
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  font-style: normal;
  font-family: var(--font);
  margin-bottom: 32px;
  max-width: none;
  position: relative;
  z-index: 1;
}

.testimonial-author-text {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dot before author name */
.testimonial-author-text::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-btn:hover {
  background: rgba(41,111,161,0.2);
  border-color: rgba(41,111,161,0.4);
  color: #fff;
  transform: scale(1.05);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.testimonial-dots button.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(41,111,161,0.5);
}

@media (max-width: 760px) {
  .testimonial-card {
    padding: 36px 28px;
    border-radius: 20px;
  }
  .testimonial-card::after {
    font-size: 80px;
    top: 16px;
    left: 24px;
  }
  .testimonial-card::before {
    left: 28px;
    right: 28px;
  }
  .testimonial-text {
    font-size: 18px;
    margin-bottom: 24px;
  }
}


/* ── 6. BUYER BEWARE — PREMIUM TWO-COLUMN ───────────────────── */
#buyer-beware {
  position: relative;
}

.beware-wrapper {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.beware-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(41,111,161,0.12), transparent 60%);
  pointer-events: none;
}

.beware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.beware-list {
  padding: 28px;
  border-radius: 20px;
}

.beware-risks {
  background: rgba(255,50,50,0.04);
  border: 1px solid rgba(255,80,80,0.12);
}

.beware-benefits {
  background: rgba(41,111,161,0.06);
  border: 1px solid rgba(41,111,161,0.2);
}

.beware-list-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.risk-title {
  color: rgba(255,120,120,0.9);
}

.benefit-title {
  color: rgba(100,180,230,0.9);
}

.beware-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beware-items li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

.beware-icon {
  flex-shrink: 0;
  width: 22px;
  margin-top: 1px;
}

.risk-icon {
  color: rgba(255,100,100,0.8);
}

.benefit-icon {
  color: rgba(80,180,230,0.9);
}

.beware-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
}

@media (max-width: 760px) {
  .beware-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ── 7. LEAD SECTION — STRONGER CTA PRESENCE ────────────────── */
#lead {
  position: relative;
}

.lead-wrapper {
  padding: clamp(40px, 5vw, 64px);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(41,111,161,0.12) 0%, rgba(255,255,255,0.03) 60%, rgba(41,111,161,0.06) 100%);
  border: 1px solid rgba(41,111,161,0.2);
  box-shadow: 0 0 80px rgba(41,111,161,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
}

.lead-glow {
  position: absolute;
  right: -5%;
  bottom: -30%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(41,111,161,0.28), transparent 60%);
  pointer-events: none;
}

.lead-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 760px) {
  .lead-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.lead-content h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.lead-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.lead-benefits {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.lead-benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.lead-form {
  padding: 36px 32px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lead-form .input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.25s ease;
}

.lead-form .input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(41,111,161,0.7);
  outline: none;
  box-shadow: 0 0 0 4px rgba(41,111,161,0.15);
}

.lead-form .btn-primary {
  height: 56px;
  font-size: 16px;
  letter-spacing: -0.01em;
}


/* ── 8. HISTORY SECTION — PREMIUM SPACING ───────────────────── */
#history {
  position: relative;
}

.history-chronicle {
  padding: 36px;
  gap: 28px;
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.history-stage-copy {
  padding: 40px 40px 64px;
}

.history-stage-copy h3 {
  font-size: clamp(32px, 5vw, 56px);
}

.chrono-marker.history-step {
  transition: all 0.25s ease;
  border-radius: 12px;
}

.chrono-marker.history-step:hover,
.chrono-marker.history-step.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(41,111,161,0.4);
}


/* ── 9. HEADER — PREMIUM POLISH ─────────────────────────────── */
.hdr-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font);
  box-shadow: 0 4px 20px rgba(41,111,161,0.35);
  letter-spacing: -0.01em;
}

.hdr-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(41,111,161,0.5);
  filter: brightness(1.1);
}

.hdr-nav-link {
  position: relative;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
  font-weight: 500;
}

.hdr-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.hdr-nav-link:hover {
  color: #fff;
}

.hdr-nav-link:hover::after {
  width: 100%;
}


/* ── 10. GLOBAL CARD HOVER MICRO-INTERACTIONS ───────────────── */

/* Panel cards lift on hover */
.panel:not(.lead-form):not(.lead-wrapper):not(.history-chronicle):not(.footer-wrapper):not(.beware-wrapper):hover {
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
}

/* Pain cards */
.pain-card {
  transition: transform 0.3s cubic-bezier(0.2,0,0,1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Tech cards */
.tech-card {
  transition: transform 0.3s cubic-bezier(0.2,0,0,1), box-shadow 0.3s ease, background 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


/* ── 11. SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #5db4db);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(41,111,161,0.6);
}


/* ── 12. DATA-REVEAL ANIMATION REFINEMENT ─────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.2, 0, 0, 1),
              transform 0.7s cubic-bezier(0.2, 0, 0, 1);
}

[data-reveal="up"] {
  transform: translateY(32px);
}

[data-reveal="zoom"] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


/* ── 13. MOBILE-FIRST IMPROVEMENTS ──────────────────────────── */
@media (max-width: 760px) {
  #history,
  #awards,
  #demo,
  #reviews,
  #buyer-beware,
  #verify,
  #lead {
    padding: 60px 0 72px;
  }

  .head {
    margin-bottom: 40px;
  }

  .head h2 {
    font-size: clamp(28px, 7vw, 44px);
  }

  .head p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .lead-form {
    padding: 28px 20px;
  }

  .awards-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .award-card-new {
    padding: 24px 14px;
    border-radius: 18px;
    gap: 12px;
  }

  .video-wrapper {
    border-radius: 22px;
    padding: 2px;
  }

  .video-box {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  #history,
  #awards,
  #demo,
  #reviews,
  #buyer-beware,
  #verify,
  #lead {
    padding: 48px 0 60px;
  }

  .head {
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .testimonial-card::after {
    font-size: 60px;
    top: 14px;
    left: 18px;
  }

  .awards-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .award-card-new {
    padding: 20px 10px;
    gap: 10px;
  }

  .award-img {
    width: 56px;
    height: 56px;
  }

  .award-card-new h3 {
    font-size: 13px;
  }

  .award-card-new p {
    display: none;
  }

  .lead-wrapper {
    border-radius: 20px;
    padding: 28px 20px;
  }

  .lead-content h2 {
    font-size: 28px;
  }

  .history-chronicle {
    padding: 20px;
    border-radius: 22px;
  }

  .history-stage-copy {
    padding: 28px 24px 48px;
  }
}


/* ── 14. SMOOTH HOVER CURSOR EFFECT (premium touch) ────────── */
@media (hover: hover) {
  .award-card-new,
  .pain-card,
  .tech-card,
  .carousel-item,
  .testimonial-btn,
  .carousel-nav-btn,
  .hdr-cta,
  .btn-primary {
    will-change: transform;
  }
}


/* ── 15. VERIFY SECTION REFINEMENTS ─────────────────────────── */
#verify .panel {
  max-width: 840px;
  margin: 0 auto;
}

.verify-wrap {
  max-width: 640px;
  padding: 0 24px;
}

.verify-form-wrap {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.verify-form-wrap:focus-within {
  border-color: rgba(41,111,161,0.4);
  box-shadow: 0 0 0 4px rgba(41,111,161,0.08);
}


/* ── 16. FOOTER ENHANCEMENTS ─────────────────────────────────── */
.footer-wrapper {
  border-radius: 28px;
  overflow: hidden;
}


/* ── 17. COOKIE BANNER PREMIUM STYLE ────────────────────────── */
.cookie-banner {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(41,111,161,0.25);
}


/* ── Reviews section: prevent horizontal bleed on tablet ──── */
@media (max-width: 1023px) {
  #reviews {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ── 18. REDUCED MOTION RESPECT ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .award-card-new::before,
  .award-card-new:hover,
  .pain-card:hover,
  .tech-card:hover {
    transition: none !important;
    transform: none !important;
  }
}

/* Fix: sections with inner -wrap containers manage their own spacing */
#technology, #specs { padding: 0; }
.pain-section { padding: 0; overflow: visible; }
#accessories { padding: 0; }


/* CRITICAL FIX: Revert generic section padding to original — */
/* redesigned sections (pain/tech/specs) manage spacing via their inner wraps */
.section { padding-top: 16px; padding-bottom: 16px; }
/* Hero never gets extra padding */
.section.hero { padding: 0 !important; justify-content: flex-start !important; }

@media (max-width: 768px) {
  .section.hero { margin-bottom: 0 !important; }
  .pain-section { margin-top: -60px; }
  .scroll-progress-bar { display: none; }
}
/* Footer has own layout */
footer.section { padding-top: 0; padding-bottom: 0; }


/* Accessories section — verify-style card */
#accessories {
  padding: 72px 48px 80px;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#accessories::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

#accessories > * {
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════
   HISTORY SECTION — REDESIGN 2.0
   "Through the Years" — immersive stage + dot timeline
═══════════════════════════════════════════════════════════════ */

/* Chronicle: glass card without panel class */
.history-chronicle {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 32px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Stage: two equal columns */
.history-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
  align-items: stretch;
}

/* Copy column */
.history-stage-copy {
  position: relative;
  padding: 56px 52px 52px;
  min-height: auto;
  border-radius: 0;
  border-right: 1px solid rgba(255,255,255,0.055);
  background: linear-gradient(135deg, rgba(41,111,161,0.09) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  align-content: start;
}

/* Watermark year — huge ghost number */
.history-stage-copy::before {
  content: '';
  display: none;
}

/* Chapter kicker */
.history-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(41,111,161,0.12);
  border: 1px solid rgba(41,111,161,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Year — large accent number */
.history-stage-year {
  font-size: clamp(64px, 9vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  min-height: auto;
}

/* Model name */
.history-stage-copy h3 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  min-height: auto;
  max-width: none;
  display: block;
  align-items: unset;
}

/* Description */
.history-stage-copy p:last-child {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  min-height: auto;
  max-width: 42ch;
}

/* Media column */
.history-stage-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 48px;
  min-height: auto;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(41,111,161,0.18) 0%, rgba(0,0,0,0) 65%);
  overflow: hidden;
}

/* Remove decorative rings from old design */
.history-stage-media::before,
.history-stage-media::after {
  display: none;
}

/* Product image */
.history-stage-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  filter: drop-shadow(0 32px 80px rgba(0,0,0,0.65)) drop-shadow(0 0 40px rgba(41,111,161,0.12));
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Badge — repositioned to top-right */
.history-stage-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Timeline Rail ── */
.history-rail {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 52px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
  gap: 0;
  width: auto;
  grid-template-columns: unset;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.history-rail::-webkit-scrollbar { display: none; }

/* Connecting horizontal line */
.history-rail::before {
  content: '';
  display: block;
  position: absolute;
  left: 52px;
  right: 52px;
  top: calc(28px + 10px);
  height: 1px;
  background: linear-gradient(90deg, rgba(41,111,161,0.06), rgba(41,111,161,0.35) 20%, rgba(41,111,161,0.35) 80%, rgba(41,111,161,0.06));
  pointer-events: none;
  width: auto;
}

/* Step button: vertical stack */
.chrono-marker.history-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 0;
  min-height: auto;
  min-width: 56px;
  flex: 1;
  scroll-snap-align: center;
}
.chrono-marker.history-step:hover,
.chrono-marker.history-step.is-active {
  background: none;
  border: none;
  box-shadow: none;
}

/* Dot */
.history-dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.18);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.chrono-marker.history-step:hover .history-dot {
  background: rgba(41,111,161,0.35);
  border-color: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(41,111,161,0.35);
}

.chrono-marker.history-step.is-active .history-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(41,111,161,0.22), 0 0 20px rgba(41,111,161,0.45);
  transform: scale(1.4);
}

/* Year label */
.history-step-model {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.38) !important;
  transition: color 0.25s ease;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.chrono-marker.history-step:hover .history-step-model {
  color: rgba(255,255,255,0.85) !important;
}

.chrono-marker.history-step.is-active .history-step-model {
  color: #fff !important;
  font-weight: 700 !important;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .history-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .history-stage-copy {
    padding: 40px 36px 36px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .history-stage-media {
    order: -1;
    min-height: 300px;
    padding: 40px;
  }
  .history-rail {
    padding: 24px 28px 28px;
    justify-content: flex-start;
    gap: 0;
  }
  .history-rail::before {
    left: 28px;
    right: 28px;
  }
}

@media (max-width: 759px) {
  .history-chronicle { border-radius: 24px; }
  .history-stage-copy { padding: 28px 24px; gap: 14px; }
  .history-stage-media { min-height: 240px; padding: 28px 24px; }
  .history-stage-year { font-size: clamp(48px, 15vw, 72px); }
  .history-stage-copy h3 { font-size: clamp(24px, 6.5vw, 36px); }
  .history-stage-copy p:last-child { font-size: 14px; }
  .history-rail {
    padding: 20px 16px 24px;
    scroll-snap-type: x proximity;
    gap: 0;
  }
  .history-rail::before { left: 16px; right: 16px; top: calc(20px + 10px); }
  .chrono-marker.history-step { min-width: 52px; padding: 0 4px; }
  .history-step-model { font-size: 11px !important; }
  .history-dot { width: 18px; height: 18px; }
}

@media (max-width: 479px) {
  .history-chronicle { border-radius: 18px; }
  .history-stage-copy { padding: 24px 18px; gap: 12px; }
  .history-stage-year { font-size: clamp(40px, 13vw, 60px); }
  .history-stage-copy h3 { font-size: clamp(20px, 6vw, 28px); }
  .history-stage-media { min-height: 200px; padding: 24px 18px; }
  .history-dot { width: 16px; height: 16px; }
  .history-step-model { font-size: 10px !important; }
  .chrono-marker.history-step { min-width: 44px; }
  .history-rail { padding: 16px 12px 20px; }
  .history-rail::before { left: 12px; right: 12px; top: calc(16px + 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .history-stage-media img,
  .history-dot,
  .chrono-marker.history-step { transition: none !important; }
}


/* ==============================================
   AWARDS REDESIGN 2.0 — Premium Swiper Section
   ============================================== */

/* Outer wrapper — room for arrows */
.aw-outer {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
  overflow: visible;
}

/* Swiper override: allow overflow for hover effect */
.aw-swiper {
  overflow: visible;
  padding-bottom: 48px; /* room for pagination */
}

/* --- Card --- */
.aw-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.aw-card:hover,
.aw-card:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(41, 111, 161, 0.35);
  border-color: rgba(41, 111, 161, 0.45);
  outline: none;
}

/* Card image area */
.aw-card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}

.aw-card:hover .aw-img {
  transform: scale(1.07);
}

/* Hover overlay */
.aw-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.aw-card-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(41, 111, 161, 0.9);
  padding: 8px 20px;
  border-radius: 100px;
}

.aw-card:hover .aw-card-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.aw-card:hover .aw-card-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Card info block */
.aw-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
}

/* Year badge */
.aw-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(41, 111, 161, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}

.aw-card-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.aw-card-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  line-height: 1.5;
}

/* --- Navigation Arrows --- */
.aw-arrow {
  position: absolute;
  top: calc(50% - 24px); /* center on visual area */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.25s ease;
  z-index: 20;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.aw-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(41, 111, 161, 0.45);
  transform: translateY(-1px);
}

.aw-arrow--prev {
  left: 0;
}

.aw-arrow--next {
  right: 0;
}

/* Swiper disabled arrow state */
.aw-arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* --- Pagination Dots --- */
.aw-pagination {
  bottom: 0 !important;
  left: 0;
  width: 100%;
  text-align: center;
}

.aw-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  margin: 0 4px !important;
  transition: width 0.3s ease, background 0.3s ease;
}

.aw-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--accent);
}

/* --- Awards Modal --- */
.aw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aw-modal:not([hidden]) {
  display: flex;
}

/* Dark blurred backdrop */
.aw-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

/* Modal box */
.aw-modal-box {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  max-width: 880px;
  width: 100%;
  overflow: hidden;
  animation: awModalIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@keyframes awModalIn {
  from { opacity: 0; transform: scale(0.90) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Close button */
.aw-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
}

.aw-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Bottom close tab */
.aw-modal-footer {
  position: sticky;
  bottom: 0;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #111;
  z-index: 10;
}

.aw-modal-close-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.02em;
}

.aw-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.aw-modal-close-btn:active {
  background: rgba(255, 255, 255, 0.18);
}

/* Modal layout: horizontal on desktop */
.aw-modal-layout {
  display: flex;
  flex-direction: row;
  min-height: 340px;
}

/* Left: image */
.aw-modal-img-wrap {
  flex: 0 0 48%;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.aw-modal-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Right: text */
.aw-modal-text {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.aw-modal-eyebrow {
  margin-bottom: 12px;
}

.aw-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.aw-modal-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0;
}

/* --- Responsive --- */

/* Tablet: 2–3 slides, hide arrows at edge */
@media (max-width: 1024px) {
  .aw-outer {
    padding: 0 56px;
  }
}

/* Small tablet / large mobile */
@media (max-width: 768px) {
  .aw-outer {
    padding: 0; /* no room for arrows → hide them */
  }

  /* Hide arrows on mobile (swipe available) */
  .aw-arrow {
    display: none;
  }

  /* Modal: vertical stack on mobile */
  .aw-modal-layout {
    flex-direction: column;
    min-height: auto;
  }

  .aw-modal-img-wrap {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    min-height: 200px;
  }

  .aw-modal-text {
    padding: 32px 28px;
  }

  .aw-modal-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .aw-outer {
    padding: 0 8px;
  }

  .aw-modal-box {
    border-radius: 22px;
  }

  .aw-modal-text {
    padding: 24px 20px;
  }

  .aw-modal-title {
    font-size: 19px;
  }

  .aw-modal-desc {
    font-size: 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aw-card,
  .aw-img,
  .aw-card-overlay,
  .aw-card-overlay span {
    transition: none !important;
  }

  .aw-modal-box {
    animation: none !important;
  }
}


/* ==============================================
   BUYER BEWARE — REDESIGN 3.0
   ============================================== */

/* Two-column grid */
.bw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}

/* ---- LEFT column ---- */
.bw-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bw-left .bw-compare {
  flex: 1;
}

/* Single split comparison card */
.bw-compare {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bw-compare-cols {
  flex: 1;
}

/* Each half */
.bw-half {
  padding: 28px 32px;
}

.bw-half--bad {
  background: rgba(220, 60, 60, 0.04);
}

.bw-half--good {
  background: rgba(39, 174, 96, 0.04);
}

/* Half header */
.bw-half-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bw-half-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bw-ico--bad  { background: rgba(220, 60, 60, 0.12);  color: #eb5757; }
.bw-ico--good { background: rgba(39, 174, 96, 0.12);  color: #2ecc71; }

.bw-half-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.bw-half--bad  .bw-half-title { color: #eb5757; }
.bw-half--good .bw-half-title { color: #2ecc71; }

/* Items list */
.bw-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bw-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

/* Dot indicator */
.bw-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 6px;
}

.bw-dot--bad  { background: #eb5757; box-shadow: 0 0 6px rgba(235, 87, 87, 0.6); }
.bw-dot--good { background: #2ecc71; box-shadow: 0 0 6px rgba(46, 204, 113, 0.5); }

/* VS separator */
.bw-compare-sep {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bw-compare-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.bw-compare-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* ---- RIGHT column ---- */
.bw-right {
  position: sticky;
  top: 120px;
}

/* Premium verify card */
.bw-verify {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

/* Animated glow blob */
.bw-verify-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(41, 111, 161, 0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: bwGlowPulse 4s ease-in-out infinite;
}

@keyframes bwGlowPulse {
  0%, 100% { opacity: 0.7;  transform: translateX(-50%) scale(1);    }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}

/* Shield badge */
.bw-verify-badge {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(41, 111, 161, 0.3), rgba(41, 111, 161, 0.08));
  border: 1px solid rgba(41, 111, 161, 0.45);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(41, 111, 161, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Heading block */
.bw-verify-heading {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.bw-verify-heading .verify-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.bw-verify-heading .verify-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  line-height: 1.5;
}

/* Override verify-form inside bw-verify */
.bw-verify .verify-form {
  position: relative;
  z-index: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bw-grid   { gap: 24px; }
  .bw-right  { position: static; }
  .bw-verify { padding: 36px 32px; }
}

@media (max-width: 860px) {
  .bw-grid  { grid-template-columns: 1fr; }
  .bw-right { position: static; }
}

@media (max-width: 480px) {
  .bw-half    { padding: 22px 20px; }
  .bw-compare { border-radius: 20px; }
  .bw-verify  { padding: 28px 20px; border-radius: 22px; }
}


/* ==============================================
   SERVICE NOTICE (#verify)
   ============================================== */

.svc-notice {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg,
    rgba(41, 111, 161, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Wrench icon */
.svc-notice-icon {
  width: 56px;
  height: 56px;
  background: rgba(41, 111, 161, 0.14);
  border: 1px solid rgba(41, 111, 161, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* Text block */
.svc-notice-text {
  flex: 1;
}

.svc-notice-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.svc-notice-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0 0 8px;
}

.svc-notice-text p:last-child { margin: 0; }

.svc-notice-text strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* CTA stack */
.svc-notice-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: stretch;
}

/* Outline variant button */
.svc-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.svc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 860px) {
  .svc-notice {
    flex-direction: column;
    gap: 24px;
    padding: 32px 28px;
  }

  .svc-notice-cta {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .svc-notice-cta .btn,
  .svc-notice-cta .svc-btn-outline {
    flex: 1;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .svc-notice {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .svc-notice-cta {
    flex-direction: column;
  }

  .svc-notice-cta .btn,
  .svc-notice-cta .svc-btn-outline {
    flex: none;
    width: 100%;
  }
}


/* ==============================================
   BW-CTA BUTTON
   ============================================== */

.bw-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(41, 111, 161, 0.4);
  background: rgba(41, 111, 161, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.28s ease,
              border-color 0.28s ease,
              box-shadow 0.28s ease,
              transform 0.28s ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.bw-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.bw-cta-btn:hover::before {
  left: 130%;
}

.bw-cta-btn:hover {
  background: rgba(41, 111, 161, 0.18);
  border-color: rgba(41, 111, 161, 0.7);
  box-shadow: 0 8px 28px rgba(41, 111, 161, 0.22);
  transform: translateY(-2px);
}

/* Location icon */
.bw-cta-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(41, 111, 161, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.28s ease;
}

.bw-cta-btn:hover .bw-cta-icon {
  background: rgba(41, 111, 161, 0.35);
}

.bw-cta-text {
  flex: 1;
  line-height: 1.3;
}

/* Arrow icon — shifts right on hover */
.bw-cta-arrow {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.bw-cta-btn:hover .bw-cta-arrow {
  transform: translateX(4px);
  opacity: 1;
}


/* ==============================================
   VERIFY HELP CONTENT — photo + description
   ============================================== */

/* Increase max-height to fit the image */
.verify-help.expanded .verify-help-content {
  max-height: 480px;
}

/* Inner layout: image top, text bottom */
.verify-help-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 4px;
}

/* Image wrapper — full width, clickable */
.verify-help-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: block;
  padding: 0;
}

.verify-help-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Marker dot overlay */
.verify-help-marker {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: none;
}

.verify-marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(41, 111, 161, 0.8);
  animation: markerPulse 1.8s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(41,111,161,0.8); }
  50%       { box-shadow: 0 0 12px rgba(41,111,161,1), 0 0 0 4px rgba(41,111,161,0.2); }
}

.verify-marker-label {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: rgba(41, 111, 161, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Text block */
.verify-help-desc { width: 100%; text-align: center; }

.verify-help-desc p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 0 0 8px;
}

.verify-help-desc p:last-child {
  margin: 0;
}

.verify-help-desc strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* ── Help Image Lightbox ── */
.help-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(8px);
}

.help-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.help-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.help-lightbox.is-open .help-lightbox-img-wrap {
  transform: scale(1);
}

.help-lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.help-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.help-lightbox-close:hover { background: rgba(255, 255, 255, 0.20); }

/* Mobile: stack vertically (already column, no change needed) */
@media (max-width: 480px) {
  .verify-help-inner {
    flex-direction: column;
  }

  .verify-help-img-wrap {
    width: 100%;
    height: 120px;
  }

  .verify-help.expanded .verify-help-content {
    max-height: 360px;
  }
}


/* ==============================================
   BW-RIGHT — VERIFY CARD DEEP REDESIGN
   ============================================== */

/* Card: subtle blue-tinted gradient */
.bw-verify {
  background: linear-gradient(160deg,
    rgba(41, 111, 161, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 60%,
    rgba(0, 0, 0, 0) 100%);
}

/* ---- Secure divider ---- */
.bv-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.bv-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.bv-divider-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.bv-divider-text svg {
  color: var(--accent);
  opacity: 0.7;
}

/* ---- Slider widget (reCAPTCHA-style) ---- */

/* ── Math Captcha ── */
.mc-captcha {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.mc-captcha.is-ok  { border-color: rgba(46, 204, 113, 0.45); }
.mc-captcha.is-err { border-color: rgba(231, 76, 60, 0.45); }

.mc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 12px;
}

.mc-question-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.mc-equation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  min-width: 24px;
}

.mc-op {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
}

.mc-eq {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.30);
}

.mc-input {
  width: 64px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  -moz-appearance: textfield;
}

.mc-input::-webkit-outer-spin-button,
.mc-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.mc-input:focus {
  border-color: rgba(41, 111, 161, 0.70);
  background: rgba(41, 111, 161, 0.10);
}

.mc-captcha.is-ok  .mc-input { border-color: rgba(46, 204, 113, 0.55); background: rgba(46, 204, 113, 0.08); }
.mc-captcha.is-err .mc-input { border-color: rgba(231, 76, 60, 0.55);  background: rgba(231, 76, 60, 0.08); }

.mc-refresh {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.mc-refresh:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.mc-status {
  font-size: 12px;
  font-weight: 500;
  padding: 0 20px 14px;
  min-height: 0;
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s ease;
}

.mc-captcha.is-ok  .mc-status { color: #2ecc71; }
.mc-captcha.is-err .mc-status { color: #e74c3c; }

/* ==============================================
   BW-LEFT — side-by-side comparison cols
   ============================================== */

.bw-compare-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* Column */
.bw-compare-col {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.bw-compare-col .bw-compare-list {
  flex: 1;
  justify-content: space-between;
}

.bw-compare-col--bad  { background: rgba(220, 60, 60, 0.04); }
.bw-compare-col--good { background: rgba(39, 174, 96, 0.04); }

.bw-compare-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bw-compare-col-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bw-compare-col--bad  .bw-compare-col-ico { background: rgba(220,60,60,0.12); color: #eb5757; }
.bw-compare-col--good .bw-compare-col-ico { background: rgba(39,174,96,0.12); color: #2ecc71; }

.bw-compare-col-head span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bw-compare-col--bad  .bw-compare-col-head span { color: #eb5757; }
.bw-compare-col--good .bw-compare-col-head span { color: #2ecc71; }

/* List */
.bw-compare-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.bw-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.bw-compare-list li i {
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bw-compare-col--bad  .bw-compare-list li i { color: #eb5757; }
.bw-compare-col--good .bw-compare-list li i { color: #2ecc71; }

/* VS divider column */
.bw-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  position: relative;
  z-index: 2;
}

.bw-compare-divider::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.bw-compare-vs {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
}

/* CTA — updated to use FA */
.bw-cta-btn .bw-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-cta-btn .bw-cta-arrow {
  margin-left: auto;
}

/* Responsive */
@media (max-width: 600px) {
  .bw-compare-cols {
    grid-template-columns: 1fr;
  }
  .bw-compare-divider {
    padding: 10px 24px;
    flex-direction: row;
    gap: 12px;
  }
  .bw-compare-divider::before {
    top: 50%; left: 0; right: 0;
    width: auto; height: 1px;
  }
}

/* ==============================================
   BW-RIGHT — Authentication checklist card
   ============================================== */

.bw-auth-card {
  background: linear-gradient(160deg, rgba(41, 111, 161, 0.06) 0%, rgba(255, 255, 255, 0.02) 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bw-auth-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(41, 111, 161, 0.2) 0%, transparent 65%);
  pointer-events: none;
  animation: bwGlowPulse 4s ease-in-out infinite;
}

/* Badge with ring */
.bw-auth-badge-wrap {
  position: relative;
  width: 72px; height: 72px;
  z-index: 1;
}

.bw-auth-badge-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(41, 111, 161, 0.32), rgba(41, 111, 161, 0.08));
  border: 1px solid rgba(41, 111, 161, 0.45);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 28px;
  box-shadow: 0 8px 28px rgba(41, 111, 161, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bw-auth-badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(41, 111, 161, 0.2);
  animation: bwRingPulse 3s ease-in-out infinite;
}

@keyframes bwRingPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.bw-auth-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  position: relative; z-index: 1;
}

.bw-auth-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: -10px 0 0;
  line-height: 1.5;
  position: relative; z-index: 1;
}

/* Checklist */
.bw-auth-checks {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative; z-index: 1;
}

.bw-auth-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bw-auth-check-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(41, 111, 161, 0.1);
  border: 1px solid rgba(41, 111, 161, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.bw-auth-check-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.bw-auth-check-body strong {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.bw-auth-check-body span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}

/* Link to verify section */
.bw-auth-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(41, 111, 161, 0.18), rgba(93, 180, 219, 0.10));
  border: 1px solid rgba(93, 180, 219, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(41, 111, 161, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

/* Animated shimmer line */
.bw-auth-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.10) 50%,
    transparent 70%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.bw-auth-link:hover {
  background: linear-gradient(135deg, rgba(41, 111, 161, 0.35), rgba(93, 180, 219, 0.20));
  border-color: rgba(93, 180, 219, 0.70);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(41, 111, 161, 0.35), 0 0 0 1px rgba(93, 180, 219, 0.20);
}

.bw-auth-link:hover::before {
  background-position: -200% 0;
}

.bw-auth-link:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ==============================================
   #AUTHENTICITY — Verify section
   ============================================== */

.auth-section-wrap {
  max-width: 540px;
  margin: 0 auto;
}

.auth-form-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-form-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(41, 111, 161, 0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: bwGlowPulse 4s ease-in-out infinite;
}

.auth-form-card .verify-form {
  position: relative;
  z-index: 1;
}

.auth-form-card .verify-help {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  background: rgba(41, 111, 161, 0.05);
  border: 1px solid rgba(41, 111, 161, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.auth-form-card .verify-help-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background 0.2s ease;
}

.auth-form-card .verify-help-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.auth-form-card .verify-help-header i {
  color: var(--accent);
  font-size: 15px;
}

@media (max-width: 600px) {
  .auth-form-card {
    padding: 32px 24px;
    border-radius: 22px;
  }
}

/* ==============================================
   VERIFY MODAL
   ============================================== */

.vmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.vmodal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vmodal {
  background: rgba(10, 16, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

.vmodal-overlay.is-open .vmodal {
  transform: translateY(0) scale(1);
}

.vmodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.vmodal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.vmodal-title i {
  color: var(--accent);
  font-size: 17px;
}

.vmodal-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.vmodal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.vmodal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Verify Result ── */
.verify-result {
  border-radius: 20px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

/* Gradient header band */
.vr-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px 16px;
}

.verify-result.success .vr-header { background: none; }
.verify-result.warning .vr-header { background: none; }
.verify-result.error   .vr-header { background: none; }

.vr-status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.verify-result.success .vr-status-icon { background: rgba(46,204,113,0.20); color: #2ecc71; box-shadow: 0 0 16px rgba(46,204,113,0.25); }
.verify-result.warning .vr-status-icon { background: rgba(243,156,18,0.20); color: #f39c12; box-shadow: 0 0 16px rgba(243,156,18,0.25); }
.verify-result.error   .vr-status-icon { background: rgba(231,76,60,0.20);  color: #e74c3c; box-shadow: 0 0 16px rgba(231,76,60,0.25); }

.vr-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.verify-result.success .vr-title { color: #2ecc71; }
.verify-result.warning .vr-title { color: #f39c12; }
.verify-result.error   .vr-title { color: #e74c3c; }

/* Rows body */
.vr-content {
  padding: 8px 12px 12px;
  margin: 0 10px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.vr-rows {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}

.vr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vr-row:last-child { border-bottom: none; }

.vr-row i {
  font-size: 11px;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
}

.verify-result.success .vr-row i { background: rgba(46,204,113,0.10); color: #2ecc71; }
.verify-result.warning .vr-row i { background: rgba(243,156,18,0.10); color: #f39c12; }
.verify-result.error   .vr-row i { background: rgba(231,76,60,0.10);  color: #e74c3c; }

/* Verify help inside modal */
.vmodal-body .verify-help {
  background: rgba(41, 111, 161, 0.05);
  border: 1px solid rgba(41, 111, 161, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.vmodal-body .verify-help-header {
  font-size: 13px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.vmodal-body .verify-help-header i {
  color: var(--accent);
  font-size: 15px;
}

/* Mobile */
@media (max-width: 480px) {
  .vmodal { border-radius: 20px; }
  .vmodal-header { padding: 20px 18px 0; }
  .vmodal-body { padding: 18px; gap: 16px; }
  .bw-auth-card { padding: 40px 24px; }
  .bw-auth-badge-wrap { margin-left: auto; margin-right: auto; }
  .bw-auth-card-title { text-align: center; }
  .bw-auth-card-sub   { text-align: center; }
}

/* ---- Tightened form fields ---- */
.bw-verify .verify-form {
  gap: 20px;
}

.bw-verify .verify-input-group,
.bw-verify .verify-captcha-group {
  gap: 6px;
}

.bw-verify .verify-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.1em;
}

.bw-verify .verify-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bw-verify .verify-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(41, 111, 161, 0.65);
  box-shadow: 0 0 0 3px rgba(41, 111, 161, 0.14), 0 2px 16px rgba(41, 111, 161, 0.08);
}

/* ---- Shimmer button ---- */
.bw-verify .verify-btn {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  letter-spacing: 0.02em;
}

.bw-verify .verify-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.bw-verify .verify-btn:hover::after {
  left: 130%;
}

/* ---- Trust badges ---- */
.bv-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.bv-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 500;
  white-space: nowrap;
}

.bv-trust-item svg {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ---- Help section tweaks ---- */
.bw-verify .verify-help {
  margin-top: 20px;
  background: rgba(41, 111, 161, 0.05);
  border-color: rgba(41, 111, 161, 0.18);
}

.bw-verify .verify-help-header {
  font-size: 13px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Result card ---- */
.bw-verify .verify-result {
  border-radius: 14px;
}


/* ==============================================
   #VERIFY — SERVICE BLOCK REDESIGN
   ============================================== */

/* Outer panel */
.svc-block {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 32px;
  padding: 72px 80px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Top ambient glow */
.svc-block-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Header */
.svc-block-top {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto 56px;
}

.svc-block-top h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 20px;
}

.svc-block-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin: 0;
}

/* Feature cards row */
.svc-features {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

/* Single feature card */
.svc-feature {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.svc-feature:hover {
  background: rgba(41, 111, 161, 0.1);
  border-color: rgba(41, 111, 161, 0.3);
  transform: translateY(-4px);
}

/* Icon box */
.svc-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(41, 111, 161, 0.16);
  border: 1px solid rgba(41, 111, 161, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.svc-feature-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.svc-feature-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* CTA row */
.svc-block-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Primary button — add icon spacing */
.svc-cta-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
}

/* Secondary text-link style */
.svc-cta-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.svc-cta-secondary svg {
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.svc-cta-secondary:hover {
  color: #fff;
}

.svc-cta-secondary:hover svg {
  transform: translateX(4px);
  opacity: 1;
}

/* Divider between buttons */
.svc-block-cta::before {
  content: '';
  display: none; /* shown as a separator only on flex row */
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .svc-block {
    padding: 56px 48px 48px;
  }
}

@media (max-width: 860px) {
  .svc-block {
    padding: 48px 32px 40px;
    border-radius: 26px;
  }

  .svc-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .svc-feature {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 20px 22px;
  }
}

@media (max-width: 560px) {
  .svc-block {
    padding: 40px 24px 36px;
    border-radius: 22px;
  }

  .svc-block-cta {
    flex-direction: column;
    gap: 14px;
  }

  .svc-cta-main {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-feature {
    transition: none !important;
  }
}


/* ==============================================
   #LEAD — FULL REDESIGN 2.0
   ============================================== */

/* ── Outer panel ── */
.ld-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.13) 0%,
    rgba(10, 10, 18, 0.6)   50%,
    rgba(41, 111, 161, 0.08) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  box-shadow:
    0 0 80px rgba(41, 111, 161, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 72px);
}

/* ── Ambient glows ── */
.ld-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ld-glow--tl {
  top: -120px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(41,111,161,0.22) 0%, transparent 65%);
}

.ld-glow--br {
  bottom: -100px; right: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(41,111,161,0.16) 0%, transparent 65%);
}

/* ── Header (centered) ── */
.ld-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.ld-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(41, 111, 161, 0.14);
  border: 1px solid rgba(41, 111, 161, 0.32);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.ld-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 18px;
}

.ld-title-accent {
  background: linear-gradient(90deg, var(--accent) 0%, #5db4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ── Two-column grid ── */
.ld-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ── LEFT column ── */
.ld-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Benefits list */
.ld-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: space-between;
}

.ld-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ld-benefit:hover {
  background: rgba(41,111,161,0.09);
  border-color: rgba(41,111,161,0.25);
}

.ld-benefit-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(41,111,161,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.ld-benefit-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ld-benefit-body strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.ld-benefit-body span {
  font-size: 12px;
  color: rgba(255,255,255,0.44);
  line-height: 1.4;
}

/* Phone link */
.ld-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.ld-phone:hover { color: #5db4db; }

/* Social proof strip */
.ld-proof {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}

.ld-proof-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ld-proof-item strong {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ld-proof-item span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ld-proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

/* ── RIGHT column: form card ── */
.ld-right {
  position: sticky;
  top: 120px;
}

.ld-form-card {
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Top row */
.ld-form-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 0;
}

.ld-form-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(41,111,161,0.18);
  border: 1px solid rgba(41,111,161,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.ld-form-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}

.ld-form-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

/* Form itself */
.ld-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 28px 0;
}

.ld-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ld-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ld-input {
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
  font-family: inherit;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
}

.ld-input::placeholder { color: rgba(255,255,255,0.28); }

.ld-input:focus {
  background: rgba(255,255,255,0.09);
  border-color: rgba(41,111,161,0.7);
  box-shadow: 0 0 0 3px rgba(41,111,161,0.18);
}

/* Submit button */
.ld-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #1a5a8a 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              background 0.3s ease;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.ld-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(41,111,161,0.45);
  background: linear-gradient(135deg, #3380b8 0%, var(--accent) 100%);
}

.ld-submit:active { transform: translateY(0); }

.ld-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* JS status */
.ld-status {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  min-height: 0;
  line-height: 1.5;
}

/* Privacy note */
.ld-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px 22px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}

.ld-privacy svg { flex-shrink: 0; opacity: 0.6; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ld-grid { gap: 28px; }
  .ld-right { position: static; }
}

@media (max-width: 820px) {
  .ld-grid {
    grid-template-columns: 1fr;
  }
  .ld-right { position: static; }
  .ld-wrap  { padding: clamp(32px, 5vw, 52px) clamp(20px, 5vw, 48px); }
}

@media (max-width: 480px) {
  .ld-wrap { border-radius: 24px; }
  .ld-title { font-size: clamp(26px, 8vw, 36px); }
  .ld-form-top,
  .ld-form  { padding-left: 20px; padding-right: 20px; }
  .ld-privacy { padding-left: 20px; padding-right: 20px; }
  .ld-proof { padding: 14px 16px; }
  .ld-proof-item strong { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .ld-benefit,
  .ld-submit { transition: none !important; }
}

/* ==============================================
   LEAD CONTENT — REDESIGN 2.0 (legacy, kept for reference)
   ============================================== */

/* Eyebrow pill badge */
.lead-eyebrow-wrap {
  margin-bottom: 4px;
}

.lead-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(41, 111, 161, 0.14);
  border: 1px solid rgba(41, 111, 161, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

/* H2 accent span */
.lead-h2-accent {
  background: linear-gradient(90deg, var(--accent), #5db4db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.lead-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Benefit cards */
.lead-benefits-new {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.lead-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.lead-benefit-item:hover {
  background: rgba(41, 111, 161, 0.08);
  border-color: rgba(41, 111, 161, 0.25);
}

/* Icon box */
.lead-benefit-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(41, 111, 161, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* Text */
.lead-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lead-benefit-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.lead-benefit-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* Phone link */
.lead-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: color 0.2s ease;
}

.lead-phone:hover {
  color: #5db4db;
}

/* Stats strip */
.lead-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  margin-top: 4px;
}

.lead-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.lead-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lead-stat span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Divider between stats */
.lead-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .lead-benefit-item {
    padding: 12px 14px;
  }

  .lead-benefit-icon {
    width: 36px;
    height: 36px;
  }

  .lead-stat strong {
    font-size: 18px;
  }
}


/* ==============================================
   FOOTER — ft-* system
   ============================================== */

/* ── Map section ── */
.ft-map-section {
  background: transparent;
  padding: 0;
}

.ft-map-section .section-inner {
  padding: 0;
  max-width: 100%;
}

.ft-map-section .head {
  padding: 56px var(--gap, 24px) 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ft-map-section .head p.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.ft-map-section .head h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.ft-map-section .head > p:last-child {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 480px;
  align-items: stretch;
}

.ft-grid > * {
  min-height: 0;
}

/* Map box inside ft-grid fills full column height */
.ft-grid #locations-map {
  height: auto;
  min-height: 480px;
  border-radius: 16px;
  border: 1px solid rgba(41,111,161,0.28);
}

/* ── Right side column ── */
.ft-side {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-left: 1px solid rgba(255,255,255,0.07);
  height: 100%;
}

/* Locations list (reuses existing JS-driven #locations-list) */
.ft-side #locations-list,
.ft-side .locations-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(41,111,161,0.4) transparent;
}

/* ── Call card ── */
.ft-call-card {
  margin: 20px 16px 24px;
  padding: 22px 20px;
  background: linear-gradient(135deg,
    rgba(41,111,161,0.18) 0%,
    rgba(41,111,161,0.06) 100%);
  border: 1px solid rgba(41,111,161,0.28);
  border-radius: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ft-call-icon {
  width: 44px;
  height: 44px;
  background: rgba(41,111,161,0.2);
  border: 1px solid rgba(41,111,161,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.ft-call-body {
  flex: 1;
  min-width: 0;
}

.ft-call-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin: 0 0 4px;
}

.ft-call-number {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 4px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.ft-call-number:hover { color: var(--accent); }

.ft-call-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
  line-height: 1.4;
}

.ft-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.ft-call-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Info section ── */
.ft-info {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 0 0;
}

.ft-top {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}

/* Brand column */
.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.1);
}

.ft-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
  max-width: 220px;
}

.ft-coverage {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ft-coverage-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(41, 111, 161, 0.35);
  color: var(--accent);
  background: rgba(41, 111, 161, 0.08);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ft-coverage-item:hover {
  background: rgba(41, 111, 161, 0.18);
  border-color: rgba(41, 111, 161, 0.6);
  color: #fff;
}

.ft-coverage-item.is-active {
  background: rgba(41, 111, 161, 0.22);
  border-color: rgba(41, 111, 161, 0.7);
  color: #fff;
  pointer-events: none;
}

/* Nav columns */
.ft-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.ft-nav-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ft-nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 10px;
}

.ft-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
  line-height: 1.4;
}

.ft-nav-col a:hover { color: #fff; }

/* Contacts column */
.ft-contacts-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.ft-big-phone {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color 0.2s;
  white-space: nowrap;
}

.ft-big-phone:hover { color: var(--accent); }

.ft-phone-note {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin: 0;
  text-align: right;
}

/* Social buttons */
.ft-socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.ft-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.ft-social-btn:hover {
  background: rgba(41,111,161,0.18);
  border-color: rgba(41,111,161,0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Divider */
.ft-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0;
}

/* Copyright bar */
.ft-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
  line-height: 1.5;
}

.ft-copy-links {
  display: flex;
  gap: 20px;
}

.ft-copy-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.ft-copy-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ft-grid {
    grid-template-columns: 1fr 320px;
  }

  .ft-top {
    grid-template-columns: 220px 1fr auto;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }

  .ft-map-wrap {
    min-height: 300px;
  }

  .ft-side {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .ft-brand {
    grid-column: 1 / -1;
  }

  .ft-contacts-col {
    align-items: flex-start;
    grid-column: 1 / -1;
  }

  .ft-big-phone { font-size: 20px; }
  .ft-phone-note { text-align: left; }

  .ft-socials { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .ft-info {
    padding-top: 36px;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ft-nav {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }

  .ft-contacts-col { gap: 6px; }

  .ft-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 32px;
  }

  .ft-copy-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .ft-call-card {
    flex-direction: column;
  }
}


/* ==============================================
   REVIEWS — rv-* system
   ============================================== */

.rv-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: clip; /* clip swiper bleed without hiding pagination */
}

/* ── Header ── */
.rv-header {
  text-align: center;
  margin: 0 auto 52px;
  width: 100%;
  box-sizing: border-box;
}

.rv-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(41,111,161,0.1);
  border: 1px solid rgba(41,111,161,0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rv-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.rv-title-accent {
  background: linear-gradient(90deg, var(--accent) 0%, #5bb8f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.48);
  margin: 0;
  line-height: 1.6;
}

/* ── Swiper wrapper ── */
.rv-swiper {
  position: relative;
  padding-bottom: 52px !important;
  overflow: visible !important;
}

/* ── Card ── */
.rv-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.rv-card:hover {
  border-color: rgba(41,111,161,0.35);
  background: rgba(41,111,161,0.06);
  transform: translateY(-4px);
}

/* Decorative large quote */
.rv-quote {
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(41,111,161,0.12);
  pointer-events: none;
  user-select: none;
}

/* Stars */
.rv-stars {
  display: flex;
  gap: 3px;
}

.rv-stars svg {
  width: 16px;
  height: 16px;
  fill: #F4C542;
}

/* Text */
.rv-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0;
  flex: 1;
  overflow-y: auto;
  max-height: 200px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.rv-text::-webkit-scrollbar {
  width: 3px;
}

.rv-text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

/* Author */
.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.rv-av--1 { background: rgba(41,111,161,0.25);  color: #5bb8f5; border: 1px solid rgba(41,111,161,0.4); }
.rv-av--2 { background: rgba(52,168,83,0.2);    color: #52c97c; border: 1px solid rgba(52,168,83,0.35); }
.rv-av--3 { background: rgba(155,89,182,0.2);   color: #c47fe8; border: 1px solid rgba(155,89,182,0.35); }
.rv-av--4 { background: rgba(230,126,34,0.2);   color: #f5a043; border: 1px solid rgba(230,126,34,0.35); }
.rv-av--5 { background: rgba(26,188,156,0.2);   color: #2fecc2; border: 1px solid rgba(26,188,156,0.35); }

.rv-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rv-author-info strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.rv-author-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

/* ── Navigation arrows ── */
.rv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 26px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rv-arrow:hover {
  background: rgba(41,111,161,0.22);
  border-color: rgba(41,111,161,0.5);
  color: #fff;
}

.rv-arrow--prev { left: -22px; }
.rv-arrow--next { right: -22px; }

/* Pagination */
.rv-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.rv-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.25);
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}

.rv-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── Trust strip ── */
.rv-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}

.rv-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  flex: 1;
  justify-content: center;
}

.rv-trust-item strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.rv-trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.rv-trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .rv-arrow--prev { left: -10px; }
  .rv-arrow--next { right: -10px; }
}

/* Tablet portrait + landscape: keep everything inside viewport */
@media (max-width: 1023px) {
  .rv-outer {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  .rv-header {
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .rv-title {
    font-size: clamp(24px, 3.5vw, 36px);
  }
}

@media (max-width: 860px) {
  .rv-arrow { display: none; }

  .rv-trust {
    gap: 16px;
    padding: 20px 20px;
  }

  .rv-trust-item {
    padding: 0 16px;
    flex: none;
  }

  .rv-trust-sep { display: none; }
}

@media (max-width: 600px) {
  .rv-outer { padding: 0 16px; }

  .rv-trust {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
  }

  .rv-trust-item {
    justify-content: flex-start;
    padding: 0;
  }

  .rv-card { padding: 24px 20px 20px; }
}


/* ==============================================
   TECHNOLOGY — tc-* system
   ============================================== */

.tc-wrap {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto 80px;
  padding: 72px 48px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(41, 111, 161, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(41, 111, 161, 0.07) 100%
  );
  border: 1px solid rgba(41, 111, 161, 0.22);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tc-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 111, 161, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.tc-wrap > * {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.tc-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.tc-badge::before,
.tc-badge::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.tc-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
}

.tc-title-accent {
  color: rgba(255,255,255,0.38);
}

.tc-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 580px;
  margin-inline: auto;
}

/* ── Responsive header ── */
@media (max-width: 600px) {
  .tc-wrap { padding: 64px 32px 56px; border-radius: 24px; }
  .tc-header { margin-bottom: 48px; }
}


/* ==============================================
   TECH VISUAL HUB — thv-* system
   ============================================== */

/* ── 3-column hub — pain-grid style ── */
.thv-hub {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  overflow: hidden;
  align-items: stretch;
}

/* Stats bar spans all 3 columns */
.thv-stats {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,10,16,0.80);
  padding: 22px 32px;
  gap: 0;
}

.thv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  text-align: center;
}

.thv-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.thv-stat span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.thv-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── Feature columns ── */
.thv-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-self: stretch;
}

/* ── Feature item = pain-card style ── */
.thv-feature {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 28px;
  background: rgba(6,10,16,0.60);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.thv-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.thv-feature:hover {
  background: rgba(15,22,32,0.90);
}

.thv-feature:hover .thv-icon {
  color: var(--accent);
  border-color: rgba(41,111,161,0.5);
}

.thv-feature--right {
  flex-direction: row-reverse;
  text-align: right;
}

.thv-feature--right .thv-body {
  align-items: flex-end;
}

/* Icon */
.thv-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.30);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.thv-icon svg {
  width: 100%;
  height: 100%;
}

/* Body */
.thv-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

.thv-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.thv-body h4 span {
  color: rgba(255,255,255,0.55);
}

/* ── Center product ── */
.thv-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(6,10,16,0.60);
  padding: 48px 32px;
}

.thv-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(41,111,161,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.thv-img {
  position: relative;
  z-index: 1;
  width: 380px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.7));
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .thv-img { width: 300px; }
  .thv-feature { padding: 24px 20px; }
}

@media (max-width: 860px) {
  .thv-hub {
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
  }

  .thv-center {
    grid-column: 1 / -1;
    order: -1;
    padding: 32px 24px;
  }

  .thv-img { width: 240px; }

  .thv-col--left  { grid-column: 1; }
  .thv-col--right { grid-column: 2; }

  .thv-feature--right {
    flex-direction: row;
    text-align: left;
  }

  .thv-feature--right .thv-body {
    align-items: flex-start;
  }

  .thv-stats { padding: 18px 16px; }
  .thv-stat strong { font-size: 18px; }
  .thv-stat span { font-size: 10px; }
  .thv-stat-sep { margin: 0 4px; }
}

@media (max-width: 600px) {
  .thv-hub { grid-template-columns: 1fr; border-radius: 16px; }
  .thv-col--right { grid-column: 1; }
  .thv-img { width: 200px; }

  .thv-feature--right {
    flex-direction: row;
    text-align: left;
  }

  .thv-feature--right .thv-body { align-items: flex-start; }

  /* ── thv-stats: redesign as 2-col card grid ── */
  .thv-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
  }

  .thv-stat-sep { display: none; }

  .thv-stat {
    flex: none;
    background: rgba(41, 111, 161, 0.08);
    border: 1px solid rgba(41, 111, 161, 0.22);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    gap: 4px;
  }

  .thv-stat strong {
    font-size: 20px;
  }

  .thv-stat span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  /* last stat spans both columns if count is odd */
  .thv-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  /* ── thv-hub-toggle: shared mobile button ── */
  .thv-hub-toggle {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .thv-hub-toggle:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
  }

  .thv-hub-toggle svg {
    transition: transform 0.3s ease;
  }

  .thv-hub-toggle.is-expanded svg {
    transform: rotate(180deg);
  }

  /* collapse features 3+ by default */
  .thv-col:not(.is-expanded) .thv-feature:nth-child(n+3) {
    display: none;
  }
}

@media (min-width: 601px) {
  /* hide the shared toggle on non-mobile */
  .thv-hub-toggle {
    display: none;
  }
}

/* =========================
   MOBILE COLLAPSE TOGGLES
========================= */


/* ── hero arrows: hide on mobile ── */
@media (max-width: 600px) {
  .hero-slider-new-arrows {
    display: none;
  }
}

/* =========================
   MOBILE FLOATING OVERRIDES
========================= */
@media (max-width: 768px) {
  /* Hide floating social widget — links live inside the mobile menu */
  .floating-social {
    display: none;
  }

  /* floating-cta: centered full-width bar at bottom */
  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    text-align: center;
    font-size: 15px;
    padding: 15px 20px;
  }
}

/* =========================
   ACCESSORIES MOBILE SWIPER
========================= */

/* Hidden on desktop */
.acc-mobile { display: none; }

@media (max-width: 768px) {

  /* Hide desktop carousel, show mobile swiper */
  .accessories-tabs-wrapper,
  .accessories-carousel { display: none !important; }

  .acc-mobile { display: block; padding: 0 0 8px; }

  /* ── Segmented tab control ── */
  .acc-mobile-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
    margin: 0 0 24px;
  }

  .acc-mobile-tab {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
  }

  .acc-mobile-tab.acc-mobile-tab-active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(41, 111, 161, 0.35);
  }

  /* ── Swiper container ── */
  .acc-mobile-swiper {
    overflow: visible !important;
    padding: 8px 0 40px !important;
  }

  /* ── Card slide ── */
  .acc-mobile-card {
    background: rgba(12, 20, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }

  /* Active slide scale-up */
  .swiper-slide-active .acc-mobile-card {
    transform: scale(1.0);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(41, 111, 161, 0.3);
  }

  .swiper-slide:not(.swiper-slide-active) .acc-mobile-card {
    transform: scale(0.96);
    opacity: 0.75;
  }

  /* ── Image area ── */
  .acc-mobile-img {
    position: relative;
    width: 100%;
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(41, 111, 161, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }

  .acc-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(41, 111, 161, 0.35);
    border-radius: 12px;
  }

  /* ── Play button (bottom-right of image) ── */
  .acc-mobile-play {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(41, 111, 161, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
  }

  .acc-mobile-play:hover {
    background: var(--accent);
    transform: scale(1.1);
  }

  .acc-mobile-play:active {
    transform: scale(0.94);
  }

  .acc-mobile-play svg {
    margin-left: 2px; /* optical centering for triangle */
  }

  /* ── Card body ── */
  .acc-mobile-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .acc-mobile-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .acc-mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
    text-align: center;
    width: 100%;
  }

  .acc-mobile-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── Pagination dots ── */
  .acc-mobile-pagination {
    bottom: 12px !important;
  }

  .acc-mobile-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
    border-radius: 3px;
  }

  .acc-mobile-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background: var(--accent);
  }

  /* Tab fade animation */
  .acc-mobile-swiper.is-switching {
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .acc-mobile-swiper.is-visible {
    opacity: 1;
    transition: opacity 0.25s ease;
  }
}


/* ================================================================
   COMPREHENSIVE RESPONSIVE 2026
   Safe-area insets · section vertical rhythm · 360–414px phones
   All rules override earlier declarations — keep at end of file.
================================================================ */


/* ─── 1. iOS Safe-Area Insets (iPhone X+, notch & home bar) ───── */
/* viewport-fit=cover is already set in <meta name="viewport">     */

/* Floating CTA — sits above home indicator */
.floating-cta {
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

/* Mobile: floating CTA centered bar, also above home bar */
@media (max-width: 768px) {
  .floating-cta {
    left:   16px;
    right:  16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* Floating social widget — always above floating CTA + safe area */
.floating-social {
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

/* Cookie consent banner — above home bar */
.cookie-banner {
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

/* Mobile menu bottom actions — clear home bar */
.mobile-actions {
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
}


/* ─── 2. Tablet (≤ 768px) — section vertical breathing room ───── */

@media (max-width: 768px) {
  /* standalone-padded sections */
  #history, #demo, #reviews,
  #buyer-beware, #verify, #lead {
    padding-top:    60px;
    padding-bottom: 72px;
  }

  #awards {
    padding: 60px 24px 72px;
    border-radius: 24px;
  }

  #accessories {
    padding: 60px 24px 72px !important;
    border-radius: 24px;
  }

  .head {
    margin-bottom: 40px;
    gap: 14px;
  }

  /* cookie banner on tablet */
  .cookie-banner {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}


/* ─── 3. Large phones (≤ 600px) ──────────────────────────────── */

@media (max-width: 600px) {
  #history, #demo, #reviews,
  #buyer-beware, #verify, #lead {
    padding-top:    48px;
    padding-bottom: 56px;
  }

  #awards {
    padding: 48px 16px 56px;
    border-radius: 20px;
  }

  #accessories {
    padding: 48px 16px 56px !important;
    border-radius: 20px;
  }

  .head {
    margin-bottom: 32px;
    gap: 12px;
  }

  .head h2 {
    font-size: clamp(26px, 7vw, 42px);
  }

  .head p {
    font-size: 15px;
  }
}


/* ─── 4. Standard phones (≤ 480px) ──────────────────────────── */

@media (max-width: 480px) {
  /* standalone sections */
  #history, #awards, #demo, #reviews,
  #buyer-beware, #verify, #lead {
    padding-top:    40px;
    padding-bottom: 48px;
  }

  #accessories {
    padding-top:    40px !important;
    padding-bottom: 48px !important;
  }

  /* inner wraps */
  .pain-wrap {
    padding: 48px 16px 40px;
    border-radius: 20px;
  }

  .tech-wrap {
    padding-top:    48px;
    padding-bottom: 40px;
    gap: 36px;
  }

  .specs-wrap {
    padding: 48px 16px 40px;
    gap: 36px;
    border-radius: 20px;
  }

  .tc-wrap {
    padding: 48px 16px 40px;
    border-radius: 20px;
  }

  .tc-header {
    margin-bottom: 36px;
  }

  /* pain section */
  .pain-head {
    margin-bottom: 28px;
  }

  .pain-title {
    font-size: clamp(26px, 7.5vw, 42px);
  }

  .pain-lead {
    font-size: 14px;
  }

  .pain-bridge__title {
    font-size: clamp(22px, 6vw, 34px);
  }

  .pain-bridge__sub {
    font-size: 14px;
  }

  /* section head */
  .head {
    margin-bottom: 28px;
    padding: 0 8px;
    gap: 10px;
  }

  .head h2 {
    font-size: clamp(24px, 7vw, 38px);
  }

  .head p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* modal */
  .modal-content {
    width: calc(100% - 24px);
    padding: 18px 16px;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 22px;
  }

  /* floating CTA: tighter sides */
  .floating-cta {
    left:   12px;
    right:  12px;
    font-size: 14px;
    padding: 14px 16px;
  }

  /* cookie banner: match CTA width */
  .cookie-banner {
    width: calc(100% - 24px);
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  /* testimonials */
  .testimonials-container {
    padding: 0 16px;
  }

  /* specs card */
  .spec-feat {
    padding: 28px 20px;
  }
}


/* ─── 5. Small phones (≤ 375px) ─────────────────────────────── */

@media (max-width: 375px) {
  /* hero */
  .hero-title-new {
    font-size: 28px;
  }

  .hero-subtitle-new {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  .hero-cta-new {
    padding: 11px 14px;
    font-size: 13px;
    gap: 7px;
  }

  .hero-ghost-link {
    display: none;
    font-size: 13px;
  }

  .hero-cta-group {
    gap: 14px;
  }

  /* pain cards */
  .pain-card {
    padding: 18px 14px;
    gap: 12px;
  }

  /* thv features */
  .thv-feature {
    padding: 18px 14px;
    gap: 12px;
  }

  /* spec feat */
  .spec-feat {
    padding: 24px 16px;
  }

  .spec-feat__num {
    font-size: 42px;
  }

  /* typography */
  .pain-title {
    font-size: clamp(24px, 7.5vw, 36px);
  }

  .pain-bridge__title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .specs-title {
    font-size: clamp(26px, 8vw, 38px);
  }

  .tc-title {
    font-size: clamp(26px, 8vw, 38px);
  }

  /* floating CTA */
  .floating-cta {
    left:     10px;
    right:    10px;
    font-size: 13px;
    padding:  12px 14px;
    min-height: 48px;
  }

  /* mobile menu */
  .mobile-link {
    font-size: 19px;
    padding: 14px 0;
  }

  /* modal */
  .modal-content {
    width: calc(100% - 20px);
    padding: 16px 14px;
  }

  .modal-title {
    font-size: 20px;
  }

  /* cookie banner */
  .cookie-banner {
    width: calc(100% - 20px);
  }
}


/* ─── 6. Touch target safety — all interactive min 44×44px ───── */

@media (max-width: 768px) {
  .hdr-mobile-phone,
  .mobile-toggle,
  .mobile-close,
  .hero-dot,
  .hero-cta-new,
  .pain-bridge__cta,
  .thv-hub-toggle,
  .acc-mobile-tab,
  .mobile-cta,
  .verify-btn,
  .ld-submit {
    min-height: 44px;
  }

  /* ensure hero dots are finger-friendly */
  .hero-dot {
    min-width: 5px;
    min-height: 5px;
    padding: 5px;
    box-sizing: content-box;
  }
}


/* ─── 7. Prevent horizontal overflow on any screen ───────────── */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe, embed, object {
  max-width: 100%;
}

/* ─── End Comprehensive Responsive 2026 ─────────────────────── */


/* ================================================================
   HISTORY SECTION — Mobile Redesign
   Compact card · year+kicker row · touch-friendly timeline
   Applies: 360–759px phones, 760–1023px tablets handled above
================================================================ */

@media (max-width: 759px) {

  /* ── Card shell ── */
  .history-chronicle {
    border-radius: 20px;
  }

  /* Stack columns: image → copy → rail */
  .history-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* ── Image zone: fixed height, centered product photo ── */
  .history-stage-media {
    order: -1;
    height: 660px;
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 55%, rgba(41,111,161,0.22) 0%, transparent 68%);
    overflow: hidden;
  }

  .history-stage-media img {
    height: 540px;
    width: auto;
    max-width: 85%;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.65))
            drop-shadow(0 0 28px rgba(41,111,161,0.20));
  }

  .history-stage-badge {
    top: 10px;
    right: 12px;
    font-size: 9px;
    padding: 5px 10px;
    letter-spacing: 0.08em;
  }

  /* ── Copy zone: row-wrap layout ── */
  .history-stage-copy {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.055);
    padding: 0;
    gap: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(41,111,161,0.06) 0%, transparent 70%);
    min-height: auto;
  }

  /* Large year number — left, row 1 */
  .history-stage-year {
    order: 1;
    flex: 0 0 auto;
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.9;
    padding: 18px 0 0 20px;
    margin: 0;
    min-height: auto;
  }

  /* Chapter kicker — right of year, row 1 */
  .history-kicker {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px 20px 0 8px;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.1em;
    width: fit-content;
  }

  /* Model name — full-width row 2 */
  .history-stage-copy h3 {
    order: 3;
    flex: 0 0 100%;
    padding: 10px 20px 0;
    margin: 0;
    font-size: clamp(18px, 5.5vw, 26px);
    min-height: auto;
    max-width: none;
  }

  /* Description — full-width row 3 */
  .history-stage-copy p:last-child {
    order: 4;
    flex: 0 0 100%;
    padding: 8px 20px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    max-width: none;
    min-height: auto;
  }

  /* ── Timeline rail: touch-scrollable with fade edges ── */
  .history-rail {
    padding: 14px 16px 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 0;
    /* fade-out left/right edges hint that rail is scrollable */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0px, black 14px,
      black calc(100% - 20px), transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0px, black 14px,
      black calc(100% - 20px), transparent 100%
    );
  }

  .history-rail::before {
    left: 16px;
    right: 16px;
    top: calc(14px + 9px);
  }

  /* Step button: min 44px touch target */
  .chrono-marker.history-step {
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 44px;
    padding: 0 8px;
    gap: 8px;
    scroll-snap-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .history-dot {
    width: 18px;
    height: 18px;
  }

  .history-step-model {
    font-size: 11px !important;
    white-space: nowrap;
  }
}

/* ── 480px: tighten further ── */
@media (max-width: 480px) {
  .history-stage-media       { height: 570px; }
  .history-stage-media img   { height: 465px; }
  .history-stage-year        { font-size: clamp(40px, 13vw, 60px); padding: 16px 0 0 16px; }
  .history-kicker            { padding: 18px 16px 0 6px; font-size: 10px; }
  .history-stage-copy h3     { padding: 8px 16px 0; font-size: clamp(17px, 5vw, 22px); }
  .history-stage-copy p:last-child { padding: 6px 16px 16px; font-size: 13.5px; }
  .history-rail              { padding: 12px 12px 16px; }
  .history-rail::before      { left: 12px; right: 12px; }
  .chrono-marker.history-step { min-width: 40px; padding: 0 6px; }
  .history-dot               { width: 16px; height: 16px; }
}

/* ── 375px: smallest phones ── */
@media (max-width: 375px) {
  .history-stage-media       { height: 495px; }
  .history-stage-media img   { height: 405px; }
  .history-stage-year        { font-size: 38px; padding: 14px 0 0 14px; }
  .history-kicker            { padding: 16px 14px 0 5px; font-size: 10px; }
  .history-stage-copy h3     { padding: 7px 14px 0; font-size: 17px; }
  .history-stage-copy p:last-child { padding: 5px 14px 14px; font-size: 13px; }
  .chrono-marker.history-step { min-width: 36px; padding: 0 4px; }
}


/* ================================================================
   HISTORY — Year-Picker Slider (overrides timeline rail on mobile)
   Active year centred large · neighbours small · kicker hidden
   Item-width = 1/3 container → exact centering for first/last
================================================================ */

@media (max-width: 759px) {

  /* ── Hide kicker chip ── */
  .history-kicker { display: none !important; }

  /* Year now owns the full first row (kicker gone) */
  .history-stage-year {
    flex: 0 0 100% !important;
    padding: 20px 20px 0 !important;
  }

  /* ── Year-picker rail ── */
  .history-rail {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: scroll !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    /*
      Padding = 1 item-width on each side so the first and last
      year can scroll exactly into the centre of the rail.
      Item-width = container / 3 = (100vw - 32px) / 3
    */
    padding: 14px calc((100vw - 32px) / 3) 18px !important;
    gap: 0 !important;
    justify-content: flex-start !important;
    position: relative !important;
    background: rgba(0,0,0,0.22) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* remove old fade mask */
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .history-rail::-webkit-scrollbar { display: none !important; }

  /* ── Hide connecting line ── */
  .history-rail::before { display: none !important; }

  /* ── Subtle vertical borders framing the centred slot ── */
  .history-rail::after {
    content: '';
    position: absolute;
    inset: 10px calc((100vw - 32px) / 3) 10px;
    border-left:  1px solid rgba(41,111,161,0.18);
    border-right: 1px solid rgba(41,111,161,0.18);
    border-radius: 4px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── Hide dots ── */
  .history-dot { display: none !important; }

  /* ── Each year button: exactly 1/3 of container wide ── */
  .chrono-marker.history-step {
    flex: 0 0 calc((100vw - 32px) / 3) !important;
    min-width:  0 !important;
    max-width:  none !important;
    min-height: 56px !important;
    padding:    0 !important;
    gap:        0 !important;
    scroll-snap-align: center !important;
    display:    flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border:     none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 1;
  }

  /* Non-active years: small + muted */
  .history-step-model {
    font-size:   14px !important;
    font-weight: 500 !important;
    color:       rgba(255,255,255,0.22) !important;
    letter-spacing: 0 !important;
    transition:  font-size 0.28s ease, color 0.28s ease, font-weight 0.28s ease,
                 text-shadow 0.28s ease !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    text-align:  center !important;
  }

  /* Active year: large + accent + glow */
  .chrono-marker.history-step.is-active .history-step-model {
    font-size:      clamp(28px, 9vw, 36px) !important;
    font-weight:    800 !important;
    color:          var(--accent) !important;
    text-shadow:    0 0 22px rgba(41,111,161,0.55) !important;
    letter-spacing: -0.03em !important;
  }
}

/* ── 480px tweaks ── */
@media (max-width: 480px) {
  .history-stage-year {
    font-size: clamp(40px, 13vw, 60px) !important;
    padding: 16px 16px 0 !important;
  }
  .history-stage-copy h3 { padding: 8px 16px 0 !important; }
  .history-stage-copy p:last-child { padding: 6px 16px 16px !important; }
  .history-rail { padding-top: 12px !important; padding-bottom: 16px !important; }
  .chrono-marker.history-step.is-active .history-step-model { font-size: clamp(26px, 8vw, 32px) !important; }
}

/* ── 375px tweaks ── */
@media (max-width: 375px) {
  .history-stage-year { font-size: 38px !important; padding: 14px 14px 0 !important; }
  .history-stage-copy h3 { font-size: 17px !important; padding: 7px 14px 0 !important; }
  .history-stage-copy p:last-child { padding: 5px 14px 14px !important; font-size: 13px !important; }
  .chrono-marker.history-step.is-active .history-step-model { font-size: 26px !important; }
  .history-step-model { font-size: 13px !important; }
}


/* ── History: fix card height — scroll description if too long ── */
@media (max-width: 759px) {
  /*
    Lock the description to ~4 visible lines.
    If JS updates the text to something longer it scrolls
    inside the card instead of stretching the layout.
  */
  .history-stage-copy p:last-child {
    max-height: 6em;          /* ~4 lines at 14px / line-height 1.65 */
    overflow-y: auto;
    overscroll-behavior: contain;
    /* thin custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(41,111,161,0.45) transparent;
  }

  .history-stage-copy p:last-child::-webkit-scrollbar {
    width: 3px;
  }

  .history-stage-copy p:last-child::-webkit-scrollbar-track {
    background: transparent;
  }

  .history-stage-copy p:last-child::-webkit-scrollbar-thumb {
    background: rgba(41,111,161,0.45);
    border-radius: 99px;
  }
}


/* ── History synchronized mobile swipers ── */
@media (max-width: 759px) {
  .history-rail,
  .chrono-marker.history-step { display: none !important; }

  .history-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 16px 0 20px;
  }
  .history-dot-btn {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  }
  .history-dot-btn.is-active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent);
  }

  /* ── Combined history swiper ── */
  .history-swiper {
    width: 100%;
    overflow: hidden;
  }
  .history-combined-slide {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
  }
  .hs-media {
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 55%, rgba(41,111,161,0.22) 0%, transparent 68%);
    flex-shrink: 0;
  }
  .hs-media img {
    height: 270px;
    width: auto;
    max-width: 85%;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.65)) drop-shadow(0 0 28px rgba(41,111,161,0.20));
  }
  .hs-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 20px 24px;
    background: rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .hs-year {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
  }
  .hs-title {
    font-size: clamp(17px, 5vw, 22px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .hs-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0;
  }
}
@media (max-width: 480px) {
  .hs-media { height: 290px; }
  .hs-media img { height: 230px; }
}
@media (max-width: 375px) {
  .hs-media { height: 250px; }
  .hs-media img { height: 200px; }
}

/* ── Accessories mobile: scroll body if text too long ── */
@media (max-width: 768px) {
  /* Cancel line-clamp — use scroll instead */
  .acc-mobile-desc {
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
  }

  /* Lock body height, scroll inside */
  .acc-mobile-body {
    height: 180px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(41,111,161,0.45) transparent;
  }

  .acc-mobile-body::-webkit-scrollbar {
    width: 3px;
  }

  .acc-mobile-body::-webkit-scrollbar-track {
    background: transparent;
  }

  .acc-mobile-body::-webkit-scrollbar-thumb {
    background: rgba(41,111,161,0.45);
    border-radius: 99px;
  }
}


/* ================================================================
   REVIEWS SECTION — Mobile Redesign v3
================================================================ */

@media (max-width: 768px) {
  #reviews { display: none !important; }
}


/* ================================================================
   FOOTER — Mobile Redesign
   country-tabs: vertical · map fixed height · call-card centred
   ft-brand centred · ft-coverage hidden · ft-contacts-col hidden
   ft-socials centred · ft-copy centred
================================================================ */

@media (max-width: 768px) {

  /* ── 1. Country tabs: Swiper ── */
  .country-tabs-container {
    overflow-x: hidden;
    background: none !important;
  }

  .country-tabs-swiper {
    width: 100%;
    overflow: hidden;
    padding: 16px 0 !important;
    background: none;
    border: none;
    border-radius: 28px;
    position: relative;
  }

  .country-tabs-swiper::before {
    display: none;
  }

  .country-tabs-swiper .swiper-wrapper {
    position: relative;
    z-index: 1;
  }

  .country-tabs-swiper .swiper-slide {
    width: calc(100% - 48px) !important;
    box-sizing: border-box;
  }

  .country-tab {
    flex: none !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 20px 24px !important;
    border-radius: 18px !important;
    text-align: center !important;
    display: grid !important;
    gap: 8px !important;
    background: none !important;
    border: none !important;
    transform: scale(0.90);
    opacity: 0.45;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity   0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .country-tab.is-active {
    transform: scale(1) !important;
    opacity: 1 !important;
    background: none !important;
    border: none !important;
  }

  .country-tab span {
    display: block !important;
    font-size: 13px;
  }

  .country-tab strong {
    font-size: 16px !important;
  }

  .country-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .country-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  }

  .country-dot.is-active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent);
  }

  /* ── 2. Map: single column, fixed height = list height ── */
  .ft-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .ft-grid #locations-map,
  #locations-map.map-box {
    display: none !important;
  }

  /* Map modal overlay — mobile only */
  .map-mobile-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(4, 8, 14, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: flex-end;
    justify-content: center;
  }
  .map-mobile-modal.is-open {
    display: flex;
  }
  .map-mobile-modal__inner {
    width: 100%;
    height: 72vh;
    background: #0a1018;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .map-mobile-modal__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px 10px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    gap: 4px;
  }
  .map-mobile-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
  }
  .map-mobile-modal__addr {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin: 4px 0 0;
    text-align: center;
  }
  .map-mobile-modal__phone {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin: 6px 0 0;
    text-decoration: none;
  }
  .map-mobile-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .map-mobile-modal__map {
    flex: 1;
    min-height: 0;
  }
  .map-mobile-modal__map #locations-map {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  .ft-side {
    display: contents;
  }

  .ft-nav { display: none !important; }

  .ft-side #locations-list,
  .ft-side .locations-list {
    order: 1;
    margin-bottom: 24px;
  }

  .ft-call-card {
    order: 3;
  }

  .ft-side {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .ft-side #locations-list,
  .ft-side .locations-list {
    max-height: 280px !important;
    flex: none !important;
  }

  /* ── 3. Call card: centred layout ── */
  .ft-call-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 16px 0 20px !important;
    padding: 20px 16px !important;
    gap: 12px !important;
  }

  .ft-call-body {
    text-align: center;
  }

  .ft-call-btn {
    width: 100%;
    justify-content: center;
  }

  /* ── 4. ft-info top row: single column ── */
  .ft-top {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* ── 5. ft-brand + ft-tagline: centred ── */
  .ft-brand {
    align-items: center !important;
    text-align: center !important;
    grid-column: auto !important;
  }

  .ft-tagline {
    text-align: center;
  }

  /* ── 6. ft-coverage: hidden ── */
  .ft-coverage {
    display: none !important;
  }

  /* ── 7. ft-contacts-col + ft-big-phone: hidden ── */
  .ft-contacts-col > h4,
  .ft-big-phone,
  .ft-phone-note {
    display: none !important;
  }

  /* Keep the column but just as a socials wrapper */
  .ft-contacts-col {
    align-items: center !important;
    gap: 0 !important;
    grid-column: auto !important;
  }

  /* ── 8. ft-socials: centred ── */
  .ft-socials {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
    margin-top: 0 !important;
    gap: 10px;
  }

  .ft-social-btn {
    width: 44px;
    height: 44px;
  }

  /* ── 9. ft-copy: centred ── */
  .ft-copy {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    padding-bottom: 28px !important;
  }

  .ft-copy-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ── ft-map-section head: less padding ── */
  .ft-map-section .head {
    padding: 36px 0 28px !important;
  }
}

/* ── Yandex Maps balloon header hidden ── */
[class*="balloon-content__header"] { display: none !important; }

/* ── Map mobile modal close btn: desktop only hidden ── */
@media (min-width: 769px) {
  .map-mobile-modal__close { display: none !important; }
}

/* ── Verify: danger warning block (sold unit) ── */
.vr-danger-block {
  margin: 0 10px 10px;
  padding: 16px 18px;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.30);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  line-height: 1.75;
}

.vr-danger-title {
  font-size: 15px;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vr-danger-block p {
  margin: 0 0 10px;
}

.vr-danger-block p:last-child {
  margin-bottom: 0;
}

.vr-danger-block ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

.vr-danger-block ul li {
  margin-bottom: 4px;
}

.vr-danger-alert {
  color: #f39c12;
  font-weight: 600;
}

.vr-danger-norisk {
  font-size: 14px;
  font-weight: 800;
  color: #e74c3c;
  letter-spacing: 0.04em;
}

.vr-danger-phone {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.vr-danger-phone a {
  color: #fff;
  text-decoration: none;
}

.vr-danger-phone a:hover {
  text-decoration: underline;
}


