:root {
  --ink: #15171a;
  --muted: #626b75;
  --line: #d9dee5;
  --surface: #f7f8f9;
  --white: #ffffff;
  --red: #d9272e;
  --red-dark: #a9161c;
  --steel: #2f4658;
  --aqua: #0f8fa8;
  --shadow: 0 20px 50px rgba(18, 25, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 58px;
  flex: 0 0 auto;
  padding: 0;
  background: #050505;
  border-radius: 8px;
}

.brand-logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--steel);
  font-size: 15px;
  font-weight: 650;
}

.site-nav a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.site-nav a:hover,
.nav-dropdown:hover .nav-trigger {
  color: var(--red);
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 260px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 42px;
  height: 18px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--steel);
  border-radius: 6px;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  color: var(--red);
  background: var(--surface);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: clamp(690px, calc(100vh - 6px), 760px);
  overflow: hidden;
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.slider {
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4.8vw, 62px) clamp(18px, 5vw, 72px) clamp(86px, 8vw, 118px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 43%, rgba(255, 255, 255, 0.52) 100%),
    linear-gradient(0deg, rgba(21, 23, 26, 0.08), rgba(21, 23, 26, 0));
}

.slide > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
}

.slider-prev,
.slider-next,
.slider-dots {
  position: absolute;
  z-index: 3;
}

.slider-arrow,
.slider-dots button {
  border: 0;
  cursor: pointer;
}

.slider-arrow {
  display: grid;
  place-items: center;
  top: 50%;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  font-size: 38px;
  box-shadow: 0 10px 24px rgba(18, 25, 34, 0.1);
  transform: translateY(-50%);
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}

.slider-dots {
  display: flex;
  left: 50%;
  bottom: clamp(24px, 4vw, 42px);
  gap: 9px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 32px;
  height: 8px;
  padding: 0;
  background: rgba(21, 23, 26, 0.24);
  border-radius: 999px;
}

.slider-dots button.active {
  background: var(--red);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  white-space: nowrap;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 190px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.button.phone {
  color: var(--white);
  background: var(--ink);
}

.section {
  padding: clamp(54px, 8vw, 102px) clamp(18px, 5vw, 72px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stats div {
  min-height: 150px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.stats strong {
  display: block;
  color: #5ec9d8;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.brand-marquee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-marquee-head {
  position: relative;
  z-index: 2;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee-row {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: brand-marquee 24s linear infinite;
}

.brand-marquee:hover .brand-marquee-row {
  animation-play-state: paused;
}

.brand-marquee-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  min-height: 62px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-marquee-row img {
  display: block;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 32px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 54%, rgba(247, 248, 249, 0.92) 100%),
    var(--surface);
}

.home-about-copy {
  max-width: 720px;
}

.home-about-copy h2 {
  max-width: 680px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.08;
}

.home-about-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.home-about-panel {
  display: grid;
  gap: 12px;
}

.home-about-panel div {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(18, 25, 34, 0.06);
}

.home-about-panel strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.home-about-panel span {
  color: var(--muted);
}

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

.product-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  color: inherit;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card:hover {
  border-color: rgba(217, 39, 46, 0.4);
  box-shadow: 0 16px 34px rgba(18, 25, 34, 0.08);
}

.product-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--steel);
  border-radius: 8px;
  font-weight: 900;
}

.product-card p,
.service-list p,
.cta p {
  margin: 0;
  color: var(--muted);
}

.cta a:not(.button) {
  color: var(--white);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 82px);
  background: var(--surface);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.quick-request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--surface);
}

.request-copy p {
  max-width: 640px;
  color: var(--muted);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(18, 25, 34, 0.08);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

.request-form label:nth-child(4),
.request-form button {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.product-showcase {
  background: var(--white);
}

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

.showcase-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.showcase-item div {
  padding: 22px;
}

.showcase-item p {
  margin: 0;
  color: var(--muted);
}

.supply-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.supply-band h2 {
  color: var(--white);
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.supply-grid div {
  min-height: 150px;
  padding: 24px;
  background: #20252b;
}

.supply-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #5ec9d8;
  font-size: 22px;
}

.supply-grid span {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.step {
  min-height: 210px;
  padding: 30px;
  background: var(--surface);
}

.step strong {
  color: var(--red);
  font-size: 34px;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(28px, 5vw, 72px);
  padding: clamp(34px, 6vw, 62px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #243f4d 68%, var(--aqua));
  border-radius: 8px;
}

.cta h2 {
  max-width: 900px;
  font-size: clamp(28px, 4vw, 48px);
}

.cta p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    url("assets/hero-carwash-equipment.png") center / cover;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
  white-space: normal;
}

.page-hero .lead {
  max-width: 760px;
}

.projects-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 23, 26, 0.9), rgba(36, 63, 77, 0.74)),
    url("assets/hero-carwash-equipment.png") center / cover;
}

.projects-hero .eyebrow {
  color: #5ec9d8;
}

.projects-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(21, 23, 26, 0.92), rgba(21, 23, 26, 0.7)),
    url("assets/slide-chemicals.png") center / cover;
  color: var(--white);
}

.contact-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(21, 23, 26, 0.94), rgba(21, 23, 26, 0.72), rgba(21, 23, 26, 0.3)),
    url("assets/hero-carwash-equipment.png") center / cover;
  color: var(--white);
}

.about-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 82px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 23, 26, 0.97), rgba(36, 63, 77, 0.94)),
    url("assets/slide-parts.png") center / cover;
}

.brand-story h2 {
  color: var(--white);
}

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

.brand-story article {
  min-height: 310px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.brand-story strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.95;
}

.brand-story article:first-child strong::after {
  content: " ოფიციალური დისტრიბუტორი";
}

.brand-story article:nth-child(2) strong::after {
  content: " ოფიციალური დისტრიბუტორი";
}

.brand-story strong::after {
  display: block;
  margin-top: 12px;
  color: #5ec9d8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--surface);
}

.about-values article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-values span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.about-values p {
  margin: 0;
  color: var(--muted);
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.project-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.project-gallery {
  background: var(--surface);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-filter {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.gallery-filter.active,
.gallery-filter:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

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

.gallery-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card:hover {
  border-color: rgba(217, 39, 46, 0.42);
  box-shadow: 0 18px 36px rgba(18, 25, 34, 0.09);
  transform: translateY(-2px);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--surface);
}

.gallery-card video {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  background: var(--ink);
}

.gallery-card video:fullscreen {
  width: 100vw;
  height: 100vh;
  max-height: none;
  object-fit: contain;
  background: #000;
}

.video-player-card::before {
  display: none;
}

.gallery-card div {
  padding: 22px;
}

.gallery-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.video-card {
  position: relative;
}

.video-card::before {
  content: "▶";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(217, 39, 46, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(18, 25, 34, 0.2);
  font-size: 16px;
}

.video-card.video-player-card::before {
  display: none;
}

.about-service {
  background: var(--surface);
}

.catalog {
  display: grid;
  gap: 22px;
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.catalog-item span {
  color: var(--red);
  font-weight: 900;
}

.catalog-item h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
}

.catalog-item p {
  max-width: 720px;
  color: var(--muted);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--surface);
}

.category-hero img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-hero h1 {
  white-space: normal;
}

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

.feature-grid div {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.product-listing {
  background: var(--surface);
}

.shop-page {
  padding-top: clamp(34px, 5vw, 58px);
}

.shop-page .section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px 28px;
}

.shop-page .section-heading .eyebrow,
.shop-page .section-heading h2,
.shop-page .section-heading .shop-intro {
  grid-column: 1;
}

.shop-intro {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.listing-card {
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto 1fr auto auto;
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.listing-card:hover {
  border-color: rgba(217, 39, 46, 0.42);
  box-shadow: 0 18px 36px rgba(18, 25, 34, 0.09);
  transform: translateY(-2px);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.listing-card h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.listing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.listing-card .text-link,
.product-price {
  align-self: end;
}

.product-price {
  display: grid;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.product-price::before {
  content: "ფასი";
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.product-price:hover {
  background: var(--red-dark);
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
}

.product-specs li {
  padding: 8px 10px;
  background: var(--surface);
  border-radius: 6px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-panel h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.contact-panel a {
  color: var(--steel);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 16px 9px 9px;
  color: var(--white);
  background: #1fa855;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(18, 25, 34, 0.22);
  font-weight: 900;
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #1fa855;
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
}

.whatsapp-float strong {
  font-size: 15px;
}

.whatsapp-float:hover {
  background: #168a45;
  transform: translateY(-2px);
}

.site-notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: clamp(18px, 5vw, 46px);
  background: rgba(18, 25, 34, 0.46);
  backdrop-filter: blur(4px);
}

.site-notice {
  position: relative;
  width: min(100%, 560px);
  margin-top: clamp(18px, 7vh, 76px);
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(18, 25, 34, 0.25);
  animation: notice-drop 360ms ease both;
}

.site-notice h2 {
  max-width: 440px;
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.12;
}

.site-notice p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.site-notice-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--steel);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.site-notice-action {
  margin-top: 22px;
}

.site-notice-overlay.is-closing {
  opacity: 0;
  transition: opacity 180ms ease;
}

@keyframes notice-drop {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .slide,
  .split,
  .intro-band,
  .home-about,
  .brand-story,
  .quick-request,
  .supply-band,
  .project-intro,
  .cta,
  .catalog-item,
  .contact-layout,
  .category-hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-phone {
    margin-left: auto;
  }

  .hero {
    min-height: 760px;
  }

  .slide {
    align-content: start;
    padding: clamp(34px, 6vw, 64px) clamp(18px, 5vw, 44px) 92px;
  }

  .slide::before {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 55%, rgba(255, 255, 255, 0.12) 100%),
      linear-gradient(0deg, rgba(21, 23, 26, 0.22), rgba(21, 23, 26, 0));
  }

  .slide > img {
    width: 100%;
    height: 58%;
    inset: 0 0 auto;
  }

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

  .product-grid.three,
  .feature-grid,
  .service-cards,
  .steps,
  .listing-grid,
  .gallery-grid,
  .showcase-grid,
  .about-values,
  .brand-story-grid {
    grid-template-columns: 1fr;
  }

  .request-form,
  .supply-grid {
    grid-template-columns: 1fr;
  }

  .shop-page .section-heading {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .brand-logo-frame {
    width: 156px;
    height: 52px;
  }

  .header-phone {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: min(100vw - 36px, 300px);
    margin-top: 4px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: grid;
    transform: none;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .hero {
    min-height: 660px;
  }

  .slide {
    align-content: start;
    padding: 20px 20px 86px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions {
    gap: 8px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 74px);
  }

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

  .stats div {
    min-height: 118px;
  }

  .brand-marquee {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand-marquee-row {
    animation-duration: 18s;
  }

  .brand-marquee-row span {
    width: 142px;
    min-height: 54px;
    font-size: 16px;
  }

  .brand-marquee-row img {
    max-height: 32px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 16px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 12px;
  }
}
