:root {
  --blue: #0758f7;
  --blue-dark: #043ab7;
  --blue-soft: #e8f0ff;
  --navy: #061631;
  --ink: #101828;
  --muted: #667085;
  --line: #dce4ef;
  --paper: #f5f7fb;
  --white: #fff;
  --radius: 20px;
  --max: 1400px;
  --shadow: 0 24px 60px rgba(5, 30, 72, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(6, 22, 49, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand > span { font-size: 1.28rem; font-weight: 900; letter-spacing: -.045em; color: var(--navy); }
.brand > span > span { color: var(--blue); }
.desktop-nav { display: flex; gap: 27px; margin-left: auto; }
.desktop-nav a { font-size: .93rem; font-weight: 650; color: #344054; transition: color .2s; }
.desktop-nav a:hover { color: var(--blue); }
.header-phone {
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy);
  font-size: .92rem;
  font-weight: 800;
  border-radius: 10px;
  white-space: nowrap;
}
.install-app-button {
  min-height: 42px;
  padding: 0 15px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #bdd0fb;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 850;
  white-space: nowrap;
}
.install-app-button:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.install-app-button[hidden] { display: none !important; }
.profile-button {
  min-height: 42px;
  padding: 0 13px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
}
.profile-button::before { content: "○"; margin-right: 6px; color: var(--blue); font-size: 1rem; }
.profile-button.has-profile::before { content: "●"; color: #17a66a; }
.profile-button:hover { color: var(--blue); border-color: #9ebcf9; }
.cart-button {
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
}
.cart-button span { min-width: 24px; height: 24px; padding: 0 6px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 999px; font-size: .72rem; }
.menu-toggle, .mobile-menu { display: none; }

.demo-mode-banner {
  position: relative;
  z-index: 45;
  padding: 9px 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #443500;
  background: #fff4bd;
  border-bottom: 1px solid #ecd66b;
  font-size: .78rem;
}
.demo-mode-banner[hidden] { display: none; }
.demo-mode-banner b { color: #2e2500; }

.hero {
  max-width: 1040px;
  min-height: 0;
  margin: 0 auto;
  padding: 46px 24px 58px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-copy { width: 100%; }
.eyebrow, .section-index {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-dot { width: 8px; height: 8px; background: #17b26a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(23,178,106,.12); }
.hero h1 {
  max-width: 920px;
  margin: 0 0 34px;
  color: var(--navy);
  font-size: clamp(3.25rem, 6.3vw, 6.2rem);
  line-height: .92;
  letter-spacing: -.067em;
  text-wrap: balance;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 850;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 30px rgba(7, 88, 247, .24); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 34px rgba(7, 88, 247, .3); }
.button-secondary { color: var(--blue); background: var(--blue-soft); }
.button-secondary:hover { background: #d8e6ff; }
.button-ghost { color: var(--navy); background: #fff; border: 1px solid var(--line); }
.hero-search {
  position: relative;
  z-index: 5;
  width: min(820px, 100%);
}
.hero-search label { display: block; margin-bottom: 12px; color: var(--navy); font-size: 1.08rem; font-weight: 800; }
.hero-search-field {
  height: 72px;
  padding: 0 8px 0 20px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #c9d5e5;
  border-radius: 17px;
  box-shadow: 0 18px 46px rgba(5, 27, 66, .1);
  transition: border-color .2s, box-shadow .2s;
}
.hero-search-field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 5px rgba(7,88,247,.1), 0 22px 52px rgba(5,27,66,.13); }
.hero-search-field svg { width: 26px; height: 26px; fill: none; stroke: var(--blue); stroke-width: 2; }
.hero-search input { min-width: 0; width: 100%; height: 100%; padding: 0; color: var(--navy); background: transparent; border: 0; outline: 0; font-size: 1.1rem; }
.hero-search input::placeholder { color: #98a2b3; }
.hero-search-field > button { height: 54px; padding: 0 26px; color: #fff; background: var(--blue); border: 0; border-radius: 12px; font-weight: 900; }
.hero-suggestions {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  right: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 26px 65px rgba(5, 27, 66, .18);
}
.hero-suggestions[hidden] { display: none; }
.hero-suggestion {
  width: 100%;
  min-height: 76px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  background: #fff;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  text-align: left;
}
.hero-suggestion:last-child { border-bottom: 0; }
.hero-suggestion:hover, .hero-suggestion:focus-within { background: #f1f6ff; outline: 0; }
.hero-suggestion img { width: 56px; height: 56px; object-fit: cover; background: #edf2f8; border-radius: 10px; }
.hero-suggestion-copy { min-width: 0; display: grid; gap: 2px; }
.hero-suggestion b { overflow: hidden; font-size: .95rem; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.hero-suggestion small { overflow: hidden; color: var(--muted); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.hero-suggestion strong { flex: 0 0 auto; color: var(--blue); font-size: .9rem; white-space: nowrap; }
.hero-suggestion-actions { display: flex; gap: 7px; }
.hero-suggestion-actions button { height: 38px; padding: 0 11px; color: var(--blue); background: #fff; border: 1px solid #b8c8e2; border-radius: 9px; font-size: .74rem; font-weight: 850; }
.hero-suggestion-actions button.primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.hero-suggestion-actions button:disabled { cursor: default; color: #7a8799; background: #e8edf4; border-color: #e8edf4; }
.flying-product { position: fixed; z-index: 200; pointer-events: none; object-fit: cover; border-radius: 12px; box-shadow: 0 22px 50px rgba(5,27,66,.3); transition: transform .72s cubic-bezier(.2,.82,.2,1), opacity .72s ease, border-radius .72s ease; }
.cart-button.cart-bump { animation: cart-bump .46s ease; }
.cart-toast { position: fixed; z-index: 180; top: 86px; right: 18px; max-width: min(380px, calc(100vw - 36px)); padding: 12px 15px; color: #fff; background: var(--navy); border-radius: 12px; box-shadow: var(--shadow); font-size: .82rem; font-weight: 750; opacity: 0; transform: translateY(-8px); transition: opacity .2s, transform .2s; }
.cart-toast.visible { opacity: 1; transform: translateY(0); }
@keyframes cart-bump { 0%, 100% { transform: scale(1); } 45% { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(7,88,247,.12); } }

.promo-section { max-width: var(--max); margin: 0 auto; padding: 0 24px 84px; }
.promo-heading { margin-bottom: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.promo-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1; letter-spacing: -.05em; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.promo-card { position: relative; min-height: 330px; overflow: hidden; color: #fff; background: var(--navy); border-radius: 22px; box-shadow: 0 18px 42px rgba(5,27,66,.12); }
.promo-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,13,33,.96) 0%, rgba(2,13,33,.78) 48%, rgba(2,13,33,.08) 100%); }
.promo-card-content { position: relative; z-index: 1; width: 62%; min-height: 330px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.promo-card-content > span { padding: 7px 10px; color: #fff; background: var(--blue); border-radius: 999px; font-size: .75rem; font-weight: 900; }
.promo-card h3 { margin: 24px 0 10px; font-size: clamp(1.55rem, 2.6vw, 2.55rem); line-height: 1.02; letter-spacing: -.045em; }
.promo-card p { margin: 0; color: #d8e3f3; font-size: .9rem; }
.promo-card button { margin-top: auto; min-height: 46px; padding: 0 16px; color: var(--navy); background: #fff; border: 0; border-radius: 10px; font-weight: 850; }

.catalog-shell { max-width: var(--max); margin: 0 auto; padding: 94px 24px 105px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; }
.section-heading h2, .module-copy h2, .contact-copy h2 {
  margin: 11px 0 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.section-heading > p { max-width: 425px; margin: 0; color: var(--muted); }
.catalog-tools { display: grid; grid-template-columns: 1fr 220px; gap: 12px; margin: 34px 0 18px; }
.search-box {
  height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(5, 27, 66, .05);
}
.search-box:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,88,247,.1); }
.search-box svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 2; }
.search-box input { min-width: 0; width: 100%; border: 0; outline: 0; color: var(--navy); background: transparent; font-size: 1rem; }
.search-box input::placeholder { color: #98a2b3; }
.search-box kbd { padding: 4px 7px; color: #667085; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; font-size: .72rem; white-space: nowrap; }
.catalog-tools select { padding: 0 16px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 14px; font-weight: 700; }
.category-strip-wrap { position: relative; display: flex; align-items: center; gap: 7px; }
.category-strip { display: flex; gap: 8px; overflow: auto; padding: 5px 1px; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-chip { flex: 0 0 auto; min-height: 42px; padding: 0 16px; color: #344054; background: #fff; border: 1px solid var(--line); border-radius: 100px; font-size: .86rem; font-weight: 800; }
.category-chip:hover { border-color: #a9c4ff; }
.category-chip.active { color: #fff; background: var(--blue); border-color: var(--blue); }
.scroll-arrow { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 50%; }
.catalog-summary { min-height: 40px; margin: 19px 0 15px; display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: .9rem; }
.catalog-summary strong { color: var(--navy); }
.catalog-note { margin-left: auto; font-size: .78rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { position: relative; min-width: 0; overflow: hidden; background: #fff; border: 1px solid #e0e7f0; border-radius: 17px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.product-card:hover { transform: translateY(-4px); border-color: #b5caff; box-shadow: 0 18px 40px rgba(5, 27, 66, .11); }
.product-image { position: relative; aspect-ratio: 1.18 / 1; overflow: hidden; background: #eef3fa; }
.product-image::before { content: "ПХ"; position: absolute; inset: 0; display: grid; place-items: center; color: #ccdaf3; font-size: 3rem; font-weight: 900; }
.product-image img { position: relative; width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-tag { position: absolute; top: 10px; left: 10px; z-index: 2; max-width: calc(100% - 20px); padding: 6px 9px; overflow: hidden; color: var(--blue); background: rgba(255,255,255,.92); border-radius: 7px; font-size: .67rem; font-weight: 900; letter-spacing: .04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; backdrop-filter: blur(8px); }
.product-body { min-height: 176px; padding: 15px; display: flex; flex-direction: column; }
.product-brand { min-height: 18px; color: #98a2b3; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.booking-available { align-self: flex-start; margin-top: 8px; padding: 5px 8px; border-radius: 999px; color: #075e45; background: #dcfaee; font-size: .68rem; font-weight: 800; }
.product-card h3 { margin: 5px 0 12px; color: var(--navy); font-size: 1rem; line-height: 1.27; letter-spacing: -.02em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-bottom { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.product-price { display: grid; color: var(--navy); font-size: 1.14rem; font-weight: 900; letter-spacing: -.035em; }
.product-price small { color: var(--muted); font-size: .68rem; font-weight: 650; letter-spacing: 0; }
.product-open { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--blue); border: 0; border-radius: 10px; font-size: 1.15rem; }
.button-more { margin: 28px auto 0; color: var(--blue); background: #fff; border: 1px solid #aac3f6; }
.empty-state { padding: 70px 20px; display: grid; justify-items: center; gap: 8px; color: var(--muted); text-align: center; background: #fff; border: 1px dashed #b9c7d8; border-radius: 18px; }
.empty-state b { color: var(--navy); font-size: 1.25rem; }
.text-button { padding: 8px 0; color: var(--blue); background: transparent; border: 0; font-weight: 850; }

.how-section { padding: 100px max(24px, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--navy); }
.light-heading h2 { color: #fff; }
.light-heading > p { color: #acb8cc; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.steps article { position: relative; min-height: 285px; padding: 26px; background: var(--navy); }
.steps article > span { position: absolute; top: 18px; right: 20px; color: #536078; font-size: .72rem; font-weight: 900; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 14px; font-size: 1.5rem; }
.steps h3 { margin: 48px 0 10px; font-size: 1.25rem; }
.steps p { margin: 0; color: #aeb9cb; font-size: .91rem; }
.security-line { padding-top: 30px; display: flex; justify-content: center; gap: 48px; color: #d8dfeb; font-size: .82rem; font-weight: 750; }
.security-line span::before { content: "✓"; margin-right: 8px; color: #6ea2ff; }

.module-section { max-width: var(--max); margin: 0 auto; padding: 110px 24px; display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: center; }
.module-copy > p { margin: 24px 0 30px; color: var(--muted); font-size: 1.06rem; }
.module-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.module-copy li { padding: 17px 0; display: grid; grid-template-columns: 145px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.module-copy li b { color: var(--navy); font-size: .9rem; }
.module-copy li span { color: var(--muted); font-size: .86rem; }
.module-gallery { position: relative; min-height: 610px; }
.module-gallery figure { margin: 0; }
.module-main { width: 82%; margin-left: auto !important; }
.module-main img { width: 100%; aspect-ratio: .9; object-fit: cover; clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%); }
.module-detail { position: absolute; left: 0; bottom: 8px; width: 48%; }
.module-detail img { width: 100%; aspect-ratio: 1.05; object-fit: cover; border: 9px solid var(--paper); box-shadow: var(--shadow); }
.module-gallery figcaption { display: inline-block; margin-top: 8px; color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.module-detail figcaption { padding-left: 9px; }

.seo-section { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); background: #fff; }
.seo-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 80px; align-items: end; }
.seo-intro .section-index { grid-column: 1 / -1; }
.seo-intro h2, .faq-wrap h2 { margin: 0; color: var(--navy); font-size: clamp(2.35rem, 4vw, 4.15rem); line-height: 1.02; letter-spacing: -.055em; }
.seo-intro > p { margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.65; }
.seo-categories { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.seo-categories article { min-height: 280px; padding: 26px; border-right: 1px solid var(--line); }
.seo-categories article:last-child { border-right: 0; }
.seo-categories article > span { color: var(--blue); font-size: .72rem; font-weight: 900; }
.seo-categories h3 { margin: 58px 0 12px; color: var(--navy); font-size: 1.18rem; line-height: 1.2; }
.seo-categories p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.seo-link { margin-top: 18px; display: inline-block; color: var(--blue); font-size: .8rem; font-weight: 850; }
.faq-wrap { margin-top: 100px; display: grid; grid-template-columns: .62fr 1.38fr; gap: 80px; }
.faq-wrap h2 { margin-top: 10px; font-size: 3.4rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 21px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); font-size: 1rem; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 1.35rem; font-weight: 500; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -4px 50px 22px 0; color: var(--muted); font-size: .92rem; line-height: 1.65; }

.contact-section { padding: 92px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr .78fr; gap: 80px; align-items: stretch; color: #fff; background: var(--blue); }
.contact-section .section-index { color: #bfd3ff; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { max-width: 620px; margin: 24px 0 32px; color: #dce7ff; font-size: 1.06rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button-white { color: var(--blue); background: #fff; }
.button-outline-white { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.55); }
.address-panel { min-height: 280px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: #0644c7; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); transition: transform .2s; }
.address-panel:hover { transform: translateY(-4px); }
.address-panel > span { color: #afc8ff; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.address-panel strong { font-size: clamp(1.6rem, 2.6vw, 2.6rem); line-height: 1.13; letter-spacing: -.045em; }
.address-panel i { font-size: .88rem; font-style: normal; font-weight: 850; }

footer { padding: 48px max(24px, calc((100vw - var(--max)) / 2)); color: #9ca8bc; background: #040e21; }
.footer-brand > span { color: #fff; }
footer > p { max-width: 480px; margin: 20px 0 38px; font-size: .9rem; }
.footer-seo-links { margin: 0 0 32px; display: flex; flex-wrap: wrap; gap: 9px 20px; }
.footer-seo-links a { color: #c4cede; font-size: .78rem; font-weight: 700; }
.footer-seo-links a:hover { color: #fff; }
footer > div { padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: .74rem; }

/* SEO service pages */
.landing-body { background: #fff; }
.landing-header { position: sticky; z-index: 20; top: 0; height: 72px; padding: 0 max(20px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; gap: 28px; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.landing-header .brand { margin-right: auto; }
.landing-header > a:not(.brand) { color: #344054; font-size: .86rem; font-weight: 800; }
.landing-header .button { min-height: 44px; color: #fff !important; }
.breadcrumbs { max-width: 1180px; margin: 0 auto; padding: 28px 20px 0; color: #7b8799; font-size: .76rem; }
.breadcrumbs a { color: var(--blue); }
.landing-hero { max-width: 1180px; margin: 0 auto; padding: 56px 20px 72px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 65px; align-items: center; }
.landing-hero h1 { margin: 13px 0 20px; color: var(--navy); font-size: clamp(3rem, 5vw, 5.25rem); line-height: .96; letter-spacing: -.063em; }
.landing-hero .lead { max-width: 690px; margin: 0; color: #475467; font-size: 1.12rem; line-height: 1.6; }
.landing-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.landing-proof { margin-top: 34px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px 28px; color: #667085; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 750; }
.landing-proof span::before { content: "✓"; margin-right: 7px; color: var(--blue); }
.landing-price-card { padding: 30px; color: #fff; background: var(--navy); border-radius: 20px; box-shadow: 16px 16px 0 var(--blue); }
.landing-price-card > span { color: #8fa4c3; font-size: .73rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.landing-price-card strong { margin: 15px 0 3px; display: block; font-size: 2.7rem; letter-spacing: -.05em; }
.landing-price-card p { margin: 0; color: #afbdd1; font-size: .83rem; }
.landing-price-card ul { margin: 28px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid #29405f; }
.landing-price-card li { padding: 7px 0; display: flex; justify-content: space-between; gap: 20px; color: #cbd5e5; font-size: .78rem; }
.landing-section { padding: 88px max(20px, calc((100vw - 1180px) / 2)); }
.landing-section.alt { background: var(--paper); }
.landing-section h2 { max-width: 820px; margin: 10px 0 22px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.02; letter-spacing: -.052em; }
.landing-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 70px; }
.landing-copy p { margin: 0; color: var(--muted); line-height: 1.7; }
.task-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.task-grid article { min-height: 190px; padding: 24px; border-right: 1px solid var(--line); }
.task-grid article:last-child { border-right: 0; }
.task-grid b { display: block; margin-bottom: 10px; color: var(--navy); }
.task-grid p { margin: 0; color: var(--muted); font-size: .86rem; }
.seo-product-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.seo-product-card { overflow: hidden; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 15px; transition: transform .2s, box-shadow .2s; }
.seo-product-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(5,27,66,.1); }
.seo-product-card img { width: 100%; aspect-ratio: 1.2; object-fit: cover; background: #eef3fa; }
.seo-product-card div { flex: 1; padding: 15px; display: flex; flex-direction: column; }
.seo-product-card small { color: var(--blue); font-weight: 850; text-transform: uppercase; }
.seo-product-card h3 { margin: 7px 0 16px; color: var(--navy); font-size: .96rem; line-height: 1.3; }
.seo-product-card strong { margin-top: auto; color: var(--navy); }
.seo-product-card span { color: var(--muted); font-size: .7rem; }
.landing-steps { margin-top: 38px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.landing-steps div { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.landing-steps b { color: var(--blue); font-size: .76rem; }
.landing-steps h3 { margin: 20px 0 7px; color: var(--navy); }
.landing-steps p { margin: 0; color: var(--muted); font-size: .83rem; }
.landing-faq { max-width: 900px; margin-top: 36px; border-top: 1px solid var(--line); }
.landing-faq details { border-bottom: 1px solid var(--line); }
.landing-faq summary { padding: 19px 0; color: var(--navy); font-weight: 850; cursor: pointer; }
.landing-faq p { margin: -3px 0 20px; color: var(--muted); line-height: 1.65; }
.landing-related { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.landing-related a { padding: 8px 12px; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-size: .77rem; font-weight: 800; }
.landing-cta { padding: 72px max(20px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #fff; background: var(--blue); }
.landing-cta h2 { margin: 0; max-width: 710px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.03; letter-spacing: -.05em; }
.landing-footer { padding: 38px max(20px, calc((100vw - 1180px) / 2)); color: #a7b2c3; background: #040e21; }
.landing-footer > div { display: flex; justify-content: space-between; gap: 20px; font-size: .76rem; }

@media (max-width: 900px) {
  .landing-header > a:not(.brand):not(.button) { display: none; }
  .landing-hero { grid-template-columns: 1fr; gap: 36px; }
  .landing-price-card { margin-right: 14px; }
  .landing-copy { grid-template-columns: 1fr; }
  .task-grid { grid-template-columns: 1fr; }
  .task-grid article { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .task-grid article:last-child { border-bottom: 0; }
  .seo-product-grid { grid-template-columns: repeat(2,1fr); }
  .landing-steps { grid-template-columns: repeat(2,1fr); }
  .landing-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .landing-header { height: 64px; padding-inline: 14px; }
  .landing-header .brand > span { display: inline; }
  .landing-header .button { min-height: 40px; padding-inline: 12px; font-size: .78rem; }
  .breadcrumbs { padding-top: 20px; }
  .landing-hero { padding-top: 40px; }
  .landing-hero h1 { font-size: 3.15rem; }
  .landing-actions { display: grid; }
  .landing-price-card { padding: 24px; }
  .landing-section { padding-block: 70px; }
  .seo-product-grid { grid-template-columns: 1fr; }
  .seo-product-card { display: grid; grid-template-columns: 40% 60%; }
  .seo-product-card img { height: 100%; aspect-ratio: auto; }
  .landing-steps { grid-template-columns: 1fr; }
  .landing-footer > div { flex-direction: column; }
}

.product-dialog { width: min(900px, calc(100vw - 32px)); max-height: min(820px, calc(100vh - 32px)); padding: 0; color: var(--ink); background: #fff; border: 0; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.36); }
.product-dialog::backdrop { background: rgba(3, 12, 29, .72); backdrop-filter: blur(5px); }
.dialog-close { position: sticky; z-index: 4; top: 15px; float: right; width: 42px; height: 42px; margin: 15px 15px -57px 0; display: grid; place-items: center; color: var(--navy); background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 50%; font-size: 1.6rem; line-height: 1; }
.dialog-product { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 570px; }
.dialog-image { min-height: 430px; background: #eef3fa; }
.dialog-image img { width: 100%; height: 100%; object-fit: cover; }
.dialog-info { padding: 48px 42px 36px; }
.dialog-info .product-tag { position: static; display: inline-block; max-width: 100%; background: var(--blue-soft); }
.dialog-info h2 { margin: 18px 0 12px; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.07; letter-spacing: -.045em; }
.dialog-price { margin: 0 0 20px; color: var(--blue); font-size: 1.6rem; font-weight: 900; letter-spacing: -.04em; }
.dialog-description { color: var(--muted); font-size: .93rem; }
.spec-list { margin: 24px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.spec-list li { padding: 9px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-size: .8rem; }
.spec-list span { color: var(--muted); }
.dialog-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; margin-top: 24px; }
.dialog-actions .button-ghost { min-width: 52px; padding: 0 15px; }
.dialog-footnote { margin: 12px 0 0; color: #98a2b3; font-size: .7rem; }
.mobile-actions { display: none; }

.booking-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: min(900px, calc(100dvh - 28px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(2, 16, 41, .3);
}
.booking-dialog::backdrop { background: rgba(2, 13, 33, .72); backdrop-filter: blur(7px); }
.booking-dialog > .dialog-close { position: sticky; top: 14px; float: right; z-index: 5; margin: 14px 14px -58px 0; }
.booking-shell { padding: 46px 52px 50px; }
.booking-shell h2 { margin: 9px 48px 10px 0; color: var(--navy); font-size: clamp(2rem, 5vw, 3.15rem); line-height: 1; letter-spacing: -.05em; }
.booking-kicker { color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.booking-lead { max-width: 590px; margin: 0 0 24px; color: var(--muted); }
.booking-progress { width: 100%; max-width: 330px; margin-bottom: 26px; display: flex; align-items: center; }
.booking-progress span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: #8490a3; background: #edf1f6; border-radius: 50%; font-size: .76rem; font-weight: 900; }
.booking-progress span.active { color: #fff; background: var(--blue); box-shadow: 0 0 0 5px rgba(7,88,247,.11); }
.booking-progress span.done { color: #fff; background: #17a66a; }
.booking-progress i { height: 2px; flex: 1 1 auto; background: #e0e6ee; }
.booking-progress i.done { background: #75d1aa; }
.booking-product { margin: 22px 0; padding: 13px; display: grid; grid-template-columns: 82px 1fr; gap: 15px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.booking-product-image { height: 72px; overflow: hidden; background: #e7edf6; border-radius: 11px; }
.booking-product-image img { width: 100%; height: 100%; object-fit: cover; }
.booking-product > div:last-child { min-width: 0; display: grid; gap: 3px; }
.booking-product span { color: var(--blue); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.booking-product b { overflow: hidden; color: var(--navy); text-overflow: ellipsis; white-space: nowrap; }
.booking-product small { color: var(--muted); }
.booking-form { display: grid; gap: 18px; }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-fields-three { grid-template-columns: 1.2fr .8fr .9fr; }
.booking-fields-duration { grid-template-columns: .7fr 1.3fr; }
.booking-fields label { display: grid; gap: 7px; color: #475467; font-size: .78rem; font-weight: 800; }
.booking-fields input, .booking-fields select { width: 100%; height: 52px; padding: 0 13px; color: var(--navy); background: #fff; border: 1px solid #cfd8e5; border-radius: 11px; outline: 0; }
.booking-fields input:focus, .booking-fields select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,88,247,.1); }
.booking-auto-time { min-height: 52px; padding: 11px 14px; display: grid; gap: 2px; align-content: center; color: #475467; background: #f0f5ff; border: 1px solid #cbdafb; border-radius: 11px; }
.booking-auto-time b { color: var(--navy); font-size: .79rem; }
.booking-auto-time span { font-size: .75rem; }
.booking-estimate { padding: 17px 18px; display: grid; grid-template-columns: 1fr auto; gap: 2px 20px; background: #f0f5ff; border-radius: 13px; }
.booking-estimate span { color: #4e607d; font-size: .84rem; font-weight: 750; }
.booking-estimate strong { color: var(--blue); font-size: 1.25rem; }
.booking-estimate small { grid-column: 1 / -1; color: #7a879a; }
.booking-next { width: 100%; margin-top: 3px; }
.booking-next:disabled { cursor: not-allowed; opacity: .52; transform: none; }
.booking-consent { display: flex; align-items: flex-start; gap: 10px; color: #5c6677; font-size: .82rem; }
.booking-consent input { margin-top: 3px; accent-color: var(--blue); }
.booking-back { margin: 0 0 20px; padding: 0; color: var(--blue); background: transparent; border: 0; font-size: .86rem; font-weight: 850; }
.booking-summary { margin: 0 0 20px; border-top: 1px solid var(--line); }
.booking-summary > div { padding: 13px 0; display: grid; grid-template-columns: 155px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.booking-summary dt { color: var(--muted); font-size: .84rem; }
.booking-summary dd { margin: 0; color: var(--navy); font-weight: 750; text-align: right; }
.booking-summary .total dd { color: var(--blue); font-size: 1.24rem; }
.booking-prototype-note { margin: 18px 0; padding: 15px 16px; display: grid; gap: 4px; color: #65520c; background: #fff8d8; border: 1px solid #f4dd72; border-radius: 12px; }
.booking-prototype-note b { font-size: .82rem; }
.booking-prototype-note span { font-size: .78rem; }
.booking-access-warning { margin: 18px 0; padding: 15px 16px; display: grid; gap: 4px; color: #7a271a; background: #fff1ed; border: 1px solid #f7b4a8; border-radius: 12px; }
.booking-access-warning b { font-size: .86rem; }
.booking-access-warning span { font-size: .79rem; line-height: 1.45; }
.booking-inline-status { min-height: 0; padding: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.booking-inline-status:not(:empty) { min-height: 44px; padding: 11px 13px; border-radius: 10px; }
.booking-inline-status.error { color: #9d271b; background: #fff0ed; }
.booking-inline-status.success { color: #075e45; background: #dcfaee; }
.booking-inline-status.warning { color: #705400; background: #fff7d6; }
.verification-methods { display: grid; gap: 10px; }
.verification-methods label { cursor: pointer; }
.verification-methods input { position: absolute; opacity: 0; pointer-events: none; }
.verification-methods label > span { position: relative; min-height: 76px; padding: 14px 132px 14px 50px; display: grid; gap: 3px; align-content: center; color: var(--navy); background: #fff; border: 1px solid #cfd8e5; border-radius: 14px; }
.verification-methods label > span::before { content: ""; position: absolute; left: 17px; top: 50%; width: 18px; height: 18px; border: 2px solid #9aa8bb; border-radius: 50%; transform: translateY(-50%); }
.verification-methods input:checked + span { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,88,247,.1); }
.verification-methods input:checked + span::before { border: 6px solid var(--blue); }
.verification-methods small { color: var(--muted); font-size: .76rem; }
.verification-methods em { position: absolute; top: 50%; right: 14px; padding: 6px 8px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: .67rem; font-style: normal; font-weight: 900; transform: translateY(-50%); }
.verification-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.passport-upload-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.passport-upload { position: relative; min-width: 0; min-height: 174px; padding: 16px 13px; display: flex; flex-direction: column; align-items: flex-start; color: var(--navy); background: #fff; border: 1px dashed #a9bad1; border-radius: 15px; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.passport-upload:hover { border-color: var(--blue); transform: translateY(-2px); }
.passport-upload.has-file { background: #eefaf5; border-color: #2a9b72; border-style: solid; }
.passport-upload input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.passport-upload-icon { width: 34px; height: 34px; margin-bottom: 20px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 10px; font-size: .78rem; font-weight: 900; }
.passport-upload.has-file .passport-upload-icon { background: #16835f; }
.passport-upload b { font-size: .86rem; line-height: 1.2; }
.passport-upload small { margin-top: 4px; color: var(--muted); font-size: .71rem; line-height: 1.35; }
.passport-upload em { margin-top: auto; padding-top: 13px; color: var(--blue); font-size: .7rem; font-style: normal; font-weight: 900; }
.passport-upload.has-file em { color: #087252; }
.booking-security-note { padding: 13px 14px; display: grid; gap: 3px; color: #344054; background: #eef3fa; border-radius: 12px; font-size: .78rem; }
.booking-security-note b { color: var(--navy); }
.verification-waiting { text-align: center; }
.verification-waiting .booking-lead { max-width: 540px; margin-inline: auto; }
.verification-waiting-icon { width: 76px; height: 76px; margin: 22px auto 18px; display: grid; place-items: center; background: var(--blue-soft); border-radius: 50%; }
.verification-waiting-icon span { width: 30px; height: 30px; border: 4px solid #bdd0f8; border-top-color: var(--blue); border-radius: 50%; animation: verification-spin .9s linear infinite; }
.verification-ticket { max-width: 360px; margin: 20px auto; padding: 14px; display: grid; gap: 3px; background: #f5f8fd; border: 1px solid var(--line); border-radius: 13px; }
.verification-ticket span { color: var(--muted); font-size: .72rem; }
.verification-ticket b { color: var(--navy); letter-spacing: .06em; }
@keyframes verification-spin { to { transform: rotate(360deg); } }
.rental-contract-card { margin: 18px 0; padding: 18px; display: grid; gap: 5px; color: #075e45; background: #dcfaee; border: 1px solid #86ddb8; border-radius: 14px; }
.rental-contract-card span { font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.rental-contract-card b { color: #064e3b; }
.rental-contract-card small { margin-top: 3px; color: #29745e; }
.cashback-spend { margin: 16px 0; padding: 15px 16px; display: flex; align-items: flex-start; gap: 11px; background: #f0f5ff; border: 1px solid #cbdafb; border-radius: 13px; cursor: pointer; }
.cashback-spend input { margin-top: 4px; accent-color: var(--blue); }
.cashback-spend span { display: grid; gap: 2px; }
.cashback-spend b { color: var(--navy); font-size: .86rem; }
.cashback-spend small { color: var(--muted); }
.cashback-earned { margin: 18px 0; padding: 18px; display: grid; gap: 3px; color: #075e45; background: #e5f9f0; border: 1px solid #9ee0c2; border-radius: 14px; }
.cashback-earned span { font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cashback-earned b { color: #064e3b; font-size: 1.1rem; }
.cashback-earned small { color: #29745e; }
.booking-ready-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }

.cart-dialog {
  width: min(640px, calc(100% - 28px));
  max-height: min(820px, calc(100dvh - 28px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(2, 16, 41, .3);
}
.cart-dialog::backdrop { background: rgba(2, 13, 33, .72); backdrop-filter: blur(7px); }
.cart-dialog > .dialog-close { position: sticky; top: 14px; float: right; z-index: 5; margin: 14px 14px -58px 0; }
.cart-shell { padding: 46px 44px 38px; }
.cart-shell h2 { margin: 8px 48px 22px 0; color: var(--navy); font-size: clamp(2rem, 5vw, 3rem); line-height: 1; letter-spacing: -.05em; }
.cart-empty p { margin: 0 0 24px; color: var(--muted); }
.cart-list { display: grid; gap: 9px; }
.cart-item { padding: 10px; display: grid; grid-template-columns: 72px 1fr 38px; gap: 13px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 15px; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; background: #e7edf6; border-radius: 10px; }
.cart-item > div { min-width: 0; display: grid; gap: 3px; }
.cart-item b { overflow: hidden; color: var(--navy); text-overflow: ellipsis; white-space: nowrap; }
.cart-item span { color: var(--muted); font-size: .82rem; }
.cart-item > button { width: 36px; height: 36px; color: #7f8999; background: #fff; border: 1px solid var(--line); border-radius: 10px; font-size: 1.25rem; }
.cart-item > button:hover { color: #b42318; border-color: #f2b8b2; }
.cart-total { margin: 18px 0 12px; padding: 17px 2px; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--line); }
.cart-total span { color: var(--muted); font-weight: 750; }
.cart-total strong { color: var(--blue); font-size: 1.45rem; }
.cart-checkout { width: 100%; }
.cart-continue { width: 100%; padding: 14px; color: var(--blue); background: transparent; border: 0; font-weight: 850; }
.booking-products { margin: 22px 0; display: grid; gap: 8px; }
.booking-products .booking-product { margin: 0; }
.booking-cell-list { margin-top: 18px; display: grid; gap: 10px; }
.booking-cell-item { padding: 14px; display: grid; grid-template-columns: 1fr auto; gap: 10px 14px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.booking-cell-item > div { display: grid; gap: 3px; }
.booking-cell-item b { color: var(--navy); }
.booking-cell-item span { color: var(--muted); font-size: .78rem; }
.booking-cell-item .button { min-height: 44px; padding-inline: 17px; }
.booking-cell-item .booking-inline-status { grid-column: 1 / -1; margin: 0; }

.profile-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: min(900px, calc(100dvh - 28px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(2, 16, 41, .3);
}
.profile-dialog::backdrop { background: rgba(2, 13, 33, .72); backdrop-filter: blur(7px); }
.profile-dialog > .dialog-close { position: sticky; top: 14px; float: right; z-index: 5; margin: 14px 14px -58px 0; }
.profile-shell { padding: 46px 44px 38px; }
.profile-shell h2 { margin: 8px 48px 0 0; color: var(--navy); font-size: clamp(1.8rem, 5vw, 2.65rem); line-height: 1.04; letter-spacing: -.045em; }
.profile-empty { text-align: center; }
.profile-empty .booking-kicker { display: block; }
.profile-empty-mark { width: 86px; height: 86px; margin: 28px auto 16px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 26px; font-size: 1.35rem; font-weight: 950; box-shadow: 0 18px 34px rgba(7,88,247,.24); }
.profile-empty p { max-width: 480px; margin: 16px auto 24px; color: var(--muted); }
.profile-identity { margin: 24px 0 16px; display: grid; grid-template-columns: 64px 1fr; gap: 15px; align-items: center; }
.profile-avatar { width: 64px; height: 64px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 20px; font-weight: 950; }
.profile-identity h2 { margin: 0; font-size: 1.65rem; }
.profile-identity a { color: var(--muted); font-size: .88rem; }
.profile-verification { margin: 15px 0; padding: 14px 15px; display: grid; gap: 3px; color: #075e45; background: #e8f8f1; border: 1px solid #a8dfc8; border-radius: 13px; }
.profile-verification.demo { color: #513e00; background: #fff7d6; border-color: #ecd66b; }
.profile-verification b { font-size: .85rem; }
.profile-verification span { font-size: .76rem; line-height: 1.4; }
.profile-balance { margin: 16px 0 10px; padding: 20px; display: grid; gap: 2px; color: #fff; background: linear-gradient(135deg, #0758f7, #043ab7); border-radius: 18px; box-shadow: 0 16px 34px rgba(7,88,247,.2); }
.profile-balance span { font-size: .77rem; font-weight: 800; opacity: .82; }
.profile-balance strong { font-size: 2.1rem; letter-spacing: -.04em; }
.profile-balance small { opacity: .78; }
.profile-rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.profile-rates span { padding: 11px 8px; display: grid; gap: 2px; color: var(--muted); background: var(--paper); border-radius: 11px; font-size: .68rem; text-align: center; }
.profile-rates b { color: var(--blue); font-size: .94rem; }
.profile-review-bonus { margin: 18px 0 22px; padding: 16px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; background: #f9fafb; border: 1px solid var(--line); border-radius: 14px; }
.profile-review-bonus div { display: grid; gap: 3px; }
.profile-review-bonus b { color: var(--navy); }
.profile-review-bonus span { color: var(--muted); font-size: .76rem; }
.profile-review-bonus button { padding: 8px 10px; color: #7b8798; background: #eef1f5; border: 0; border-radius: 8px; font-size: .7rem; font-weight: 850; }
.profile-section-title { margin: 22px 0 10px; display: flex; align-items: center; justify-content: space-between; }
.profile-section-title b { color: var(--navy); font-size: 1.05rem; }
.profile-section-title span { min-width: 27px; height: 27px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.profile-history { display: grid; gap: 9px; }
.profile-history-item { padding: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 13px; }
.profile-history-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.profile-history-head b { color: var(--navy); font-size: .75rem; letter-spacing: .04em; }
.profile-history-head span { color: #087252; font-size: .68rem; font-weight: 850; }
.profile-history-item p { margin: 8px 0; color: #344054; font-size: .82rem; }
.profile-history-item dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profile-history-item dl div { display: grid; gap: 2px; }
.profile-history-item dt { color: var(--muted); font-size: .68rem; }
.profile-history-item dd { margin: 0; color: var(--navy); font-size: .76rem; font-weight: 800; }
.profile-empty-history { padding: 18px; color: var(--muted); background: var(--paper); border-radius: 13px; text-align: center; }
.profile-rent-again { width: 100%; margin-top: 18px; }

.install-dialog {
  width: min(480px, calc(100vw - 28px));
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(2, 16, 41, .32);
}
.install-dialog::backdrop { background: rgba(2, 13, 33, .72); backdrop-filter: blur(7px); }
.install-dialog-content { padding: 40px 38px 36px; }
.install-dialog-content > img { width: 78px; height: 78px; margin-bottom: 22px; border-radius: 18px; box-shadow: 0 12px 26px rgba(7,88,247,.2); }
.install-dialog-content h2 { margin: 8px 42px 12px 0; color: var(--navy); font-size: 2rem; line-height: 1.05; letter-spacing: -.045em; }
.install-dialog-content > p { margin: 0; color: var(--muted); }
.install-dialog-content ol { margin: 24px 0; padding: 0; display: grid; gap: 12px; list-style: none; counter-reset: install-step; }
.install-dialog-content li { position: relative; min-height: 34px; padding-left: 46px; color: #344054; counter-increment: install-step; }
.install-dialog-content li::before { content: counter(install-step); position: absolute; top: -3px; left: 0; width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 9px; font-size: .8rem; font-weight: 900; }
.install-dialog-content .button { width: 100%; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-phone { margin-left: auto; }
  .hero { min-height: 0; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .module-section { gap: 42px; }
  .module-gallery { min-height: 500px; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; padding-inline: 18px; gap: 10px; }
  .brand img { width: 40px; height: 40px; }
  .header-phone { display: none; }
  .install-app-button { margin-left: auto; }
  .profile-button { margin-left: auto; }
  .install-app-button:not([hidden]) + .profile-button { margin-left: 0; }
  .cart-button { margin-left: 0; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
  .menu-toggle span { width: 20px; height: 2px; background: var(--navy); }
  .mobile-menu { position: absolute; top: 68px; left: 12px; right: 12px; padding: 12px; display: grid; gap: 2px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 12px; border-radius: 9px; font-weight: 750; }
  .mobile-menu a:last-child { color: #fff; background: var(--blue); }
  .hero { min-height: 0; padding: 34px 18px 46px; }
  .hero-copy { display: block; }
  .hero h1 { margin: 0 0 28px; font-size: clamp(3rem, 12vw, 4.6rem); }
  .promo-section { padding: 0 18px 70px; }
  .promo-heading { display: block; }
  .promo-heading h2 { margin-top: 8px; }
  .promo-grid { grid-template-columns: 1fr; }
  .catalog-shell { padding: 75px 18px 85px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .catalog-tools { grid-template-columns: 1fr; }
  .catalog-tools select { height: 48px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .security-line { flex-wrap: wrap; gap: 12px 28px; justify-content: flex-start; }
  .module-section { padding: 88px 18px; grid-template-columns: 1fr; }
  .module-gallery { min-height: 620px; }
  .contact-section { padding: 78px 18px; grid-template-columns: 1fr; gap: 38px; }
  .seo-section { padding: 88px 18px; }
  .seo-intro { grid-template-columns: 1fr; gap: 22px; }
  .seo-intro .section-index { grid-column: auto; }
  .seo-categories { grid-template-columns: 1fr; }
  .seo-categories article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .seo-categories article:last-child { border-bottom: 0; }
  .seo-categories h3 { margin-top: 35px; }
  .faq-wrap { margin-top: 75px; grid-template-columns: 1fr; gap: 34px; }
  .dialog-product { grid-template-columns: 1fr; }
  .dialog-image { min-height: 280px; max-height: 360px; }
  .dialog-info { padding: 28px 24px 30px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 0; }
  .brand > span { display: none; }
  .demo-mode-banner { padding: 8px 12px; display: grid; gap: 1px; text-align: center; font-size: .7rem; }
  .profile-button { width: 40px; min-height: 40px; padding: 0; display: grid; place-items: center; font-size: 0; }
  .profile-button::before { margin: 0; font-size: 1.2rem; }
  .cart-button { min-height: 40px; padding-inline: 9px; font-size: 0; }
  .cart-button::before { content: "Аренда"; font-size: .76rem; }
  .hero { min-height: 0; padding: 26px 18px 38px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(2.55rem, 13.5vw, 3.55rem); }
  .hero-search label { margin-bottom: 10px; font-size: 1rem; }
  .hero-search-field { height: 64px; padding-left: 15px; grid-template-columns: 24px 1fr auto; gap: 9px; border-radius: 14px; }
  .hero-search-field svg { width: 23px; height: 23px; }
  .hero-search input { font-size: 1rem; }
  .hero-search-field > button { height: 48px; padding-inline: 16px; border-radius: 10px; font-size: .84rem; }
  .hero-suggestion { min-height: 108px; padding: 8px 10px; grid-template-columns: 48px 1fr auto; grid-template-rows: auto auto auto; gap: 2px 9px; }
  .hero-suggestion img { grid-row: 1 / 3; width: 48px; height: 48px; }
  .hero-suggestion-copy { grid-column: 2; grid-row: 1; }
  .hero-suggestion b { font-size: .88rem; }
  .hero-suggestion small { display: none; }
  .hero-suggestion strong { grid-column: 2; grid-row: 2; font-size: .82rem; }
  .hero-suggestion-actions { grid-column: 2 / 4; grid-row: 3; margin-top: 5px; }
  .hero-suggestion-actions button { height: 34px; flex: 1; padding-inline: 8px; font-size: .7rem; }
  .promo-section { padding-inline: 18px; overflow: hidden; }
  .promo-grid { margin-right: -18px; padding-right: 18px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .promo-grid::-webkit-scrollbar { display: none; }
  .promo-card { min-width: 86vw; min-height: 360px; scroll-snap-align: start; }
  .promo-card-content { width: 76%; min-height: 360px; padding: 22px; }
  .promo-card h3 { margin-top: 18px; font-size: 1.75rem; }
  .section-heading h2, .module-copy h2, .contact-copy h2 { font-size: 2.7rem; }
  .catalog-tools { margin-top: 27px; }
  .search-box kbd, .scroll-arrow { display: none; }
  .catalog-note { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 42% 58%; }
  .product-image { height: 100%; aspect-ratio: auto; min-height: 190px; }
  .product-body { min-height: 190px; padding: 13px; }
  .product-card h3 { font-size: .95rem; }
  .product-tag { font-size: .59rem; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 230px; }
  .steps h3 { margin-top: 30px; }
  .module-copy li { grid-template-columns: 1fr; gap: 4px; }
  .module-gallery { min-height: 430px; }
  .module-main { width: 88%; }
  .module-detail { width: 52%; }
  .contact-actions { display: grid; }
  .seo-intro h2, .faq-wrap h2 { font-size: 2.65rem; }
  .seo-categories { margin-top: 36px; }
  .address-panel { min-height: 230px; }
  footer > div { flex-direction: column; }
  .product-dialog { max-height: calc(100vh - 12px); width: calc(100vw - 12px); border-radius: 17px; }
  .dialog-image { min-height: 240px; max-height: 270px; }
  .dialog-actions { grid-template-columns: 1fr; }
  .booking-dialog { width: calc(100vw - 12px); max-height: calc(100dvh - 12px); border-radius: 17px; }
  .booking-shell { padding: 34px 20px 28px; }
  .booking-shell h2 { margin-right: 40px; font-size: 2.3rem; }
  .booking-progress { margin-bottom: 20px; }
  .booking-fields, .booking-fields-three, .booking-fields-duration { grid-template-columns: 1fr; }
  .verification-methods label > span { padding-right: 14px; }
  .verification-methods em { position: static; justify-self: start; transform: none; }
  .passport-upload-grid { grid-template-columns: 1fr; }
  .passport-upload { min-height: 112px; padding-left: 62px; }
  .passport-upload-icon { position: absolute; top: 16px; left: 14px; margin: 0; }
  .booking-summary > div { grid-template-columns: 115px 1fr; }
  .booking-cell-item { grid-template-columns: 1fr; }
  .booking-cell-item .button { width: 100%; }
  .cart-dialog { width: calc(100vw - 12px); max-height: calc(100dvh - 12px); border-radius: 17px; }
  .cart-shell { padding: 34px 18px 26px; }
  .cart-item { grid-template-columns: 62px 1fr 36px; gap: 10px; }
  .cart-item img { width: 62px; height: 62px; }
  .profile-dialog { width: calc(100vw - 12px); max-height: calc(100dvh - 12px); border-radius: 17px; }
  .profile-shell { padding: 34px 18px 26px; }
  .profile-identity { grid-template-columns: 54px 1fr; }
  .profile-avatar { width: 54px; height: 54px; border-radius: 16px; }
  .profile-identity h2 { font-size: 1.32rem; }
  .profile-review-bonus { grid-template-columns: 1fr; }
  .profile-history-item dl { grid-template-columns: 1fr; }
  .booking-ready-actions { grid-template-columns: 1fr; }
  .install-app-button { min-height: 40px; padding-inline: 11px; font-size: .76rem; }
  .install-dialog { width: calc(100vw - 12px); border-radius: 17px; }
  .install-dialog-content { padding: 34px 22px 26px; }
  .install-dialog-content h2 { font-size: 1.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
