@font-face {
  font-family: 'GothamPro';
  src: url('/assets/fonts/GothamPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'GothamPro';
  src: url('/assets/fonts/GothamPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'GothamPro';
  src: url('/assets/fonts/GothamPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'eUkraineHead';
  src: url('/assets/fonts/e-UkraineHead-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'eUkraineHead';
  src: url('/assets/fonts/e-UkraineHead-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'eUkraineHead';
  src: url('/assets/fonts/e-UkraineHead-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'eUkraineHead';
  src: url('/assets/fonts/e-UkraineHead-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #1a1a1a;
  --dark-card: #252525;
  --dark-navy: #1c1c35;
  --purple-start: #6b2090;
  --purple-end: #cc72dd;
  --teal-start: #0e6040;
  --teal-end: #3ecba0;
  --white: #ffffff;
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
}

html { scroll-behavior: smooth; }

.container {
  box-sizing: content-box;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.08vw, 40px);
}

body {
  font-family: 'Raleway', 'GothamPro', 'Arial', sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--purple-end); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-group { width: 100%; display: flex; flex-direction: column; align-items: center; }
.mobile-nav-toggle {
  background: none;
  border: none;
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  padding: 0;
}
.mobile-nav-toggle:hover,
.mobile-nav-toggle.active { color: var(--purple-end); }
.mobile-nav-arrow {
  font-style: normal;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.25s;
  line-height: 1;
}
.mobile-nav-toggle.active .mobile-nav-arrow { transform: rotate(180deg); }
.mobile-nav-sub {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav-sub.open { display: flex; }
.mobile-nav-sub a {
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--white-40);
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav-sub a:hover { color: var(--purple-end); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark) image-set(url('/assets/images/hero-bg.webp') type('image/webp'), url('/assets/images/hero-bg.jpeg') type('image/jpeg')) 8% 70% / cover no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* nav */
.hero-nav {
  position: relative;
  z-index: 10;
}
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
}
.hero-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(14px, 1.25vw, 24px);
  padding-bottom: clamp(14px, 1.25vw, 24px);
}

/* logo */
.hero-logo {
  display: flex;
  align-items: center;
}
.hero-logo img {
  width: clamp(120px, 11.46vw, 220px);
  height: auto;
  display: block;
}

.hero-burger {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

/* hero body */
.hero-body .container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4.17vw, 80px);
  padding-top: clamp(24px, 2.08vw, 40px);
  padding-bottom: clamp(40px, 3.75vw, 72px);
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-title-logo {
  width: 100%;
  max-width: min(650px, 33.85vw);
  height: auto;
  display: block;
}

.hero-subtitle {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 300;
  color: var(--white-60);
  letter-spacing: 2px;
  margin-top: 18px;
  text-transform: lowercase;
}

/* hero right — CTA cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.625vw, 12px);
  flex: 0 0 clamp(280px, 21.25vw, 408px);
}

.hero-cta-card {
  width: clamp(280px, 21.25vw, 408px);
  height: clamp(160px, 11.77vw, 226px);
  border-radius: clamp(16px, 1.46vw, 28px);
  padding: clamp(16px, 1.46vw, 28px) clamp(16px, 1.25vw, 24px) clamp(20px, 1.875vw, 36px) clamp(20px, 2.08vw, 40px);
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(10px, 0.94vw, 18px);
}
.hero-cta-card.orenda-card {
  background: linear-gradient(230deg, rgba(255,255,255,0.4) 0%, rgba(0,0,0,0.4) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 2px 2px 18px 0 rgba(0,0,0,0.3);
}
.hero-cta-card.prodazh-card {
  background: linear-gradient(50deg, rgba(255,255,255,0.4) 0%, rgba(0,0,0,0.4) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 2px 2px 18px 0 rgba(0,0,0,0.3);
}
.hero-cta-card:hover { transform: scale(1.015); }

.hero-cta-heading {
  font-family: 'eUkraineHead', sans-serif;
  font-size: clamp(32px, 3.33vw, 64px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
}

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

.hero-cta-arrow {
  flex-shrink: 0;
  display: block;
  width: clamp(80px, 8.65vw, 166px);
  height: clamp(32px, 3.54vw, 68px);
  transition: transform 0.15s ease-out;
}
.hero-cta-card:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-cta-sub {
  font-family: 'eUkraineHead', sans-serif;
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 100;
  color: #ffffff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  gap: clamp(16px, 1.67vw, 32px);
}
.section-header-left { flex: 1; }

.section-heading {
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: clamp(44px, 3.96vw, 76px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #1a1a1a;
}
.section-subtitle {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  margin-top: 12px;
}

.social-icons {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  margin-top: 8px;
}
.social-icons a[aria-label="YouTube"] { margin-left: clamp(36px, 4.7vw, 90px); }
.social-icons a[aria-label="Instagram"] { margin-left: clamp(36px, 4.7vw, 90px); }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   CITY CARDS GRID
═══════════════════════════════════════════ */
.city-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px clamp(10px, 0.833vw, 16px);
  padding-bottom: 0;
}

.city-card {
  position: relative;
  border-radius: clamp(14px, 1.354vw, 26px);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 350 / 440;
  box-shadow: 4px 4px 16px 0 rgba(0,0,0,0.3);
  cursor: default;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.city-card:hover img { transform: scale(1.06); }

.city-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 clamp(10px, 0.94vw, 18px) clamp(14px, 1.25vw, 24px) clamp(14px, 1.35vw, 26px);
}

.city-card-overlay.purple { background: none; }
.city-card-overlay.teal   { background: none; }

.city-card-name {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(16px, 1.77vw, 34px);
  font-weight: 700;
  line-height: 96%;
  color: #fff;
  text-transform: uppercase;
  padding-top: clamp(28px, 2.81vw, 54px);
  text-align: left;
  align-self: center;
  letter-spacing: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.city-card-name:has(br) {
  padding-top: clamp(20px, 2.08vw, 40px);
  line-height: 96%;
  align-self: center;
}

.city-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  font-family: 'Raleway', sans-serif;
  font-size: clamp(14px, 1.146vw, 22px);
  font-weight: 700;
  width: clamp(100px, 8.02vw, 154px);
  height: clamp(32px, 2.19vw, 42px);
  justify-content: center;
  border-radius: 100px;
  align-self: flex-start;
  transition: background 0.2s;
  letter-spacing: normal;
  -webkit-background-clip: unset;
  cursor: pointer;
}
.city-card-btn span {
  font-family: 'Raleway', sans-serif;
  color: #333;
  line-height: 1;
}
.city-card-btn svg { display: block; flex-shrink: 0; }
.city-card-btn:hover { background: #fff; }

/* ═══════════════════════════════════════════
   ОРЕНДА / ПРОДАЖ SECTIONS
═══════════════════════════════════════════ */
.orenda-section {
  background: #F5F6F6;
  position: relative;
  min-height: min(1080px, 56.25vw);
  padding: clamp(80px, 10.2vw, 196px) 0 clamp(80px, 10.42vw, 200px);
}
.orenda-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #f2f2f2 0%, #e1e1e1 30%, #b7b7b7 90%, #b3b3b3 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 0;
}
.orenda-section .container { position: relative; z-index: 1; }
.orenda-section .city-cards { margin-top: clamp(32px, 3.85vw, 74px); }
.orenda-section .section-heading {
  font-family: 'eUkraineHead', sans-serif;
  font-size: clamp(36px, 3.65vw, 70px);
  font-weight: 700;
  margin-bottom: clamp(16px, 1.67vw, 32px);
}
.orenda-section .section-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 125%;
  margin-top: 16px;
  color: #1a1a1a;
}

.prodazh-section .section-heading {
  font-family: 'eUkraineHead', sans-serif;
  font-size: clamp(36px, 3.65vw, 70px);
  font-weight: 700;
  margin-bottom: clamp(16px, 1.67vw, 32px);
}
.prodazh-section .section-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 125%;
  margin-top: 16px;
  color: #1a1a1a;
}
.prodazh-section .city-cards { margin-top: clamp(32px, 3.85vw, 74px); }

.prodazh-section {
  background: #F5F6F6;
  position: relative;
  min-height: min(1080px, 56.25vw);
  padding: clamp(80px, 10.2vw, 196px) 0 clamp(60px, 8.33vw, 160px);
}
.prodazh-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #b3b3b3 0%, #b7b7b7 10%, #e1e1e1 70%, #f2f2f2 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 0;
}
.prodazh-section .container { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   LEAD FORM
═══════════════════════════════════════════ */
.lead-section {
  background: #1a1a1a;
  padding: clamp(72px, 8vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.lead-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lead-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lead-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 5.2vw, 100px);
  position: relative;
  z-index: 1;
}
.lead-text { flex: 1; max-width: 634px; }
.lead-card { flex: 0 0 clamp(320px, 38vw, 580px); }
.lead-label {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(10px, 0.73vw, 12px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-end);
  margin-bottom: clamp(8px, 0.73vw, 12px);
}
.lead-heading {
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: clamp(26px, 2.5vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: clamp(10px, 0.83vw, 16px);
}
.lead-subtitle {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(12px, 0.83vw, 13px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 0;
}
.lead-card {
  width: 100%;
  background: linear-gradient(140deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: clamp(16px, 1.25vw, 24px);
  box-shadow: 2px 2px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  padding: clamp(32px, 2.8vw, 52px) clamp(28px, 2.5vw, 44px);
  text-align: left;
}
.lead-card-title {
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.04vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: clamp(12px, 1.04vw, 18px);
}
.cf-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: flex; gap: 16px; }
.cf-row .cf-group { flex: 1; min-width: 0; }
.cf-group { display: flex; flex-direction: column; gap: 4px; }
.cf-label {
  font-family: 'GothamPro', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cf-input, .cf-select, .cf-textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: clamp(14px, 1.04vw, 18px) clamp(18px, 1.46vw, 24px);
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 0.83vw, 14px);
  color: #fff; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,255,255,0.35); }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--purple-end); }

/* ── Phone wrap + country selector ── */
.cf-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  transition: border-color 0.2s;
}
.cf-phone-wrap:focus-within { border-color: rgba(255,255,255,0.6); }

.cf-country-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px 0 clamp(12px, 1.04vw, 18px);
  height: 100%;
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 0.83vw, 14px);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 100px 0 0 100px;
  transition: background 0.15s;
  line-height: 1;
}
.cf-country-btn:hover { background: rgba(255,255,255,0.07); }
.cf-country-arrow { width: 10px; height: 6px; opacity: 0.45; flex-shrink: 0; }

.cf-country-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 230px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 200;
  overflow: hidden;
}
.cf-csearch {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 9px 14px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  outline: none;
}
.cf-csearch::placeholder { color: rgba(255,255,255,0.3); }
.cf-clist {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.cf-citem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: background 0.1s;
}
.cf-citem:hover, .cf-citem.active { background: rgba(255,255,255,0.07); }
.cf-citem-flag { font-size: 17px; flex-shrink: 0; line-height: 1; }
.cf-citem-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cf-citem-dial { opacity: 0.4; font-size: 12px; flex-shrink: 0; }

.cf-phone-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  padding: clamp(14px, 1.04vw, 18px) clamp(14px, 1.25vw, 18px);
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 0.83vw, 14px);
  color: #fff;
  -webkit-appearance: none; appearance: none;
}
.cf-phone-input::placeholder { color: rgba(255,255,255,0.35); }
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  cursor: pointer;
}
.cf-select option { background: #2a2a2a; color: #fff; }
.cf-textarea {
  resize: vertical; min-height: 100px;
  line-height: 1.5; border-radius: 16px;
}
.cf-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: linear-gradient(90deg, var(--purple-start) 0%, var(--purple-end) 100%);
  color: #ffffff; border: none; border-radius: 100px;
  padding: clamp(14px, 1.04vw, 18px) clamp(20px, 1.67vw, 30px);
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 0.94vw, 15px);
  font-weight: 700; cursor: pointer;
  transition: opacity 0.2s; margin-top: 4px;
}
.cf-btn:hover { opacity: 0.85; }
.cf-privacy {
  margin-top: 8px;
  font-family: 'GothamPro', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.3); line-height: 1.6; text-align: center;
}
.cf-privacy a { color: var(--purple-end); text-decoration: underline; }
.cf-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; gap: 12px; padding: 16px 0;
}
.cf-success.visible { display: flex; }
.cf-success-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-start), var(--purple-end));
  display: flex; align-items: center; justify-content: center;
}
.cf-success-title {
  font-family: 'eUkraineHead', sans-serif;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 700; color: #fff; text-transform: uppercase;
}
.cf-success-text {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(12px, 0.83vw, 13px);
  font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7;
}

/* ═══════════════════════════════════════════
   DARK INFO SECTION
═══════════════════════════════════════════ */
.page-container { position: relative; }
.page-container-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-container-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: -10%;
  background: rgba(15,15,15,0.5);
  pointer-events: none;
}
.page-container-bg img {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.info-section {
  position: relative;
  z-index: 2;
}
.info-section-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #2E294E;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 53% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.info-section .container {
  display: block;
  position: relative;
  z-index: 2;
  padding-top: clamp(60px, 7.29vw, 140px);
  padding-bottom: clamp(60px, 6.98vw, 134px);
}

.info-top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 10.52vw, 202px);
  margin-bottom: clamp(24px, 2.08vw, 40px);
}
.info-logo-block {
  flex-shrink: 0;
  width: clamp(200px, 25vw, 480px);
}
.info-logo-block img { width: 100%; height: auto; display: block; }
.info-top-row .info-desc-box { margin-bottom: 0; }
.info-logo-title {
  font-family: 'eUkraineHead', 'Montserrat', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -1px;
}
.info-logo-sub {
  font-family: 'GothamPro', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--white-40);
  letter-spacing: 3px;
  margin-top: 10px;
  text-transform: lowercase;
}

.info-desc-box {
  background: #f4f4f4;
  border-radius: clamp(16px, 1.35vw, 26px);
  padding: clamp(24px, 2.34vw, 45px) clamp(20px, 3.23vw, 62px);
  margin-bottom: clamp(24px, 2.08vw, 40px);
  width: clamp(280px, 39.27vw, 754px);
  max-width: none;
}
.info-desc-box p {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: #020202;
}
.info-desc-box strong { font-weight: 600; color: #AB619E; }

.info-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: clamp(16px, 1.25vw, 24px) clamp(32px, 4.69vw, 90px);
  margin-top: clamp(48px, 5.1vw, 98px);
}
.info-item-num {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 2.6vw, 50px);
  font-weight: 700;
  line-height: 120%;
  color: #67C4B9;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 48px);
}
.info-item-num::after {
  content: '';
  display: block;
  width: clamp(60px, 6.56vw, 126px);
  height: clamp(4px, 0.44vw, 8.5px);
  background: rgba(255,255,255,0.20);
  flex-shrink: 0;
}
.info-item-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.012em;
  color: rgba(255,255,255,0.78);
}

.info-right { position: relative; overflow: hidden; }
.info-right img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.38); }

/* ═══════════════════════════════════════════
   ІНШІ ПРОЄКТИ
═══════════════════════════════════════════ */
.projects-section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 8.54vw, 164px) 0;
}
.projects-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  clip-path: polygon(0 0, 100% 140px, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.projects-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.projects-left { max-width: min(676px, 35.2vw); }
.projects-heading {
  font-family: 'eUkraineHead', sans-serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: clamp(16px, 1.67vw, 32px);
}
.projects-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(15px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.012em;
  color: #ffffff;
}
.projects-text + .projects-text { margin-top: 1em; }
.projects-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(32px, 2.29vw, 44px);
  background: rgba(255,255,255,0.92);
  border: none;
  color: #333;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(15px, 1.146vw, 22px);
  font-weight: 700;
  width: clamp(200px, 16.35vw, 314px);
  height: clamp(40px, 2.7vw, 52px);
  justify-content: center;
  border-radius: 100px;
  transition: background 0.2s;
  letter-spacing: normal;
}
.projects-btn:hover { background: #fff; }

.projects-logo-block {
  flex-shrink: 0;
  align-self: center;
  position: relative;
  width: clamp(280px, 25.4vw, 488px);
  height: clamp(186px, 16.875vw, 324px);
  background: linear-gradient(225deg, rgba(255,255,255,0.20) 0%, rgba(0,0,0,0.20) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: clamp(20px, 1.5625vw, 30px);
  border: none;
  box-shadow: 2px 2px 24px 0 rgba(0,0,0,0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-logo-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.projects-logo-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #e8452e;
  flex-shrink: 0;
}
.projects-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.projects-logo-text .ritm {
  font-size: 52px; font-weight: 700; color: #fff; letter-spacing: 0.04em; line-height: 1;
}
.projects-logo-text .group {
  font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.75);
  letter-spacing: 0.18em; text-align: right; margin-top: 2px;
}
.projects-logo-wrap { display: flex; align-items: center; gap: 10px; }
.projects-logo-ritm {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: 6px; color: #fff; text-transform: uppercase;
}
.projects-logo-group {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 4px; color: var(--white-40); text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: clamp(40px, 4.17vw, 80px) 0 clamp(24px, 2.08vw, 40px);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: clamp(32px, 2.5vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { width: clamp(100px, 9vw, 160px); height: auto; }
.footer-tagline {
  font-family: 'GothamPro', sans-serif;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.45);
}
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(14px, 1.04vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contacts { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px 40px; }
.footer-city { display: flex; flex-direction: column; gap: 3px; }
.footer-city-name {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(12px, 0.83vw, 14px);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-city-addr {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(11px, 0.73vw, 13px);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.footer-city-phone {
  font-family: 'GothamPro', sans-serif;
  font-size: clamp(11px, 0.73vw, 13px);
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-city-phone:hover { color: #fff; }
.footer-social { display: flex; gap: clamp(16px, 1.77vw, 34px); align-items: center; }
.footer-social-link { opacity: 0.55; transition: opacity 0.2s; display: flex; }
.footer-social-link:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(20px, 1.67vw, 32px);
}
.footer-copy {
  font-family: 'GothamPro', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-ritm-link {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-ritm-link:hover { color: #fff; }

/* ═══════════════════════════════════════════
   RESPONSIVE — ПЛАНШЕТ широкий ≤ 1200px
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .hero-body .container { gap: 60px; }
  .orenda-section,
  .prodazh-section { padding: clamp(60px, 8vw, 140px) 0; }
  .info-top-row { gap: 80px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — ПЛАНШЕТ ≤ 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-body .container { gap: 40px; }
  .hero-cta-heading { font-size: 44px; }
  .hero-cta-sub { font-size: 24px; }
  .hero-cta-arrow { width: 110px; height: 46px; }

  .city-cards { grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
  .info-section .container { padding-top: 100px; padding-bottom: 100px; }
  .info-top-row { gap: 40px; }
  .info-logo-block { width: 360px; }
  .info-desc-box { width: 100%; padding: 26px 24px; }
  .info-items { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; grid-auto-flow: row; gap: 20px 40px; margin-top: 60px; }
  .info-item:last-child { grid-column: 1 / -1; max-width: 50%; }
  .info-item-text { font-size: 22px; }

  .section-header { flex-direction: column; gap: 16px; }
  .social-icons a[aria-label="YouTube"] { margin-left: 24px; }
  .social-icons a[aria-label="Instagram"] { margin-left: 24px; }

  .projects-heading { font-size: 44px; }
  .projects-text { font-size: 18px; }
  .projects-left { max-width: 380px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — ПЛАНШЕТ HERO горизонтальні картки 769–1024px
═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero { background-position: 10% 90%; }
  .city-card-name { font-size: 28px; padding-top: 40px; }
  .city-card-btn { width: 150px; height: 46px; font-size: 18px; }
  .section-subtitle br { display: none; }
  .info-section-bg { clip-path: polygon(0 0, 100% 0, 100% 75%, 55% 100%, 0 100%); }
  .projects-btn { width: 300px; height: 52px; font-size: 20px; }
  .page-container-bg img { object-position: 70% center; top: 2%; bottom: auto; height: 108%; }

  .hero-body .container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top: 32px;
    padding-bottom: 80px;
  }
  .hero-left { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-title-logo { max-width: 440px; margin: 0 auto; }
  .hero-right { flex: none; width: 100%; flex-direction: row; gap: 16px; }
  .hero-cta-card { flex: 1; width: auto; height: 180px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — МОБІЛЬНИЙ ≤ 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Hero */
  .hero-body .container {
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 40px;
    gap: 56px;
  }
  .hero-left { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-title-logo { max-width: 420px; margin: 0 auto; }
  .hero-right { flex: none; width: 100%; flex-direction: row; gap: 16px; align-self: center; }
  .hero-cta-card { flex: 1; width: auto; height: 160px; padding: 24px; border-radius: 20px; justify-content: space-between; }
  .hero-cta-heading { font-size: 40px; }
  .hero-cta-sub { font-size: 22px; }
  .hero-cta-arrow { width: 100px; height: 42px; }
  .hero-cta-bottom { gap: 12px; }

  /* Оренда / Продаж */
  .orenda-section,
  .prodazh-section { padding: 60px 0; min-height: auto; }
  .prodazh-section::before { clip-path: polygon(0 25%, 0 100%, 100% 100%); }
  .orenda-section .section-heading,
  .prodazh-section .section-heading { margin-bottom: 16px; }
  .orenda-section .section-subtitle,
  .prodazh-section .section-subtitle { width: 100%; }
  .city-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .city-card-name { font-size: clamp(16px, 3.1vw, 24px); padding-top: clamp(20px, 5.2vw, 40px); }
  .city-card-btn { width: clamp(110px, 17.2vw, 132px); height: clamp(34px, 5.2vw, 40px); font-size: clamp(14px, 2.1vw, 16px); }
  .orenda-section .city-cards,
  .prodazh-section .city-cards { margin-top: 40px; }

  /* Info */
  .info-section .container { padding-top: 80px; padding-bottom: 80px; }
  .info-top-row { flex-direction: column; align-items: flex-start; gap: 32px; margin-bottom: 0; }
  .info-logo-block { width: 100%; max-width: 280px; }
  .info-desc-box { width: 100%; padding: 28px; }
  .info-desc-box p { font-size: 18px; }
  .info-items { grid-template-columns: 1fr 1fr; gap: 16px 32px; margin-top: 48px; }
  .info-item:last-child { grid-column: 1 / -1; max-width: 50%; }
  .info-item-num { font-size: 32px; gap: 24px; }
  .info-item-num::after { width: 60px; height: 6px; }
  .info-item-text { font-size: 16px; }
  .info-section-bg { clip-path: none; }

  /* Projects */
  .projects-section { padding: 100px 0 80px; }
  .projects-section::before { clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%); }
  .projects-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .projects-heading { font-size: 40px; margin-bottom: 20px; }
  .projects-text { font-size: 18px; }
  .projects-btn { width: 260px; height: 48px; font-size: 18px; }
  .projects-logo-block { width: 100%; height: 220px; border-radius: 24px; }
  .projects-left { max-width: 100%; }

  /* Lead */
  .lead-bg-accent { display: none; }
  .lead-bg img { object-position: 80% center; }
  .lead-inner { flex-direction: column; gap: 32px; }
  .lead-text { text-align: center; }
  .lead-card { flex: none; width: 100%; }
  .lead-heading { font-size: clamp(28px, 8vw, 48px); }
  .cf-row { flex-direction: column; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-contacts { gap: 16px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — МОБІЛЬНИЙ малий ≤ 480px
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  html, body { background: #1a1a1a; }
  .container { padding: 0 16px; }

  .hero-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-title-logo { max-width: 280px; margin: 0 auto; }
  .hero-right { flex-direction: column; }
  .hero-cta-card { height: 140px; }
  .city-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .city-card-name { padding-top: 20px; }
  .city-card-btn { width: 110px; height: 34px; font-size: 14px; }

  .section-subtitle br { display: none; }
  .info-items { grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 32px; }
  .info-item:last-child { grid-column: 1 / -1; max-width: 50%; }
  .info-item-num { font-size: 28px; gap: 12px; }
  .info-item-num::after { width: 40px; height: 4px; }
  .info-item-text { font-size: 14px; }
  .info-section-bg { clip-path: none; }
  .page-container-bg img { display: none; }
  .projects-section {
    background: #1a1a1a url('/assets/images/interior-bg-mobile.webp') center top / cover no-repeat;
  }
  .projects-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,0.5);
    pointer-events: none;
  }

  .section-header { gap: 12px; }
  .social-icons a[aria-label="YouTube"],
  .social-icons a[aria-label="Instagram"] { margin-left: 12px; }
  .social-icon svg { width: 36px; height: 36px; }

  .projects-heading { font-size: 32px; }
  .projects-text { font-size: 16px; }
}
