:root {
  --ink: #0b1f1b;
  --muted: #5d6865;
  --paper: #fbfbf5;
  --line: #dde3da;
  --green: #173c32;
  --blue: #173f8f;
  --blue-deep: #102f72;
  --blue-soft: #dce8f0;
  --dark: #07110f;
  --accent: #d7e8aa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .hero-meta {
  direction: ltr;
}

html[dir="rtl"] .site-nav {
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .hero-card,
html[dir="rtl"] .hero-stat,
html[dir="rtl"] .hero-buttons {
  direction: rtl;
}

html[dir="rtl"] .hero-copy {
  text-align: right;
}

html[dir="rtl"] .hero-copy h1 {
  max-width: 900px;
  font-size: clamp(58px, 5.3vw, 112px);
}

html[dir="rtl"] .hero-copy span {
  white-space: normal;
}

html[dir="rtl"] .hero-buttons {
  justify-content: flex-start;
}

html[dir="rtl"] .hero-card {
  text-align: right;
}

html[dir="rtl"] .hero-card-arrow {
  left: 24px;
  right: auto;
}

html[dir="rtl"] .hero-stat {
  text-align: right;
}

html[dir="rtl"] .hero-stat i {
  margin-right: 0;
  margin-left: -14px;
}

html[dir="rtl"] .hero-card-arrow,
html[dir="rtl"] .dealer-map-link span {
  transform: scaleX(-1);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1400px, calc(100% - 64px));
}

.hero .container {
  width: min(1568px, calc(100% - 64px));
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 24px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader span {
  width: 42px;
  height: 42px;
  border: 7px solid rgba(16, 47, 114, 0.2);
  border-top-color: var(--blue-deep);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 32px 0;
  color: var(--white);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  padding: 12px 0;
  background: rgba(7, 18, 31, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.gallery-page .site-header {
  background: rgba(7, 18, 31, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner,
.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.header-inner {
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  display: block;
  width: 180px;
  height: auto;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 58px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  gap: 7px;
}

.flag {
  display: grid;
  place-items: center;
  width: 32px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  opacity: 0.86;
}

.flag:hover,
.flag:focus-visible {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.flag img {
  display: block;
  width: 21px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #07121f;
  color: var(--white);
}

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

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 63% 47%, rgba(109, 150, 194, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(4, 12, 12, 0.76), rgba(8, 18, 26, 0.34) 54%, rgba(7, 17, 28, 0.56)),
    linear-gradient(180deg, rgba(5, 13, 22, 0.06), rgba(4, 9, 12, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 940px) minmax(360px, 500px);
  grid-template-areas:
    "copy stat"
    "copy card";
  align-items: center;
  gap: 34px 72px;
  padding-top: 118px;
  padding-bottom: 76px;
}

.hero-copy h1,
.section-heading h2,
.split-heading h2,
.page-hero h1,
.gallery-banner h2,
.cta h2 {
  margin: 0;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 980px;
  font-size: clamp(68px, 6.05vw, 126px);
  line-height: 0.96;
}

.hero-copy strong,
.hero-copy span,
.section-heading span,
.split-heading span {
  display: block;
}

.hero-copy span {
  font-weight: 400;
  white-space: nowrap;
}

.hero-copy strong {
  font-weight: 800;
}

.hero-copy p {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.18vw, 22px);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-light {
  background: var(--white);
  color: var(--blue-deep);
}

.button-ghost {
  color: var(--white);
}

.hero-card {
  grid-area: card;
  position: relative;
  align-self: start;
  margin-top: 340px;
  max-width: 500px;
  min-height: 298px;
  padding: 34px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.09)),
    rgba(54, 62, 64, 0.46);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-card h2 {
  margin: 42px 0 12px;
  font-size: 31px;
  line-height: 1.1;
}

.hero-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 0.95vw, 17px);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-card a,
.hero-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.pin-icon {
  display: block;
  width: 22px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hero-meta {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat {
  position: absolute;
  right: 0;
  top: 205px;
  bottom: auto;
  width: 230px;
  min-height: 200px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(16, 28, 38, 0.24);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.hero-stat strong {
  direction: ltr;
  font-size: 32px;
  line-height: 1;
  unicode-bidi: isolate;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  font-weight: 700;
}

.hero-stat i {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-top: 26px;
  margin-right: -14px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.slide-count {
  position: absolute;
  left: 0;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 420px;
  align-items: end;
  gap: 0;
  font-weight: 800;
}

.slide-count i {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--white) 50%, rgba(255, 255, 255, 0.42) 50%);
}

.hero-copy {
  grid-area: copy;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 58px;
}

.section-heading h2,
.split-heading h2 {
  font-size: clamp(42px, 6vw, 82px);
}

.section-heading p,
.split-heading p,
.eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: center;
}

.video-frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 20px;
  background: #18242d;
  box-shadow: var(--shadow);
}

.video-frame iframe,
.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 63, 143, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(7, 17, 28, 0.08), rgba(7, 17, 28, 0.32));
  content: "";
}

.video-poster:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 20px 55px rgba(16, 47, 114, 0.36);
  transform: translate(-50%, -50%);
}

.video-play::before {
  position: absolute;
  left: 31px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--white);
  content: "";
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.feature-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-size: 26px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: #07121f;
  color: var(--white);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 63, 143, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.04), rgba(7, 18, 31, 0.5)),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  opacity: 0.86;
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}

.split-heading h2 {
  max-width: 930px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
}

.split-heading p {
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  position: relative;
  min-height: 308px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(16, 47, 114, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.process-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(23, 63, 143, 0.72));
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.process-grid article:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(23, 63, 143, 0.16);
  transform: translateY(-4px);
}

.process-grid article:hover::before {
  transform: scaleX(1);
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.process-grid small {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.process-step-top span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.process-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.58;
}

.technology-section .eyebrow {
  margin-bottom: 36px;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.technology-grid article {
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  filter: saturate(0.96);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.technology-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.technology-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 45, 88, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(237, 241, 234, 0.92)),
    radial-gradient(circle at 50% 34%, rgba(21, 65, 139, 0.14), transparent 34%);
}

.technology-placeholder::before,
.technology-placeholder::after {
  content: "";
  position: absolute;
  background: rgba(16, 34, 48, 0.26);
}

.technology-placeholder::before {
  width: 46px;
  height: 1px;
}

.technology-placeholder::after {
  width: 1px;
  height: 46px;
}

.technology-placeholder span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: rgba(16, 34, 48, 0.4);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.technology-grid article:hover {
  filter: saturate(1.08) contrast(1.02);
  transform: translateY(-4px);
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 98px;
  background:
    radial-gradient(circle at 20% 42%, rgba(23, 63, 143, 0.2), transparent 28%),
    radial-gradient(circle at 72% 46%, rgba(215, 232, 170, 0.06), transparent 24%),
    linear-gradient(135deg, #07121f, #0b1b32 58%, #07121f);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.testimonial-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 64px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-panel {
  position: relative;
  min-height: 548px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 28, 44, 0.02), rgba(6, 17, 28, 0.86)),
    radial-gradient(circle at 50% 20%, rgba(215, 232, 170, 0.1), transparent 28%),
    linear-gradient(135deg, #0b1726, #132d58 54%, #08131f);
  color: #fff;
  box-shadow: 0 28px 70px rgba(10, 25, 40, 0.22);
}

.founder-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.founder-video {
  position: absolute;
  inset: 24px 24px 120px;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(9, 24, 42, 0.38), rgba(7, 18, 30, 0.76)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 34%);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.founder-video:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.founder-video::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}

.founder-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0), rgba(7, 17, 28, 0.28)),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 1;
}

.founder-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03) brightness(1.06);
  transition: transform 0.35s ease;
}

.founder-video:hover img {
  transform: scale(1.035);
}

.founder-play {
  position: relative;
  z-index: 3;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(12, 30, 50, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.72);
}

.founder-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(255, 255, 255, 0.9);
}

.founder-video small {
  position: relative;
  z-index: 3;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 18, 30, 0.3);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.founder-identity {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-identity strong {
  font-size: 22px;
  line-height: 1.15;
}

.founder-identity span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.founder-message {
  max-width: 760px;
}

.founder-message .eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.founder-message blockquote {
  margin: 0;
}

.founder-message blockquote p {
  position: relative;
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(21px, 1.65vw, 30px);
  font-weight: 600;
  line-height: 1.42;
  color: rgba(246, 248, 242, 0.86);
}

.founder-message blockquote p::before {
  content: "“";
  position: absolute;
  left: -32px;
  top: -18px;
  color: rgba(215, 232, 170, 0.2);
  font-size: 62px;
  line-height: 1;
}

.founder-message blockquote cite {
  color: rgba(246, 248, 242, 0.7);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

.message-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.message-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(246, 248, 242, 0.9);
  background: rgba(255, 255, 255, 0.075);
  font-size: 12px;
  font-weight: 800;
}

.founder-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(246, 248, 242, 0.88);
  background: rgba(255, 255, 255, 0.075);
  font-size: 17px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.founder-socials a span {
  line-height: 1;
}

.founder-socials .instagram-icon {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.founder-socials .instagram-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.founder-socials .instagram-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.founder-socials a[aria-label="Facebook"] span,
.founder-socials a[aria-label="LinkedIn"] span {
  font-size: 15px;
  letter-spacing: 0;
}

.founder-socials a[aria-label="YouTube"] span {
  font-size: 14px;
  margin-left: 2px;
}

.founder-socials a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: #173f8f;
  color: #fff;
  transform: translateY(-2px);
}

.section-heading.wide {
  align-items: start;
}

.catalog-section .section-heading.wide {
  align-items: end;
  margin-bottom: 52px;
}

.catalog-section .section-heading h2 {
  max-width: 900px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
}

.catalog-section .section-heading h2 span {
  color: #173f8f;
}

.catalog-heading-copy {
  max-width: 310px;
  display: grid;
  gap: 14px;
  padding-bottom: 8px;
}

.catalog-heading-copy span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  display: block;
  border-bottom: 1px solid var(--line);
}

.catalog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1350 / 1730;
  object-fit: cover;
  margin-bottom: 22px;
}

.catalog-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.catalog-card span {
  display: block;
  padding-bottom: 24px;
  color: var(--muted);
}

.cta {
  min-height: 390px;
  display: flex;
  align-items: center;
  background-position: center 54%;
  background-size: cover;
  color: var(--white);
  isolation: isolate;
  position: relative;
}

.cta::before,
.page-hero::before,
.gallery-banner::before {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 10, 0.48);
  content: "";
  z-index: -1;
}

.cta h2 {
  max-width: 680px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
}

.cta::before {
  background:
    linear-gradient(90deg, rgba(5, 13, 22, 0.72), rgba(5, 13, 22, 0.22) 58%, rgba(5, 13, 22, 0.46)),
    linear-gradient(180deg, rgba(5, 13, 22, 0.12), rgba(5, 13, 22, 0.52));
}

.cta-copy {
  max-width: 720px;
}

.cta-copy .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-copy::before {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.cta-copy span {
  display: block;
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
  background:
    radial-gradient(circle at 14% 0%, rgba(31, 76, 154, 0.2), transparent 30%),
    linear-gradient(135deg, #07121f, #08131f 58%, #06101b);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), transparent 82%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(140px, 0.55fr));
  gap: 52px;
  align-items: start;
}

.footer-about img {
  width: 180px;
  margin-bottom: 30px;
}

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

.footer-addresses p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  line-height: 1.55;
}

.footer-addresses strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h3 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.contact-pill {
  display: flex !important;
  width: min(100%, 520px);
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 26px !important;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86) !important;
}

.contact-pill span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: flex;
  align-items: end;
  padding: 140px 0 86px;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 12px;
}

.page-hero h1 {
  font-size: clamp(54px, 8vw, 96px);
}

.dealers-hero {
  background-position: center 42%;
  min-height: 420px;
  padding: 124px 0 64px;
}

.dealers-hero h1 {
  font-size: clamp(54px, 7vw, 90px);
  line-height: 0.96;
}

.gallery-intro {
  position: relative;
  overflow: hidden;
  padding: 178px 0 94px;
  background:
    linear-gradient(90deg, rgba(7, 18, 31, 0.035), transparent 35%),
    radial-gradient(circle at 18% 18%, rgba(23, 63, 143, 0.1), transparent 26%),
    var(--paper);
}

.gallery-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 24, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 24, 42, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
  pointer-events: none;
}

.gallery-intro::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(9, 24, 42, 0.18), transparent);
  pointer-events: none;
}

.gallery-intro .container {
  position: relative;
  z-index: 1;
}

.gallery-intro .breadcrumb {
  width: fit-content;
  margin-bottom: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(9, 24, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.gallery-intro .breadcrumb a::after {
  color: rgba(93, 104, 101, 0.54);
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
  gap: 86px;
  align-items: center;
}

.gallery-intro h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.gallery-intro-copy {
  display: grid;
  gap: 26px;
  padding: 28px 0 28px 34px;
  border-left: 1px solid rgba(9, 24, 42, 0.12);
}

.gallery-intro-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.gallery-filters span {
  padding: 10px 15px;
  border: 1px solid rgba(18, 45, 88, 0.14);
  border-radius: 999px;
  color: #173d7c;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(9, 24, 42, 0.045);
}

.dealers-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 84% 8%, rgba(23, 63, 143, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(7, 18, 31, 0.025), transparent 34%),
    var(--paper);
}

.dealers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 24, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 24, 42, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
  pointer-events: none;
}

.dealers-section .container {
  position: relative;
  z-index: 1;
}

.dealers-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(340px, 0.82fr);
  grid-template-areas:
    "copy panel"
    "map map"
    "list list";
  gap: 32px 70px;
  align-items: center;
}

.dealers-copy {
  grid-area: copy;
}

.dealers-copy h2 {
  max-width: 520px;
  margin: 18px 0 22px;
  color: #10221d;
  font-size: clamp(34px, 3.65vw, 52px);
  font-weight: 700;
  line-height: 1.04;
}

.dealers-copy p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
}

.dealer-panel {
  grid-area: panel;
  justify-self: end;
  width: min(100%, 480px);
  padding: 28px;
  border: 1px solid rgba(18, 45, 88, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 241, 246, 0.74)),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 62px rgba(16, 47, 114, 0.12);
  backdrop-filter: blur(14px);
}

.dealer-panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 63, 143, 0.1);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dealer-panel h3 {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1.08;
}

.dealer-panel dl {
  margin: 0;
}

.dealer-panel dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.dealer-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dealer-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.dealer-panel a {
  color: var(--blue-deep);
}

.dealer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(23, 63, 143, 0.16);
  border-radius: 999px;
  background: rgba(23, 63, 143, 0.06);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.dealer-map-link span {
  font-size: 15px;
}

.dealer-detail {
  display: none;
}

.dealer-detail.is-default,
.dealer-detail:target {
  display: block;
}

.dealer-panel:has(.dealer-detail:target) .dealer-detail.is-default:not(:target) {
  display: none;
}

.dealer-map-wrap {
  grid-area: map;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(23, 63, 143, 0.14);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(7, 17, 28, 0.96), rgba(16, 47, 114, 0.82)),
    var(--dark);
  box-shadow: 0 28px 80px rgba(7, 17, 28, 0.2);
}

.dealer-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 58% 38%, rgba(126, 165, 217, 0.28), transparent 11%),
    radial-gradient(circle at 22% 24%, rgba(215, 232, 170, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(12, 31, 55, 0.92), rgba(13, 42, 92, 0.92));
}

.dealer-map::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 232, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 232, 240, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 84%);
}

.dealer-map::after {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(220, 232, 240, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.map-caption {
  position: absolute;
  left: 28px;
  top: 24px;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: var(--white);
}

.map-caption strong {
  font-size: 20px;
  line-height: 1;
}

.map-caption span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.world-map-image {
  position: absolute;
  left: 50%;
  top: 53%;
  width: min(92%, 1120px);
  height: auto;
  opacity: 0.72;
  filter: invert(1) brightness(1.2) saturate(0.1);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.map-focus-ring {
  position: absolute;
  left: 59.3%;
  top: 36%;
  z-index: 1;
  width: 132px;
  height: 96px;
  border: 2px dashed rgba(215, 232, 170, 0.82);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.dealer-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.72);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transform: translate(var(--tx, -50%), var(--ty, -50%));
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dealer-point span {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(23, 63, 143, 0.2);
}

.dealer-point span::after {
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: var(--white);
  content: "";
}

.dealer-point.is-active,
.dealer-point:hover {
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.dealer-point-ghost span {
  background: #7ea5d9;
}

.dealer-point-kayseri {
  background: rgba(23, 63, 143, 0.94);
}

.dealer-point-krasnodar {
  background: rgba(7, 17, 28, 0.86);
}

.dealer-route {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(215, 232, 170, 0), rgba(215, 232, 170, 0.9));
  transform-origin: left center;
  pointer-events: none;
}

.dealer-route::after {
  position: absolute;
  right: -2px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(215, 232, 170, 0.9);
  border-right: 2px solid rgba(215, 232, 170, 0.9);
  content: "";
  transform: rotate(45deg);
}

.route-kayseri {
  left: 55.6%;
  top: 41%;
  width: 62px;
  transform: rotate(-29deg);
}

.route-krasnodar {
  left: 56%;
  top: 35.5%;
  width: 58px;
  transform: rotate(-10deg);
}

.dealer-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.dealer-list-card {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dealer-list-card span {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dealer-list-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.dealer-list-card small {
  color: var(--muted);
  font-size: 15px;
}

.dealer-list-card.is-active,
.dealer-list-card:hover {
  border-color: rgba(23, 63, 143, 0.38);
  box-shadow: 0 18px 48px rgba(16, 47, 114, 0.14);
  transform: translateY(-3px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d7ddd4;
  border: 1px solid rgba(18, 45, 88, 0.08);
}

.gallery-grid a::after {
  content: "↗";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(7, 18, 31, 0.58);
  color: var(--white);
  backdrop-filter: blur(8px);
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 18, 31, 0.42));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.gallery-grid a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid a:hover::before {
  opacity: 1;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-cta {
  padding-bottom: 110px;
}

.gallery-banner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 54px;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.gallery-banner h2 {
  font-size: clamp(46px, 7vw, 86px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(7, 18, 31, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  max-width: min(92vw, 1180px);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.lightbox button {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: auto;
    transform: translateY(-12px);
    inset: 70px 20px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(5, 18, 15, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 10px;
  }

  .hero-content,
  .feature-grid,
  .split-heading,
  .gallery-intro-grid,
  .testimonial-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-areas:
      "copy"
      "stat"
      "card";
    gap: 28px;
    min-height: 100vh;
  }

  .hero-card {
    align-self: auto;
    max-width: 520px;
    margin-top: 0;
  }

  .hero-stat {
    position: static;
    width: min(100%, 360px);
    min-height: auto;
  }

  .feature-cards,
  .process-grid,
  .catalog-grid,
  .footer-grid,
  .dealers-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .dealers-layout {
    grid-template-areas:
      "copy copy"
      "panel panel"
      "map map"
      "list list";
  }

  .dealer-panel {
    justify-self: start;
  }

  .dealers-hero {
    min-height: 360px;
    padding-bottom: 56px;
  }

  .dealers-copy h2 {
    max-width: 620px;
  }

  .process-grid article {
    min-height: 270px;
  }

  .process-grid article:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .technology-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-intro-grid {
    gap: 28px;
  }

  .gallery-intro-copy {
    padding-left: 0;
    border-left: 0;
  }

  .technology-grid article {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header .container {
    width: min(100% - 24px, 1400px);
  }

  .site-header {
    padding: 14px 0;
  }

  .brand img {
    width: 106px;
  }

  .header-actions {
    gap: 4px;
  }

  .flag {
    width: 25px;
    height: 22px;
  }

  .flag img {
    width: 17px;
    height: 12px;
  }

  .menu-toggle {
    width: 31px;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 120px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-copy span {
    white-space: normal;
  }

  .site-header .container,
  .hero .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: row;
  }

  .button {
    min-height: 52px;
    width: auto;
    padding: 0 22px;
  }

  .button-ghost {
    padding-left: 0;
  }

  .hero-meta {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading,
  .section-heading.wide {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-heading h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .catalog-section .section-heading h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .catalog-heading-copy {
    max-width: none;
    margin-top: 20px;
    padding-bottom: 0;
  }

  .gallery-intro {
    padding: 126px 0 62px;
  }

  .gallery-intro h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .dealers-hero {
    min-height: 320px;
    padding: 112px 0 46px;
  }

  .dealers-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .dealers-section {
    padding: 64px 0 74px;
  }

  .dealers-copy h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .video-frame {
    min-height: 420px;
  }

  .feature-cards,
  .process-grid,
  .technology-grid,
  .catalog-grid,
  .footer-grid,
  .gallery-grid,
  .dealer-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 56px 0 28px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-about img {
    width: 150px;
  }

  .contact-pill {
    align-items: flex-start;
    border-radius: 20px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 38px;
  }

  .dealers-layout {
    display: block;
  }

  .dealer-panel,
  .dealer-map-wrap,
  .dealer-list {
    margin-top: 28px;
  }

  .dealer-panel {
    padding: 24px;
  }

  .dealer-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dealer-map-wrap {
    padding: 14px;
  }

  .dealer-map {
    min-height: 430px;
  }

  .dealer-point {
    font-size: 12px;
  }

  .process-grid article {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step-top {
    margin-bottom: 32px;
  }

  .testimonial-inner {
    gap: 24px;
  }

  .founder-panel {
    min-height: 360px;
    padding: 22px;
  }

  .founder-video {
    inset: 34px 34px 112px;
  }

  .founder-message blockquote p {
    font-size: clamp(21px, 6.6vw, 30px);
  }

  .founder-message blockquote p::before {
    display: none;
  }

  .message-tags {
    gap: 8px;
  }

  .message-tags span {
    padding: 10px 12px;
    font-size: 12px;
  }

  .founder-socials a {
    width: 40px;
    height: 40px;
  }

  .cta,
  .gallery-banner {
    min-height: 360px;
  }

  .cta h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .cta-copy span {
    font-size: 16px;
  }

  .gallery-banner {
    padding: 28px;
  }
}

@media (max-width: 380px) {
  .site-header .container {
    width: min(100% - 22px, 1400px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 88px;
  }

  .header-actions {
    gap: 3px;
  }

  .flag {
    width: 22px;
    height: 20px;
  }

  .flag img {
    width: 15px;
    height: 11px;
  }

  .menu-toggle {
    width: 28px;
  }
}
