/* ═══════════════════════════════════════════════
   RetuFix — Dark B&W Premium
   Fonts: Sora (display), Inter (body)
   ═══════════════════════════════════════════════ */

:root {
  --bg:             #0a0a0a;
  --bg-elevated:    #111113;
  --bg-card:        #131315;
  --bg-card-hover:  #1a1a1d;
  --border:         #1e1e21;
  --border-light:   #2a2a2e;

  --text:           #ffffff;
  --text-secondary: #999999;
  --text-muted:     #666666;
  --text-faint:     #444444;

  --accent:         #ffffff;
  --accent-dim:     rgba(255,255,255,0.08);
  --accent-border:  rgba(255,255,255,0.12);

  --font-display:   -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body:      -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;

  --header-h:       72px;
  --section-py:     120px;
  --container:      1600px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION COMMON ─── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}
.btn--outline {
  border: 1px solid #fff;
  color: #0a0a0a;
  background: #fff;
}
.btn--outline:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
  transform: translateY(-1px);
}
.btn--full { width: 100%; justify-content: center; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.btn-link:hover { color: var(--text); }
.btn-link svg { transition: transform 0.25s; }
.btn-link:hover svg { transform: translateX(3px); }


/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background 0.35s;
}
.header.is-scrolled {
  background: var(--bg);
}
.header__inner {
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.header__logo-img {
  height: 26px;
  width: auto;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
}
.header__menu {
  display: flex;
  gap: 4px;
}
.header__item { position: relative; }
.header__link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: color 0.25s, gap 0.3s ease;
  border-radius: var(--radius-sm);
}
.header__link::before {
  content: '';
  display: block;
  width: 0;
  height: 16px;
  background: url('/assets/images/logo/r-logo.png') no-repeat center / contain;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.header__link:hover::before,
.header__item--dropdown:hover .header__link::before {
  width: 16px;
  opacity: 1;
}
.header__link:hover,
.header__item--dropdown:hover .header__link {
  gap: 8px;
}
.header__link:hover,
.header__item.is-active .header__link {
  color: var(--text);
}

/* Dropdown toggle */
.header__item--dropdown { display: flex; align-items: center; }
.header__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: -4px;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s, transform 0.25s;
}
.header__item--dropdown:hover .header__dropdown-toggle { color: #fff; }
.header__dropdown-toggle[aria-expanded="true"] { transform: rotate(180deg); }

/* Mega menu */
.header__mega {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  gap: 0;
  min-width: 630px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.header__item--dropdown:hover .header__mega,
.header__dropdown-toggle[aria-expanded="true"] ~ .header__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__mega-list {
  flex: 1;
  padding: 12px 0;
}
.header__mega-list li + li {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.header__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.2s;
}
.header__dropdown-link:hover {
  background: rgba(0,0,0,0.3);
  color: #fff;
}
.header__mega-cta {
  width: 250px;
  padding: 24px;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__mega-icon {
  height: 18px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  opacity: 1;
}
.header__mega-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.header__mega-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}
.header__mega-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: #fff;
  padding: 10px 20px;
  transition: background 0.2s, gap 0.3s ease;
}
.header__mega-btn:hover {
  background: #e0e0e0;
  gap: 10px;
}

/* Header CTA */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.25s, gap 0.3s ease;
}
.header__cta:hover {
  color: var(--text);
  gap: 10px;
}

/* Hero bg logo */
.hero__bg-logo {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 45%;
  max-width: 500px;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  z-index: 10;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.25) 25%,
      rgba(0,0,0,0.30) 50%,
      rgba(0,0,0,0.60) 100%
    ),
    radial-gradient(
      ellipse at 0% 100%,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.50) 35%,
      rgba(0,0,0,0.20) 55%,
      transparent 75%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.40) 30%,
      rgba(0,0,0,0.15) 50%,
      transparent 70%
    );
}
.hero__bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mask-image: linear-gradient(to bottom, white 60%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, white 60%, transparent 90%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 120px;
}
.hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.hero__left {
  flex: 1;
}
.hero__right {
  flex: 0 0 auto;
  max-width: 420px;
  text-align: right;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.hero__lead {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.hero__services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: gap 0.3s ease;
}
.hero__services-link:hover {
  gap: 12px;
}
.hero__services-icon {
  height: 18px;
  width: auto;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border-light);
}

/* Section divider */
.section-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.stats__number--text {
  font-size: clamp(32px, 4vw, 48px);
}
.stats__label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
}
.about__inner {
  display: flex;
  align-items: flex-start;
}
.about__left {
  flex: 0 0 auto;
  margin-right: 550px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}
.about__image {
  width: 300px;
  height: 200px;
  margin-top: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.about__right {
  flex: 1;
}
.about__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.about__pill::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url('/assets/images/logo/r-logo.png') no-repeat center / contain;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 41px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #fff;
}
.about__title-accent {
  color: rgba(255,255,255,0.4);
}
.about__desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 800px;
  margin-bottom: 56px;
}
.about__stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}
.about__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.about__stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.about__stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
}


/* ════════════════════════════════════════════════
   SERVICES + MAP
   ════════════════════════════════════════════════ */
.services-map {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.services-map__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.services-map__left {
  flex: 1;
}
.services-map__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 41px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.services-map__desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 56px;
  max-width: 420px;
}
.services-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.services-map__card {
  position: relative;
  background: var(--bg);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s;
}
.services-map__card:hover {
  background: var(--bg);
}
.services-map__card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.services-map__card-desc {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
}
.services-map__card-arrow {
  position: absolute;
  top: 32px;
  right: 0;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s;
}
.services-map__card:hover .services-map__card-arrow {
  color: #fff;
}

.services-map__all {
  margin-top: 40px;
}

/* Side photo */
.services-map__right {
  flex: 0 0 690px;
  position: relative;
}
.services-map__photo {
  width: 100%;
  height: 920px;
  object-fit: cover;
  border-radius: 15px;
}
.services-map__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 260px;
}
.services-map__badge-logo {
  width: 62px;
  height: auto;
  margin-bottom: 12px;
}
.services-map__badge-desc {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}


/* ════════════════════════════════════════════════
   SERVICES (old)
   ════════════════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-elevated);
}
.services__header {
  margin-bottom: 64px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.service-card__number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 24px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
}
.service-card:hover .service-card__link { color: var(--text); }
.service-card__link svg {
  transition: transform 0.25s;
}
.service-card:hover .service-card__link svg { transform: translateX(3px); }


/* ════════════════════════════════════════════════
   PHOTO BREAK
   ════════════════════════════════════════════════ */
.photo-break {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.photo-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scaleX(-1);
}
.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.photo-break__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  z-index: 1;
}
.photo-break__box {
  background: #fff;
  color: #0a0a0a;
  padding: 48px 56px;
  position: relative;
}
.photo-break__box .btn--primary {
  background: #0a0a0a;
  color: #fff;
}
.photo-break__box .btn--primary:hover {
  background: #222;
}
.photo-break__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.photo-break__phone {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.photo-break__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}


/* ════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════ */
.cta-band {
  padding: var(--section-py) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band__inner {
  max-width: 640px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-band__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__details { margin-top: 32px; }
.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact__detail:first-child { border-top: 1px solid var(--border); }
.contact__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}
.contact__detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__detail a,
.contact__detail span {
  font-size: 14px;
  color: var(--text-secondary);
  display: block;
}
.contact__detail a:hover { color: var(--text); }

.contact__region {
  margin-top: 32px;
}
.contact__region strong {
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}
.contact__region p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact__cities {
  margin-top: 8px;
  font-size: 12px !important;
  color: var(--text-muted) !important;
}

/* Form — minimalist, hairline fields */
.contact__form-wrapper {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 8px;
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}
.form-group textarea { resize: vertical; min-height: 96px; line-height: 1.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact__form-wrapper .btn--full { margin-top: 8px; }

.contact__form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.contact__form-note a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 2px; }
.contact__form-note a:hover { color: #fff; }

/* Contact page extras */
.contact__form-side .page-section__title,
.contact__info-side .page-section__title { margin-bottom: 0; }
.contact__form-side .page-section__desc,
.contact__info-side .page-section__desc { margin-bottom: 32px; }
.contact__form-side .contact__form-wrapper { margin-top: 0; }

.contact__alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid;
}
.contact__alert--ok {
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.3);
  color: #86efac;
}
.contact__alert--err {
  background: rgba(248,113,113,0.08);
  border-color: rgba(248,113,113,0.3);
  color: #fca5a5;
}
.contact__alert a { color: inherit; text-decoration: underline; }

.contact__socials-row {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.contact__socials-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.contact__socials-row a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════════
   FOOTER — centered manifesto
   ════════════════════════════════════════════════ */
.ft {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.ft::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/stock/low-angle-shot-high-buildings-with-modern-architecture-patterns.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.ft::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0a0a0a 0%,
    #0a0a0a 25%,
    rgba(10,10,10,0.97) 50%,
    rgba(10,10,10,0.93) 80%,
    rgba(10,10,10,0.98) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.ft__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding-top: var(--section-py);
  padding-bottom: 64px;
}

.ft__logo-link {
  display: inline-block;
}
.ft__logo {
  height: 32px;
  width: auto;
  opacity: 0.95;
}

.ft__tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
}

.ft__phone {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-top: 16px;
  transition: opacity 0.25s;
}
.ft__phone:hover {
  opacity: 0.7;
}

.ft__inline-info {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
}
.ft__inline-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.ft__inline-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}
a.ft__inline-item:hover,
a.ft__inline-item:hover svg { color: #fff; }
.ft__sep {
  color: rgba(255,255,255,0.25);
}

.ft__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 8px;
}
.ft__nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.005em;
  transition: color 0.25s;
}
.ft__nav a:hover { color: #fff; }

.ft__socials {
  display: flex;
  gap: 8px;
}
.ft__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.ft__socials a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Bottom bar */
.ft__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.ft__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ft__bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ft__copy,
.ft__privacy {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.ft__privacy {
  transition: color 0.25s;
}
.ft__privacy:hover { color: #fff; }

/* Made by Klikamy.net badge */
.ft__made {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ft__made:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
  transform: scale(1.04);
}
.ft__made-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}
.ft__made-logo {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 3px;
  flex-shrink: 0;
}
.ft__made-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.ft__made:hover .ft__made-name { color: #fff; }


/* ════════════════════════════════════════════════
   DEVELOPER B2B — editorial layout
   ════════════════════════════════════════════════ */
.developer {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Head: title + offset side block ── */
.developer__head {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 48px;
}
.developer__title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.developer__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.developer__title-cta {
  align-self: flex-start;
}
.developer__head-side {
  padding-top: 8px;
}
.developer__lead {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.developer__inline-list {
  display: flex;
  flex-direction: column;
}
.developer__inline-list li {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  padding-left: 22px;
}
.developer__inline-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.developer__inline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ── Horizontal photo banner ── */
.developer__banner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 56px;
}
.developer__banner img,
.developer__banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.developer__banner-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
  border-radius: 6px;
}

/* ── Principles horizontal strip ── */
.developer__principles {
  margin-bottom: 56px;
}
.developer__principles-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}
.developer__principles-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.developer__principles-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}
.developer__principles-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.developer__principle {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.developer__principle:first-child {
  padding-left: 0;
}
.developer__principle:nth-child(5n) {
  border-right: none;
  padding-right: 0;
}
.developer__principle-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}
.developer__principle-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.developer__principle-desc {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

/* ── Inline CTA bar ── */
.developer__ctabar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
.developer__ctabar-text {
  flex: 1;
  max-width: 720px;
}
.developer__ctabar-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.developer__ctabar-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.developer__ctabar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.developer__ctabar-phone {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.developer__ctabar-phone:hover {
  color: #fff;
}


/* ════════════════════════════════════════════════
   CHOOSE — 3 expandable tiles
   ════════════════════════════════════════════════ */
.choose {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Header: title left, desc right */
.choose__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-end;
  margin-bottom: 56px;
}
.choose__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.choose__desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  justify-self: end;
}

/* Tile row */
.choose__row {
  display: flex;
  gap: 14px;
  height: 420px;
}

.choose__tile {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

/* Photo side */
.choose__tile-photo {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
.choose__tile-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  transition: opacity 0.5s;
}
.choose__tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Box side (right) */
.choose__tile-box {
  flex: 0 0 0;
  overflow: hidden;
  background: var(--bg-elevated);
  transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.choose__tile-box-inner {
  width: 360px;
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.45s 0.15s;
}
.choose__tile-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
}
.choose__tile-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.choose__tile-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.choose__tile-desc {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* ── Active state: first child by default, hovered tile when interacting ── */
.choose__row:not(:has(> .choose__tile:hover)) > .choose__tile:first-child,
.choose__row > .choose__tile:hover {
  flex: 2.6;
}
.choose__row:not(:has(> .choose__tile:hover)) > .choose__tile:first-child .choose__tile-box,
.choose__row > .choose__tile:hover .choose__tile-box {
  flex: 0 0 360px;
}
.choose__row:not(:has(> .choose__tile:hover)) > .choose__tile:first-child .choose__tile-box-inner,
.choose__row > .choose__tile:hover .choose__tile-box-inner {
  opacity: 1;
}
.choose__row:not(:has(> .choose__tile:hover)) > .choose__tile:first-child .choose__tile-photo img,
.choose__row > .choose__tile:hover .choose__tile-photo img {
  transform: scale(1.02);
}


/* ════════════════════════════════════════════════
   LEAD POPUP
   ════════════════════════════════════════════════ */
.lead-pop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  will-change: opacity;
}
.lead-pop.is-open { opacity: 1; visibility: visible; }
.lead-pop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translateZ(0);
}
.lead-pop__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  width: 100%;
  max-width: 760px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  transform: translate3d(0, 18px, 0);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1), opacity 0.32s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.lead-pop.is-open .lead-pop__dialog {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lead-pop__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.75);
  transition: color 0.25s, background 0.25s, transform 0.25s;
}
.lead-pop__close:hover { color: #fff; background: rgba(0,0,0,0.7); transform: rotate(90deg); }
.lead-pop__media { position: relative; overflow: hidden; }
.lead-pop__media img { width: 100%; height: 100%; object-fit: cover; }
.lead-pop__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.1), var(--bg-elevated) 96%);
}
.lead-pop__body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
}
.lead-pop__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.lead-pop__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}
.lead-pop__text {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.lead-pop__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  transition: opacity 0.25s;
}
.lead-pop__phone svg { color: rgba(255,255,255,0.5); }
.lead-pop__phone:hover { opacity: 0.75; }
.lead-pop__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
}
.lead-pop__mail {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.lead-pop__mail:hover { color: #fff; }

@media (max-width: 768px) {
  .lead-pop { padding: 16px; }
  .lead-pop__dialog { grid-template-columns: 1fr; max-width: 420px; }
  .lead-pop__media { height: 140px; }
  .lead-pop__media::after { background: linear-gradient(to bottom, rgba(0,0,0,0.1), var(--bg-elevated) 96%); }
  .lead-pop__body { padding: 28px 24px 26px; }
  .lead-pop__actions { gap: 14px; }
  .lead-pop__actions .btn { width: 100%; justify-content: center; }
  .lead-pop__mail { width: 100%; text-align: center; }
}


/* ════════════════════════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════
   PAGE (subpages) — shared
   ════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 96px);
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.85) 60%, var(--bg) 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.page-hero__crumbs a { transition: color 0.25s; }
.page-hero__crumbs a:hover { color: #fff; }
.page-hero__crumbs span { color: rgba(255,255,255,0.25); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 14ch;
}
.page-hero__lead {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-top: 24px;
}

.page-section { padding: var(--section-py) 0; }
.page-section + .page-section { border-top: 1px solid rgba(255,255,255,0.06); }
.page-section__head { max-width: 720px; margin-bottom: 56px; }
.page-section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.page-section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
}
.page-section__desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
}

/* Prose (privacy / text pages) */
.prose { max-width: 760px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.prose ul { padding-left: 20px; list-style: disc; }
.prose a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.page-hero--slim {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 48px;
}

/* Usługi index grid — 2 columns of cards */
.uslugi__grid {
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.uslugi__grid .services-map__card { padding: 36px 32px; }
.uslugi__grid .services-map__card-arrow { top: 36px; right: 32px; }

/* Service detail */
.service__intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.service__intro-lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 8px 0 32px;
}
.service__fixes {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 15px;
  padding: 32px;
}
.service__fixes-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.service__fixes-list { display: flex; flex-direction: column; gap: 14px; }
.service__fixes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.service__fixes-list svg { flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.5); }

.service__steps { grid-template-columns: repeat(4, 1fr); }
.service__steps .developer__principle:nth-child(4n) { border-right: none; padding-right: 0; }
.service__steps .developer__principle:first-child { padding-left: 0; }

/* Empty state (realizacje / blog placeholders) */
.empty-state {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.empty-state__inner {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.empty-state__inner svg { color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.empty-state__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}
.empty-state__desc {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

/* 404 */
.error404__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px;
}
.error404__code {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
}
.error404__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 16px 0 12px;
}
.error404__desc {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 32px;
}
.error404__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── BLOG listing ── */
.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 56px;
  background: var(--bg-elevated);
  transition: border-color 0.3s;
}
.blog-feature:hover { border-color: rgba(255,255,255,0.2); }
.blog-feature__media { overflow: hidden; min-height: 320px; }
.blog-feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.blog-feature:hover .blog-feature__media img { transform: scale(1.04); }
.blog-feature__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.blog-feature__tag,
.blog-card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.blog-feature__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
}
.blog-feature__excerpt {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.blog-feature__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.blog-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
  transition: gap 0.25s;
}
.blog-feature:hover .blog-feature__link { gap: 14px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elevated);
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.blog-card__media { height: 200px; overflow: hidden; }
.blog-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
}
.blog-card__excerpt {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  flex: 1;
}
.blog-card__meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── ARTICLE ── */
.page-hero--article { padding-bottom: 56px; }
.article__title { max-width: 22ch; }
.article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.article__meta-dot { color: rgba(255,255,255,0.25); }

.article__layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 64px;
  align-items: start;
}
.article__body { max-width: none; }
.article__body p,
.article__body li {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
}
.article__body h2 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: #fff;
  margin: 44px 0 16px;
  letter-spacing: -0.02em;
}
.article__body ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.article__body strong { color: rgba(255,255,255,0.92); font-weight: 600; }

.article__cta {
  margin-top: 56px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  background: var(--bg-elevated);
}
.article__cta h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.article__cta p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.article__cta-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
/* Reset prose <a> styling for buttons/links inside the CTA card */
.prose a.btn { text-decoration: none; }
.prose a.btn--primary { color: var(--bg); }
.prose a.btn--primary:hover { color: var(--bg); }
.prose a.btn--outline { color: #0a0a0a; }
.article__cta-phone {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.article__cta-phone:hover { color: rgba(255,255,255,0.7); }

.article__aside { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 16px; }
.article__aside-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__aside-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.article__aside-phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}
.article__aside-btn { align-self: flex-start; margin-top: 4px; }
.article__toc {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__toc-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.article__toc a {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.article__toc a:hover { color: #fff; }

/* Realizacje stats */
.rstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rstat {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.rstat:last-child { border-right: none; }
.rstat:not(:first-child) { padding-left: 32px; }
.rstat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.rstat__label {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Audience cards */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 15px;
  overflow: hidden;
}
.audience__card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.35s;
}
.audience__card:hover { background: var(--bg-elevated); }
.audience__num {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.audience__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.audience__desc {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* Image band — full-width photo with quote */
.img-band {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.img-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.img-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%);
}
.img-band__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.img-band__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 800px;
}
.img-band__sign {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

/* Geo / area */
.geo__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 24px;
}
.geo__intro .page-section__eyebrow { margin-bottom: 18px; }
.geo__intro .btn { margin-top: 32px; }
.geo__photo {
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
}
.geo__photo img { width: 100%; height: 100%; object-fit: cover; }
.geo__regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.geo__region {
  background: var(--bg);
  padding: 32px 32px 32px 0;
}
.geo__region:not(:first-child) { padding-left: 32px; }
.geo__region-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.geo__region-cities {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* FAQ split layout */
.faq__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq__intro { position: sticky; top: calc(var(--header-h) + 32px); }
.faq__intro .page-section__eyebrow { margin-bottom: 18px; }
.faq__intro .page-section__desc { margin-bottom: 32px; }
.faq__card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.faq__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.faq__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__card-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.faq__card-phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  transition: opacity 0.25s;
}
.faq__card-phone:hover { opacity: 0.7; }
.faq__card-btn { align-self: flex-start; margin-top: 4px; }

/* FAQ accordion */
.faq { max-width: none; }
.faq__item {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: rgba(255,255,255,0.75); }
.faq__icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.25s;
}
.faq__item[open] .faq__icon { transform: rotate(135deg); color: #fff; }
.faq__a {
  padding: 0 40px 28px 0;
  animation: faqReveal 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq__a p {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* Tablet */
/* ════════════════════════════════════════════════
   TABLET — max 1024px
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  /* About */
  .about__inner { flex-direction: column; gap: 32px; }
  .about__stats { gap: 40px; }

  /* Services + image */
  .services-map__inner { flex-direction: column; gap: 40px; }
  .services-map__right { flex: none; width: 100%; }
  .services-map__photo { height: 500px; }

  /* Photo break */
  .photo-break { height: 60vh; }

  /* Developer */
  .developer__head { grid-template-columns: 1fr; gap: 40px; }
  .developer__principles-row { grid-template-columns: repeat(2, 1fr); }
  .developer__principle { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .developer__principle:nth-child(5n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .developer__principle:nth-child(2n) { border-right: none; padding-right: 0; }
  .developer__principle:first-child { padding-left: 24px; }
  .developer__ctabar { flex-direction: column; align-items: flex-start; gap: 32px; }
  .developer__banner { height: 280px; }

  /* Choose — stack vertically and show all content */
  .choose__head { grid-template-columns: 1fr; gap: 24px; }
  .choose__desc { justify-self: start; max-width: none; }
  .choose__row { flex-direction: column; height: auto; gap: 14px; }
  .choose__tile { height: 360px; }
  .choose__tile-box-inner { width: 320px; padding: 28px; }
  .choose__row > .choose__tile { flex: none !important; }
  .choose__row > .choose__tile .choose__tile-box { flex: 0 0 320px !important; }
  .choose__row > .choose__tile .choose__tile-box-inner { opacity: 1 !important; }

  /* Footer */
  .ft__top { padding-bottom: 56px; gap: 24px; }
  .ft__bottom-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ft__bottom-right { width: 100%; justify-content: space-between; }

  /* Subpages tablet */
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .service__intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .uslugi__grid { grid-template-columns: 1fr; }
  .service__steps { grid-template-columns: repeat(2, 1fr); }
  .service__steps .developer__principle:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.06); padding-right: 24px; }
  .service__steps .developer__principle:nth-child(2n) { border-right: none; padding-right: 0; }
  .service__steps .developer__principle:nth-child(n+3) { border-bottom: none; }
  .geo__top { grid-template-columns: 1fr; gap: 40px; }
  .geo__photo { height: 320px; order: -1; }
  .geo__regions { grid-template-columns: 1fr; }
  .geo__region { padding: 24px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
  .faq__card { display: flex; }
  .faq__card-img { width: 40%; height: auto; }
  .faq__card-body { flex: 1; }
  .img-band { height: 340px; }
  .rstats { grid-template-columns: repeat(2, 1fr); }
  .rstat:nth-child(2n) { border-right: none; }
  .rstat { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .rstat:nth-child(n+3) { border-bottom: none; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature__media { min-height: 240px; }
  .blog-feature__body { padding: 36px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article__layout { grid-template-columns: 1fr; gap: 48px; }
  .article__aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .article__aside-card, .article__toc { flex: 1; min-width: 240px; }
}


/* ════════════════════════════════════════════════
   MOBILE — max 768px
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --section-py: 56px;
  }
  .container { padding: 0 16px; }

  /* ── Mobile header ── */
  .header__inner {
    padding: 0 16px;
  }

  /* Hide mega menu (services dropdown) on mobile — Usługi just becomes a link */
  .header__dropdown-toggle,
  .header__mega { display: none !important; }
  .header__item--dropdown:hover .header__mega { display: none !important; }

  /* Hero — dark on top (nav) + bottom (text), middle reveals photo */
  .hero__bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 12%,
      rgba(0,0,0,0.15) 28%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.85) 65%,
      rgba(0,0,0,0.95) 100%
    );
  }
  /* Extra legibility on text */
  .hero__title { text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
  .hero__lead { text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

  /* ── Mobile nav ── */
  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 5;
  }
  .header__nav.is-open { opacity: 1; visibility: visible; }
  .header__menu { flex-direction: column; align-items: center; gap: 8px; }
  .header__link { font-size: 18px; padding: 12px 24px; }
  .header__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 4px 0 4px 16px; display: none;
  }
  .header__dropdown-toggle[aria-expanded="true"] + .header__dropdown { display: block; }
  .header__dropdown-link { font-size: 14px; text-align: center; }
  .header__burger { display: flex; }
  .header__cta { display: none; }

  /* ── Hero ── */
  .hero { min-height: 80vh; min-height: 80dvh; }
  .hero__inner { padding-top: calc(var(--header-h) + 40px); padding-bottom: 32px; }
  .hero__content { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__right { max-width: 100%; text-align: left; }
  .hero__title { font-size: clamp(34px, 9vw, 52px); }
  .hero__lead { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.9); max-width: 100%; margin-bottom: 24px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; justify-content: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__services-link {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
  }
  .hero__scroll { display: none; }

  /* ── About ── */
  .about__inner { gap: 22px; }
  .about__left {
    margin-right: 0;
    padding-top: 0;
    align-self: stretch;
    width: 100%;
  }
  .about__image { display: none; }
  .about__pill { font-size: 13px; }
  .about__title { font-size: clamp(24px, 7vw, 36px); margin-bottom: 16px; }
  .about__desc { font-size: 15px; }
  .about__stats { flex-wrap: nowrap; gap: 16px; margin-top: 28px; }
  .about__stat { flex-direction: column; align-items: flex-start; gap: 4px; flex: 1; min-width: 0; }
  .about__stat-num { font-size: 22px; }
  .about__stat-label { font-size: 11px; line-height: 1.3; }
  .about__stat-divider { display: none; }

  /* ── Services + Image ── */
  .services-map__title { font-size: clamp(24px, 7vw, 32px); }
  .services-map__desc { font-size: 15px; max-width: 100%; margin-bottom: 32px; }
  .services-map__card { padding: 24px 0; }
  .services-map__card-title { font-size: 20px; }
  .services-map__card-desc { font-size: 14px; }
  .services-map__card-arrow { top: 24px; }
  .services-map__photo { height: 510px; border-radius: 12px; }
  .services-map__badge { display: none; }

  /* ── Photo break ── */
  .photo-break { height: 70vh; min-height: 480px; padding: 0; }
  .photo-break__img { object-position: center 35%; }
  .photo-break__content {
    padding: 0 16px;
    align-items: center;
    text-align: left;
  }
  .photo-break__box {
    width: auto;
    max-width: 100%;
    padding: 28px 28px;
  }
  .photo-break__title { font-size: clamp(24px, 8vw, 38px); margin-bottom: 24px; line-height: 1.1; }
  .photo-break__actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
  .photo-break__box .btn { width: auto; }
  .photo-break__phone { text-align: left; padding-top: 0; }

  /* ── Developer ── */
  .developer__inner { padding-left: 16px; padding-right: 16px; }
  .developer__title { font-size: clamp(28px, 8vw, 42px); }
  .developer__title-cta { width: 100%; justify-content: center; }
  .developer__lead { font-size: 15px; }
  .developer__inline-list li { font-size: 13px; padding: 10px 0 10px 18px; }
  .developer__head { margin-bottom: 40px; }
  .developer__banner { height: 200px; margin-bottom: 48px; border-radius: 12px; }
  .developer__principles { margin-bottom: 40px; }
  .developer__principles-row { grid-template-columns: 1fr; }
  .developer__principle { border-right: none !important; padding: 24px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .developer__principle:last-child { border-bottom: none; }
  .developer__ctabar { flex-direction: column; align-items: flex-start; gap: 24px; }
  .developer__ctabar-title { font-size: clamp(22px, 7vw, 30px); }
  .developer__ctabar-actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .developer__ctabar-actions .btn { width: 100%; justify-content: center; }
  .developer__ctabar-phone { display: none; }

  /* ── Choose ── */
  .choose { padding-bottom: calc(var(--section-py) + 40px); }
  .choose__title { font-size: clamp(28px, 8vw, 42px); }
  .choose__desc { font-size: 15px; }
  .choose__tile { flex-direction: column; height: auto !important; min-height: 0 !important; }
  .choose__tile-photo { height: 180px; flex: none; width: 100%; }
  .choose__row > .choose__tile .choose__tile-box {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
  }
  .choose__row > .choose__tile .choose__tile-box-inner {
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 10px;
    justify-content: flex-start;
  }
  .choose__tile-title { font-size: 20px; }
  .choose__tile-desc { font-size: 14px; }

  /* ── Subpages mobile ── */
  .page-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 48px; }
  .page-hero--slim { padding-top: calc(var(--header-h) + 48px); padding-bottom: 32px; }
  .page-hero__title { font-size: clamp(28px, 9vw, 42px); max-width: 100%; }
  .page-hero__lead { font-size: 15px; }
  .page-section__title { font-size: clamp(24px, 7vw, 34px); }
  .page-section__desc { font-size: 15px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrapper { padding: 24px; }
  .service__intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .service__fixes { padding: 24px; }
  .uslugi__grid .services-map__card { padding: 24px 0; }
  .uslugi__grid .services-map__card-arrow { top: 24px; right: 0; }
  .service__steps { grid-template-columns: 1fr; }
  .service__steps .developer__principle { border-right: none !important; padding: 24px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .service__steps .developer__principle:last-child { border-bottom: none; }
  .error404__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .error404__actions .btn { width: 100%; justify-content: center; }
  .prose h2 { font-size: 19px; }
  .audience__grid { grid-template-columns: 1fr; }
  .audience__card { padding: 28px 24px; }
  .geo__top { grid-template-columns: 1fr; gap: 28px; }
  .geo__photo { height: 240px; order: -1; }
  .geo__intro .btn { width: 100%; justify-content: center; }
  .geo__region-name { font-size: 19px; }
  .img-band { height: 280px; }
  .img-band__quote { font-size: clamp(18px, 6vw, 26px); }
  .faq__card { flex-direction: column; }
  .faq__card-img { width: 100%; height: 160px; }
  .faq__card-phone { font-size: 24px; }
  .faq__card-btn { width: 100%; justify-content: center; }
  .faq__q { font-size: 16px; padding: 22px 0; gap: 16px; }

  /* Blog + article mobile */
  .rstats { grid-template-columns: 1fr; }
  .rstat { border-right: none !important; padding: 28px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .rstat:last-child { border-bottom: none; }
  .blog-feature__body { padding: 28px 24px; }
  .blog-feature__media { min-height: 200px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card__media { height: 200px; }
  .article__layout { gap: 40px; }
  .article__aside { flex-direction: column; }
  .article__aside-card, .article__toc { min-width: 0; }
  .article__body p, .article__body li { font-size: 15px; }
  .article__cta { padding: 24px; }
  .article__cta-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .article__cta-actions .btn { width: 100%; justify-content: center; }
  .article__cta-phone { text-align: center; }
  .article__meta { flex-wrap: wrap; gap: 8px; }
  .faq__a { padding-right: 0; }

  /* ── Footer ── */
  .ft__top { padding-top: calc(var(--section-py) + 24px); padding-bottom: 32px; gap: 18px; }
  .ft__logo { height: 28px; }
  .ft__tagline { font-size: 13px; max-width: 100%; }
  .ft__phone { font-size: clamp(28px, 9vw, 44px); }
  .ft__inline-info { font-size: 13px; gap: 6px; }
  .ft__nav { gap: 14px; row-gap: 8px; }
  .ft__nav a { font-size: 13px; }
  .ft__bottom { padding: 18px 0; }
  .ft__bottom-inner {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }
  .ft__bottom-right {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    margin: 0;
  }
  .ft__copy { font-size: 12px; text-align: center; width: 100%; }
  .ft__privacy { font-size: 12px; text-align: center; align-self: center; }
  .ft__made { align-self: center; margin: 0; }
}


/* ════════════════════════════════════════════════
   SMALL MOBILE — max 480px
   ════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(30px, 9vw, 40px); }
  .hero__cta .btn { font-size: 13px; padding: 12px 18px; }

  .about__stats { gap: 20px 24px; }
  .about__stat-num { font-size: 26px; }

  .services-map__card-title { font-size: 18px; }
  .services-map__photo { height: 300px; }
  .services-map__badge { padding: 14px 16px; max-width: 200px; }

  .photo-break { padding: 60px 0; }
  .photo-break__title { font-size: clamp(22px, 9vw, 32px); }

  .developer__title { font-size: clamp(26px, 9vw, 36px); }
  .developer__banner { height: 160px; }

  .choose__tile-photo { height: 180px; }
  .choose__tile-box-inner { padding: 20px; }

  .ft__phone { font-size: clamp(26px, 10vw, 36px); }
  .ft__bottom-right { flex-direction: column; align-items: flex-start; gap: 10px; }
}
