
.rothome { font-family: 'Avenir Next','Avenir',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif; color:#252729; line-height:1.55; }
.rothome * { box-sizing:border-box; }
.rothome img { max-width:100%; display:block; }
.rothome a { color:inherit; text-decoration:none; }
.rothome ul { margin:0; padding:0; list-style:none; }
.rothome h1,.rothome h2,.rothome h3,.rothome p,.rothome dl,.rothome dd,.rothome dt { margin:0; }

.rothome {
  
  --ink: #252729;
  --ink-soft: #55595d;
  --ink-mute: #8a8f93;
  --navy-1: #252729;
  --navy-2: #2f3235;
  --navy-3: #3d4145;
  
  --accent: #f0b64c;
  --accent-hover: #f5c96e;
  
  --accent-strong: #e0a01f;
  --accent-ink: #252729;
  
  --line: #e6e7e8;
  --tint: #f6f6f5;
  --card-shadow: 0 1px 2px rgba(37, 39, 41, 0.06), 0 8px 24px rgba(37, 39, 41, 0.08);
  --card-shadow-hover: 0 2px 4px rgba(37, 39, 41, 0.08), 0 16px 40px rgba(37, 39, 41, 0.16);
  --radius: 14px;
  
  --font: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.rothome .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.rothome .container--narrow { max-width: 860px; }

.rothome .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  font: 600 15px/1 var(--font);
  padding: 13px 22px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}
.rothome .btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 4px 14px rgba(240, 182, 76, 0.35);
}
.rothome .btn--accent:hover { background: var(--accent-hover); }
.rothome .btn--accent:active { transform: translateY(1px); }
.rothome .btn--big { padding: 16px 32px; font-size: 16px; }

.rothome .honey-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ============ Header ============ */
.rothome .header {
  position: sticky;
  top: 0;
  z-index: 50;
  
  background: var(--navy-1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.2s;
}
.rothome .header--scrolled { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.25); }
.rothome .header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.rothome .logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; }

.rothome .logo__img { height: 30px; width: auto; }
.rothome .logo__img--footer { height: 34px; margin-bottom: 14px; }
.rothome .logo__accent { color: var(--accent); }
.rothome .nav { display: flex; gap: 22px; margin-left: auto; }
.rothome .nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s;
}

.rothome .nav a:hover { color: var(--accent); }
.rothome .header__actions { display: flex; align-items: center; gap: 16px; }
.rothome .header__cta { padding: 10px 18px; font-size: 14px; }

.rothome .langdrop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  padding: 8px 4px;
  transition: color 0.15s;
}
.rothome .langdrop:hover { color: var(--accent); }
.rothome .langdrop__icon { width: 16px; height: 16px; }

.rothome .langdrop__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  max-height: min(58vh, 300px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--card-shadow-hover);
  padding: 6px;
  z-index: 60;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 39, 41, 0.25) transparent;
}
.rothome .langdrop__menu::-webkit-scrollbar { width: 6px; }
.rothome .langdrop__menu::-webkit-scrollbar-track { background: transparent; }
.rothome .langdrop__menu::-webkit-scrollbar-thumb {
  background: rgba(37, 39, 41, 0.25);
  border-radius: 3px;
}
.rothome .langdrop__menu::-webkit-scrollbar-thumb:hover { background: rgba(37, 39, 41, 0.4); }
.rothome .langdrop--open .langdrop__menu { display: block; }
.rothome .langdrop__menu a {
  display: block;
  padding: 6px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.3;
  white-space: nowrap;
}
.rothome .langdrop__menu a:hover { background: var(--tint); color: var(--accent); }
.rothome .langdrop__menu a.active { color: var(--accent); font-weight: 700; }

/* ============ Hero ============ */
.rothome .hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: #fff;
  overflow: hidden;
  
  margin-top: -64px;
  padding-top: 64px;
}

.rothome .hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(240, 182, 76, 0.16), transparent),
    linear-gradient(160deg, rgba(37, 39, 41, 0.92) 0%, rgba(47, 50, 53, 0.88) 55%, rgba(61, 65, 69, 0.86) 100%),
    url('/images/hero-office.webp');
  background-size: auto, auto, cover;
  background-position: center;
  pointer-events: none;
}

.rothome .hero__inner {
  position: relative;
  padding: 62px 20px 0;
}
.rothome .hero__col { max-width: 660px; }
.rothome .hero__kicker {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  padding: 9px 16px 9px 20px;
  border-radius: 0 6px 6px 0;
  
  margin-left: -20px;
}
.rothome .hero__title {
  font-size: clamp(33px, 4.7vw, 58px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -1.6px;
  margin-top: 22px;
  text-wrap: balance;
}
.rothome .hero__title-accent { color: var(--accent); }
.rothome .hero__sub {
  margin-top: 18px;
  max-width: 52ch;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
}

.rothome .search { position: relative; width: 100%; max-width: 640px; margin-top: 28px; }
.rothome .search__row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 9px 9px 9px 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.rothome .search__icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.rothome .search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  font: 400 16.5px var(--font);
  color: var(--ink);
  background: transparent;
  padding: 10px 4px;
}
.rothome .search__input::placeholder { color: var(--ink-mute); }
.rothome .search__drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow-hover);
  padding: 8px;
  z-index: 40;
  text-align: left;
  max-height: 380px;
  overflow: auto;
}
.rothome .search__group {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 8px 12px 4px;
}
.rothome .search__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
}
.rothome .search__item--hi, .rothome .search__item:hover { background: var(--tint); }
.rothome .search__pin { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.rothome .search__name { font-weight: 500; }
.rothome .search__badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #0a6d3c;
  background: #dcf5e7;
  border-radius: 20px;
  padding: 3px 9px;
  white-space: nowrap;
}

.rothome .hero__chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.rothome .hero__chips-label { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); margin-right: 2px; }
.rothome .chip {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  padding: 6px 14px;
  transition: background 0.15s, border-color 0.15s;
}

.rothome .chip { transition: background 0.15s, border-color 0.15s, color 0.15s; }
.rothome .chip:hover {
  background: rgba(240, 182, 76, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.rothome .geo {
  margin-top: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: rgba(240, 182, 76, 0.12);
  border: 1px solid rgba(240, 182, 76, 0.35);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
}
.rothome .geo__pin { width: 14px; height: 14px; color: var(--accent); }
.rothome .geo__label { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.rothome .geo__city {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px dashed rgba(240, 182, 76, 0.5);
}
.rothome .geo__city:hover { border-bottom-style: solid; }

.rothome .hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 52px;
  background: var(--accent);
  color: var(--accent-ink);
}
.rothome .hero__stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px clamp(30px, 5vw, 62px);
  padding-top: 19px;
  padding-bottom: 19px;
}
.rothome .stat { display: flex; align-items: baseline; gap: 9px; }
.rothome .stat__num {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rothome .stat__label { font-size: 13.5px; font-weight: 600; color: rgba(37, 39, 41, 0.72); }

.rothome .section { padding: 72px 0; }
.rothome .section--tint { background: var(--tint); }

.rothome .section__title {
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.2;
  position: relative;
  padding-top: 22px;
}
.rothome .section__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
}
.rothome .section__title--light { color: #fff; }

.rothome .section--dark .section__title:not(.section__title--light) { color: #fff; }
.rothome .section__sub { margin-top: 12px; max-width: 720px; color: var(--ink-soft); font-size: 16.5px; }

.rothome .cities {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.rothome .citycard {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-2);
  display: block;
  isolation: isolate;
  
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 1px 2px rgba(37, 39, 41, 0.08),
    0 10px 24px rgba(37, 39, 41, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rothome .citycard:hover {
  transform: translateY(-4px);
  
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 20px 40px rgba(37, 39, 41, 0.26);
}
.rothome .citycard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.rothome .citycard:hover img { transform: scale(1.08); filter: brightness(1.12) saturate(1.15); }

.rothome .citycard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240, 182, 76, 0) 50%, rgba(240, 182, 76, 0.18));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.rothome .citycard:hover::after { opacity: 1; }
.rothome .citycard__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(37, 39, 41, 0) 38%,
      rgba(37, 39, 41, 0.5) 70%,
      rgba(37, 39, 41, 0.88) 100%),
    rgba(37, 39, 41, 0.24);
  transition: background 0.3s ease;
}

.rothome .citycard:hover .citycard__shade {
  background:
    linear-gradient(180deg,
      rgba(37, 39, 41, 0) 38%,
      rgba(37, 39, 41, 0.45) 70%,
      rgba(37, 39, 41, 0.85) 100%),
    rgba(37, 39, 41, 0.06);
}
.rothome .citycard__country {
  position: absolute;
  left: 14px;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rothome .citycard__name {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 11px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rothome .steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.rothome .step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--card-shadow);
  position: relative;
}
.rothome .step__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--navy-2);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.rothome .step__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.rothome .step__text { color: var(--ink-soft); font-size: 15px; }

.rothome .section--dark .step {
  background: var(--accent);
  border: 1px solid transparent;
  box-shadow: none;
  color: var(--accent-ink);
}

.rothome .section--dark .step__num {
  background: #fff;
  color: var(--accent-ink);
}
.rothome .section--dark .step__title { color: #fff; }
.rothome .section--dark .step__text { color: rgba(37, 39, 41, 0.82); }

.rothome .why {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.rothome .why__icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 14px; }
.rothome .why__icon svg { width: 100%; height: 100%; }
.rothome .why__title { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.rothome .why__text { color: var(--ink-soft); font-size: 14.5px; }

.rothome .section--dark {
  background: linear-gradient(140deg, var(--navy-1), var(--navy-3));
  color: #fff;
}
.rothome .cowork__inner { display: flex; align-items: center; gap: 56px; }
.rothome .cowork__text { flex: 1; }
.rothome .cowork__p { margin: 16px 0 26px; color: rgba(255, 255, 255, 0.78); font-size: 16.5px; max-width: 560px; }
.rothome .cowork__art {
  flex: 1.05;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}
.rothome .cowork__art::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  pointer-events: none;
}
.rothome .cowork__art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; display: block; }

.rothome .guides__title {
  margin-top: 44px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  padding-top: 18px;
}
.rothome .guides__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}
.rothome .guides {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 16px;
}
.rothome .guides__card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.rothome .guides__card:hover { border-color: var(--accent); box-shadow: var(--card-shadow); }
.rothome .guides__city {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--ink);
}
.rothome .guides__city:hover { color: var(--accent); }
.rothome .guides__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 20px;
  padding: 2px 8px;
  font-variant-numeric: tabular-nums;
}
.rothome .guides__list {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rothome .guides__list a {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  display: block;
  padding-left: 13px;
  position: relative;
}
.rothome .guides__list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.rothome .guides__list a:hover { color: var(--ink); }
.rothome .guides__more {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-strong, var(--accent));
}
.rothome .guides__more:hover { text-decoration: underline; }

.rothome .cityseo {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.cityseo__text > p,
.rothome .cityseo__text div > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.72;
  margin-bottom: 16px;
}

.rothome .cityseo__heading { margin-top: 0; }
.rothome .cityseo__cities .section__sub { margin-top: 8px; font-size: 15.5px; }
.rothome .cityseo__cities .cities { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

.rothome .seo__body { margin-top: 20px; max-width: 78ch; }
.rothome .seo__body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.72; margin-bottom: 16px; }
.rothome .seo__h3 {
  margin: 26px 0 10px;
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.rothome .articles {
  
  margin-top: 34px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #ececec;
}
.rothome .articles::-webkit-scrollbar { height: 8px; }
.rothome .articles::-webkit-scrollbar-track { background: #ececec; border-radius: 4px; }
.rothome .articles::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

@media (min-width: 900px) {
.rothome .articles { grid-template-columns: repeat(3, 1fr); }
}
.rothome .article {
  flex: 0 0 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.rothome .article:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.rothome .article img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }

.rothome .article__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rothome .article__title { font-size: 16px; font-weight: 700; color: #1a1204; line-height: 1.35; }
.rothome .article__excerpt { font-size: 13px; color: #5a4712; line-height: 1.5; }

/* FAQ */
.rothome .faq { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.rothome .faq__item {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 22px;
}
.rothome .faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.rothome .faq__q::-webkit-details-marker { display: none; }
.rothome .faq__chev { width: 16px; height: 16px; flex-shrink: 0; color: var(--ink-mute); transition: transform 0.2s; }
.rothome .faq__item[open] .faq__chev { transform: rotate(180deg); }
.rothome .faq__a { padding: 0 0 18px; color: var(--ink-soft); font-size: 15.5px; max-width: 96%; }

.rothome .section--dark .faq__item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.rothome .section--dark .faq__q { color: var(--accent); }
.rothome .section--dark .faq__a { color: rgba(255, 255, 255, 0.78); }
.rothome .section--dark .faq__chev { color: rgba(255, 255, 255, 0.55); }

.rothome .section--contact { background: var(--tint); }
.rothome .contact {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}
.rothome .contact .section__sub { margin-left: auto; margin-right: auto; }
.rothome .contact__grid {
  margin: 28px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
.rothome .field__input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  font: 400 15px var(--font);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.rothome .field__input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240, 182, 76, 0.22); }
.rothome .contact__privacy { margin-top: 14px; font-size: 12.5px; color: var(--ink-mute); }
.rothome .contact__sent {
  margin: 18px 0 4px;
  background: #dcf5e7;
  color: #0a6d3c;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
}

.rothome .feedback__phone .iti { width: 100%; }

.rothome .footer { background: var(--navy-1); color: rgba(255, 255, 255, 0.75); font-size: 14.5px; }

.rothome .fcat { padding-top: 60px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.rothome .fcat__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #fff;
}
.rothome .fcat__sub { margin-top: 10px; color: rgba(255, 255, 255, 0.6); font-size: 15px; }
.rothome .fcat__hubs {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.rothome .fcat__hubs > span { color: rgba(255, 255, 255, 0.6); font-weight: 600; }
.rothome .fcat__hub {
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(240, 182, 76, 0.35);
  border-radius: 20px;
  padding: 6px 15px;
  transition: background 0.15s, border-color 0.15s;
}
.rothome .fcat__hub:hover { background: rgba(240, 182, 76, 0.12); border-color: var(--accent); }

.rothome .fcat__grid {
  margin-top: 30px;
  columns: 4 220px;
  column-gap: 26px;
}
.rothome .fcat__region {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
}
.rothome .fcat__region-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.rothome .fcat__list { display: flex; flex-direction: column; gap: 5px; }
.rothome .fcat__link { font-size: 12.5px; line-height: 1.45; color: rgba(255, 255, 255, 0.62); transition: color 0.12s; }

.rothome .fcat__link:hover { color: var(--accent); }

.rothome .fcat__link--live { font-weight: 600; color: rgba(255, 255, 255, 0.92); }
.rothome .footer__grid {
  padding-top: 40px;
  padding-bottom: 36px;
}
.rothome .footer__about { max-width: none; }
.rothome .logo--footer { font-size: 19px; font-weight: 700; color: #fff; display: inline-block; margin-bottom: 14px; }
.rothome .footer__about p { max-width: none; font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.rothome .footer__h {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 14px;
}
.rothome .footer__list { display: flex; flex-direction: column; gap: 8px; }
.rothome .footer__list a { color: rgba(255, 255, 255, 0.72); transition: color 0.12s; }
.rothome .footer__list a:hover { color: #fff; }
.rothome .footer__list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.rothome .footer__hubs { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.12); flex-direction: row; gap: 18px; }
.rothome .footer__hubs a { font-weight: 600; color: var(--accent); }
.rothome .footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
  color: var(--accent);
}
.rothome .footer__bottom-links { display: flex; gap: 22px; }
.rothome .footer__bottom a { color: var(--accent); }
.rothome .footer__bottom a:hover { color: var(--accent-hover); }
.rothome .footer__disclaimer { padding-top: 10px; padding-bottom: 30px; font-size: 12px; color: rgba(240, 182, 76, 0.72); }

.rothome [dir='rtl'] .nav { margin-left: 0; margin-right: auto; }
.rothome [dir='rtl'] .langdrop__menu { right: auto; left: 0; }
.rothome [dir='rtl'] .search__badge { margin-left: 0; margin-right: auto; }
[dir='rtl'] .citycard__cta svg,
.rothome [dir='rtl'] .faq__chev { transform: scaleX(-1); }
.rothome [dir='rtl'] .fcat__link--live::after { margin-left: 0; margin-right: 7px; }

@media (max-width: 980px) {
  
.rothome .cityseo { grid-template-columns: 1fr; gap: 32px; }
.rothome .cityseo__text { order: 2; }
.rothome .cityseo__cities { order: 1; }
.rothome .nav { display: none; }
.rothome .steps { grid-template-columns: 1fr; }
.rothome .why { grid-template-columns: 1fr 1fr; }
.rothome .cowork__inner { flex-direction: column; gap: 34px; text-align: center; }
.rothome .cowork__p { margin-left: auto; margin-right: auto; }
.rothome .footer__grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 640px) {
.rothome .header__cta { display: none; }
.rothome .hero__inner { padding: 44px 20px 0; }
.rothome .hero__stats-inner { gap: 14px 26px; }
.rothome .stat__num { font-size: 23px; }
.rothome .search__row { flex-wrap: wrap; padding: 10px; }
.rothome .search__icon { display: none; }
.rothome .search__input { flex-basis: 100%; padding: 8px 6px; }
.rothome .search__btn { flex: 1; }
.rothome .hero__stats { gap: 26px; }
.rothome .why { grid-template-columns: 1fr; }
.rothome .contact__grid { grid-template-columns: 1fr; }
.rothome .footer__bottom { flex-direction: column; gap: 8px; }
.rothome .section { padding: 52px 0; }
}

.rothome .cowork__formats {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
  max-width: 620px;
}
.rothome .cowork__format {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.rothome .cowork__format-name {
  display: block;
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 4px;
}
.rothome .cowork__format-desc {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 900px) {
.rothome .cowork__formats { grid-template-columns: 1fr; max-width: 100%; text-align: left; }
}

.rothome .rot-cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.55); z-index: 10000; display: flex;
  align-items: center; justify-content: center; padding: 16px; }
.rothome .rot-cookie-modal[hidden] { display: none; }
.rothome .rot-cookie-modal__box { background: #fff; color: #303030; max-width: 430px; width: 100%;
  border-radius: 8px; padding: 22px 24px; font-size: 14px; line-height: 1.55; text-align: left; }
.rothome .rot-cookie-modal__box h3 { margin: 0 0 10px; font-size: 18px; color: #303030; }
.rothome .rot-cookie-modal__row { display: flex; gap: 8px; align-items: flex-start; margin: 12px 0; cursor: pointer; }
.rothome .rot-cookie-modal__row input { margin-top: 3px; }
.rothome .rot-cookie-modal__hint { color: #888; font-size: 12.5px; }
.rothome .rot-cookie-modal__actions { text-align: right; margin-top: 14px; }
.rothome .rot-cookie-modal__actions button { border: none; border-radius: 4px; padding: 8px 18px;
  margin-left: 8px; font-size: 14px; cursor: pointer; }
.rothome .rot-cookie-modal__save { background: var(--accent); color: var(--accent-ink); }
.rothome .rot-cookie-modal__cancel { background: #eee; color: #555; }

.rothome .article__where { margin-top: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(26, 18, 4, 0.55); }

.rothome .article img.article__img--contain { object-fit: contain; background: #fff; }

.rothome html, .rothome body { overflow-x: hidden; }
.rothome .footer__legal, .rothome .legal-links, .rothome .footer__links {
  flex-wrap: wrap !important;
  row-gap: 6px;
}
.rothome .footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: flex-end;
}
@media (max-width: 720px) {
.rothome .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
.rothome .footer__bottom-links { justify-content: flex-start; }
}
