@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg: #0d0f12;
  --color-bg-2: #111418;
  --color-bg-3: #161b22;
  --color-bg-4: #1a2030;
  --color-surface: #1c2232;
  --color-surface-2: #222a3a;
  --color-border: #2a3448;
  --color-border-bright: #3a4a64;

  --color-neon: #00f5a0;
  --color-neon-dim: #00c47f;
  --color-neon-glow: rgba(0, 245, 160, 0.15);
  --color-cyan: #00d4ff;
  --color-cyan-dim: #00a8cc;
  --color-magenta: #ff2d78;

  --color-text: #e2e8f0;
  --color-text-muted: #8fa3c0;
  --color-text-dim: #5a7090;
  --color-heading: #f0f6ff;

  --font-main: 'Nunito Sans', sans-serif;
  --font-mono: 'Courier New', 'Consolas', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-neon: 0 0 12px rgba(0,245,160,0.4), 0 0 24px rgba(0,245,160,0.2);
  --shadow-neon-sm: 0 0 6px rgba(0,245,160,0.3);
  --shadow-cyan: 0 0 12px rgba(0,212,255,0.35), 0 0 24px rgba(0,212,255,0.15);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-menu: 0.5s cubic-bezier(0.77, 0, 0.175, 1);

  --header-h: 72px;
  --section-pad-v: clamp(60px, 8vw, 120px);
  --section-pad-h: clamp(20px, 5vw, 80px);
  --container-max: 1280px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:has(.mobile-menu.is-open) { overflow: hidden; }

main { flex: 1; }

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

a {
  color: var(--color-neon);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover { color: var(--color-cyan); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

input, textarea, select {
  font-family: var(--font-main);
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 245, 160, 0.015) 2px,
    rgba(0, 245, 160, 0.015) 4px
  );
  pointer-events: none;
  z-index: 9999;
}


body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  color: var(--color-heading);
  line-height: 1.2;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--color-text); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   GLOBAL COMPONENTS
   ============================================================ */
.global-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.global-cta--primary {
  background: var(--color-neon);
  color: #0a0d10;
  box-shadow: var(--shadow-neon);
}

.global-cta--primary:hover {
  background: #00ffb0;
  color: #0a0d10;
  box-shadow: 0 0 20px rgba(0,245,160,0.6), 0 0 40px rgba(0,245,160,0.3);
  transform: translateY(-2px);
}

.global-cta--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-bright);
}

.global-cta--ghost:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
  box-shadow: var(--shadow-neon-sm);
}

.global-cta--outline {
  background: transparent;
  color: var(--color-neon);
  border: 1px solid var(--color-neon);
}

.global-cta--outline:hover {
  background: var(--color-neon-glow);
  box-shadow: var(--shadow-neon-sm);
  transform: translateY(-1px);
}


.global-strip {
  width: 100%;
  height: 3px;
  position: relative;
  z-index: 1;
}

.global-strip--accent {
  background: linear-gradient(90deg, transparent, var(--color-neon), var(--color-cyan), var(--color-neon), transparent);
  box-shadow: 0 0 8px rgba(0,245,160,0.5);
}

.global-strip--grid {
  height: 20px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-border) 0px,
    var(--color-border) 1px,
    transparent 1px,
    transparent 20px
  );
  opacity: 0.4;
}

.global-strip--dots {
  height: 16px;
  background-image: radial-gradient(circle, var(--color-neon-dim) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.3;
}

/* ============================================================
   HEADER
   ============================================================ */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.global-header.is-scrolled {
  background: rgba(13, 15, 18, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 1px rgba(0,245,160,0.2);
}

.global-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.global-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.global-header__logo img {
  height: 36px;
  width: auto;
  transition: filter var(--transition-base);
}

.global-header__logo:hover img {
  filter: drop-shadow(0 0 6px rgba(0,245,160,0.6));
}

.global-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.global-header__nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.global-header__nav-link:hover,
.global-header__nav-link.active {
  color: var(--color-neon);
  background: var(--color-neon-glow);
}

.global-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.global-header__burger:hover { background: var(--color-neon-glow); }

.global-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================================
   MOBILE MENU - CIRCULAR REVEAL
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-3);
  clip-path: circle(0px at calc(100% - 52px) 36px);
  transition: clip-path var(--transition-menu);
  pointer-events: none;
}

.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 52px) 36px);
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu__close:hover {
  color: var(--color-neon);
  background: var(--color-neon-glow);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

.mobile-menu.is-open .mobile-menu__nav {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-heading);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.mobile-menu__link:hover {
  color: var(--color-neon);
  background: var(--color-neon-glow);
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  padding-top: var(--header-h);
}

.home-hero__image-side {
  width: 55%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.home-hero__image-side:hover .home-hero__img {
  transform: scale(1.04);
}

.home-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,15,18,0) 0%,
    rgba(13,15,18,0.3) 70%,
    rgba(13,15,18,0.85) 100%
  ),
  linear-gradient(
    180deg,
    rgba(13,15,18,0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(13,15,18,0.5) 100%
  );
}

.home-hero__content-side {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
  position: relative;
}

.home-hero__content-side::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,245,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero__content { max-width: 540px; position: relative; z-index: 1; }

.home-hero__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.home-hero__cursor {
  color: var(--color-neon);
  animation: blink 1.1s step-end infinite;
  font-weight: 900;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.home-hero__heading {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--color-heading);
}

.home-hero__accent {
  color: var(--color-neon);
  text-shadow: var(--shadow-neon-sm);
}

.home-hero__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-hero__kaspi {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-neon);
}

.home-hero__kaspi i { color: var(--color-neon); font-size: 1rem; }

/* ============================================================
   HOME SERVICES (HORIZONTAL SCROLL)
   ============================================================ */
.home-services {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg-2);
  position: relative;
  overflow: hidden;
}

.home-services::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-bright), transparent);
}

.home-services__header {
  padding: 0 var(--section-pad-h);
  max-width: var(--container-max);
  margin: 0 auto 2.5rem;
}

.home-services__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.home-services__accent { color: var(--color-neon); }

.home-services__sub {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.home-services__scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 var(--section-pad-h) 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-neon-dim) var(--color-surface);
  cursor: grab;
}

.home-services__scroll-wrapper:active { cursor: grabbing; }

.home-services__scroll-wrapper::-webkit-scrollbar { height: 4px; }
.home-services__scroll-wrapper::-webkit-scrollbar-track { background: var(--color-surface); }
.home-services__scroll-wrapper::-webkit-scrollbar-thumb { background: var(--color-neon-dim); border-radius: 2px; }

.home-services__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0;
}

.home-services__card {
  width: 300px;
  flex-shrink: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.home-services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-cyan));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.home-services__card:hover {
  border-color: var(--color-neon-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-neon-sm);
}

.home-services__card:hover::before { opacity: 1; }

.home-services__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neon-glow);
  border: 1px solid rgba(0,245,160,0.2);
  border-radius: var(--radius-md);
  color: var(--color-neon);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.home-services__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.home-services__card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.home-services__scroll-hint {
  padding: 0.75rem var(--section-pad-h) 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   HOME ABOUT
   ============================================================ */
.home-about {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-3);
  position: relative;
}

.home-about__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.home-about__visual {
  position: relative;
}

.home-about__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.home-about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-neon);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-neon);
  box-shadow: var(--shadow-neon-sm), var(--shadow-md);
}

.home-about__badge i { font-size: 1.1rem; }

.home-about__heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.home-about__lead {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.home-about__text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-about__text .global-cta { margin-top: 1.5rem; }

/* ============================================================
   HOME DEVICES (SPLIDE)
   ============================================================ */
.home-devices {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-4);
  position: relative;
  overflow: hidden;
}

.home-devices::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.home-devices__header {
  max-width: var(--container-max);
  margin: 0 auto 2.5rem;
}

.home-devices__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.home-devices__splide {
  max-width: var(--container-max);
  margin: 0 auto;
}

.home-devices__slide {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface);
}

.home-devices__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-devices__slide:hover img { transform: scale(1.05); }

.home-devices__slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(10,13,18,0.95));
}

.home-devices__slide-info h3 {
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.home-devices__slide-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}


.splide__arrow {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  width: 44px !important;
  height: 44px !important;
  transition: all var(--transition-base) !important;
}

.splide__arrow:hover {
  background: var(--color-neon-glow) !important;
  border-color: var(--color-neon) !important;
}

.splide__arrow svg { fill: var(--color-neon) !important; }

.splide__pagination__page {
  background: var(--color-border) !important;
  transition: background var(--transition-fast) !important;
}

.splide__pagination__page.is-active {
  background: var(--color-neon) !important;
  transform: scale(1.3) !important;
}

/* ============================================================
   HOME LOCATION
   ============================================================ */
.home-location {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-2);
  position: relative;
}

.home-location__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.home-location__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.home-location__lead {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.home-location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home-location__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.home-location__detail:hover { border-color: var(--color-border-bright); }

.home-location__detail--kaspi {
  border-left: 3px solid var(--color-neon);
}

.home-location__detail i {
  color: var(--color-neon);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.home-location__detail div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-location__detail strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

.home-location__detail span,
.home-location__detail a {
  font-size: 0.95rem;
  color: var(--color-text);
}

.home-location__detail a:hover { color: var(--color-neon); }

.home-location__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.home-location__map iframe {
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
}

/* ============================================================
   INNER PAGE HEROES
   ============================================================ */
.about-hero,
.process-hero,
.private-hero,
.contact-hero {
  padding: calc(var(--header-h) + 60px) var(--section-pad-h) 60px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-3) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before,
.process-hero::before,
.private-hero::before,
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon), transparent);
}

.about-hero__inner,
.process-hero__inner,
.private-hero__inner,
.contact-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-hero__heading,
.process-hero__heading,
.private-hero__heading,
.contact-hero__heading {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}

.about-hero__sub,
.process-hero__sub,
.private-hero__sub,
.contact-hero__sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-2);
}

.about-story__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story__lead {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-story__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-story__h2 {
  font-size: 1.4rem;
  color: var(--color-heading);
  margin: 2rem 0 1rem;
}

.about-story__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-story__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* ============================================================
   ABOUT APPROACH
   ============================================================ */
.about-approach {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-3);
}

.about-approach__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-approach__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-approach__item {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.about-approach__item:hover {
  border-color: var(--color-neon-dim);
  transform: translateY(-3px);
}

.about-approach__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-neon);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-approach__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.about-approach__item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-2);
}

.process-steps__inner {
  max-width: 800px;
  margin: 0 auto;
}

.process-steps__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.process-steps__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-neon-dim), var(--color-border));
  margin-left: 39px;
  margin: 0.5rem 0 0.5rem 39px;
}

.process-steps__num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-neon);
  text-shadow: var(--shadow-neon-sm);
  line-height: 1;
  padding-top: 0.25rem;
}

.process-steps__content {
  padding: 1.5rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-neon);
}

.process-steps__content h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-steps__content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.process-steps__content p:last-child { margin-bottom: 0; }

/* ============================================================
   PROCESS KASPI
   ============================================================ */
.process-kaspi {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-3);
}

.process-kaspi__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-kaspi__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.process-kaspi__text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.process-kaspi__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* ============================================================
   PRIVATE INFO
   ============================================================ */
.private-info {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-2);
}

.private-info__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.private-info__block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base);
}

.private-info__block:hover { border-color: var(--color-border-bright); }

.private-info__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neon-glow);
  border: 1px solid rgba(0,245,160,0.2);
  border-radius: var(--radius-md);
  color: var(--color-neon);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.private-info__text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.private-info__text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.private-info__text p:last-child { margin-bottom: 0; }

/* ============================================================
   PRIVATE FAQ
   ============================================================ */
.private-faq {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-3);
}

.private-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.private-faq__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}

.private-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.private-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.private-faq__item:hover { border-color: var(--color-border-bright); }

.private-faq__item[open] {
  border-color: var(--color-neon-dim);
}

.private-faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition-fast);
  user-select: none;
}

.private-faq__item summary::-webkit-details-marker { display: none; }

.private-faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-neon);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.private-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.private-faq__item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PRIVATE CTA
   ============================================================ */
.private-cta {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.private-cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,15,18,0.92) 0%, rgba(13,15,18,0.75) 100%);
}

.private-cta__inner {
  position: relative;
  width: 100%;
}

.private-cta__content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-v) var(--section-pad-h);
  position: relative;
  z-index: 1;
}

.private-cta__content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.private-cta__content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-section {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-2);
}

.contact-form-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-form-section__details h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form-section__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-form-section__detail-item--kaspi {
  border-left: 3px solid var(--color-neon);
}

.contact-form-section__detail-item i {
  color: var(--color-neon);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-form-section__detail-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-form-section__detail-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

.contact-form-section__detail-item span,
.contact-form-section__detail-item a {
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-form-section__detail-item a:hover { color: var(--color-neon); }


.contact-form-section__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-section__form:has(:focus) {
  border-color: var(--color-border-bright);
  box-shadow: 0 0 0 1px rgba(0,245,160,0.1);
}

.contact-form-section__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-section__field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.contact-form-section__field input,
.contact-form-section__field textarea {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  min-height: 48px;
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-neon);
  box-shadow: 0 0 0 3px rgba(0,245,160,0.1);
}

.contact-form-section__field input::placeholder,
.contact-form-section__field textarea::placeholder {
  color: var(--color-text-dim);
}

.contact-form-section__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-form-section__privacy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: auto;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-neon);
  cursor: pointer;
}

.contact-form-section__privacy label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.contact-form-section__privacy label a {
  color: var(--color-neon);
}

.contact-form-section__submit {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}


.iti__flag-container .iti__selected-flag {
  background: var(--color-bg-3) !important;
}

.iti__dropdown-content {
  background: var(--color-surface) !important;
  border-color: var(--color-border) !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: var(--color-neon-glow) !important;
}

/* ============================================================
   CONTACT MAP
   ============================================================ */
.contact-map-section {
  background: var(--color-bg);
}

.contact-map-section__inner {
  max-width: 100%;
}

.contact-map-section__inner iframe {
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-main {
  padding: calc(var(--header-h) + 40px) var(--section-pad-h) var(--section-pad-v);
  background: var(--color-bg-2);
  min-height: 100vh;
}

.legal-main__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-main__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-main__header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-main__date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin: 0;
}

.legal-main__body h2 {
  font-size: 1.2rem;
  color: var(--color-heading);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-main__body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-main__body a {
  color: var(--color-neon);
  text-decoration: underline;
  text-decoration-color: rgba(0,245,160,0.3);
}

.legal-main__body a:hover {
  text-decoration-color: var(--color-neon);
}

.legal-main__body strong {
  color: var(--color-text);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-main {
  min-height: calc(100vh - var(--header-h) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-bg-2);
}

.thanks-main__content {
  text-align: center;
  max-width: 500px;
}

.thanks-main__icon {
  font-size: 4rem;
  color: var(--color-neon);
  text-shadow: var(--shadow-neon);
  margin-bottom: 1.5rem;
}

.thanks-main__heading {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.thanks-main__text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.thanks-main__countdown {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 2rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: inline-block;
}

#countdownNum {
  color: var(--color-neon);
  font-weight: 900;
}

/* ============================================================
   FOOTER
   ============================================================ */
.global-footer {
  background: #070910;
  border-top: 1px solid var(--color-border);
  position: relative;
}

.global-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon), var(--color-cyan), transparent);
  opacity: 0.6;
}

.global-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px var(--section-pad-h) 32px;
}

.global-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.global-footer__brand img {
  margin-bottom: 1rem;
}

.global-footer__brand p {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

.global-footer__nav h4,
.global-footer__services h4,
.global-footer__contact h4,
.global-footer__legal-nav h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.global-footer__nav a,
.global-footer__services span,
.global-footer__contact a,
.global-footer__contact span,
.global-footer__legal-nav a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-dim);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.global-footer__nav a:hover,
.global-footer__contact a:hover,
.global-footer__legal-nav a:hover {
  color: var(--color-neon);
}

.global-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin-bottom: 1.5rem;
}

.global-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.global-footer__bottom > span {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
}

.global-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.global-footer__legal a {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.global-footer__legal a:hover { color: var(--color-neon); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: min(480px, calc(100vw - 32px));
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,245,160,0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-consent.is-expanded {
  width: min(560px, calc(100vw - 32px));
  border-color: var(--color-neon-dim);
}

.cookie-consent__compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-consent__text a {
  color: var(--color-neon);
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-consent__btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  cursor: pointer;
  min-height: 44px;
  border: none;
  font-family: var(--font-main);
}

.cookie-consent__btn--accept {
  background: var(--color-neon);
  color: #0a0d10;
}

.cookie-consent__btn--accept:hover {
  background: #00ffb0;
  box-shadow: var(--shadow-neon-sm);
}

.cookie-consent__btn--settings {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-bright) !important;
}

.cookie-consent__btn--settings:hover {
  color: var(--color-neon);
  border-color: var(--color-neon) !important;
}

.cookie-consent__expanded {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-consent.is-expanded .cookie-consent__compact { display: none; }
.cookie-consent.is-expanded .cookie-consent__expanded { display: flex; }

.cookie-consent__expanded-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.cookie-consent__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.cookie-consent__category-info { flex: 1; }

.cookie-consent__category-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-heading);
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-consent__category-desc {
  font-size: 0.775rem;
  color: var(--color-text-dim);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-neon);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
  background: #0a0d10;
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-consent__save {
  background: var(--color-neon);
  color: #0a0d10;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-main);
  min-height: 44px;
  align-self: flex-start;
}

.cookie-consent__save:hover {
  background: #00ffb0;
  box-shadow: var(--shadow-neon-sm);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero { flex-direction: column; }
  .home-hero__image-side { width: 100%; height: 50vh; }
  .home-hero__content-side { padding: 40px 32px; }
  .home-hero__heading { font-size: clamp(2.2rem, 6vw, 3.5rem); }

  .home-about__inner { grid-template-columns: 1fr; }
  .home-about__img { height: 320px; }

  .home-location__inner { grid-template-columns: 1fr; }

  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__visual { flex-direction: row; }
  .about-story__img { height: 200px; }

  .about-approach__grid { grid-template-columns: 1fr; }

  .process-kaspi__inner { grid-template-columns: 1fr; }

  .contact-form-section__inner { grid-template-columns: 1fr; }

  .global-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .global-header__nav { display: none; }
  .global-header__burger { display: flex; }

  .home-hero { min-height: auto; }
  .home-hero__image-side { height: 40vw; min-height: 220px; }
  .home-hero__content-side { padding: 32px 20px; }
  .home-hero__actions { flex-direction: column; }
  .home-hero__actions .global-cta { text-align: center; justify-content: center; }

  .home-services__header { padding: 0 20px; }
  .home-services__scroll-wrapper { padding: 0 20px 1rem; }
  .home-services__scroll-hint { padding: 0.5rem 20px 0; }
  .home-services__card { width: 260px; }

  .home-about { padding: 60px 20px; }
  .home-about__inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-about__img { height: 260px; }

  .home-devices { padding: 60px 20px; }

  .home-location { padding: 60px 20px; }
  .home-location__inner { grid-template-columns: 1fr; gap: 2rem; }

  .about-hero,
  .process-hero,
  .private-hero,
  .contact-hero { padding: calc(var(--header-h) + 40px) 20px 40px; }

  .about-story { padding: 60px 20px; }
  .about-story__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-story__visual { flex-direction: column; }

  .about-approach { padding: 60px 20px; }

  .process-steps { padding: 60px 20px; }
  .process-steps__step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .process-steps__content { padding: 1.25rem; }

  .process-kaspi { padding: 60px 20px; }
  .process-kaspi__inner { grid-template-columns: 1fr; }
  .process-kaspi__img { height: 260px; }

  .private-info { padding: 60px 20px; }
  .private-info__block { grid-template-columns: 1fr; gap: 1rem; }

  .private-faq { padding: 60px 20px; }

  .private-cta__content { padding: 60px 20px; }

  .contact-form-section { padding: 60px 20px; }
  .contact-form-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-section__form { padding: 1.5rem; }

  .legal-main { padding: calc(var(--header-h) + 30px) 20px 60px; }

  .global-footer__inner { padding: 40px 20px 24px; }
  .global-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .global-footer__bottom { flex-direction: column; align-items: flex-start; }

  .thanks-main { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .home-hero__image-side { height: 55vw; }
  .about-story__visual { flex-direction: column; }
  .cookie-consent { bottom: 16px; }
}

/* ============================================================
   :has() POWERED RELATIONAL STYLES
   ============================================================ */
.home-services__card:has(.home-services__card-icon) {
  border-top: 1px solid var(--color-border);
}

.contact-form-section__form:has(input:invalid:not(:placeholder-shown)) {
  border-color: rgba(255, 45, 120, 0.4);
}

.contact-form-section__field:has(input:focus) label,
.contact-form-section__field:has(textarea:focus) label {
  color: var(--color-neon);
}

.private-faq__item:has(summary:hover) {
  background: var(--color-bg-4);
}

.global-footer:has(.global-footer__legal-nav) .global-footer__top {
  grid-template-columns: 2fr 1fr 1fr;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-hero__content {
  animation: fadeInUp 0.7s ease 0.2s both;
}

.home-about__visual,
.home-about__text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-about__visual.in-view,
.home-about__text.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}