:root {
  --anthracite: #15191d;
  --ink: #20262b;
  --steel: #5f6b73;
  --muted: #6d7780;
  --line: #dce2e6;
  --paper: #f6f7f7;
  --white: #ffffff;
  --cyan: #12a8b5;
  --red: #c9342f;
  --dark: #0d1115;
  --shadow: 0 18px 46px rgba(13, 17, 21, 0.12);
  --shadow-deep: 0 26px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.section--soft {
  background:
    linear-gradient(90deg, rgba(13, 17, 21, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 17, 21, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
.nav-link,
.btn {
  font-family: Archivo, Inter, sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.why__heading h2,
.about h2,
.cta-section h2 {
  margin: 0;
  color: var(--anthracite);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 226, 230, 0.82);
  backdrop-filter: blur(16px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(13, 17, 21, 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: min-height 0.25s ease;
}

.site-header.is-scrolled .navbar {
  min-height: 72px;
}

.logo {
  flex: 0 0 auto;
  width: clamp(132px, 18vw, 184px);
  height: 58px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo img.is-missing,
.footer-logo img.is-missing {
  visibility: hidden;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: #2d353b;
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
  background: rgba(18, 168, 181, 0.08);
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(201, 52, 47, 0.22);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--anthracite);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 72px 0 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 12, 15, 0.94), rgba(15, 20, 24, 0.78) 48%, rgba(15, 20, 24, 0.36)),
    linear-gradient(180deg, rgba(18, 168, 181, 0.14), rgba(201, 52, 47, 0.08)),
    url("img/stock/hero-endustriyel-saha.webp") center / cover no-repeat;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: 46px;
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.hero__text {
  max-width: 620px;
  margin: 22px 0 0;
  color: #dbe4e8;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions,
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(201, 52, 47, 0.28);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn--whatsapp {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.22);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #dfeaed;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero__visual,
.featured__media {
  display: grid;
  min-width: 0;
}

.hero__visual {
  justify-items: end;
}

.product-photo-card,
.featured-product-card {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.product-photo-card img,
.featured-product-card img {
  width: 100%;
  height: calc(100% - 44px);
  object-fit: contain;
  background: #e7ecef;
}

.product-photo-card figcaption,
.featured-product-card figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #dfe8eb;
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(13, 17, 21, 0.72);
}

.trust-band {
  color: var(--white);
  background: var(--anthracite);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-band__grid div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-band__grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-band span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-band strong {
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 260px));
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}

.product-card {
  container-type: inline-size;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover,
.image-tile:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 168, 181, 0.45);
  box-shadow: 0 22px 56px rgba(13, 17, 21, 0.16);
}

.product-card img {
  width: 100%;
  height: 100cqw;
  max-height: 100cqw;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--paper);
}

.product-card img[src*="products"] {
  object-fit: contain;
  padding: 8px;
}

.product-card div {
  min-height: 176px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 16px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.product-card p {
  display: -webkit-box;
  margin: 4px 0 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card ul {
  display: grid;
  gap: 2px;
  margin: 0 0 14px;
  padding-left: 18px;
  overflow: hidden;
  color: #3d474f;
  font-size: 0.86rem;
}

.product-card a {
  color: var(--red);
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 14%, rgba(18, 168, 181, 0.16), transparent 28%),
    linear-gradient(135deg, #0d1115, #1b2228);
}

.featured__grid,
.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.featured-product-card {
  width: min(100%, 440px);
  justify-self: start;
}

.featured h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.featured h3 {
  margin: 8px 0 14px;
  color: #dfe8eb;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.featured p {
  color: #c8d2d7;
}

.spec-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.spec-mini-grid div,
.spec-panel div,
.feature-card {
  border: 1px solid rgba(220, 226, 230, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.spec-mini-grid div {
  display: grid;
  gap: 2px;
  padding: 14px;
  color: var(--ink);
}

.spec-mini-grid strong,
.spec-panel strong {
  font-family: Archivo, Inter, sans-serif;
}

.spec-mini-grid span,
.spec-panel span {
  color: var(--muted);
  font-size: 0.78rem;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.image-tile img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.image-tile h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(8, 11, 14, 0.86));
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.image-tile:hover img,
.gallery-item:hover img {
  filter: contrast(1.06) saturate(1.04);
  transform: scale(1.06);
}

.why {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--dark);
  background-size: 46px 46px;
}

.why__heading {
  margin-bottom: 34px;
}

.why h2 {
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card span {
  width: 28px;
  height: 28px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(18, 168, 181, 0.16);
}

.feature-card strong {
  font-family: Archivo, Inter, sans-serif;
}

.feature-card p {
  margin: 0;
  color: #c3cdd2;
  font-size: 0.92rem;
}

.specs-layout .section-heading {
  margin-bottom: 28px;
}

.spec-panel {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spec-panel div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-width: 0 0 1px;
  border-radius: 0;
}

.spec-panel div:last-child {
  border-bottom: 0;
}

.spec-panel span {
  color: var(--cyan);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.step span {
  color: var(--cyan);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.step strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.about {
  background: var(--paper);
}

.about__copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.about__copy p:first-child {
  margin-top: 0;
}

.cta-section {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 52, 47, 0.9), rgba(18, 168, 181, 0.74)),
    url("img/stock/cta-makine-detay.webp") center / cover no-repeat;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  max-width: 660px;
  color: #edf5f6;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 12px;
}

.floating-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.floating-btn svg {
  width: 34px;
  height: 34px;
}

.floating-btn--phone {
  background: #0d6efd;
}

.floating-btn--phone svg {
  width: 29px;
  height: 29px;
}

.floating-btn--whatsapp {
  background: #25d366;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(5, 7, 9, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  width: min(96vw, 980px);
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--white);
  background: #101418;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.footer-logo__panel {
  width: 210px;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #e9eef1);
}

.footer-logo img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: #c3cbd0;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.9rem;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #c3cbd0;
  font-size: 0.94rem;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b5bec4;
}

.footer-bottom p {
  margin: 0;
}

.digital-signature a {
  color: #ffffff;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  animation: fade-up 0.55s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0.01;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
    order: 3;
    background: #15191d;
    border-color: #2a3238;
  }

  .menu-toggle span {
    background: #ffffff;
  }

  .header-cta {
    margin-left: auto;
    order: 2;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    z-index: 120;
    width: min(86vw, 360px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 20px;
    opacity: 1;
    background: #15191d;
    border-left: 1px solid #2b333a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    color: #eef4f6;
    padding-inline: 12px;
    background: #1c2329;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff;
    background: #2a333a;
  }

  .hero__grid,
  .featured__grid,
  .about__grid,
  .cta-section__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-band__grid,
  .steps,
  .feature-grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .navbar {
    gap: 10px;
  }

  .logo {
    width: 128px;
    height: 48px;
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 14px 0 18px;
  }

  .hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .hero__content {
    display: contents;
  }

  .hero__visual {
    order: 1;
  }

  .hero__actions {
    order: 2;
    width: 100%;
  }

  .tech-tags {
    order: 3;
    width: 100%;
  }

  .hero__copy {
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: 2;
    width: min(calc(100% - 42px), 328px);
    padding: 14px 14px 18px;
    border-radius: 14px 14px 22px 22px;
    background: linear-gradient(180deg, rgba(6, 10, 13, 0.72), rgba(6, 10, 13, 0.36) 70%, transparent);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  }

  .hero .section-kicker {
    margin-bottom: 7px;
    font-size: 0.64rem;
  }

  .hero__text {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.4;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
  }

  .hero__actions,
  .cta-section__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 0;
  }

  .hero .btn {
    min-height: 44px;
    padding: 10px 9px;
    font-size: 0.78rem;
  }

  .btn {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .tech-tags {
    gap: 6px;
    margin-top: 0;
  }

  .tech-tags span {
    min-height: 26px;
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .hero__visual {
    justify-items: center;
  }

  .hero .product-photo-card {
    width: min(100%, 360px);
    height: min(78svh, 670px);
    min-height: 560px;
    aspect-ratio: auto;
    border-radius: 16px;
  }

  .hero .product-photo-card img {
    height: 100%;
    padding: 134px 10px 34px;
    object-fit: contain;
  }

  .hero .product-photo-card figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    z-index: 2;
    min-height: auto;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    font-size: 0.72rem;
  }

  .trust-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band__grid div {
    min-height: 82px;
    padding: 14px;
  }

  .product-grid,
  .gallery-grid,
  .area-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card div {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .product-card p,
  .product-card ul,
  .image-tile h3 {
    font-size: 0.76rem;
  }

  .product-card ul {
    padding-left: 16px;
  }

  .spec-mini-grid,
  .steps,
  .feature-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .spec-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 16px;
  }

  .cta-section {
    padding: 56px 0;
  }

  .footer-logo__panel {
    width: min(100%, 210px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-actions {
    width: 44px;
    right: 8px;
    bottom: 8px;
    gap: 8px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .floating-btn svg {
    width: 28px;
    height: 28px;
  }

  .floating-btn--phone svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .product-grid,
  .gallery-grid,
  .area-grid,
  .compact-grid,
  .cta-section__actions,
  .trust-band__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .btn {
    font-size: 0.72rem;
  }

  .header-cta {
    display: none;
  }
}
