/* ==========================================================================
   ДРАЙВ ПРО (DRIVE PRO) — Modern Automotive Assistance & Licensing Platform
   Architecture: High-End Custom Design System
   Color Palette: Deep Obsidian, Slate Graphite, Solar Amber, Cyber Emerald
   Typography: Plus Jakarta Sans, Inter, JetBrains Mono
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Deep Midnight Surfaces */
  --bg-darkest: #070A10;
  --bg-base: #0A0E17;
  --bg-surface: #101623;
  --bg-surface-elevated: #162032;
  --bg-surface-glass: rgba(16, 22, 35, 0.78);
  --bg-card-hover: rgba(22, 32, 50, 0.88);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --border-amber-glow: rgba(245, 158, 11, 0.35);
  --border-emerald-glow: rgba(16, 185, 129, 0.35);

  /* Primary Brand Accents (Solar Amber / Executive Gold) */
  --primary-50: #FFFBEB;
  --primary-100: #FEF3C7;
  --primary-200: #FDE68A;
  --primary-300: #FCD34D;
  --primary-400: #FBBF24;
  --primary-500: #F59E0B;
  --primary-600: #D97706;
  --primary-700: #B45309;

  /* Trust & Verification Accents (Cyber Emerald) */
  --emerald-400: #34D399;
  --emerald-500: #10B981;
  --emerald-600: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.25);

  /* Official State Accents (Electric Cobalt) */
  --cobalt-400: #60A5FA;
  --cobalt-500: #3B82F6;
  --cobalt-600: #2563EB;
  --cobalt-glow: rgba(59, 130, 246, 0.25);

  /* Messenger Colors */
  --telegram-color: #229ED9;
  --viber-color: #7360F2;

  /* Typography Colors */
  --text-main: #F8FAFC;
  --text-body: #CBD5E1;
  --text-muted: #8E9DB2;
  --text-dim: #546278;

  /* Font Families */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px -16px rgba(0, 0, 0, 0.7);
  --shadow-amber-glow: 0 12px 40px -10px rgba(245, 158, 11, 0.35);
  --shadow-emerald-glow: 0 12px 40px -10px rgba(16, 185, 129, 0.3);

  /* Layout Constants */
  --container-max: 1320px;
  --header-height: 82px;
  --announcement-height: 38px;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;

  /* Animation Easing */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Progressive intrinsic interpolation */
  interpolate-size: allow-keywords;
}

/* --------------------------------------------------------------------------
   02. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-darkest);
  color: var(--text-body);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #111A2C 0%, var(--bg-darkest) 75%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-smooth), opacity 0.25s var(--ease-smooth);
}

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: transparent;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(245, 158, 11, 0.35);
  color: #FFF;
}

/* --------------------------------------------------------------------------
   03. AMBIENT BACKGROUND EFFECTS
   -------------------------------------------------------------------------- */
.ambient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  will-change: transform;
}

.spot-amber {
  top: -100px;
  left: 20%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, #F59E0B 0%, rgba(217, 119, 6, 0) 70%);
  animation: floatAmber 24s infinite alternate ease-in-out;
}

.spot-emerald {
  top: 45%;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #10B981 0%, rgba(5, 150, 105, 0) 70%);
  opacity: 0.22;
  animation: floatEmerald 28s infinite alternate ease-in-out;
}

.spot-cobalt {
  bottom: 10%;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3B82F6 0%, rgba(37, 99, 235, 0) 70%);
  opacity: 0.2;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
}

@keyframes floatAmber {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

@keyframes floatEmerald {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -60px) scale(1.1); }
  100% { transform: translate(30px, 40px) scale(0.9); }
}

/* Interactive Cursor Ambient Glow (Desktop) */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  opacity: 0;
}

body.cursor-active .cursor-glow {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   04. LAYOUT CONTAINERS & GRID
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-heading {
  margin-bottom: 56px;
}

.text-center {
  text-align: center;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--primary-400);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.tag-sparkle {
  color: var(--primary-400);
  font-size: 0.95rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.gradient-text {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-headline {
  background: linear-gradient(120deg, #FDE68A 0%, #F59E0B 40%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   05. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: all 0.28s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #07090F;
  box-shadow: 0 4px 20px -2px rgba(245, 158, 11, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  box-shadow: 0 8px 30px -4px rgba(245, 158, 11, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  color: #000;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-hero {
  padding: 18px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 18px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-viber-outline {
  background: rgba(115, 96, 242, 0.1);
  border: 1px solid rgba(115, 96, 242, 0.35);
  color: #A396FF;
}

.btn-viber-outline:hover {
  background: rgba(115, 96, 242, 0.2);
  border-color: rgba(115, 96, 242, 0.6);
  color: #FFF;
  transform: translateY(-2px);
}

/* Button Ripple */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   06. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-announcement {
  background: rgba(10, 14, 23, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  position: relative;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.top-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--announcement-height);
  gap: 16px;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-500);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--emerald-500);
  animation: pulseDot 2s infinite;
}

.green-dot {
  background-color: var(--emerald-500);
  box-shadow: 0 0 8px var(--emerald-500);
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.announcement-badges {
  display: flex;
  align-items: center;
  gap: 18px;
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-body);
}

.check-icon {
  color: var(--emerald-400);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   07. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(7, 10, 16, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-symbol {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.brand-logo:hover .brand-symbol {
  transform: rotate(6deg) scale(1.05);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-accent {
  color: var(--primary-400);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Desktop Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap !important;
  display: inline-block;
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.07);
}

/* Header Action CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(34, 158, 217, 0.12);
  border: 1px solid rgba(34, 158, 217, 0.35);
  color: #38BDF8;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-header-cta:hover {
  background: rgba(34, 158, 217, 0.25);
  border-color: #38BDF8;
  color: #FFF;
  transform: translateY(-1px);
}

/* Burger Button */
.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-body {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: #0E1420;
  border-left: 1px solid var(--border-medium);
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-smooth);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100000;
}

.mobile-drawer.open .mobile-drawer-body {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--primary-300);
}

.mobile-nav-icon {
  font-size: 1.2rem;
}

.mobile-drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-messenger-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   08. HERO SECTION & 3D LICENSE CARD SHOWCASE
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 60px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.hero-badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-400);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 10px var(--emerald-500);
  animation: pulseDot 2s infinite;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-subheadline strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-calc-icon {
  font-size: 1.1rem;
}

/* Trust Proof Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(16, 22, 35, 0.75);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  width: fit-content;
}

.trust-metric-item {
  display: flex;
  flex-direction: column;
}

.trust-metric-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.metric-unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.highlight-green {
  color: var(--emerald-400);
}

.trust-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
}

.trust-metric-separator {
  width: 1px;
  height: 38px;
  background: var(--border-medium);
}

/* 3D Showcase Stage */
.license-showcase-stage {
  position: relative;
  perspective: 1200px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Biometric Driver License Card (Ultra-Realistic Modern Hologram Design) */
.license-biometric-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, #131B2A 0%, #0E1624 50%, #152238 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(245, 158, 11, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transform: none;
  transition: transform 0.2s ease-out, box-shadow 0.3s ease;
  user-select: none;
}

@media (min-width: 992px) {
  .license-biometric-card {
    transform: rotateY(-10deg) rotateX(6deg);
    transform-style: preserve-3d;
  }
}

.card-glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(245, 158, 11, 0.12) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
  transition: opacity 0.3s;
}

/* Head */
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.card-flag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ua-flag-pill {
  width: 38px;
  height: 24px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.ua-flag-blue {
  height: 50%;
  background-color: #0057B7;
}

.ua-flag-yellow {
  height: 50%;
  background-color: #FFD700;
}

.ua-flag-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  color: #FFF;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.card-authority {
  display: flex;
  flex-direction: column;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFF;
}

.auth-sub {
  font-size: 0.65rem;
  color: var(--primary-300);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.card-chip-hologram {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #D4AF37 0%, #FFF8DC 50%, #AA771C 100%);
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 4px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.4);
}

.smart-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 100%;
}

.smart-chip-grid span {
  border: 1px solid rgba(138, 92, 10, 0.6);
  border-radius: 1px;
}

/* Body */
.card-main-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.card-photo-box {
  width: 100px;
  height: 125px;
  background: rgba(10, 16, 26, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-silhouette {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
  animation: scanBeam 2.5s infinite ease-in-out;
}

@keyframes scanBeam {
  0% { top: 0; opacity: 0.8; }
  50% { top: 100%; opacity: 1; }
  100% { top: 0; opacity: 0.8; }
}

.photo-watermark {
  position: absolute;
  bottom: 4px;
  font-size: 0.48rem;
  font-weight: 700;
  color: var(--primary-400);
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.card-details-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-row {
  display: flex;
  flex-direction: column;
}

.detail-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-idx {
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.detail-val {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.3;
}

.mono-font {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.serial-highlight {
  color: var(--emerald-400);
  font-size: 0.82rem;
}

/* Strip */
.card-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-cats-pills {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-pill {
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cat-pill.active {
  background: rgba(245, 158, 11, 0.2);
  border-color: #F59E0B;
  color: #FBBF24;
}

.cat-pill.highlight-cat {
  background: var(--primary-500);
  color: #000;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.diia-sync-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diia-logo-micro {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFF;
}

.diia-dot {
  width: 6px;
  height: 6px;
  background-color: var(--emerald-400);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--emerald-400);
}

.diia-qr-thumb {
  width: 28px;
  height: 28px;
  background: #FFF;
  color: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

/* Floating Trust Badges */
.floating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(16, 22, 35, 0.88);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  z-index: 20;
}

@media (min-width: 992px) {
  .floating-badge {
    position: absolute;
    animation: floatBadge 6s infinite alternate ease-in-out;
  }

  .badge-top-right {
    top: 15px;
    right: -25px;
    animation-delay: 0s;
  }

  .badge-bottom-left {
    bottom: 25px;
    left: -35px;
    animation-delay: 1.5s;
  }

  .badge-bottom-right {
    bottom: -25px;
    right: 15px;
    animation-delay: 3s;
  }
}

@media (max-width: 991px) {
  .floating-badge {
    position: static;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    animation: none !important;
  }
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.badge-icon-status {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.check-glow {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.speed-glow {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-400);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.secure-glow {
  background: rgba(59, 130, 246, 0.15);
  color: var(--cobalt-400);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.badge-body {
  display: flex;
  flex-direction: column;
}

.badge-body strong {
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.2;
}

.badge-body span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   09. CATEGORIES & SERVICES SECTION
   -------------------------------------------------------------------------- */
.categories-section {
  background: rgba(9, 13, 22, 0.5);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.category-filters-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(16, 22, 35, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.25s var(--ease-smooth);
}

.filter-tab:hover {
  color: var(--text-main);
}

.filter-tab.active {
  background: var(--primary-500);
  color: #070A10;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* Service Card */
.service-card.card-hidden {
  display: none !important;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.32s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 158, 11, 0.2);
  background: var(--bg-card-hover);
}

.featured-card {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, var(--bg-surface) 35%);
  box-shadow: 0 16px 40px -10px rgba(245, 158, 11, 0.15);
}

.card-popular-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  margin-bottom: 2px;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amber-glow {
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-400);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.emerald-glow {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-400);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.cobalt-glow {
  background: rgba(59, 130, 246, 0.12);
  color: var(--cobalt-400);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.service-category-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-time-badge {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-perks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-perks-list li {
  font-size: 0.86rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.perk-check {
  color: var(--emerald-400);
  font-weight: 800;
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-price-block {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--emerald-400);
}

.btn-card-action {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--primary-300);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s var(--ease-smooth);
}

.btn-card-action:hover {
  background: var(--primary-500);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

/* --------------------------------------------------------------------------
   10. INTERACTIVE SERVICE CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-section {
  position: relative;
}

.calc-wrapper {
  background: linear-gradient(145deg, #101726 0%, #0C121E 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calc-wrapper::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.calc-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 14px;
}

.calc-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.calc-step-group {
  margin-bottom: 24px;
}

.calc-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.calc-pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-pill-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s var(--ease-smooth);
}

.calc-pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.calc-pill-btn.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--primary-500);
  color: var(--primary-300);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.25);
}

.calc-select-wrap {
  position: relative;
}

.calc-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 23, 0.9);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-size: 0.94rem;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.calc-select:focus {
  border-color: var(--primary-500);
}

.calc-select-wrap::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--text-muted);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Calc Results Box */
.calc-result-card {
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--primary-500);
}

.result-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald-400);
  margin-bottom: 20px;
}

.result-highlight-block {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.result-cat-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.result-time-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.time-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.time-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-400);
}

.result-specs-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
}

.spec-name {
  color: var(--text-muted);
}

.spec-badge-ok {
  color: var(--emerald-400);
  font-weight: 700;
}

.spec-badge-zero {
  color: var(--primary-300);
  font-weight: 800;
}

.calc-guarantee-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   11. TRUST & GUARANTEES
   -------------------------------------------------------------------------- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guarantee-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.guarantee-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.guarantee-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 18px;
  right: 22px;
}

.guarantee-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.35;
}

.guarantee-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. BANNER CTA (CONVERSION)
   -------------------------------------------------------------------------- */
.banner-cta-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.banner-cta-card {
  background: linear-gradient(135deg, #162032 0%, #0F1726 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px -15px rgba(245, 158, 11, 0.15);
  text-align: center;
}

.banner-cta-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.banner-cta-body {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.banner-consultant-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  background: rgba(10, 15, 25, 0.8);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.consultant-avatars-stack {
  display: flex;
  margin-right: -6px;
}

.c-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px solid #0F1726;
  margin-right: -8px;
}

.consultant-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.banner-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 18px;
}

.banner-cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.banner-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   13. PROCESS TIMELINE (HOW WE WORK)
   -------------------------------------------------------------------------- */
.process-section {
  background: rgba(9, 13, 22, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-container {
  position: relative;
  margin-top: 40px;
}

.timeline-track {
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.timeline-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #F59E0B 0%, #10B981 100%);
  transition: width 1.2s var(--ease-smooth);
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-smooth);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.step-num-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.num-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-400);
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0E1624;
  border: 3px solid var(--primary-500);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.step-time-chip {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-bottom-cta {
  margin-top: 56px;
}

/* --------------------------------------------------------------------------
   14. REVIEWS & TRUST WALL (Social Proof & Verified Feedback)
   -------------------------------------------------------------------------- */
.trust-score-banner {
  background: linear-gradient(145deg, #101726 0%, #0D1320 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  border-top: 2px solid var(--primary-500);
}

.score-card-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.score-stars {
  color: #FBBF24;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.score-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.score-val {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.score-max {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.score-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.score-divider {
  width: 1px;
  height: 70px;
  background: var(--border-medium);
}

.score-perks-grid {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-grow: 1;
  justify-content: space-around;
}

.score-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-perk-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-perk-text {
  display: flex;
  flex-direction: column;
}

.score-perk-text strong {
  font-size: 0.94rem;
  color: var(--text-main);
  font-weight: 700;
}

.score-perk-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Review Filters */
.review-filters-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(16, 22, 35, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.review-filter-btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.25s var(--ease-smooth);
  cursor: pointer;
}

.review-filter-btn:hover {
  color: var(--text-main);
}

.review-filter-btn.active {
  background: var(--primary-500);
  color: #070A10;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

/* Reviews Grid (Responsive 3-Column) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.review-card-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

.review-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-lg);
}

.review-card-item.review-hidden {
  display: none !important;
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #000;
  flex-shrink: 0;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.reviewer-city {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.reviewer-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald-400);
  white-space: nowrap;
}

.v-check {
  font-weight: 900;
}

.review-rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.rating-stars {
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.rating-score {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
}

.review-cat-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-300);
  background: rgba(245, 158, 11, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.review-date-tag {
  margin-left: auto;
  font-size: 0.74rem;
  color: var(--text-dim);
}

.review-card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 20px;
}

/* Telegram Chat Proof Bubble */
.chat-proof-bubble {
  background: rgba(14, 22, 34, 0.9);
  border: 1px solid rgba(34, 158, 217, 0.25);
  border-left: 3px solid #229ED9;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: auto;
  margin-bottom: 18px;
}

.chat-bubble-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #38BDF8;
  margin-bottom: 4px;
}

.chat-bubble-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-style: italic;
}

.review-card-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
}

.review-helpful-count {
  color: var(--text-muted);
  font-weight: 600;
}

.review-check-stamp {
  color: var(--emerald-400);
  font-weight: 600;
}

.reviews-bottom-action {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.reviews-bottom-action .btn {
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION (CSS Grid Smooth Interpolation)
   -------------------------------------------------------------------------- */
.faq-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 28px auto 0;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border-radius: var(--radius-pill);
  background: rgba(16, 22, 35, 0.8);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-size: 0.94rem;
  transition: border-color 0.25s;
}

.faq-search-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.accordion-wrapper {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-smooth);
}

.faq-accordion-item.active {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
}

.faq-header-btn {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  background: transparent;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.faq-toggle-icon::before, .faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-main);
  transition: transform 0.3s var(--ease-smooth);
}

.faq-toggle-icon::before {
  width: 12px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 12px;
}

.faq-accordion-item.active .faq-toggle-icon {
  background: var(--primary-500);
  border-color: var(--primary-500);
  transform: rotate(45deg);
}

.faq-accordion-item.active .faq-toggle-icon::before,
.faq-accordion-item.active .faq-toggle-icon::after {
  background-color: #000;
}

/* CSS Grid Smooth Panel Transition */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-smooth);
}

.faq-accordion-item.active .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-content {
  overflow: hidden;
}

.faq-panel-content p {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-panel-content p strong {
  color: var(--text-main);
}

/* Helper Banner */
.faq-helper-banner {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.helper-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.helper-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #06090F;
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-contacts-quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: var(--primary-300);
}

.work-schedule-card {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-title {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.schedule-val {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.schedule-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--emerald-400);
  font-weight: 600;
  margin-top: 2px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-nav a {
  color: var(--text-muted);
}

.footer-legal-nav a:hover, .footer-legal-nav a.active {
  color: var(--primary-400);
}

.divider {
  color: var(--border-medium);
}

/* --------------------------------------------------------------------------
   17. STICKY CONTACT WIDGET & COOKIE BANNER
   -------------------------------------------------------------------------- */
.sticky-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sticky-tooltip {
  background: rgba(14, 20, 32, 0.92);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: fadeInOutTooltip 5s infinite ease-in-out;
  white-space: nowrap;
}

.tooltip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-400);
  box-shadow: 0 0 6px var(--emerald-400);
}

@keyframes fadeInOutTooltip {
  0%, 100% { opacity: 0.9; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.sticky-buttons-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: var(--shadow-md);
  transition: all 0.28s var(--ease-spring);
}

.sticky-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.sticky-telegram {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  box-shadow: 0 10px 28px rgba(34, 158, 217, 0.5), 0 0 0 2px rgba(42, 171, 238, 0.25);
  animation: pulse-tg 2.6s infinite ease-in-out;
}

.sticky-telegram svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse-tg {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(34, 158, 217, 0.5), 0 0 0 0 rgba(42, 171, 238, 0.45);
  }
  50% {
    box-shadow: 0 12px 32px rgba(34, 158, 217, 0.7), 0 0 0 9px rgba(42, 171, 238, 0);
  }
}

.sticky-top-btn {
  background: rgba(22, 32, 50, 0.85);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.sticky-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

/* Cookie Consent Bar */
.cookie-consent-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 760px;
  margin: 0 auto;
  z-index: 998;
  background: rgba(14, 20, 32, 0.92);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  padding: 16px 24px;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.45s var(--ease-smooth);
}

.cookie-consent-bar.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.cookie-text-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

.cookie-link {
  color: var(--primary-400);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   18. LEGAL PAGES (Privacy Policy & Terms of Use)
   -------------------------------------------------------------------------- */
.legal-page {
  background: var(--bg-darkest);
}

.legal-main {
  padding-top: 60px;
  padding-bottom: 100px;
}

.legal-container {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.legal-header-box {
  margin-bottom: 40px;
  text-align: center;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-content-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .legal-content-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
}

.legal-block {
  margin-bottom: 32px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

.legal-block p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-block ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-block li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-footer-nav {
  margin-top: 32px;
  text-align: right;
}

.legal-nav-link {
  color: var(--primary-400);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.legal-nav-link:hover {
  color: #FFF;
}

/* --------------------------------------------------------------------------
   19. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   20. COMPREHENSIVE RESPONSIVE BREAKPOINTS (Desktop -> Tablet -> Mobile 320px)
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (<= 1120px) */
@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .top-announcement {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-actions .btn-header-cta {
    display: none;
  }
}

/* Medium Tablets & Below (<= 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-badge-eyebrow, 
  .hero-cta-group, 
  .hero-trust-bar,
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .timeline-track {
    display: none;
  }

  .timeline-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .trust-score-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 28px 24px;
  }

  .score-card-main {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .score-divider {
    width: 100%;
    height: 1px;
  }

  .score-perks-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Standard Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
  }

  .section-description {
    font-size: 0.95rem;
  }

  /* Header Mobile */
  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    gap: 10px;
  }

  .brand-symbol svg {
    width: 30px;
    height: 30px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

  .burger-btn {
    width: 42px;
    height: 42px;
  }

  /* Hero Mobile */
  .hero-section {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 5.5vw, 2.3rem);
    line-height: 1.2;
    word-break: break-word;
    margin-bottom: 16px;
  }

  .hero-badge-eyebrow {
    font-size: 0.8rem;
    padding: 6px 14px;
    max-width: 100%;
    margin-bottom: 18px;
    text-align: left;
    white-space: normal;
  }

  .hero-subheadline {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-bar {
    width: 100%;
    padding: 18px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    box-sizing: border-box;
  }

  .trust-metric-item {
    text-align: center;
  }

  .trust-metric-num {
    font-size: 1.45rem;
  }

  .trust-metric-separator {
    width: 100%;
    height: 1px;
  }

  /* Hero 3D Card Mobile Flattening & Strict Fit */
  .license-showcase-stage {
    perspective: none !important;
    padding: 10px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }

  .license-biometric-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 14px !important;
    border-radius: 16px;
    transform: none !important;
    box-sizing: border-box;
  }

  .card-head {
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .ua-flag-pill {
    width: 32px;
    height: 20px;
    flex-shrink: 0;
  }

  .card-authority {
    min-width: 0;
  }

  .auth-title {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    word-break: break-word;
  }

  .auth-sub {
    font-size: 0.56rem;
  }

  .card-chip-hologram {
    width: 32px;
    height: 24px;
    padding: 2px;
    flex-shrink: 0;
  }

  .card-main-grid {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 14px;
  }

  .card-photo-box {
    width: 78px !important;
    height: 105px !important;
    flex-shrink: 0;
  }

  .card-photo-box svg {
    width: 48px;
    height: 48px;
  }

  .photo-watermark {
    font-size: 0.42rem;
  }

  .card-details-fields {
    gap: 6px;
    min-width: 0;
  }

  .detail-idx {
    font-size: 0.52rem;
  }

  .detail-val {
    font-size: 0.72rem;
    word-break: break-word;
  }

  .detail-row-group {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .serial-highlight {
    font-size: 0.72rem;
    word-break: break-all;
  }

  .card-footer-strip {
    padding-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .interactive-cats-pills {
    gap: 4px;
    flex-wrap: wrap;
  }

  .cat-pill {
    padding: 3px 6px;
    font-size: 0.68rem;
  }

  .diia-sync-badge {
    gap: 6px;
  }

  .diia-logo-micro {
    font-size: 0.65rem;
  }

  .diia-qr-thumb {
    width: 24px;
    height: 24px;
    padding: 2px;
  }

  /* Floating Badges as Clean Integrated Mobile Proof List */
  .floating-badge {
    position: static !important;
    transform: none !important;
    animation: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    padding: 12px 14px !important;
    box-sizing: border-box;
  }

  .floating-badge strong {
    font-size: 0.86rem;
  }

  .floating-badge span {
    font-size: 0.74rem;
  }

  /* Categories Section Mobile */
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .category-filters-nav {
    gap: 6px;
    padding: 4px;
    margin-top: 18px;
  }

  .filter-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .service-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .service-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  /* Calculator Section Mobile */
  .calc-wrapper {
    padding: 24px 16px !important;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .calc-headline {
    font-size: clamp(1.4rem, 4.5vw, 1.8rem);
    margin-bottom: 10px;
  }

  .calc-subtext {
    font-size: 0.92rem;
    margin-bottom: 22px;
  }

  .calc-step-group {
    margin-bottom: 20px;
  }

  .calc-pill-options {
    gap: 6px;
  }

  .calc-pill-btn {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .calc-select {
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .calc-result-card {
    padding: 20px 16px !important;
    border-radius: 14px;
    box-sizing: border-box;
  }

  .result-cat-title {
    font-size: 1.15rem;
  }

  .result-time-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .time-val {
    font-size: 1.25rem;
  }

  .result-specs-checklist {
    gap: 10px;
    margin-bottom: 22px;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.84rem;
  }

  .spec-row:last-child {
    border-bottom: none;
  }

  #calcOrderBtn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  /* Guarantees & Timeline Mobile */
  .guarantees-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .guarantee-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .timeline-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .process-step-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  /* Trust Wall & Reviews Mobile */
  .trust-score-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 22px 18px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .score-card-main {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .score-divider {
    width: 100%;
    height: 1px;
  }

  .score-perks-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .score-perk-item {
    gap: 12px;
  }

  .review-filters-nav {
    gap: 6px;
    padding: 4px;
    margin-bottom: 24px;
  }

  .review-filter-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .review-card-item {
    padding: 22px 18px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .reviews-bottom-action {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  .reviews-bottom-action .btn {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center;
    padding: 14px 18px !important;
    font-size: 0.94rem !important;
    line-height: 1.35;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
  }

  /* FAQ Mobile */
  .faq-search-wrap {
    max-width: 100%;
    margin-top: 18px;
  }

  .faq-search-input {
    padding: 12px 16px 12px 40px;
    font-size: 0.88rem;
  }

  .accordion-wrapper {
    margin-top: 26px;
    gap: 10px;
  }

  .faq-question-btn {
    padding: 16px 14px;
    font-size: 0.92rem;
    gap: 10px;
  }

  .faq-answer-inner {
    padding: 0 14px 16px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .faq-helper-banner {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    gap: 14px;
    margin-top: 28px;
    border-radius: 16px;
  }

  .faq-helper-banner .btn {
    width: 100%;
    justify-content: center;
  }

  /* Banner CTA Mobile */
  .banner-cta-card {
    padding: 32px 18px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .banner-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .banner-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer Mobile */
  .site-footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-legal-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Sticky Widgets & Cookies Mobile */
  .sticky-tooltip {
    display: none;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-actions {
    width: 100%;
  }

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

/* Compact Mobile (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Header compact */
  .brand-logo {
    gap: 8px;
  }

  .brand-symbol svg {
    width: 28px;
    height: 28px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-tagline {
    display: none;
  }

  .burger-btn {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  /* Hero compact card */
  .license-biometric-card {
    padding: 14px 10px !important;
  }

  .card-main-grid {
    grid-template-columns: 70px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .card-photo-box {
    width: 70px !important;
    height: 98px !important;
  }

  .card-photo-box svg {
    width: 42px;
    height: 42px;
  }

  .auth-title {
    font-size: 0.58rem;
    letter-spacing: 0.01em;
  }

  .auth-sub {
    font-size: 0.52rem;
  }

  .detail-val {
    font-size: 0.68rem;
  }

  .serial-highlight {
    font-size: 0.68rem;
  }

  .floating-badge {
    padding: 10px 12px !important;
  }

  /* Calculator options */
  .calc-pill-btn {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  /* Reviews Card Compact */
  .review-card-item {
    padding: 18px 14px;
  }

  .review-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .reviewer-profile {
    min-width: 0;
  }

  .reviewer-name {
    font-size: 0.9rem;
  }

  .reviewer-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .reviewer-badge-verified {
    font-size: 0.64rem;
    padding: 2px 5px;
  }

  .review-date-tag {
    margin-left: 0;
    width: 100%;
  }

  .chat-proof-bubble {
    padding: 10px 12px;
  }

  .chat-bubble-text {
    font-size: 0.78rem;
  }

  .reviews-bottom-action .btn {
    padding: 13px 14px !important;
    font-size: 0.88rem !important;
  }

  /* Sticky Widgets */
  .sticky-contact-widget {
    bottom: 20px;
    right: 16px;
    gap: 10px;
    z-index: 998;
  }

  .sticky-btn {
    width: 44px;
    height: 44px;
  }

  .sticky-telegram {
    width: 56px !important;
    height: 56px !important;
  }

  .sticky-telegram svg {
    width: 27px !important;
    height: 27px !important;
  }

  .cookie-consent-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 12px;
    border-radius: 12px;
  }
}

/* Ultra-Compact Screens (<= 360px - e.g. iPhone SE, Galaxy Z Flip cover) */
@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .license-biometric-card {
    padding: 12px 8px !important;
  }

  .card-main-grid {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .card-photo-box {
    width: 62px !important;
    height: 88px !important;
  }

  .card-photo-box svg {
    width: 36px;
    height: 36px;
  }

  .auth-title {
    font-size: 0.54rem;
  }

  .auth-sub {
    font-size: 0.48rem;
  }

  .detail-idx {
    font-size: 0.48rem;
  }

  .detail-val {
    font-size: 0.64rem;
  }

  .serial-highlight {
    font-size: 0.62rem;
  }

  .cat-pill {
    padding: 2px 4px;
    font-size: 0.62rem;
  }

  .diia-logo-micro {
    font-size: 0.58rem;
  }

  .diia-qr-thumb {
    width: 20px;
    height: 20px;
  }

  .calc-wrapper {
    padding: 18px 12px !important;
  }

  .calc-result-card {
    padding: 16px 12px !important;
  }

  .calc-pill-btn {
    flex: 1 1 100%;
  }

  .filter-tab {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .review-filter-btn {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .reviews-bottom-action .btn {
    padding: 12px 10px !important;
    font-size: 0.82rem !important;
  }
}

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