:root {
  --bg-dark: #111111;
  --bg-darker: #0b0b0b;
  --bg-light: #f8f5f1;
  --bg-card: #ffffff;
  --text-dark: #121a2d;
  --text-light: #f7f4ef;
  --text-muted: #6d7890;
  --text-muted-dark: rgba(255, 255, 255, 0.54);
  --line-light: #eee7df;
  --line-dark: rgba(255, 255, 255, 0.12);
  --brand: #f85f00;
  --brand-strong: #ff9a2f;
  --shadow-soft: 0 20px 50px rgba(14, 20, 33, 0.08);
  --shadow-dark: 0 25px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --header-height: 88px;
  --container: 1440px;
  --section-space: 132px;
  --page-gutter: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: #ffffff;
  font-family: "Segoe UI Variable Display", "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-dark {
  background: rgba(10, 10, 10, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.site-header.is-light {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 26, 45, 0.07);
  box-shadow: 0 10px 35px rgba(18, 26, 45, 0.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.logo-lockup {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}

.logo-image {
  flex: 0 0 auto;
  width: auto;
  height: 52px;
  object-fit: contain;
  max-width: none;
}

.brand-mark {
  height: 52px;
}

.partner-logo {
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.site-header.is-dark .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.site-header.is-dark .nav-link.is-active,
.site-header.is-dark .nav-link:hover {
  color: #ffffff;
}

.site-header.is-light .nav-link {
  color: #475264;
}

.site-header.is-light .nav-link.is-active,
.site-header.is-light .nav-link:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  padding: 16px 30px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(248, 95, 0, 0.22);
}

.btn-primary:hover {
  background: #db5200;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.82);
}

.btn-large {
  min-width: 198px;
  min-height: 68px;
  font-size: 1.1rem;
}

.nav-cta {
  min-height: 56px;
  padding-inline: 28px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-dark .menu-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header.is-light .menu-toggle {
  color: var(--text-dark);
  border-color: rgba(18, 26, 45, 0.12);
}

.page-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("hero-bmw-workshop.jpg")
    58% center / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 11, 17, 0.78) 0%, rgba(7, 11, 17, 0.78) 2.2%, rgba(7, 11, 17, 0) 4.8%),
    radial-gradient(circle at 16% 38%, rgba(7, 11, 17, 0.34) 0%, rgba(7, 11, 17, 0.18) 26%, rgba(7, 11, 17, 0) 56%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.64) 20%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.14) 74%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
  padding-top: calc(var(--header-height) + 140px);
  padding-bottom: 44px;
}

.hero-copy {
  padding-left: clamp(18px, 2.2vw, 34px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(248, 95, 0, 0.46);
  background: rgba(86, 42, 15, 0.5);
  color: #ff9737;
}

.eyebrow-pill::before {
  content: "⚡";
  margin-right: 12px;
  font-size: 1rem;
}

.hero-title,
.section h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 900;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(3.9rem, 8vw, 7.8rem);
}

.hero-title span {
  display: block;
  color: #ff9737;
}

.hero-text {
  max-width: 770px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding-inline: clamp(18px, 2vw, 28px);
}

@media (min-width: 1280px) {
  .hero-copy {
    padding-left: clamp(52px, 4.2vw, 96px);
  }

  .stats-row {
    padding-inline: clamp(34px, 3vw, 60px);
  }
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  color: #ff9c35;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 700;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
  text-decoration: none;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-light {
  background: var(--bg-light);
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-heading {
  margin: 0 auto 70px;
  max-width: 920px;
}

.section-heading.centered {
  text-align: center;
}

.section h2 {
  color: var(--text-dark);
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-dark h2,
.light-heading {
  color: #ffffff;
}

.section-lead {
  margin: 24px auto 0;
  max-width: 860px;
  color: var(--text-muted);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.65;
}

.section-sublead {
  max-width: 980px;
  margin: 20px auto 0;
  color: #55627b;
  font-size: 1.08rem;
  line-height: 1.75;
}

.dark-lead {
  color: rgba(255, 255, 255, 0.7);
}

.section-copy {
  margin: 34px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.25rem;
  line-height: 1.7;
}

.service-grid,
.testimonial-grid,
.team-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card,
.testimonial-card,
.contact-form-card,
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 38px 38px 34px;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: #fbf2ea;
  color: var(--brand);
  font-size: 1.55rem;
  font-weight: 800;
}

.service-card h3,
.promo-content h3,
.team-card h3,
.value-card h3,
.contact-info-card h3 {
  margin: 28px 0 0;
  font-size: 1.95rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-card p,
.testimonial-card p,
.promo-content p,
.team-copy,
.value-card p,
.contact-info-card p {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 1.16rem;
  line-height: 1.72;
}

.service-detail-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
  gap: 28px;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdfa 0%, #f8f2ea 100%);
  box-shadow: var(--shadow-soft);
}

.service-detail-copy h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-detail-copy p:last-child {
  margin: 18px 0 0;
  color: #5d6880;
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(248, 95, 0, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.detail-mark {
  color: var(--brand);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.detail-item p {
  margin: 0;
  color: #2c374f;
  font-size: 1.04rem;
  line-height: 1.65;
}

.promo-banner {
  position: relative;
  margin-top: 74px;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.promo-banner img,
.promo-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.promo-banner img {
  object-fit: cover;
}

.promo-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.26) 58%, rgba(0, 0, 0, 0.14) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  padding: 78px 76px;
  color: #ffffff;
}

.promo-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.promo-content p {
  color: rgba(255, 255, 255, 0.84);
}

.promo-content .btn {
  margin-top: 28px;
}

.autosahko-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.autosahko-title {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}

.autosahko-title span {
  display: block;
  color: #ffb22d;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.feature-chip {
  min-height: 80px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-chip::before {
  content: "✦";
  margin-right: 16px;
  color: #ff9737;
}

.autosahko-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 50px;
}

.text-phone {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
  text-decoration: none;
}

.text-phone::before {
  content: "⟡";
  margin-right: 12px;
  color: #ff9737;
}

.autosahko-visual {
  position: relative;
}

.autosahko-image {
  width: 100%;
  min-height: 620px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-dark);
}

.visual-note {
  position: absolute;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 26px 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-dark);
}

.visual-note span {
  color: #ff9737;
  font-size: 1.9rem;
  line-height: 1;
}

.visual-note strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.15;
}

.visual-note small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  text-align: left;
}

.top-note {
  top: -28px;
  right: -26px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-note strong {
  color: #ffffff;
}

.bottom-note {
  left: -26px;
  bottom: -28px;
}

.brand-note {
  background: var(--brand);
}

.brand-note span,
.brand-note strong,
.brand-note small {
  color: #ffffff;
}

.rating-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: #49566c;
  font-size: 1.1rem;
  font-weight: 700;
}

.stars {
  color: #ffc338;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
}

.testimonial-card {
  padding: 32px 34px;
  background: #fdfaf6;
}

.quote-mark {
  margin-top: 10px;
  color: #ffb179;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card p {
  min-height: 170px;
  margin-top: 12px;
  color: #26324d;
}

.testimonial-meta {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 26, 45, 0.08);
}

.testimonial-meta strong {
  display: block;
  color: #101a2b;
  font-size: 1.15rem;
}

.testimonial-meta span {
  display: block;
  margin-top: 6px;
  color: #9aa3b6;
  font-size: 1rem;
}

.team-section {
  padding-bottom: 110px;
}

.team-grid {
  align-items: start;
}

.team-card {
  text-align: center;
}

.team-photo-wrap {
  position: relative;
  width: 224px;
  margin: 0 auto 34px;
}

.team-photo {
  width: 224px;
  height: 224px;
  border-radius: 24px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dark);
}

.team-badge {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(248, 95, 0, 0.26);
}

.team-card h3 {
  margin: 0;
  color: #ffffff;
}

.team-role {
  margin: 10px 0 0;
  color: #ff9737;
  font-size: 1.18rem;
  font-weight: 800;
}

.team-copy {
  margin: 20px auto 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
}

.value-grid {
  margin-top: 72px;
}

.value-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-height: 184px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.dark-icon {
  background: rgba(248, 95, 0, 0.14);
}

.value-card h3 {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 1.5rem;
}

.value-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact-section {
  padding-bottom: 94px;
}

.pricing-section {
  padding-top: 108px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 28px;
}

.price-card {
  padding: 34px 30px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdfa 0%, #f8f4ee 100%);
  box-shadow: var(--shadow-soft);
}

.price-card-featured {
  background: linear-gradient(180deg, #fff7ef 0%, #f8eee3 100%);
  border-color: rgba(248, 95, 0, 0.16);
}

.price-label {
  margin: 0;
  color: #7a4f2a;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-value {
  margin-top: 16px;
  color: var(--brand);
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-copy {
  margin: 18px 0 0;
  color: #58647d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.price-list,
.mini-list {
  margin: 22px 0 0;
  padding-left: 1.15rem;
  color: #223049;
}

.price-list li,
.mini-list li {
  margin: 0.55rem 0;
  line-height: 1.6;
}

.price-contact {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.price-contact a {
  text-decoration: none;
}

.price-contact div {
  display: grid;
  gap: 8px;
}

.model-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.model-heading h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.price-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(248, 95, 0, 0.12);
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 900;
}

.price-subgroup {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 26, 45, 0.08);
}

.price-subgroup p {
  margin: 0;
  color: #49566f;
  line-height: 1.65;
}

.price-subgroup strong {
  display: block;
  margin-top: 10px;
  color: var(--text-dark);
  font-size: 1.45rem;
  line-height: 1.1;
}

.mini-list {
  margin-top: 12px;
  color: #33415a;
}

.pricing-notes {
  margin-top: 26px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #f5f7fa;
  border: 1px solid #e0e6ee;
}

.pricing-notes p {
  margin: 0;
  color: #55627a;
  line-height: 1.7;
}

.pricing-notes p + p {
  margin-top: 8px;
}

.rental-section {
  padding-top: 98px;
  padding-bottom: 110px;
}

.rental-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}

.rental-lead {
  margin-inline: 0;
  max-width: 760px;
}

.rental-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.rental-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(248, 95, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.rental-point-mark {
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
}

.rental-point p {
  margin: 0;
  color: #26324d;
  font-size: 1.04rem;
  line-height: 1.65;
}

.rental-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.rental-contact {
  display: grid;
  gap: 8px;
}

.rental-contact a {
  color: #3e4d68;
  text-decoration: none;
  font-weight: 700;
}

.rental-card {
  padding: 34px 30px;
  border-radius: 24px;
  border: 1px solid rgba(248, 95, 0, 0.16);
  background:
    radial-gradient(circle at top right, rgba(248, 95, 0, 0.16) 0%, rgba(248, 95, 0, 0) 38%),
    linear-gradient(180deg, #fff7ef 0%, #f8efe5 100%);
  box-shadow: var(--shadow-soft);
}

.rental-price {
  margin-top: 16px;
  color: var(--brand);
  font-size: clamp(3.1rem, 4.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.rental-price span {
  margin-left: 8px;
  color: #7c4f2b;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.rental-card-copy {
  margin: 18px 0 0;
  color: #5c6880;
  font-size: 1.05rem;
  line-height: 1.72;
}

.rental-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.rental-meta div {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(248, 95, 0, 0.08);
}

.meta-label {
  display: block;
  color: #9e8f7d;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rental-meta strong {
  display: block;
  margin-top: 8px;
  color: #18233c;
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
  gap: 30px;
  align-items: start;
}

.contact-form-card {
  padding: 38px;
}

.contact-cta-card {
  display: grid;
  gap: 22px;
}

.contact-cta-eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cta-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.contact-cta-card p {
  margin: 0;
  color: #55627b;
  font-size: 1.08rem;
  line-height: 1.78;
}

.contact-cta-links {
  display: grid;
  gap: 10px;
}

.contact-cta-links a {
  color: #13203a;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.submit-button {
  min-height: 60px;
  width: 100%;
}

.contact-info-column {
  display: grid;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
}

.contact-info-card p {
  margin: 0;
  color: #13203a;
  font-size: 1.08rem;
  line-height: 1.55;
}

.contact-info-card a {
  text-decoration: none;
}

.info-label {
  margin-bottom: 10px;
  color: #a3adbf;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-wrap {
  overflow: hidden;
  border-radius: 18px;
  min-height: 270px;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border: 0;
}

.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.64);
  padding-top: 78px;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 0.8fr 0.9fr;
  gap: 70px;
}

.footer-logo {
  height: 46px;
  width: auto;
}

.footer-brand p,
.footer-contact p,
.footer-links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.08rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-brand p {
  max-width: 470px;
  margin-top: 28px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(248, 95, 0, 0.46);
  background: rgba(86, 42, 15, 0.48);
  color: #ff9737;
  font-weight: 800;
}

.footer-pill::before {
  content: "⚡";
  margin-right: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 22px;
  color: #d8bf9f;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-bottom {
  margin-top: 52px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.98rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .rental-layout,
  .pricing-grid,
  .service-grid,
  .testimonial-grid,
  .team-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .autosahko-layout {
    grid-template-columns: 1fr;
  }

  .autosahko-visual {
    max-width: 740px;
    margin: 0 auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 80px;
    --section-space: 108px;
    --page-gutter: 52px;
  }

  .site-nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.98rem;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 110px);
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 4px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  }

  .logo-link {
    max-width: calc(100% - 62px);
  }

  .site-header.is-dark .site-nav {
    background: rgba(19, 19, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header.is-light .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(18, 26, 45, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    min-height: 48px;
  }

  .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .hero-content {
    gap: 48px;
  }

  .feature-grid,
  .rental-points,
  .pricing-grid,
  .service-grid,
  .service-detail-list,
  .testimonial-grid,
  .team-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .testimonial-card,
  .contact-form-card,
  .contact-info-card {
    padding-inline: 24px;
  }

  .promo-content {
    padding: 42px 28px;
  }

  .autosahko-image {
    min-height: 440px;
  }

  .top-note,
  .bottom-note {
    position: static;
    margin-top: 16px;
  }

  .autosahko-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rental-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rental-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 84px;
    --page-gutter: 28px;
  }

  .logo-image {
    height: 38px;
  }

  .logo-lockup {
    gap: 8px;
  }

  .brand-mark {
    height: 38px;
  }

  .partner-logo {
    height: 22px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 96px);
  }

  .hero-copy,
  .stats-row {
    padding-inline: 0;
  }

  .hero-text {
    font-size: 1.18rem;
  }

  .btn-large,
  .btn,
  .submit-button {
    width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .team-photo-wrap,
  .team-photo {
    width: 192px;
    height: 192px;
  }

  .promo-banner {
    min-height: 430px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .contact-info-card {
    padding: 22px 18px;
  }

  .rental-card {
    padding: 28px 22px;
  }

  .rental-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  :root {
    --page-gutter: 20px;
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand-mark {
    height: 34px;
  }

  .partner-logo {
    height: 20px;
  }

  .section h2 {
    font-size: clamp(2.45rem, 12vw, 3.15rem);
  }

  .rental-point {
    padding: 16px;
  }
}
