*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #1B7CC4;
  --blue-light: #4EB3F0;
  --blue-dark: #0D5A9A;
  --blue-bg: #EBF5FD;
  --text: #111827;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --border: #E5E9EF;
  --white: #fff;
  --bg: #F8FAFB;
}
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }

/* ══ SCROLL REVEAL ══ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ══ NAV ══ */
nav { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); position: fixed; top: 0; left: 0; right: 0; z-index: 300; height: 84px; transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease; }
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); height: 64px; background: rgba(255,255,255,0.95); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; width: 100%; position: relative; }
.nav-logo { flex-shrink: 0; text-decoration: none; margin-right: 44px; }
.nav-logo-main { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 800; color: var(--blue-dark); letter-spacing: -0.2px; line-height: 1.25; white-space: nowrap; }
.nav-logo-sub { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; }
.nav-item { position: static; }
.nav-item > a { display: flex; align-items: center; gap: 5px; color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: background .15s, color .15s; white-space: nowrap; cursor: pointer; }
.nav-item > a:hover, .nav-item.menu-open > a { background: var(--blue-bg); color: var(--blue); }
.nav-arrow { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; flex-shrink: 0; }
.nav-item.menu-open .nav-arrow { transform: rotate(180deg); }
.megamenu { position: absolute; top: calc(100% + 8px); left: 0; width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); padding: 24px 28px; display: none; z-index: 400; }
.nav-item.menu-open .megamenu { display: block; }
.megamenu-header { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.megamenu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mm-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.mm-item:hover { background: var(--blue-bg); }
.mm-icon { width: 32px; height: 32px; flex-shrink: 0; background: var(--blue-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.mm-icon svg { width: 15px; height: 15px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mm-item:hover .mm-icon { background: var(--blue); }
.mm-item:hover .mm-icon svg { stroke: white; }
.mm-title { font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; display: block; margin-bottom: 2px; }
.mm-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.megamenu-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: flex-end; }
.megamenu-footer a { font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700; color: var(--blue); text-decoration: none; }
.megamenu-footer a:hover { text-decoration: underline; }
.megamenu-cta { background: var(--blue); color: var(--white); border: none; padding: 8px 18px; border-radius: 6px; font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; transition: background .2s; }
.megamenu-cta:hover { background: var(--blue-dark); }
.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; margin-left: auto; }
.nav-phone { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); text-decoration: none; white-space: nowrap; }
.nav-phone:hover { color: var(--blue); }
.btn-nav { background: var(--blue); color: var(--white); border: none; padding: 10px 20px; border-radius: 7px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; transition: background .2s, transform .15s; }
.btn-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 500; flex-direction: column; padding: 20px 24px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-nav-close { background: none; border: none; cursor: pointer; font-size: 24px; color: var(--text); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a, .mobile-nav-links summary { display: block; padding: 13px 16px; border-radius: 8px; color: var(--text); text-decoration: none; font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 600; transition: background .15s; list-style: none; cursor: pointer; }
.mobile-nav-links a:hover, .mobile-nav-links summary:hover { background: var(--blue-bg); color: var(--blue); }
.mobile-submenu { padding: 4px 0 4px 16px; display: flex; flex-direction: column; gap: 2px; }
.mobile-submenu a { font-size: 14px; font-weight: 500; padding: 9px 14px; }
.mobile-nav-bottom { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-phone { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; text-align: center; }
.btn-mobile-cta { background: var(--blue); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; }

/* ══ HERO — FULLSCREEN PHOTO ══ */
.hero {
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Фото-слои */
.hero-bg {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg.prev { opacity: 1; z-index: 1; }
.hero-bg.active { opacity: 1; z-index: 2; }
.hero-bg.next { opacity: 0; z-index: 3; }
.hero-bg.entering { opacity: 1; z-index: 3; animation: imgFadeIn .9s ease forwards; }
@keyframes imgFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Градиентный оверлей */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,14,30,0.92) 0%, rgba(4,14,30,0.55) 40%, rgba(4,14,30,0.15) 70%, transparent 100%),
    linear-gradient(to right, rgba(4,14,30,0.5) 0%, transparent 60%);
  z-index: 4;
}

/* Контент */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 0 72px;
  display: flex;
  justify-content: center;
}
.hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: flex-end;
}

/* Левая колонка */
.hero-left { }
.hero-slide-label {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
  font-family: 'Geologica', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .5s .1s ease forwards;
}
.hero-slide-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue-light);
  border-radius: 1px;
}
.hero-h1 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .5s .2s ease forwards;
}
.hero-h1 em { font-style: normal; color: var(--blue-light); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .5s .3s ease forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .5s .4s ease forwards;
}
.btn-hero-main {
  background: var(--blue); color: var(--white); border: none;
  padding: 16px 32px; border-radius: 8px;
  font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-hero-main:hover { background: #1570B2; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27,124,196,0.45); }
.btn-hero-ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 16px 32px; border-radius: 8px;
  font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .2s; white-space: nowrap; backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* Правая колонка — stats card */
.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 28px 24px;
  opacity: 0;
  animation: fadeUp .5s .5s ease forwards;
}
.hero-card-title {
  font-family: 'Geologica', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.hero-stats { display: flex; flex-direction: column; gap: 14px; }
.hero-stat {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hs-num {
  font-family: 'Geologica', sans-serif;
  font-size: 28px; font-weight: 900;
  color: var(--white); line-height: 1;
  min-width: 72px;
}
.hs-num em { font-style: normal; color: var(--blue-light); font-size: 18px; }
.hs-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.45; }
.hs-text strong { display: block; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 13px; margin-bottom: 1px; }

/* Слайд-индикаторы снизу */
/* Индикаторы — слева снизу */
.hero-indicators {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  z-index: 6;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.hero-indicators-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
}
.hi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all .3s; border: none; padding: 0;
  flex-shrink: 0;
}
.hi-dot.active { background: var(--blue-light); width: 28px; border-radius: 3px; }
.hero-slide-counter {
  font-family: 'Geologica', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  margin-left: 4px;
}
.hero-slide-counter span { color: rgba(255,255,255,0.7); }

/* Стрелки — под текстом левой колонки, не касаются карточки */
.hero-nav {
  display: flex; gap: 8px;
  margin-top: 28px;
}
.hn-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; backdrop-filter: blur(4px);
}
.hn-btn:hover { background: var(--blue); border-color: var(--blue); color: white; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══ TRUST BAR ══ */
.trust-bar { background: var(--blue-dark); }
.trust-bar-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: flex; align-items: stretch; }
.trust-item { flex: 1; display: flex; align-items: center; gap: 12px; padding: 17px 22px; border-right: 1px solid rgba(255,255,255,0.1); transition: background .2s; cursor: default; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.05); }
.trust-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--blue-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-text strong { display: block; font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); }
.trust-text span { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ══ SHARED ══ */
section { padding: 80px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-family: 'Geologica', sans-serif; font-size: 34px; font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -0.4px; margin-bottom: 10px; }
.section-sub { color: var(--text-muted); font-size: 15px; max-width: 500px; line-height: 1.7; margin-bottom: 48px; }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 12px 28px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s; }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ══ SERVICES ══ */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px 18px; cursor: pointer; transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; display: block; text-decoration: none; color: inherit; }
.service-card:hover { border-color: rgba(27,124,196,0.3); box-shadow: 0 6px 28px rgba(27,124,196,0.1); transform: translateY(-3px); }
.service-card:hover .sc-icon { background: var(--blue); }
.service-card:hover .sc-icon svg { stroke: white; }
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }
.sc-icon { width: 40px; height: 40px; background: var(--blue-bg); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background .25s; }
.sc-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.service-card h4 { font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 5px; }
.service-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.sc-arrow { display: block; font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700; color: var(--blue); margin-top: 10px; opacity: 0; transform: translateX(-8px); transition: all .2s; }

/* ══ PROCESS ══ */
/* ══ PROCESS ══ */
.process-section { background: var(--bg); }
/* Горизонтальная линия между шагами */
.p-step {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 0 12px;
  position: relative; z-index: 1;
  cursor: default;
}
/* Карточка шага */
.p-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px 20px;
  text-align: center;
  width: 100%;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-step:hover .p-step-card {
  border-color: rgba(27,124,196,0.35);
  box-shadow: 0 8px 28px rgba(27,124,196,0.12);
  transform: translateY(-4px);
}
/* Номер — плавающий кружок над карточкой */
.p-num-wrap {
  position: absolute; top: 0;
  width: 56px; height: 56px;
  z-index: 2;
}
.p-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 900;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,124,196,0.4);
  transition: transform .25s, background .25s;
}
.p-step:hover .p-num { transform: scale(1.1); background: var(--blue-dark); }
/* Иконка внутри карточки */
.p-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  transition: background .25s;
}
.p-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.p-step:hover .p-icon { background: var(--blue); }
.p-step:hover .p-icon svg { stroke: white; }
.p-step h4 { font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.p-step p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
.p-step-tag {
  display: inline-block; margin-top: auto; align-self: center;
  font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-bg);
  padding: 3px 8px; border-radius: 4px;
}

/* ══ WHY ══ */
.why-section { background: #061929; }
.why-section .eyebrow { color: var(--blue-light); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.45); }
.why-section .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-section .why-card { background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 28px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.why-section .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); opacity: 0.3; transition: opacity 0.4s; }
.why-section .why-card:hover { transform: translateY(-5px); border-color: rgba(78, 179, 240, 0.4); background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 100%); box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 30px rgba(78, 179, 240, 0.1); }
.why-section .why-card:hover::before { opacity: 0.8; }
.why-section .why-num { font-family: 'Geologica', sans-serif; font-size: 64px; font-weight: 800; line-height: 1; margin-bottom: 16px; background: linear-gradient(135deg, #ffffff 0%, var(--blue-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; filter: drop-shadow(0 4px 12px rgba(78, 179, 240, 0.2)); }
.why-section .why-card h4 { font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; letter-spacing: 0.2px; }
.why-section .why-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ══ PROJECTS ══ */
.projects-section { background: var(--bg); }
.projects-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 230px 230px; gap: 14px; }
.proj-card { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.proj-card:first-child { grid-row: 1 / 3; }
.proj-bg { position: absolute; inset: 0; transition: transform .4s ease; }
.proj-bg img { width: 100%; height: 100%; object-fit: cover; }
.proj-card:hover .proj-bg { transform: scale(1.04); }
.proj-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent, rgba(4,14,30,0.88)); z-index: 1; }
.proj-inner { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px; z-index: 2; }
.proj-info h4 { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.proj-info span { font-size: 12px; color: rgba(255,255,255,0.6); }
.proj-tag { position: absolute; top: 14px; left: 14px; background: rgba(27,124,196,0.85); color: var(--white); font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; z-index: 2; }

/* ══ CTA ══ */
.cta-section { background: var(--blue-bg); padding: 80px 0; }
.cta-box { background: var(--white); border-radius: 18px; padding: 60px 68px; display: flex; align-items: center; gap: 60px; border: 1px solid rgba(27,124,196,0.12); box-shadow: 0 2px 40px rgba(27,124,196,0.07); }
.cta-left { flex: 1; }
.cta-left h2 { font-family: 'Geologica', sans-serif; font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.2px; margin-bottom: 12px; }
.cta-left p { color: var(--text-muted); font-size: 15px; line-height: 1.65; max-width: 400px; }
.cta-right { flex-shrink: 0; width: 340px; display: flex; flex-direction: column; gap: 12px; }
.cta-right input { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Nunito Sans', sans-serif; outline: none; transition: border-color .2s; color: var(--text); }
.cta-right input:focus { border-color: var(--blue); }
.cta-right input::placeholder { color: #9CA3AF; }
.btn-cta { background: var(--blue); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s; }
.btn-cta:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,124,196,0.3); }
.cta-note { font-size: 11px; color: var(--text-muted); text-align: center; }
.cta-note a { color: var(--blue); text-decoration: none; }

/* ══ FOOTER ══ */
footer { background: #04111F; padding: 56px 0 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-brand-name { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub { font-size: 10px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 18px; }
.footer-contacts a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 5px; transition: color .2s; }
.footer-contacts a:hover { color: var(--blue-light); }
.footer-social-new { display: flex; gap: 12px; margin-top: 14px; }
.footer-social-new .social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  margin-bottom: 0;
}
.footer-social-new .social-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px) scale(1.05); border-color: rgba(255,255,255,0.25); }
.footer-social-new .social-btn img { width: 22px; height: 22px; display: block; border: none; margin: 0; padding: 0; object-fit: contain; }

footer h5 { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom a { color: rgba(255,255,255,0.22); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ══ POPUP MODAL ══ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4, 14, 30, 0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%; max-width: 480px;
  padding: 44px 40px 36px;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 18px; line-height: 1;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.modal-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.modal h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
.modal-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.modal-field label { font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-mid); letter-spacing: 0.2px; }
.modal-field input, .modal-field select, .modal-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px; font-family: 'Nunito Sans', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
  color: var(--text); background: var(--white);
  width: 100%;
}
.modal-field input:focus, .modal-field select:focus, .modal-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,124,196,0.12);
}
.modal-field input::placeholder, .modal-field textarea::placeholder { color: #B0B8C4; }
/* Phone field with flag */
.phone-wrap {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.phone-wrap:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,124,196,0.12);
}
.phone-flag {
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px 0 14px;
  background: var(--bg);
  border-right: 1.5px solid var(--border);
  flex-shrink: 0; cursor: default;
  user-select: none;
}
.flag-ru {
  width: 22px; height: 15px;
  border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.flag-ru-w { flex: 1; background: #fff; }
.flag-ru-b { flex: 1; background: #0039A6; }
.flag-ru-r { flex: 1; background: #D52B1E; }
.phone-code {
  font-family: 'Geologica', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text);
}
.phone-input {
  flex: 1; padding: 13px 16px;
  border: none !important;
  border-radius: 0 !important;
  outline: none;
  font-size: 14px; font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  box-shadow: none !important;
}
/* Checkboxes */
.modal-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; margin-top: 6px; }
.check-row {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
}
.check-row input[type="checkbox"] { display: none; }
.check-box {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 5px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; background: var(--white);
}
.check-row input:checked ~ .check-box {
  background: var(--blue); border-color: var(--blue);
}
.check-row input:checked ~ .check-box::after {
  content: '';
  display: block;
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}
.check-label { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.check-label a { color: var(--blue); text-decoration: none; }
.check-label a:hover { text-decoration: underline; }
.btn-modal-submit {
  width: 100%; padding: 15px;
  background: var(--blue); color: var(--white); border: none;
  border-radius: 10px;
  font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all .2s;
  opacity: 0.5; cursor: not-allowed;
}
.btn-modal-submit.ready { opacity: 1; cursor: pointer; }
.btn-modal-submit.ready:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,124,196,0.35); }
/* Success state */
.modal-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 20px 0 10px;
}
.modal-success.show { display: flex; }
.modal-form-body.hide { display: none; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #E8F8F0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.success-icon svg { width: 28px; height: 28px; fill: none; stroke: #22C55E; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.modal-success h4 { font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 300px; }

/* ══ ADAPTIVE ══ */
/* ══ WIDE SCREENS ══ */
@media (min-width: 1440px) {
  .nav-inner, .trust-bar-inner, .container, .footer-inner { max-width: 1380px; }
  .hero-inner { max-width: 1380px; grid-template-columns: 1fr 380px; gap: 80px; padding: 0 60px; }
  .hero-indicators-inner { max-width: 1380px; padding: 0 60px; }
  .hero-h1 { font-size: 58px; }
  .hero-desc { font-size: 17px; max-width: 520px; }
  .section-title { font-size: 38px; }
  .services-grid { gap: 18px; }
  .why-num { font-size: 64px; }
  .cta-box { padding: 68px 80px; }
}
@media (min-width: 1920px) {
  .nav-inner, .trust-bar-inner, .container, .footer-inner { max-width: 1540px; }
  .hero-inner { max-width: 1540px; grid-template-columns: 1fr 420px; gap: 100px; padding: 0 80px; }
  .hero-indicators-inner { max-width: 1540px; padding: 0 80px; }
  .hero-h1 { font-size: 64px; }
  .hero-desc { font-size: 18px; max-width: 580px; }
  .hero-card { padding: 32px 32px 28px; }
  .hs-num { font-size: 32px; }
  .section-title { font-size: 42px; }
  .section-sub { font-size: 16px; max-width: 560px; }
  .service-card { padding: 26px 24px 22px; }
  .service-card h4 { font-size: 14px; }
  .service-card p { font-size: 13px; }
  .why-grid { gap: 24px; }
  .why-num { font-size: 52px; }
  .why-card { padding: 32px 30px; }
  .why-card h4 { font-size: 16px; }
  .why-card p { font-size: 14px; }
  .projects-grid { grid-template-rows: 280px 280px; }
  .cta-box { padding: 72px 100px; gap: 80px; }
  .cta-left h2 { font-size: 38px; }
  .footer-top { gap: 60px; }
  .p-num { width: 60px; height: 60px; font-size: 22px; }
  .p-step h4 { font-size: 14px; }
  .p-step p { font-size: 13px; }
  .trust-text strong { font-size: 14px; }
  .trust-text span { font-size: 12px; }
  .trust-icon { width: 42px; height: 42px; }
}
@media (min-width: 2400px) {
  .nav-inner, .trust-bar-inner, .container, .footer-inner { max-width: 1700px; }
  .hero-inner { max-width: 1700px; grid-template-columns: 1fr 460px; }
  .hero-indicators-inner { max-width: 1700px; }
  .hero-h1 { font-size: 70px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-section .why-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { padding: 44px 40px; gap: 40px; }
  .megamenu { width: 100%; left: 0; padding: 20px; }
  .megamenu-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-inner { grid-template-columns: 1fr 300px; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .hero { height: 100svh; min-height: 580px; max-height: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-card { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-h1 { font-size: 34px; }
  .hero-indicators-inner { padding: 0 20px; }
  .trust-bar-inner { flex-direction: column; padding: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 20px; }
  .trust-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .proj-card:first-child { grid-row: 1/3; }
.why-section .why-grid, .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .cta-box { flex-direction: column; padding: 36px 28px; gap: 32px; }
  .cta-right { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .section-title { font-size: 26px; }
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
  .hero-content { padding-bottom: 80px; }
  .hero-inner { padding: 0 20px; }
}
@media (max-width: 600px) {
  .nav-logo-main { font-size: 13px; }
  .hero-nav { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proj-card:first-child { grid-row: auto; }
  .proj-card { height: 220px; }
.hero-h1 { font-size: 28px; letter-spacing: -0.8px; }
.hero-desc { font-size: 15px; }
  .btn-hero-main, .btn-hero-ghost { padding: 14px 22px; font-size: 14px; }
  .cta-box { padding: 28px 20px; }
  .footer-inner { padding: 0 20px; }
}
/* ══ CLIENTS LOGOS ══ */
/* ══ MARQUEE ══ */
.marquee-label-row {
  text-align: center;
  padding: 20px 0 4px;
}
.marquee-label {
  font-family: 'Geologica', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.marquee-wrap {
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--white) 0%, transparent 100%); }
.marquee-wrap::after  { right: 0; background: linear-gradient(270deg, var(--white) 0%, transparent 100%); }
.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: mq-scroll 35s linear infinite;
  padding: 18px 0;
}
.marquee-track:hover { animation-play-state: paused; }
.mq-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px;
  font-family: 'Geologica', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color .2s;
  cursor: default;
}
.mq-item:hover { color: var(--blue); }
.mq-item:hover .mq-dot { background: var(--blue); transform: scale(1.3); }
.mq-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ REVIEWS ══ */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .2s, transform .2s; }
.review-card:hover { box-shadow: 0 6px 28px rgba(27,124,196,0.1); transform: translateY(-2px); }
.review-stars { display: flex; gap: 3px; }
.star { color: #F59E0B; font-size: 15px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.review-text::before { content: '\201C'; font-size: 32px; color: var(--blue-light); line-height: 0; vertical-align: -10px; margin-right: 4px; font-family: Georgia, serif; }
.review-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 800; color: var(--blue); }
.review-name { font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.review-meta { font-size: 11px; color: var(--text-muted); }
.review-source { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-muted); margin-left: auto; flex-shrink: 0; }
.review-source svg { width: 14px; height: 14px; }
.reviews-more { text-align: center; margin-top: 36px; }

/* ══ GUARANTEE ══ */
.guarantee-section { background: var(--white); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guarantee-left { }
.guarantee-badge { display: inline-flex; align-items: center; gap: 14px; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 14px; padding: 20px 28px; margin-bottom: 28px; }
.guarantee-badge-num { font-family: 'Geologica', sans-serif; font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.guarantee-badge-text { color: rgba(255,255,255,0.85); }
.guarantee-badge-text strong { display: block; font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.guarantee-badge-text span { font-size: 12px; }
.guarantee-left h2 { font-family: 'Geologica', sans-serif; font-size: 30px; font-weight: 800; line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 14px; }
.guarantee-left p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.guarantee-items { display: flex; flex-direction: column; gap: 12px; }
.guarantee-item { display: flex; align-items: flex-start; gap: 12px; }
.g-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.g-text strong { display: block; font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.g-text span { font-size: 12px; color: var(--text-muted); }
.guarantee-right { background: var(--bg); border-radius: 16px; padding: 32px; border: 1px solid var(--border); }
.guarantee-right h4 { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.guarantee-timeline { display: flex; flex-direction: column; gap: 0; }
.g-step { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.g-step:last-child { padding-bottom: 0; }
.g-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.g-step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.g-step-line { width: 2px; flex: 1; background: var(--border); margin-top: 6px; }
.g-step:last-child .g-step-line { display: none; }
.g-step-content { padding-top: 5px; }
.g-step-content strong { display: block; font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.g-step-content span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ══ FAQ ══ */
.faq-section { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(27,124,196,0.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; user-select: none; }
.faq-q-text { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .3s; }
.faq-icon svg { width: 12px; height: 12px; fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }

/* ══ FLOATING CTA ══ */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 50px;
  padding: 14px 22px;
  font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 8px 28px rgba(27,124,196,0.45);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.float-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(27,124,196,0.5); }
.float-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.float-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--text);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 11px 18px;
  font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 13px;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all .2s;
}
.float-phone:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.float-phone svg { width: 15px; height: 15px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══ ADAPTIVE ADDITIONS ══ */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .float-cta { bottom: 16px; right: 16px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .float-phone { display: none; }
}
@media (max-width: 600px) {
  .faq-grid { gap: 8px; }
  .guarantee-badge-num { font-size: 40px; }
}/* ══ SERVICE PAGES ══ */
.service-hero {
  padding: 240px 20px 120px;
  background: var(--blue-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.service-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.service-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,30,60,0.85) 0%, rgba(10,30,60,0.95) 100%);
  z-index: 2;
}
.service-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}
.service-hero h1 {
  font-family: 'Geologica', sans-serif;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.6;
}
.service-content {
  padding: 100px 20px;
  background: var(--white);
}
.sc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
}
.sc-text h2 { 
  margin: 60px 0 32px; 
  font-size: 34px; 
  font-family: 'Geologica', sans-serif;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  padding-left: 24px;
}
.sc-text h2::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%; width: 6px;
  background: linear-gradient(to bottom, var(--blue), #00c6ff);
  border-radius: 4px;
}
.sc-text h3 { 
  margin: 40px 0 16px; 
  font-size: 24px; 
  font-family: 'Geologica', sans-serif;
  color: var(--blue-dark);
}
.sc-text p { 
  margin-bottom: 24px; 
  line-height: 1.8; 
  font-size: 17px;
  color: var(--text-mid); 
}
.sc-text p:first-of-type {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 40px;
}
.sc-text img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 32px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* Modern Grid Cards instead of lists */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.feature-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.1);
  background: var(--white);
  border-color: rgba(0, 102, 204, 0.3);
}
.feature-card i {
  color: var(--blue);
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 2px;
}
.feature-card span {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}
.sc-sidebar { position: sticky; top: 120px; align-self: start; }

/* Premium Form Widget */
.sc-form-widget {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.sc-form-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--blue), #00c6ff);
}
.sc-form-widget h3 { 
  margin-bottom: 16px; 
  font-size: 26px; 
  font-family: 'Geologica', sans-serif;
  font-weight: 800;
  color: var(--blue-dark);
}
.sc-form-widget p { 
  font-size: 15px; 
  color: var(--text-muted); 
  margin-bottom: 30px; 
  line-height: 1.6;
}
.sc-form-widget .input-group {
  position: relative; margin-bottom: 16px;
}
.sc-form-widget .flag-icon {
  position: absolute; left: 16px; top: 18px;
  font-size: 18px; line-height: 1;
  pointer-events: none;
}
.sc-form-widget input[type="text"],
.sc-form-widget input[type="tel"] {
  width: 100%; padding: 18px 20px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border); 
  border-radius: 12px;
  font-family: 'Nunito Sans', sans-serif; font-size: 16px;
  transition: all .2s;
  box-sizing: border-box;
}
.sc-form-widget .phone-group input {
  padding-left: 48px;
}
.sc-form-widget input[type="text"]::placeholder,
.sc-form-widget input[type="tel"]::placeholder {
  color: #9ca3af;
}
.sc-form-widget input[type="text"]:focus,
.sc-form-widget input[type="tel"]:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}
.sc-form-widget .checkbox-group {
  margin-top: 20px;
  margin-bottom: 24px;
}
.sc-form-widget .checkbox-group label {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; cursor: pointer;
}
.sc-form-widget .checkbox-group input[type="checkbox"] {
  margin-top: 3px; width: 16px; height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
.sc-form-widget .checkbox-group span {
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}
.sc-form-widget .btn { 
  width: 100%; 
  padding: 18px; 
  font-size: 17px;
  border-radius: 12px;
  margin-top: 8px;
  background: var(--blue);
  color: var(--white);
  border: none;
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.25);
  transition: all .25s ease;
}
.sc-form-widget .btn:disabled {
  background: var(--border);
  color: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.sc-form-widget .btn:hover:not(:disabled) {
  transform: translateY(-3px);
  background: var(--blue-dark);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.35);
}

@media (max-width: 900px) {
  .sc-container { grid-template-columns: 1fr; gap: 40px; }
  .sc-sidebar { position: static; }
  .service-hero h1 { font-size: 36px; }
}


/* ── HERO SERVICE (RADICAL REDESIGN) ── */
.service-hero {
  background: radial-gradient(circle at 70% 30%, rgba(27, 124, 196, 0.2) 0%, #030B15 60%);
  background-color: #030B15;
  padding: 120px 0 100px;
  overflow: hidden;
  position: relative;
}
.service-hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 500px; gap: 80px; align-items: center;
  position: relative; z-index: 3;
}
.service-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.service-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 100px; padding: 6px 16px;
  font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--blue-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.service-hero-label span { width: 6px; height: 6px; background: var(--blue-light); border-radius: 50%; box-shadow: 0 0 10px var(--blue-light); }
.service-hero h1 {
  font-family: 'Geologica', sans-serif; font-size: 56px; font-weight: 900;
  color: var(--white); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px;
}
.service-hero h1 em { 
  font-style: normal; 
  background: linear-gradient(90deg, #4EB3F0, #1B7CC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.service-hero-desc { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 40px; max-width: 540px; }
.service-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; margin-bottom: 48px; }
.btn-primary { background: var(--blue); color: var(--white); border: none; padding: 16px 32px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .3s; white-space: nowrap; box-shadow: 0 8px 24px rgba(27,124,196,0.3); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(27,124,196,0.5); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 16px 32px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; transition: all .3s; white-space: nowrap; backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
  font-family: 'Geologica', sans-serif;
  transition: all 0.3s;
}
.chip:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.chip svg { width: 14px; height: 14px; fill: none; stroke: var(--blue-light); stroke-width: 2; stroke-linecap: round; }

/* Hero визуал — плавающая анимация */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.service-hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: floatY 6s ease-in-out infinite;
}
.service-hero-visual::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(78, 179, 240, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.door-illustration {
  width: 400px; height: 360px;
  position: relative;
}
.door-illustration svg { width: 100%; height: 100%; }

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
section { padding: 72px 0; }
.eyebrow { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-family: 'Geologica', sans-serif; font-size: 34px; font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 10px; }
.section-sub { color: var(--text-muted); font-size: 15px; max-width: 540px; line-height: 1.7; margin-bottom: 44px; }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 24px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.why-card:hover { border-color: rgba(27,124,196,0.3); box-shadow: 0 6px 24px rgba(27,124,196,0.1); transform: translateY(-3px); }
.why-icon { width: 48px; height: 48px; background: var(--blue-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background .2s; }
.why-card:hover .why-icon { background: var(--blue); }
.why-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.why-card:hover .why-icon svg { stroke: white; }
.why-card h4 { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── TYPES ── */
.types-section { background: var(--bg); }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.type-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.type-card:hover { box-shadow: 0 8px 32px rgba(27,124,196,0.12); transform: translateY(-4px); }
.type-visual {
  height: 180px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.type-visual svg { width: 140px; height: 140px; }
.type-tag {
  position: absolute; top: 14px; left: 14px; z-index: 10;
  background: var(--blue); color: var(--white);
  font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.type-body { padding: 22px 22px 24px; }
.type-body h4 { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.type-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.type-features { display: flex; flex-direction: column; gap: 6px; }
.type-feature { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-mid); }
.type-feature::before { content: ''; display: block; width: 5px; height: 5px; background: var(--blue-light); border-radius: 50%; flex-shrink: 0; }

/* ── COMPONENTS ── */
.components-section { background: var(--white); }
.components-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.component-list { display: flex; flex-direction: column; gap: 14px; }
.component-item {
  display: flex; gap: 16px;
  padding: 18px 20px; border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.component-item:hover { border-color: rgba(27,124,196,0.3); background: var(--blue-bg); }
.comp-icon { width: 42px; height: 42px; background: var(--blue-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.component-item:hover .comp-icon { background: var(--blue); }
.comp-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.component-item:hover .comp-icon svg { stroke: white; }
.comp-text h5 { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.comp-text p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

/* HW / Component Cards in Grid */
.comp-card { background: #fafbfc; border: 1px solid #eee; border-radius: 12px; padding: 32px; transition: all 0.3s; cursor: pointer; }
.comp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); border-color: var(--blue-light); background: #fff; }
.comp-card .comp-icon { width: 48px; height: 48px; margin-bottom: 24px; border-radius: 12px; }
.comp-card .comp-icon svg { width: 24px; height: 24px; }
.comp-card:hover .comp-icon { background: var(--blue); }
.comp-card:hover .comp-icon svg { stroke: white; }

.components-visual { position: sticky; top: 88px; }
.spec-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.spec-card h4 { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 13px; color: var(--text-muted); }
.spec-val { font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); text-align: right; max-width: 200px; }
.spec-badge { display: inline-block; background: var(--blue-bg); color: var(--blue); font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

/* ── AREAS ── */
.areas-section { background: var(--bg); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.area-card:hover { border-color: rgba(27,124,196,0.3); transform: translateY(-2px); }
.area-num { font-family: 'Geologica', sans-serif; font-size: 28px; font-weight: 900; color: var(--blue-light); line-height: 1; min-width: 36px; }
.area-text h5 { font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.area-text p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }


/* ── PROCESS ── */
.process-section { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; gap: 8px; }
.process-steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
.process-steps::after { content: ''; position: absolute; top: 28px; left: calc(10% + 28px); right: calc(10% + 28px); height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--blue)); z-index: 0; }
.process-steps.steps-4::after { left: calc(12.5% + 28px); right: calc(12.5% + 28px); }
.p-step { display: flex; flex-direction: column; align-items: center; padding: 0 12px; position: relative; z-index: 1; }
.p-step-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px 16px 18px; text-align: center; width: 100%; transition: border-color .25s, box-shadow .25s, transform .25s; margin-top: 56px; display: flex; flex-direction: column; flex-grow: 1; }
.p-step:hover .p-step-card { border-color: rgba(27,124,196,0.35); box-shadow: 0 8px 24px rgba(27,124,196,0.1); transform: translateY(-3px); }
.p-num-wrap { position: absolute; top: 0; z-index: 2; }
.p-num { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 900; color: var(--white); box-shadow: 0 4px 16px rgba(27,124,196,0.4); transition: transform .25s; }
.p-step:hover .p-num { transform: scale(1.1); }
.p-step h4 { font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 800; margin-bottom: 5px; }
.p-step p { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.p-tag { display: inline-block; margin-top: auto; font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--blue); background: var(--blue-bg); padding: 3px 8px; border-radius: 4px; align-self: center; }

@media (max-width: 900px) {
  .process-steps, .process-steps.steps-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::after, .process-steps.steps-4::after { display: none; }
}

@media (max-width: 600px) {
  .process-steps, .process-steps.steps-4 { grid-template-columns: 1fr; gap: 20px; }
}

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(27,124,196,0.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; cursor: pointer; user-select: none; }
.faq-q-text { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .3s; }
.faq-icon svg { width: 12px; height: 12px; fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 18px; font-size: 13px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 72px 0;
}
.cta-banner-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.cta-banner h2 { font-family: 'Geologica', sans-serif; font-size: 36px; font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 28px; }
.cta-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); font-family: 'Geologica', sans-serif; }
.cta-chip svg { width: 12px; height: 12px; fill: none; stroke: var(--blue-light); stroke-width: 2.5; stroke-linecap: round; }
.cta-form-card { background: var(--white); border-radius: 16px; padding: 32px 28px; }
.cta-form-card h4 { font-family: 'Geologica', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.cta-form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.form-field { margin-bottom: 12px; }
.form-field label { display: block; font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; color: var(--text-mid); letter-spacing: .3px; margin-bottom: 5px; }
.phone-wrap { display: flex; align-items: stretch; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color .2s; }
.phone-wrap:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,124,196,0.12); }
.phone-flag { display: flex; align-items: center; gap: 6px; padding: 0 12px; background: var(--bg); border-right: 1.5px solid var(--border); flex-shrink: 0; }
.flag-ru { width: 20px; height: 14px; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.flag-ru-w { flex: 1; background: #fff; }
.flag-ru-b { flex: 1; background: #0039A6; }
.flag-ru-r { flex: 1; background: #D52B1E; }
.phone-code { font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.phone-input { flex: 1; padding: 12px 14px; border: none; outline: none; font-size: 14px; font-family: 'Nunito Sans', sans-serif; color: var(--text); }
.phone-input::placeholder { color: #B0B8C4; }
.form-field input[type="text"], .form-field input[type="tel"], .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Nunito Sans', sans-serif; outline: none; transition: border-color .2s; color: var(--text); background: #fff; }
.form-field input[type="text"]:focus, .form-field input[type="tel"]:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #B0B8C4; }
.check-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 8px; }
.check-row input[type="checkbox"] { display: none; }
.check-box { width: 18px; height: 18px; flex-shrink: 0; border: 2px solid var(--border); border-radius: 5px; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .2s; background: var(--white); }
.check-row input:checked ~ .check-box { background: var(--blue); border-color: var(--blue); }
.check-row input:checked ~ .check-box::after { content: ''; display: block; width: 10px; height: 6px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg) translate(1px,-1px); }
.check-label { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.check-label a { color: var(--blue); text-decoration: none; }
.btn-submit { width: 100%; padding: 14px; background: var(--blue); color: var(--white); border: none; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; margin-top: 12px; transition: all .2s; opacity: .5; }
.btn-submit.ready { opacity: 1; }
.btn-submit.ready:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,124,196,0.35); }

/* ── OTHER SERVICES ── */
.other-services { background: var(--white); }
.other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.other-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 18px 16px; text-decoration: none; display: flex; align-items: center; gap: 12px; transition: border-color .2s, background .2s, transform .2s; }
.other-card:hover { border-color: rgba(27,124,196,0.35); background: var(--blue-bg); transform: translateY(-2px); }
.other-icon { width: 36px; height: 36px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.other-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.other-card span { font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }

/* ── FOOTER ── */
footer { background: #04111F; padding: 52px 0 24px; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 22px; }
.footer-brand-name { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub { font-size: 10px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 16px; }
.footer-contacts a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 5px; transition: color .2s; }
.footer-contacts a:hover { color: var(--blue-light); }
.footer-messengers { display: flex; gap: 8px; margin-top: 12px; }
.msg-btn { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; transition: transform .2s, opacity .2s; opacity: .75; flex-shrink: 0; }
.msg-btn:hover { transform: translateY(-2px); opacity: 1; }
.msg-btn svg { width: 18px; height: 18px; }
.msg-tg { background: #229ED9; color: #fff; }
.msg-wa { background: #25D366; color: #fff; }
footer h5 { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom a { color: rgba(255,255,255,0.22); text-decoration: none; }

/* ── FLOAT CTA ── */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; opacity: 0; transform: translateY(16px); transition: opacity .3s, transform .3s; pointer-events: none; }
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn { display: flex; align-items: center; gap: 10px; background: var(--blue); color: var(--white); border: none; border-radius: 50px; padding: 14px 22px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap; box-shadow: 0 8px 28px rgba(27,124,196,0.45); transition: background .2s, transform .2s; }
.float-btn:hover { background: var(--blue-dark); transform: translateY(-2px); }
.float-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }

/* ── ADAPTIVE ── */
@media (max-width: 1024px) {
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-visual { display: none; }
  .components-layout { grid-template-columns: 1fr; }
  .components-visual { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .faq-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .container { padding: 0 20px; }
  section { padding: 52px 0; }
  .service-hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .why-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .other-grid { grid-template-columns: 1fr 1fr; }
.breadcrumb-inner { padding: 0 20px; }
  .cta-banner-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .service-hero h1 { font-size: 28px; }
  .service-hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
.float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
}

/* PORTFOLIO */
.portfolio-section { background: var(--bg-card); padding: 80px 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.portfolio-card { position: relative; border-radius: 12px; overflow: hidden; height: 320px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; color: #fff; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.portfolio-tag { display: inline-block; background: var(--primary); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 4px; align-self: flex-start; }
.portfolio-info { position: relative; z-index: 2; margin-top: auto; }
.portfolio-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; font-family: 'Geologica', sans-serif; line-height: 1.3; }
.portfolio-info p { font-size: 13px; color: rgba(255,255,255,0.7); }

@media (max-width: 992px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-section { padding: 60px 0; }
}


/* GLOBAL CARD HEIGHT FIX */
.service-card, .why-card, .type-card, .comp-card, .p-step-card, .area-card {
  height: 100%;
  display: flex !important;
  flex-direction: column;
}
.service-card p, .why-card p, .type-card p, .comp-card p, .p-step-card p, .area-card p {
  flex-grow: 1;
}
.sc-arrow {
  margin-top: auto;
}


/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.breadcrumb-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb-inner a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: var(--blue-dark);
}
.breadcrumb-sep {
  color: var(--border);
}
.breadcrumb-current {
  color: var(--text-muted);
  cursor: default;
}


/* 4-step layout fix */
@media (min-width: 992px) {
}

/* =========================================================================
   ABOUT COMPANY SECTION
   ========================================================================= */
.about-comp-section {
  background: #eef2f6;
  padding: 100px 0;
  font-family: 'Nunito Sans', sans-serif;
}
.about-comp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.ach-left {
  max-width: 720px;
}
.ac-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.ac-stat-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 40px 32px;
}
.ac-stat-num {
  font-family: 'Geologica', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #0D5A9A;
  margin-bottom: 8px;
  line-height: 1;
}
.ac-stat-desc {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}
.ac-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.ac-col-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ac-feat-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.ac-feat-icon {
  background: #f0f9ff;
  color: #0D5A9A;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ac-feat-icon svg {
  width: 28px;
  height: 28px;
}
.ac-feat-card h4 {
  font-family: 'Geologica', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1e293b;
}
.ac-feat-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.ac-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ac-prof-card {
  background: #144473;
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ac-prof-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 24px;
}
.ac-prof-card h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}
.ac-prof-card p {
  color: #bae6fd;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 400px;
}
.ac-prof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ac-prof-chips span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.ac-clients-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 40px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ac-clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ac-client-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: #1e293b;
}
.ac-client-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}
.ac-client-desc {
  color: #cbd5e1;
  font-size: 13px;
  margin-left: 16px;
}

@media (max-width: 1024px) {
  .ac-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-comp-section {
    padding: 60px 0;
  }
  .about-comp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ac-stats-grid {
    grid-template-columns: 1fr;
  }
  .ac-clients-grid {
    grid-template-columns: 1fr;
  }
  .ac-stat-num {
    font-size: 48px;
  }
  .ac-prof-card h3 {
    font-size: 28px;
  }
  .ac-prof-card, .ac-clients-card {
    padding: 32px;
  }
  .ac-col-left {
    gap: 24px;
    justify-content: flex-start;
  }
  .ac-feat-card {
    flex-direction: column;
  }
}

/* =========================================================================
   DYNAMIC EFFECTS
   ========================================================================= */
.ac-stat-card, .ac-feat-card, .why-card, .service-card, .proj-card, .trust-item, .faq-item {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.ac-stat-card:hover, .ac-feat-card:hover, .why-card:hover, .service-card:hover, .proj-card:hover, .trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.1) !important;
}

/* Fix .ac-prof-card subtle hover */
.ac-prof-card, .ac-clients-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ac-prof-card:hover, .ac-clients-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

/* Nav Links Underline Effect */
.nav-item > a {
  position: relative;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0D5A9A;
  transition: width 0.3s ease;
}
.nav-item > a:hover::after {
  width: 100%;
}

/* Footer Links Hover */
.footer-links a {
  transition: color 0.3s ease, padding-left 0.3s ease !important;
  display: inline-block;
}
.footer-links a:hover {
  color: #fff !important;
  padding-left: 8px !important;
}

/* Buttons extra scale on hover */
.btn-hero-main:hover, .btn-primary:hover {
  transform: scale(1.03);
}
.btn-hero-ghost:hover, .btn-ghost:hover {
  transform: translateY(-2px);
}

/* =========================================================================
   NAV MESSENGERS
   ========================================================================= */
.nav-messengers {
  display: flex;
  gap: 12px;
  margin-right: 20px;
}
.nav-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-msg.wa { background: #25D366; }
.nav-msg.tg { background: #0088cc; }
.nav-msg svg { width: 20px; height: 20px; }
.nav-msg:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .nav-messengers { margin-right: 12px; }
  .nav-msg { width: 36px; height: 36px; }
  .nav-msg svg { width: 18px; height: 18px; }
}

/* =========================================================================
   QUIZ SECTION
   ========================================================================= */
.quiz-section {
  background: #f8fafc;
  padding: 100px 0;
  font-family: 'Nunito Sans', sans-serif;
}
.quiz-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
  display: flex;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.quiz-left {
  flex: 0 0 340px;
  background: #0f4a82;
  color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.quiz-left h2 {
  font-family: 'Geologica', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.quiz-left p {
  color: #bae6fd;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: auto;
}
.quiz-manager {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  padding: 16px;
  border-radius: 12px;
}
.qm-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.quiz-manager strong {
  display: block;
  font-size: 15px;
}
.quiz-manager span {
  font-size: 12px;
  color: #93c5fd;
}

.quiz-right {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.quiz-progress {
  margin-bottom: 40px;
}
.qp-text {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.qp-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.qp-fill {
  height: 100%;
  background: #10b981;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.quiz-steps {
  flex: 1;
  position: relative;
  min-height: 240px;
}
.quiz-step {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: 0.4s ease;
}
.quiz-step.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}
.quiz-step h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #1e293b;
  margin-bottom: 24px;
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.q-opt {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
}
.q-opt input {
  display: none;
}
.qo-box {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.qo-box::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #0D5A9A;
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s;
}
.q-opt:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}
.q-opt input:checked + .qo-box {
  border-color: #0D5A9A;
}
.q-opt input:checked + .qo-box::after {
  opacity: 1;
}
.q-opt:has(input:checked) {
  border-color: #0D5A9A;
  background: #f0f9ff;
}

.quiz-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}

@media (max-width: 768px) {
  .quiz-card { flex-direction: column; }
  .quiz-left, .quiz-right { padding: 32px 24px; }
  .quiz-left { flex: none; }
}

/* =========================================================================
   COOKIE BANNER
   ========================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-top: 1px solid #e2e8f0;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
    text-align: center;
  }
}

/* =========================================================================
   PSK (LIFT-AND-SLIDE) SPECIFIC STYLES
   ========================================================================= */

/* Hero Section */
.psk-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.psk-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.psk-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.psk-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60A5FA;
  margin-right: 8px;
  vertical-align: middle;
}
.psk-h1 {
  font-family: 'Geologica', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.psk-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}
.psk-hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}
.psk-btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.psk-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.psk-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.psk-hf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  font-size: 14px;
  color: #cbd5e1;
}

/* Blueprint CSS Drawing */
.psk-blueprint {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  margin: 0 auto;
}
.psk-bp-frame {
  position: absolute;
  top: 10%; left: 10%; right: 10%; bottom: 10%;
  border: 2px solid rgba(96, 165, 250, 0.4);
  background: rgba(96, 165, 250, 0.05);
  display: flex;
}
.psk-bp-sash {
  width: 50%;
  height: 100%;
  border: 4px solid rgba(96, 165, 250, 0.6);
  position: relative;
  background: rgba(96, 165, 250, 0.1);
}
.psk-bp-sash.right {
  border-left: none;
  background: rgba(96, 165, 250, 0.02);
}
.psk-bp-glass {
  position: absolute;
  top: 10%; left: 10%; right: 10%; bottom: 10%;
  background: rgba(255,255,255,0.05);
}
.psk-bp-handle {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 40px;
  background: #60A5FA;
  border-radius: 4px;
  z-index: 2;
}
.psk-bp-roller {
  position: absolute;
  width: 20px;
  height: 8px;
  background: rgba(96, 165, 250, 0.8);
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.psk-bp-roller.top { top: -6px; }
.psk-bp-sill {
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 10px;
  color: #60A5FA;
  letter-spacing: 1px;
}
.psk-bp-caption {
  position: absolute;
  bottom: 0;
  right: 10%;
  font-size: 10px;
  color: #60A5FA;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* How It Works Section */
.psk-how-section {
  padding: 80px 0;
  background: #f8fafc;
}
.psk-how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.psk-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.psk-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.psk-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #0284c7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.psk-step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 9px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.psk-step-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

/* Schematic Drawing How It Works */
.psk-how-schema-box {
  background: #e0f2fe;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.psk-how-schema-title {
  font-size: 12px;
  color: #0284c7;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.psk-how-schema-drawing {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 240px;
  margin: 0 auto;
}
.psk-schema-frame {
  position: absolute;
  top: 20px; left: 10%; right: 10%; bottom: 20px;
  background: #f1f5f9;
  border: 2px solid #cbd5e1;
}
.psk-schema-sash {
  position: absolute;
  top: 15px; bottom: 15px;
  width: 45%;
  border: 4px solid #94a3b8;
  background: rgba(255,255,255,0.8);
}
.psk-schema-sash.fixed {
  left: 10%;
}
.psk-schema-sash.sliding {
  left: 20%; /* Offset to show it sliding over the fixed one */
  border-color: #3b82f6;
  background: rgba(255,255,255,0.9);
  z-index: 2;
  box-shadow: -10px 0 20px rgba(0,0,0,0.05);
}
.psk-schema-handle {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 30px;
  background: #3b82f6;
  border-radius: 4px;
}
.psk-schema-arrow {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 700;
  font-size: 12px;
}
.psk-schema-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

/* Benefits Grid */
.psk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.psk-bc {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.3s;
}
.psk-bc:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.psk-bc-icon {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.psk-bc h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.psk-bc p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* Tech Params */
.psk-tech-section {
  background: #08101a;
  padding: 100px 0;
}
.psk-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.psk-tc {
  background: #111a28;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.psk-tc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.psk-tc-icon {
  display: none; /* Hide icons as per screenshot */
}
.psk-tc-val {
  font-family: 'Geologica', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #e0f2fe;
  text-shadow: 0 0 30px rgba(96,165,250,0.4);
  margin-bottom: 16px;
  line-height: 1;
}
.psk-tc-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.psk-tc-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* Usage Grid */
.psk-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.psk-uc {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.psk-uc:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.psk-uc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psk-uc h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.psk-uc p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .psk-hero-inner { grid-template-columns: 1fr; }
  .psk-h1 { font-size: 40px; }
  .psk-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .psk-usage-grid { grid-template-columns: repeat(2, 1fr); }
  .psk-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .psk-how-layout { grid-template-columns: 1fr; }
  .psk-usage-grid { grid-template-columns: 1fr; }
  .psk-benefits-grid { grid-template-columns: 1fr; }
  .psk-tech-grid { grid-template-columns: 1fr; }
}

/* === STAINLESS HANDLES PAGE === */
.sh-hero { background: #0b1523; color: #fff; position: relative; overflow: hidden; padding: 100px 0; }
.sh-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; gap: 60px; align-items: center; position: relative; z-index: 2; }
.sh-hero-left { flex: 1; max-width: 650px; }
.sh-eyebrow { display: inline-block; padding: 6px 14px; border-radius: 100px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; margin-bottom: 24px; }
.sh-h1 { font-family: 'Geologica', sans-serif; font-size: 52px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.sh-h1 span { color: #3b82f6; }
.sh-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; max-width: 500px; }
.sh-btns { display: flex; gap: 16px; margin-bottom: 40px; }
.sh-btn-primary { background: #2563eb; color: #fff; padding: 14px 28px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: background .2s; }
.sh-btn-primary:hover { background: #1d4ed8; }
.sh-btn-ghost { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 14px 28px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s; }
.sh-btn-ghost:hover { background: rgba(255,255,255,0.1); }
.sh-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.sh-chip { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.8); }
.sh-chip svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; }
.sh-hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.sh-blueprint { width: 380px; height: 480px; background: rgba(13, 30, 56, 0.4); border: 1px solid #1a365d; border-radius: 20px; position: relative; padding: 20px; overflow: hidden; }
.sh-bp-tag { font-family: 'Geologica', sans-serif; font-size: 10px; color: #60a5fa; border: 1px solid #1e3a8a; display: inline-block; padding: 4px 10px; border-radius: 4px; position: absolute; top: 20px; right: 20px; z-index: 2; }
.sh-bp-label { position: absolute; bottom: 20px; right: 20px; font-family: 'Geologica', sans-serif; font-size: 10px; color: #475569; letter-spacing: 2px; }
.sh-bp-drawing { position: absolute; top: 60px; left: 40px; right: 40px; bottom: 60px; border: 1px solid #1e293b; }
.sh-door-frame { position: absolute; left: 10%; width: 20px; top: 0; bottom: 0; background: rgba(255,255,255,0.05); border-right: 1px solid #1e293b; }
.sh-door-sash { position: absolute; left: 10%; right: 0; top: 0; bottom: 0; background: rgba(59, 130, 246, 0.05); }
.sh-handle-base { position: absolute; left: calc(10% + 10px); top: 30%; bottom: 30%; width: 30px; }
.sh-handle-bar { position: absolute; left: -15px; top: 0; bottom: 0; width: 10px; background: #94a3b8; border-radius: 5px; box-shadow: -2px 0 5px rgba(0,0,0,0.5); }
.sh-handle-mount-top { position: absolute; left: -10px; top: 20px; width: 10px; height: 10px; background: #64748b; }
.sh-handle-mount-bottom { position: absolute; left: -10px; bottom: 20px; width: 10px; height: 10px; background: #64748b; }

.sh-types-section { padding: 80px 0; background: #f8fafc; }
.sh-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.sh-type-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.sh-tc-visual { height: 240px; background: #111827; position: relative; padding: 20px; display: flex; justify-content: center; align-items: center; }
.sh-tc-tag { position: absolute; top: 20px; left: 20px; background: #2563eb; color: #fff; font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.sh-draw-door { width: 140px; height: 180px; border: 2px solid #1e3a8a; position: relative; background: rgba(59, 130, 246, 0.1); }
.sh-draw-door.glass { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); }
.sh-draw-d-handle { position: absolute; left: -10px; top: 40px; width: 20px; height: 100px; border: 4px solid #94a3b8; border-right: none; border-radius: 10px 0 0 10px; }
.sh-draw-lever-handle { position: absolute; left: 10px; top: 80px; width: 8px; height: 20px; background: #64748b; border-radius: 2px; }
.sh-draw-lever-handle::after { content: ''; position: absolute; left: -20px; top: 5px; width: 25px; height: 6px; background: #94a3b8; border-radius: 3px; }
.sh-draw-glass-handle { position: absolute; left: -8px; top: 20px; bottom: 20px; width: 6px; background: #cbd5e1; }
.sh-draw-glass-handle::before, .sh-draw-glass-handle::after { content: ''; position: absolute; left: 6px; width: 8px; height: 8px; background: #94a3b8; }
.sh-draw-glass-handle::before { top: 20px; }
.sh-draw-glass-handle::after { bottom: 20px; }
.sh-tc-content { padding: 30px; flex: 1; }
.sh-tc-content h4 { font-family: 'Geologica', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 12px; color: #0f172a; }
.sh-tc-content p { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.sh-tc-list { list-style: none; padding: 0; margin: 0; }
.sh-tc-list li { position: relative; padding-left: 16px; font-size: 12px; color: #475569; margin-bottom: 8px; }
.sh-tc-list li::before { content: '•'; position: absolute; left: 0; color: #3b82f6; font-size: 14px; top: -1px; }

.sh-safety-section { padding: 100px 0; background: #fff; }
.sh-safety-layout { display: flex; gap: 60px; align-items: center; }
.sh-safety-text { flex: 1; }
.sh-alert { background: #fef3c7; border: 1px solid #fcd34d; border-radius: 12px; padding: 24px; display: flex; gap: 16px; margin-top: 30px; }
.sh-alert-icon { font-size: 24px; }
.sh-alert-content h4 { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 800; color: #92400e; margin-bottom: 8px; }
.sh-alert-content p { font-size: 13px; color: #b45309; line-height: 1.5; margin: 0; }
.sh-safety-visual { flex: 1; background: #f8fafc; border-radius: 24px; padding: 40px; position: relative; }
.sh-sd-title { font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; color: #3b82f6; letter-spacing: 1px; margin-bottom: 40px; text-transform: uppercase; }
.sh-sd-row { position: relative; margin-bottom: 50px; }
.sh-sd-door { display: flex; align-items: center; height: 30px; position: relative; }
.sh-sd-glass { width: 150px; height: 10px; background: #cbd5e1; border-radius: 2px 0 0 2px; }
.sh-sd-frame { width: 20px; height: 30px; background: #64748b; border-radius: 2px; }
.sh-sd-handle { position: absolute; height: 8px; background: #94a3b8; border-radius: 4px; display: flex; align-items: center; }
.sh-sd-handle.danger { left: 130px; width: 40px; }
.sh-sd-handle.safe { left: 130px; width: 60px; }
.sh-sd-hand { position: absolute; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.sh-sd-hand.red { background: #fee2e2; color: #dc2626; right: -50px; top: -10px; }
.sh-sd-hand.green { background: #dcfce3; color: #16a34a; right: -80px; top: -10px; }
.sh-sd-label { font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; margin-top: 15px; padding-left: 130px; }
.sh-sd-label.red { color: #dc2626; }
.sh-sd-label.green { color: #16a34a; }
.sh-sd-bottom { font-family: 'Geologica', sans-serif; font-size: 10px; color: #94a3b8; text-align: center; margin-top: 20px; }

.sh-adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.sh-adv-card { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.sh-adv-icon { width: 48px; height: 48px; background: #eff6ff; color: #3b82f6; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sh-adv-card h4 { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 12px; color: #0f172a; }
.sh-adv-card p { font-size: 13px; color: #64748b; line-height: 1.6; }

.sh-finishes-section { background: #0b1523; padding: 80px 0; }
.sh-fin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.sh-fin-card { background: #1e293b; padding: 30px 24px; border-radius: 16px; position: relative; border: 1px solid rgba(255,255,255,0.05); }
.sh-fin-color { width: 40px; height: 40px; border-radius: 8px; margin-bottom: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.sh-fin-card h4 { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sh-fin-card p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 20px; }
.sh-fin-tag { display: inline-block; background: rgba(59, 130, 246, 0.2); color: #60a5fa; font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }

@media (max-width: 992px) {
  .sh-hero-inner, .sh-safety-layout { flex-direction: column; }
  .sh-hero-visual { display: none; }
  .sh-types-grid, .sh-adv-grid { grid-template-columns: 1fr 1fr; }
  .sh-fin-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sh-types-grid, .sh-adv-grid, .sh-fin-grid { grid-template-columns: 1fr; }
}


/* REPAIR SERVICES GRID */
.repair-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.repair-service-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; display: flex; gap: 24px; transition: box-shadow .3s, transform .3s; }
.repair-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.repair-service-icon { width: 48px; height: 48px; background: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.repair-service-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.repair-service-content h4 { font-family: 'Geologica', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 16px; }
.repair-service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.repair-service-list li { position: relative; padding-left: 16px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.repair-service-list li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--blue-light); font-size: 14px; font-weight: 700; line-height: 1.5; }

@media (max-width: 991px) {
  .repair-services-grid { grid-template-columns: 1fr; }
  .repair-service-card { padding: 24px; gap: 16px; flex-direction: column; }
}

/* Responsive Grid Utilities (Added) */
.grid-2-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-cols-gap8 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Types grid fallback if missing */
.types-grid-2 { grid-template-columns: repeat(2, 1fr); }
.types-grid-3 { grid-template-columns: repeat(3, 1fr); }
.types-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
  .grid-3-cols { grid-template-columns: repeat(2, 1fr); }
  .types-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .types-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2-cols { grid-template-columns: 1fr; }
  .grid-3-cols { grid-template-columns: 1fr; }
  .grid-4-cols { grid-template-columns: 1fr; }
  .grid-2-cols-gap8 { grid-template-columns: 1fr; }
  
  .types-grid-2 { grid-template-columns: 1fr !important; }
  .types-grid-3 { grid-template-columns: 1fr !important; }
  .types-grid-4 { grid-template-columns: 1fr !important; }
}

.color-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 600px) { .color-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-item-border {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 24px;
}
.stat-item-border.last {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 900px) {
  .stat-item-border {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
  }
  .stat-item-border.last {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* === STAINLESS HANDLES PAGE === */
.sh-hero { background: #0b1523; color: #fff; position: relative; overflow: hidden; padding: 100px 0; }
.sh-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; gap: 60px; align-items: center; position: relative; z-index: 2; }
.sh-hero-left { flex: 1; max-width: 650px; }
.sh-eyebrow { display: inline-block; padding: 6px 14px; border-radius: 100px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; margin-bottom: 24px; }
.sh-h1 { font-family: 'Geologica', sans-serif; font-size: 52px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.sh-h1 span { color: #3b82f6; }
.sh-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; max-width: 500px; }
.sh-btns { display: flex; gap: 16px; margin-bottom: 40px; }
.sh-btn-primary { background: #2563eb; color: #fff; padding: 14px 28px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: background .2s; }
.sh-btn-primary:hover { background: #1d4ed8; }
.sh-btn-ghost { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 14px 28px; border-radius: 8px; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s; }
.sh-btn-ghost:hover { background: rgba(255,255,255,0.1); }
.sh-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.sh-chip { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.8); }
.sh-chip svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; }
.sh-hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.sh-blueprint { width: 380px; height: 480px; background: rgba(13, 30, 56, 0.4); border: 1px solid #1a365d; border-radius: 20px; position: relative; padding: 20px; overflow: hidden; }
.sh-bp-tag { font-family: 'Geologica', sans-serif; font-size: 10px; color: #60a5fa; border: 1px solid #1e3a8a; display: inline-block; padding: 4px 10px; border-radius: 4px; position: absolute; top: 20px; right: 20px; z-index: 2; }
.sh-bp-label { position: absolute; bottom: 20px; right: 20px; font-family: 'Geologica', sans-serif; font-size: 10px; color: #475569; letter-spacing: 2px; }
.sh-bp-drawing { position: absolute; top: 60px; left: 40px; right: 40px; bottom: 60px; border: 1px solid #1e293b; }
.sh-door-frame { position: absolute; left: 10%; width: 20px; top: 0; bottom: 0; background: rgba(255,255,255,0.05); border-right: 1px solid #1e293b; }
.sh-door-sash { position: absolute; left: 10%; right: 0; top: 0; bottom: 0; background: rgba(59, 130, 246, 0.05); }
.sh-handle-base { position: absolute; left: calc(10% + 10px); top: 30%; bottom: 30%; width: 30px; }
.sh-handle-bar { position: absolute; left: -15px; top: 0; bottom: 0; width: 10px; background: #94a3b8; border-radius: 5px; box-shadow: -2px 0 5px rgba(0,0,0,0.5); }
.sh-handle-mount-top { position: absolute; left: -10px; top: 20px; width: 10px; height: 10px; background: #64748b; }
.sh-handle-mount-bottom { position: absolute; left: -10px; bottom: 20px; width: 10px; height: 10px; background: #64748b; }

.sh-types-section { padding: 80px 0; background: #f8fafc; }
.sh-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.sh-type-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.sh-tc-visual { height: 240px; background: #111827; position: relative; padding: 20px; display: flex; justify-content: center; align-items: center; }
.sh-tc-tag { position: absolute; top: 20px; left: 20px; background: #2563eb; color: #fff; font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.sh-draw-door { width: 140px; height: 180px; border: 2px solid #1e3a8a; position: relative; background: rgba(59, 130, 246, 0.1); }
.sh-draw-door.glass { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); }
.sh-draw-d-handle { position: absolute; left: -10px; top: 40px; width: 20px; height: 100px; border: 4px solid #94a3b8; border-right: none; border-radius: 10px 0 0 10px; }
.sh-draw-lever-handle { position: absolute; left: 10px; top: 80px; width: 8px; height: 20px; background: #64748b; border-radius: 2px; }
.sh-draw-lever-handle::after { content: ''; position: absolute; left: -20px; top: 5px; width: 25px; height: 6px; background: #94a3b8; border-radius: 3px; }
.sh-draw-glass-handle { position: absolute; left: -8px; top: 20px; bottom: 20px; width: 6px; background: #cbd5e1; }
.sh-draw-glass-handle::before, .sh-draw-glass-handle::after { content: ''; position: absolute; left: 6px; width: 8px; height: 8px; background: #94a3b8; }
.sh-draw-glass-handle::before { top: 20px; }
.sh-draw-glass-handle::after { bottom: 20px; }
.sh-tc-content { padding: 30px; flex: 1; }
.sh-tc-content h4 { font-family: 'Geologica', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 12px; color: #0f172a; }
.sh-tc-content p { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.sh-tc-list { list-style: none; padding: 0; margin: 0; }
.sh-tc-list li { position: relative; padding-left: 16px; font-size: 12px; color: #475569; margin-bottom: 8px; }
.sh-tc-list li::before { content: '•'; position: absolute; left: 0; color: #3b82f6; font-size: 14px; top: -1px; }

.sh-safety-section { padding: 100px 0; background: #fff; }
.sh-safety-layout { display: flex; gap: 60px; align-items: center; }
.sh-safety-text { flex: 1; }
.sh-alert { background: #fef3c7; border: 1px solid #fcd34d; border-radius: 12px; padding: 24px; display: flex; gap: 16px; margin-top: 30px; }
.sh-alert-icon { font-size: 24px; }
.sh-alert-content h4 { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 800; color: #92400e; margin-bottom: 8px; }
.sh-alert-content p { font-size: 13px; color: #b45309; line-height: 1.5; margin: 0; }
.sh-safety-visual { flex: 1; background: #f8fafc; border-radius: 24px; padding: 40px; position: relative; }
.sh-sd-title { font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; color: #3b82f6; letter-spacing: 1px; margin-bottom: 40px; text-transform: uppercase; }
.sh-sd-row { position: relative; margin-bottom: 50px; }
.sh-sd-door { display: flex; align-items: center; height: 30px; position: relative; }
.sh-sd-glass { width: 150px; height: 10px; background: #cbd5e1; border-radius: 2px 0 0 2px; }
.sh-sd-frame { width: 20px; height: 30px; background: #64748b; border-radius: 2px; }
.sh-sd-handle { position: absolute; height: 8px; background: #94a3b8; border-radius: 4px; display: flex; align-items: center; }
.sh-sd-handle.danger { left: 130px; width: 40px; }
.sh-sd-handle.safe { left: 130px; width: 60px; }
.sh-sd-hand { position: absolute; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.sh-sd-hand.red { background: #fee2e2; color: #dc2626; right: -50px; top: -10px; }
.sh-sd-hand.green { background: #dcfce3; color: #16a34a; right: -80px; top: -10px; }
.sh-sd-label { font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; margin-top: 15px; padding-left: 130px; }
.sh-sd-label.red { color: #dc2626; }
.sh-sd-label.green { color: #16a34a; }
.sh-sd-bottom { font-family: 'Geologica', sans-serif; font-size: 10px; color: #94a3b8; text-align: center; margin-top: 20px; }

.sh-adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.sh-adv-card { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.sh-adv-icon { width: 48px; height: 48px; background: #eff6ff; color: #3b82f6; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sh-adv-card h4 { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 12px; color: #0f172a; }
.sh-adv-card p { font-size: 13px; color: #64748b; line-height: 1.6; }

.sh-finishes-section { background: #0b1523; padding: 80px 0; }
.sh-fin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.sh-fin-card { background: #1e293b; padding: 30px 24px; border-radius: 16px; position: relative; border: 1px solid rgba(255,255,255,0.05); }
.sh-fin-color { width: 40px; height: 40px; border-radius: 8px; margin-bottom: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.sh-fin-card h4 { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sh-fin-card p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 20px; }
.sh-fin-tag { display: inline-block; background: rgba(59, 130, 246, 0.2); color: #60a5fa; font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }

@media (max-width: 992px) {
  .sh-hero-inner, .sh-safety-layout { flex-direction: column; }
  .sh-hero-visual { display: none; }
  .sh-types-grid, .sh-adv-grid { grid-template-columns: 1fr 1fr; }
  .sh-fin-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sh-types-grid, .sh-adv-grid, .sh-fin-grid { grid-template-columns: 1fr; }
}

/* === SH AREAS === */
.sh-areas-section { padding: 80px 0; background: #fff; }
.sh-areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.sh-area-card { display: flex; gap: 20px; background: #f8fafc; border: 1px solid #f1f5f9; padding: 30px; border-radius: 16px; }
.sh-area-icon { width: 48px; height: 48px; flex-shrink: 0; background: #eff6ff; color: #3b82f6; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.sh-area-text h4 { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.sh-area-text p { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* === SH STEPS === */
.sh-steps-wrapper { position: relative; margin-top: 60px; }
.sh-steps-line { position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: #3b82f6; z-index: 1; }
.sh-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
.sh-step { display: flex; flex-direction: column; align-items: center; }
.sh-step-num { width: 56px; height: 56px; background: #2563eb; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 800; box-shadow: 0 0 0 8px #f8fafc; margin-bottom: 30px; position: relative; }
.sh-step-card { background: #fff; padding: 30px 20px; border-radius: 16px; border: 1px solid #e2e8f0; text-align: center; height: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.02); display: flex; flex-direction: column; align-items: center; width: 100%; }
.sh-step-card h4 { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.sh-step-card p { font-size: 12px; color: #94a3b8; line-height: 1.5; margin-bottom: 20px; flex: 1; }
.sh-step-tag { display: inline-block; background: #eff6ff; color: #2563eb; font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 800; padding: 6px 12px; border-radius: 6px; letter-spacing: 0.5px; }

/* === SH CTA === */
.sh-cta-section { padding: 60px 0; background: #fff; }
.sh-cta-wrapper { background: #0f172a; border-radius: 24px; display: flex; overflow: hidden; }
.sh-cta-left { flex: 1; padding: 80px 60px; color: #fff; }
.sh-cta-left h2 { font-family: 'Geologica', sans-serif; font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.sh-cta-left p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; max-width: 480px; }
.sh-cta-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-cta-tag { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 10px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.sh-cta-tag i { width: 14px; height: 14px; }
.sh-cta-right { width: 450px; padding: 40px; display: flex; align-items: center; justify-content: center; }
.sh-form-card { background: #fff; border-radius: 16px; padding: 30px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.sh-form-card h3 { font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.sh-fc-sub { font-size: 13px; color: #64748b; margin-bottom: 24px; }
.sh-form-card .modal-field { margin-bottom: 16px; position: relative; }
.sh-form-card .modal-field label { font-size: 11px; }
.sh-form-card input { background: #fff; border: 1px solid #e2e8f0; }

@media (max-width: 992px) {
  .sh-areas-grid { grid-template-columns: 1fr; }
  .sh-steps-line { display: none; }
  .sh-steps-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sh-cta-wrapper { flex-direction: column; }
  .sh-cta-right { width: 100%; padding: 0 20px 40px; }
  .sh-form-card { margin-top: -20px; }
  .faq-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .sh-steps-grid { grid-template-columns: 1fr; }
  .sh-cta-left { padding: 40px 20px 60px; }
}
