/* ============================================================
   B2Bdom — Dark Premium Style (inspired by Pridex)
   + HelloLanding layout logic
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Dark palette */
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --bg-card:   #141414;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);

  --text:      #FFFFFF;
  --text-2:    rgba(255,255,255,0.65);
  --text-3:    rgba(255,255,255,0.35);

  /* Accent — single warm white, no color */
  --accent:    #FFFFFF;
  --accent-dim: rgba(255,255,255,0.12);

  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --speed: 220ms;

  --content: 1180px;
  --content-narrow: 720px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
p, li { text-wrap: pretty; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; background: none; border: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--content-narrow); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: rgba(255,255,255,0.4); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
}
.section-title--white { color: #fff; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head--row .section-title { margin-bottom: 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--speed) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn--white {
  background: #fff;
  color: #0A0A0A;
  border-color: #fff;
}
.btn--white:hover { background: rgba(255,255,255,0.88); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: var(--border-2);
}
.btn--outline-white:hover { border-color: rgba(255,255,255,0.5); background: var(--accent-dim); }
.btn--ghost-white {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
  font-size: 12px;
  padding: 0.55rem 1.1rem;
}
.btn--ghost-white:hover { color: #fff; border-color: var(--border-2); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 12px; }
.btn--full { width: 100%; }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem clamp(1.25rem,4vw,2.5rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
}
.topbar__dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.topbar__right { margin-left: auto; }
.topbar__right a { color: var(--text-2); font-size: 12px; }
.topbar__right a:hover { color: #fff; }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--speed);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 60px;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(1.25rem,4vw,2.5rem);
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo__text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav__link {
  padding: 0.4rem 0.75rem;
  font-size: 13px;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color var(--speed);
}
.nav__link:hover { color: #fff; }
.header__actions { display: flex; align-items: center; gap: 1rem; }
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: all var(--speed) var(--ease);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem,4vw,2.5rem) 2rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.875rem 0;
  font-size: 15px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.15) 35%,
    rgba(10,10,10,0.55) 65%,
    rgba(10,10,10,0.95) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem,6vw,4rem);
  padding-bottom: 3rem;
  max-width: 900px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 2rem;
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: rgba(255,255,255,0.62); }
.hero__sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

/* Search bar — like HelloLanding */
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 780px;
}
.search-bar__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1.25rem;
  min-width: 0;
}
.search-bar__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.3rem;
}
.search-bar__input {
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-bar__input option { background: #1a1a1a; color: #fff; }
.search-bar__input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.4; }
.search-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
  flex-shrink: 0;
}
.search-bar__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #fff;
  color: #0A0A0A;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  height: 100%;
  border-radius: 0;
  transition: background var(--speed);
  cursor: pointer;
  border: none;
}
.search-bar__btn:hover { background: rgba(255,255,255,0.88); }

/* Hero stats */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem,4vw,2.5rem);
  border-right: 1px solid var(--border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero__stat-label {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}
.hero__stat-div { width: 1px; background: var(--border); align-self: stretch; display: none; }

/* ── TRUSTED ─────────────────────────────────────────────── */
.trusted {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trusted__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 1.25rem;
}
.trusted__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trusted__logos span {
  padding: 0.4rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
.benefit-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  transition: background var(--speed);
}
.benefit-card:last-child { border-right: none; }
.benefit-card:hover { background: var(--bg-3); }
.benefit-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: var(--text-2);
}
.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.benefit-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.how__visual {
  position: relative;
  overflow: hidden;
}
.how__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.how__content {
  padding: clamp(3rem,7vw,6rem) clamp(2rem,5vw,4rem);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.how__content .section-title { margin-bottom: 2.5rem; }
.how__content .btn { margin-top: 2.5rem; align-self: flex-start; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step__num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-3);
  min-width: 24px;
  padding-top: 2px;
  letter-spacing: 0.05em;
}
.how-step__body h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.how-step__body p { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── OFFICE TYPES ────────────────────────────────────────── */
.office-types {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg);
}
.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
}
.type-card { background: var(--bg-card); display: flex; flex-direction: column; }
.type-card__img {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.type-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.8);
}
.type-card:hover .type-card__img img { transform: scale(1.04); }
.type-card__tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-2);
}
.type-card__body {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.type-card__meta {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.type-card__body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.type-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}
.type-card__list li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.type-card__list li::before {
  content: '—';
  color: var(--text-3);
  flex-shrink: 0;
}
.type-card__body .btn { margin-top: auto; align-self: flex-start; }

/* ── LOCATIONS ────────────────────────────────────────────── */
.locations {
  position: relative;
  padding: clamp(4rem,8vw,7rem) 0;
  overflow: hidden;
}
.locations__map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.locations__map-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.3);
}
.locations__map-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 100%);
}
.locations__inner {
  position: relative;
  z-index: 2;
}
.locations__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 50ch;
  margin-top: 1rem;
  line-height: 1.7;
}
.locations-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}
.loc-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--speed);
}
.loc-card:last-child { border-right: none; }
.loc-card:hover { background: rgba(255,255,255,0.07); }
.loc-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.loc-card__name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.loc-card__status {
  font-size: 10px;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
}
.loc-card__status--soon { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.loc-card__meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.loc-card__transport { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 0.25rem; }
.loc-card__link {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  margin-top: auto;
  padding-top: 1rem;
  transition: color var(--speed);
}
.loc-card__link:hover { color: #fff; }
.loc-card--cta {
  background: rgba(255,255,255,0.08);
  gap: 0.75rem;
}
.loc-card--cta .loc-card__name { font-size: 16px; }
.loc-card--cta p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.loc-card--cta .btn { margin-top: auto; }

/* ── CORPORATE BLOCK ─────────────────────────────────────── */
.corp-block {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg-2);
}
.corp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,5rem);
  align-items: center;
}
.corp-text .section-title { margin-bottom: 1.25rem; }
.corp-text > p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }
.corp-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.corp-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--text-2);
}
.corp-features li svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.corp-image {
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-md);
}
.corp-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.8s var(--ease);
}
.corp-image:hover img { transform: scale(1.02); }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.price-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.price-card:last-child { border-right: none; }
.price-card--featured { background: var(--bg-3); }
.price-card__badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: #fff;
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}
.price-card__name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}
.price-card__price { font-size: 14px; color: var(--text-2); }
.price-card__price strong { font-size: clamp(1.25rem,2.5vw,1.75rem); color: #fff; font-weight: 400; font-family: var(--font-head); }
.price-card__price span { display: block; font-size: 11px; color: var(--text-3); margin-top: 0.2rem; }
.price-card ul {
  display: flex; flex-direction: column; gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
  flex: 1;
}
.price-card ul li {
  font-size: 13px; color: var(--text-2);
  display: flex; align-items: baseline; gap: 0.5rem;
}
.price-card ul li::before { content: '—'; color: var(--text-3); flex-shrink: 0; }
.price-card .btn { margin-top: 1.5rem; }
.pricing__note { font-size: 11px; color: var(--text-3); text-align: center; letter-spacing: 0.02em; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
.review {
  background: var(--bg-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: 1px solid var(--border);
}
.review:last-child { border-right: none; }
.review__stars { color: rgba(255,255,255,0.3); font-size: 13px; letter-spacing: 3px; }
.review blockquote {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review cite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review__av {
  width: 36px; height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--text-3);
}
.review cite strong { font-size: 13px; font-weight: 500; display: block; }
.review cite > div { font-size: 11px; color: var(--text-3); }

/* ── PARTNERS ────────────────────────────────────────────── */
.partners {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg);
}
.partners__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,5rem);
  align-items: center;
}
.partners__text .section-title { margin-bottom: 1.25rem; }
.partners__text > p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 1.75rem; }
.partners__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pstat { display: flex; flex-direction: column; gap: 0.25rem; }
.pstat__val {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
}
.pstat__label { font-size: 11px; color: var(--text-3); }
.partners__visual {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.partners__visual img {
  width: 100%; height: 500px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.8s var(--ease);
}
.partners__visual:hover img { transform: scale(1.02); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem,6vw,5rem);
  align-items: start;
}
.contact-left .section-title { margin-bottom: 1rem; }
.contact-sub { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 2rem; }
.contact-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.contact-checks > div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--text-2);
}
.contact-checks svg { color: var(--text-3); flex-shrink: 0; }
.contact-phone { margin-top: auto; }
.contact-phone a {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  display: block;
}
.contact-phone span { font-size: 11px; color: var(--text-3); margin-top: 0.3rem; display: block; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 14px;
  width: 100%;
  border-radius: var(--radius);
  transition: border-color var(--speed);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.3);
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field select option { background: #1a1a1a; color: #fff; }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 11px; color: var(--text-3); text-align: center; }
.form-note a { color: var(--text-2); text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: var(--text);
  transition: color var(--speed);
}
.faq-item summary:hover { color: rgba(255,255,255,0.7); }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform var(--speed) var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 0 1.5rem;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 65ch;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-top: clamp(2.5rem,5vw,4rem);
  padding-bottom: clamp(2.5rem,5vw,4rem);
}
.footer__brand .logo { margin-bottom: 1.25rem; }
.footer__brand p { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.25rem; }
.footer__col a { font-size: 13px; color: var(--text-3); transition: color var(--speed); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-3);
  flex-wrap: wrap;
}

/* ── SCROLL ANIMATION ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-card { border-right: none; border-bottom: 1px solid var(--border); }
  .benefit-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .locations-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .how { grid-template-columns: 1fr; }
  .how__visual { height: 50vw; max-height: 400px; }
  .types-grid { grid-template-columns: 1fr; }
  .corp-inner { grid-template-columns: 1fr; }
  .corp-image { order: -1; }
  .corp-image img { height: 280px; }
  .partners__inner { grid-template-columns: 1fr; }
  .partners__visual { order: -1; }
  .partners__visual img { height: 250px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 1px solid var(--border); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__actions .btn { display: none; }
  .burger { display: flex; }
  .hero__stat { padding: 1rem 1.25rem; }
  .hero__stat-num { font-size: 1.1rem; }
  .search-bar { flex-direction: column; border-radius: 0; }
  .search-bar__field { width: 100%; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-2); }
  .search-bar__divider { display: none; }
  .search-bar__btn { width: 100%; border-radius: 0; justify-content: center; padding: 1rem; }
  .locations-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .benefit-card { border-right: none; }
  .benefit-card:nth-child(odd) { border-right: none; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; }
  .hero__stat { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
  .hero__stat:last-child { border-bottom: none; }
  .footer__nav { grid-template-columns: 1fr; }
  .partners__stats { flex-direction: column; gap: 1.25rem; }
}

/* ── МОБИЛЬНЫЙ topbar — скрываем лишнее ── */
@media (max-width: 480px) {
  .topbar { padding: 0.35rem 1rem; }
  .topbar .topbar__dot { display: none; }
  .topbar span:nth-child(3) { display: none; } /* "Поддержка 24/7" */
}

/* ── МОБИЛЬНЫЙ hero — чуть больше воздуха ── */
@media (max-width: 480px) {
  .hero__content { padding-left: 1rem; padding-right: 1rem; padding-bottom: 2rem; }
  .hero__sub { font-size: 13px; }
  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }
}

/* ── PARTNER MODELS ── */
.partners-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.partner-model {
  background: var(--bg-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
}
.partner-model:last-child { border-right: none; }
.partner-model__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.partner-model__num {
  font-family: var(--font-head);
  font-size: 11px;
  color: var(--text-3);
  min-width: 24px;
  padding-top: 4px;
}
.partner-model__title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.partner-model__sub {
  font-size: 12px;
  color: var(--text-3);
}
.partner-model__badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.partner-model__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-model__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.partner-model__col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.partner-model__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.partner-model__col ul li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.partner-model__col ul li::before {
  content: '—';
  color: var(--text-3);
  flex-shrink: 0;
  font-size: 11px;
}
.partner-model__result {
  display: flex;
  gap: 1.5rem;
}
.partner-model__result-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.partner-model__result-val {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.03em;
}
.partner-model__result-label {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
  max-width: 12ch;
}
.partners-included {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.partners-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.partners-included__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  color: var(--text-2);
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.partners-included__item svg { color: var(--text-3); flex-shrink: 0; }

/* ── CITIES SECTION ── */
.cities-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  border: 1px solid var(--border);
}
.city-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  text-decoration: none;
  cursor: pointer;
}
.city-card--large {
  grid-column: span 2;
  min-height: 320px;
}
.city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.65);
}
.city-card:hover img { transform: scale(1.06); }
.city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
}
.city-card__content {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.city-card__name {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
}
.city-card__pop {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.city-card__status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.city-card__status--open { background: rgba(255,255,255,0.15); color: #fff; }
.city-card__status--soon { background: rgba(255,107,53,0.2); color: #FF6B35; }
.city-card__arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.city-card:hover .city-card__arrow {
  color: #fff;
  transform: translateX(4px);
}

/* ── OFFICES PAGE LINK in NAV ── */
.nav__link--highlight { color: var(--text) !important; }

/* ── RESPONSIVE PARTNERS + CITIES ── */
@media (max-width: 900px) {
  .partners-models { grid-template-columns: 1fr; }
  .partner-model { border-right: none; border-bottom: 1px solid var(--border); }
  .partner-model:last-child { border-bottom: none; }
  .partners-included__grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card--large { grid-column: span 1; min-height: 220px; }
}
@media (max-width: 600px) {
  .partners-included__grid { grid-template-columns: 1fr; }
  .partner-model__result { flex-wrap: wrap; gap: 1rem; }
  .partner-model__body { grid-template-columns: 1fr; }
  .partner-model__divider { width: 100%; height: 1px; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .city-card { min-height: 160px; }
}

/* ── Открытые города — яркий hover ── */
.city-card--open { cursor: pointer; }
.city-card--open .city-card__arrow { color: rgba(255,255,255,0.7); }
.city-card--open:hover .city-card__arrow { color: #fff; transform: translateX(5px); }
.city-card--open::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255,255,255,0);
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.city-card--open:hover::after { border-color: rgba(255,255,255,0.25); }
/* ════════════════════════════════════════
   SEARCH DROPDOWNS + CALENDAR
════════════════════════════════════════ */

/* Поля search-bar кликабельны */
.search-bar__field { position: relative; cursor: pointer; user-select: none; }
.sb-value {
  font-size: 14px; color: #fff; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
[data-theme='light'] .sb-value { color: #1A1917; }

/* Базовый dropdown */
.sb-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 340px;
  background: #1C2535;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  z-index: 9999;
  padding: 1rem;
  border-radius: 6px;
}
[data-theme='light'] .sb-dropdown {
  background: #fff;
  border-color: #E2E4E9;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.sb-dropdown--calendar { min-width: 560px; left: -80px; }
#sbDur .sb-dropdown  { min-width: 180px; left: auto; right: 0; padding: 0.5rem; }

.sb-drop__header {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 0.6rem;
}
[data-theme='light'] .sb-drop__header { color: #9CA3AF; }

.sb-drop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }

.sb-city-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0.75rem; font-size: 13px;
  color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.04);
  border: 1px solid transparent; cursor: pointer; transition: all 0.15s; text-align: left;
  border-radius: 4px;
}
.sb-city-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.14); color: #fff; }
.sb-city-btn.active { background: rgba(255,107,53,0.15); border-color: rgba(255,107,53,0.4); color: #fff; }
.sb-city-btn svg { color: #FF6B35; flex-shrink: 0; }
.sb-city-btn--soon { opacity: 0.4; cursor: not-allowed; }
.sb-city-btn--soon:hover { background: rgba(255,255,255,0.04); border-color: transparent; color: rgba(255,255,255,0.85); }

[data-theme='light'] .sb-city-btn { color: #1A1917; background: #F5F7FA; border-color: #E2E4E9; }
[data-theme='light'] .sb-city-btn:hover { background: #EEF1F8; border-color: #FF6B35; }
[data-theme='light'] .sb-city-btn.active { background: #FFF0EB; border-color: #FF6B35; }

.sb-dur-btn {
  display: block; width: 100%; padding: 0.65rem 0.875rem;
  font-size: 13px; color: rgba(255,255,255,0.75);
  background: transparent; border: none; cursor: pointer;
  text-align: left; transition: all 0.15s; border-radius: 4px;
}
.sb-dur-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.sb-dur-btn--active { color: #fff; background: rgba(255,107,53,0.18); }
[data-theme='light'] .sb-dur-btn { color: #374151; }
[data-theme='light'] .sb-dur-btn:hover { background: #F3F4F6; color: #111; }
[data-theme='light'] .sb-dur-btn--active { background: #FFF0EB; color: #D4400A; }

/* ── Календарь ── */
.sb-cal__nav {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 1rem;
}
.sb-cal__months {
  display: flex; gap: 3.5rem;
  font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.02em;
}
[data-theme='light'] .sb-cal__months { color: #1A1917; }
.sb-cal__arr {
  width: 30px; height: 30px; display: flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7);
  font-size: 14px; cursor: pointer; transition: all 0.15s; border-radius: 4px;
}
.sb-cal__arr:hover { background: rgba(255,255,255,0.16); color: #fff; }
[data-theme='light'] .sb-cal__arr { background: #F3F4F6; border-color: #E2E4E9; color: #374151; }
[data-theme='light'] .sb-cal__arr:hover { background: #E5E7EB; }

.sb-cal__grids { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cal-month {}
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 4px; }
.cal-wd {
  text-align: center; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.3); padding: 2px 0; letter-spacing: 0.04em;
}
[data-theme='light'] .cal-wd { color: #9CA3AF; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.75);
  border-radius: 50%; cursor: pointer; transition: all 0.12s;
}
.cal-day:hover:not(.cal-day--past):not(.cal-day--empty) {
  background: rgba(255,255,255,0.12); color: #fff;
}
.cal-day--empty { cursor: default; }
.cal-day--past  { opacity: 0.22; cursor: not-allowed; }
.cal-day--today { color: #FF6B35; font-weight: 700; }
.cal-day--sel   { background: #fff !important; color: #0A0A0A !important; font-weight: 700; }
[data-theme='light'] .cal-day { color: #374151; }
[data-theme='light'] .cal-day:hover:not(.cal-day--past):not(.cal-day--empty) {
  background: #F3F4F6; color: #111;
}
[data-theme='light'] .cal-day--today { color: #FF6B35; }
[data-theme='light'] .cal-day--sel   { background: #FF6B35 !important; color: #fff !important; }

.sb-cal__hint {
  margin-top: 0.875rem; font-size: 11px; color: rgba(255,255,255,0.3);
  text-align: center; border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.75rem;
}
[data-theme='light'] .sb-cal__hint { color: #9CA3AF; border-top-color: #E5E7EB; }

/* ── Адаптив для dropdowns ── */
@media (max-width: 768px) {
  .sb-dropdown, .sb-dropdown--calendar { min-width: calc(100vw - 2rem); left: 0 !important; right: 0 !important; }
  .sb-cal__grids { grid-template-columns: 1fr; }
  .sb-drop__grid { grid-template-columns: 1fr; }
  .sb-cal__months { gap: 1.5rem; }
}

/* ════════════════════════════════════════
   СВЕТЛАЯ ТЕМА — полный override
════════════════════════════════════════ */
[data-theme='light'] {
  --bg:       #F7F6F2;
  --bg-2:     #FFFFFF;
  --bg-3:     #F0EEE9;
  --bg-card:  #FFFFFF;
  --border:   rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.14);
  --text:     #1A1917;
  --text-2:   rgba(26,25,23,0.65);
  --text-3:   rgba(26,25,23,0.38);
  --accent:   #0A0A0A;
  --accent-dim: rgba(0,0,0,0.07);
}

[data-theme='light'] body { background: var(--bg); color: var(--text); }
[data-theme='light'] .header { background: rgba(247,246,242,0.92); border-bottom-color: rgba(0,0,0,0.08); }
[data-theme='light'] .topbar { background: #EFEDE8; border-bottom-color: rgba(0,0,0,0.07); }
[data-theme='light'] .logo__text { color: var(--text); }
[data-theme='light'] .nav__link { color: rgba(26,25,23,0.55); }
[data-theme='light'] .nav__link:hover { color: var(--text); background: rgba(0,0,0,0.05); }
[data-theme='light'] .btn--outline-white { color: var(--text); border-color: rgba(0,0,0,0.15); }
[data-theme='light'] .btn--outline-white:hover { border-color: var(--text); background: rgba(0,0,0,0.05); }
[data-theme='light'] .btn--ghost-white { color: var(--text-2); border-color: rgba(0,0,0,0.1); }
[data-theme='light'] .btn--white { background: var(--text); color: #fff; border-color: var(--text); }
[data-theme='light'] .btn--white:hover { background: #2D2C2A; }

/* Hero — светлый overlay, тёмный текст */
[data-theme='light'] .hero__overlay {
  background: linear-gradient(to bottom, rgba(247,246,242,0.55) 0%, rgba(247,246,242,0.25) 35%, rgba(247,246,242,0.72) 65%, rgba(247,246,242,0.98) 100%);
}
[data-theme='light'] .hero__title { color: #1A1917; }
[data-theme='light'] .hero__title-line--accent { color: rgba(26,25,23,0.4); }
[data-theme='light'] .hero__sub { color: rgba(26,25,23,0.6); }
[data-theme='light'] .hero__stat-num { color: #1A1917; }
[data-theme='light'] .hero__stats { background: rgba(247,246,242,0.92); border-top-color: rgba(0,0,0,0.08); }

/* Search bar light */
[data-theme='light'] .search-bar {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.1);
}
[data-theme='light'] .search-bar__label { color: rgba(26,25,23,0.45); }
[data-theme='light'] .search-bar__btn { background: var(--text); color: #fff; }
[data-theme='light'] .search-bar__btn:hover { background: #2D2C2A; }
[data-theme='light'] .search-bar__divider { background: rgba(0,0,0,0.08); }

/* Sections light */
[data-theme='light'] .trusted { background: #EFEDE8; }
[data-theme='light'] .trusted__logos span { color: rgba(26,25,23,0.45); background: #fff; border-color: rgba(0,0,0,0.1); }
[data-theme='light'] .benefit-card { background: #fff; }
[data-theme='light'] .benefit-card:hover { background: #F7F6F2; }
[data-theme='light'] .benefit-card h3 { color: #1A1917; }
[data-theme='light'] .benefit-card p { color: rgba(26,25,23,0.6); }
[data-theme='light'] .benefit-card__icon { border-color: rgba(0,0,0,0.1); color: rgba(26,25,23,0.5); }
[data-theme='light'] .how__content { background: #F7F6F2; }
[data-theme='light'] .how-step { border-bottom-color: rgba(0,0,0,0.07); }
[data-theme='light'] .how-step__body h3 { color: #1A1917; }
[data-theme='light'] .how-step__body p { color: rgba(26,25,23,0.6); }
[data-theme='light'] .office-types { background: #F7F6F2; }
[data-theme='light'] .type-card { background: #fff; }
[data-theme='light'] .type-card__body h3 { color: #1A1917; }
[data-theme='light'] .type-card__list li { color: rgba(26,25,23,0.6); }
[data-theme='light'] .type-card__meta { color: rgba(26,25,23,0.4); }
[data-theme='light'] .stats-section { background: #1A1917; }
[data-theme='light'] .price-card { background: #fff; }
[data-theme='light'] .price-card__name { color: rgba(26,25,23,0.4); }
[data-theme='light'] .price-card__price strong { color: #1A1917; }
[data-theme='light'] .price-card ul li { color: rgba(26,25,23,0.6); }
[data-theme='light'] .review { background: #fff; }
[data-theme='light'] .review blockquote { color: rgba(26,25,23,0.65); }
[data-theme='light'] .partner-model { background: #fff; }
[data-theme='light'] .partner-model__title { color: #1A1917; }
[data-theme='light'] .partner-model__col ul li { color: rgba(26,25,23,0.65); }
[data-theme='light'] .partner-model__result-val { color: #1A1917; }
[data-theme='light'] .partners-included__item { background: #f9f8f5; border-color: rgba(0,0,0,0.07); color: rgba(26,25,23,0.7); }
[data-theme='light'] .faq-item { border-bottom-color: rgba(0,0,0,0.08); }
[data-theme='light'] .faq-item summary { color: #1A1917; }
[data-theme='light'] .faq-item p { color: rgba(26,25,23,0.65); }
[data-theme='light'] .footer { background: #EFEDE8; border-top-color: rgba(0,0,0,0.07); }
[data-theme='light'] .footer__top { border-bottom-color: rgba(0,0,0,0.07); }
[data-theme='light'] .footer__col a { color: rgba(26,25,23,0.5); }
[data-theme='light'] .footer__col a:hover { color: #FF6B35; }
[data-theme='light'] .footer__col h4 { color: rgba(26,25,23,0.38); }
[data-theme='light'] .footer__bottom { color: rgba(26,25,23,0.38); border-top-color: rgba(0,0,0,0.07); }
[data-theme='light'] .section-title { color: #1A1917; }
[data-theme='light'] .section-eyebrow { color: rgba(26,25,23,0.35); }
[data-theme='light'] .loc-card { background: rgba(26,25,23,0.04); }
[data-theme='light'] .loc-card__name { color: #fff; }

/* Theme toggle button */
.theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--accent-dim); color: var(--text); }
[data-theme='light'] .theme-toggle { border-color: rgba(0,0,0,0.12); color: rgba(26,25,23,0.5); }
[data-theme='light'] .theme-toggle:hover { background: rgba(0,0,0,0.06); color: #1A1917; }
