/* =========================================================
   VERIFEYE — Dark Industrial Website Styles
   Palette:  Dark bg #0d0f14 | Surface #161a24 | Red #ED1C24
             Grey #bbb5b5 | White #f0f0f4
   Font:     Outfit (sans) + Space Grotesk (display)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Space+Grotesk:wght@400;600;700&display=swap');

/* ── Reset & base ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #ED1C24;
  --red-light: #ED1C24;
  --red-glow: rgba(188, 21, 2, 0.549);
  --bg: #0d0f14;
  --surface: #161a24;
  --surface-2: #1e2433;
  --border: rgba(255, 255, 255, 0.07);
  --grey: #bbb5b5;
  --white: #f0f0f4;
  --font: 'Outfit', sans-serif;
  --display: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Utility ──────────────────────────────────────────── */
.accent {
  color: var(--red-light);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn--primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: var(--red-light);
  color: var(--red-light);
  transform: translateY(-2px);
}

/* ── SVG Icons ────────────────────────────────────────── */
.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: contain;
}

/* ── Top contact bar ──────────────────────────────────── */
.top-bar {
  background: #000;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}

.top-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
}

.top-bar__label {
  color: var(--grey);
  font-weight: 600;
  margin-right: 0.5rem;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--grey);
  transition: color 0.2s;
}

.top-bar__link:hover {
  color: var(--red-light);
}

/* ── Site header / nav ────────────────────────────────── */
.site-header {
  background: rgba(13, 15, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  height: 48px;
  width: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.brand__name em {
  font-style: normal;
  color: var(--red-light);
}

.brand__tagline {
  font-size: 0.72rem;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.2s, background 0.2s;
}

.site-nav__link:hover {
  color: var(--white);
  background: var(--surface-2);
}

.site-nav__link--cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  margin-left: 0.5rem;
}

.site-nav__link--cta:hover {
  background: var(--red-light);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* ── Back to top ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--red-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #d5141c;
}

.back-to-top.is-visible:hover {
  transform: translateY(-2px);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a0c10 0%, #12161f 60%, #1a0a0a 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
  pointer-events: none;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}

.hero__copy {
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(237, 28, 36, 0.14);
  border: 1px solid rgba(237, 28, 36, 0.4);
  color: var(--red-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__heading {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
}

.hero__heading--accent {
  color: var(--red-light);
}

.hero__sub {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero machine image */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero__machine {
  position: relative;
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.7));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Hero strip */
.hero__strip {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero__strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  border-right: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.hero__strip-item:last-child {
  border-right: none;
}

.hero__strip-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero__strip-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.hero__strip-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ── Sections ─────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--surface);
}

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.75rem;
}

.section__heading {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 3rem;
}

/* ── Spec cards grid ──────────────────────────────────── */
.specs-grid {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.specs-grid .spec-card {
  flex: 1 1 260px;
  max-width: calc(25% - 1.25rem);
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(237, 28, 36, 0.45);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 28, 36, 0.5);
  border-left-color: var(--red);
  box-shadow: 0 12px 40px rgba(237, 28, 36, 0.15);
}

.spec-card__icon {
  margin-bottom: 1rem;
}

.spec-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--red-light);
}

.spec-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.spec-card__body {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.55;
}

/* ── Compliance banner ────────────────────────────────── */
.compliance {
  background: linear-gradient(90deg, rgba(237, 28, 36, 0.12) 0%, rgba(237, 28, 36, 0.04) 100%);
  border-top: 1px solid rgba(237, 28, 36, 0.25);
  border-bottom: 1px solid rgba(237, 28, 36, 0.25);
  padding: 2.5rem 0;
}

.compliance__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.compliance__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.compliance__icon svg {
  width: 32px;
  height: 32px;
  color: var(--red-light);
}

.compliance__text {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
}

.compliance__text strong {
  color: var(--white);
}

.compliance__inner--licence {
  align-items: center;
  gap: 2rem;
}

.compliance__visual {
  flex-shrink: 0;
}

.compliance__licence-img {
  display: block;
  width: min(220px, 38vw);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compliance__body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

/* ── Showcase (image + feature list) ─────────────────── */
.showcase {
  padding: 6rem 0;
}

.showcase__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.showcase__image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.showcase__optotype {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: min(220px, 70%);
}

.showcase__optotype-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.showcase__optotype-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  line-height: 1.35;
}

.showcase__img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.6));
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.showcase__img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--grey);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list__item::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-light);
  margin-top: 0.52rem;
}

/* ── Models grid ──────────────────────────────────────── */
.models-grid {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.models-grid .model-card {
  flex: 1 1 280px;
  max-width: 480px;
}

.model-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 1.75rem 1.75rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.model-card__accent {
  height: 4px;
  border-radius: 4px;
  margin: 0 -1.75rem 1.5rem;
  width: calc(100% + 3.5rem);
}

.model-card__accent--1 {
  background: linear-gradient(90deg, var(--red), #ff6b6b);
}

.model-card__accent--2 {
  background: linear-gradient(90deg, #b0b0b0, #b2b2b3);
}

.model-card__img {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.model-card__name {
  font-family: var(--display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.model-card__desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.model-card__desc strong {
  color: var(--white);
}

.model-card__link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-light);
  transition: color 0.2s, letter-spacing 0.2s;
}

.model-card__link:hover,
.model-card:hover .model-card__link {
  color: #fff;
  letter-spacing: 0.03em;
}

/* ── Product cards ────────────────────────────────────── */
.products-grid {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.product-card {
  flex: 1 1 300px;
  max-width: calc((100% - 3rem) / 3);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 1.75rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.product-card__accent {
  height: 4px;
  margin: 0 -1.75rem 1.5rem;
  width: calc(100% + 3.5rem);
}

.product-card__accent--verifeye {
  background: linear-gradient(90deg, #9aa0ab, #c3c7cf);
}

.product-card__img {
  height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.product-card__img--on-dark {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 0.5rem;
}

.product-card__name {
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-card__desc strong {
  color: #fff;
}

.product-card__price {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.product-card__price-note {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--grey);
}

.product-card__link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-light);
  transition: color 0.2s, letter-spacing 0.2s;
}

.product-card:hover .product-card__link {
  color: #fff;
  letter-spacing: 0.03em;
}

/* ── Modularity cards ─────────────────────────────────── */
.modularity-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.mod-card:hover {
  border-color: rgba(237, 28, 36, 0.4);
  transform: translateY(-4px);
}

.mod-card__num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(237, 28, 36, 0.2);
  margin-bottom: 0.5rem;
  font-family: var(--font);
}

.mod-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.mod-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── Contact / Quote form ─────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact__sub {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__detail-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--grey);
  transition: color 0.2s;
}

.contact__detail-link:hover {
  color: var(--red-light);
}

.contact__detail-link .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Form layout */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(187, 181, 181, 0.4);
}

.form-input:focus {
  border-color: var(--red-light);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.15);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23bbb5b5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-select option {
  background: var(--surface-2);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.contact__submit {
  width: 100%;
  text-align: center;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: #080a0e;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.brand__name--footer {
  font-family: var(--display);
  font-size: 2.2rem;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.brand__name--footer em {
  font-style: normal;
  color: var(--red-light);
}

.site-footer__strapline {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
}

.footer-contact__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.footer-contact__link {
  display: block;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-contact__link:hover {
  color: var(--white);
}

.site-footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
  filter: brightness(0.9);
}

.site-footer__made-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

.site-footer__flag {
  width: 36px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.site-footer__made-in-text {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__machine {
    max-height: 300px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badge {
    text-align: left;
  }

  .showcase__inner {
    grid-template-columns: 1fr;
  }

  .showcase__copy {
    text-align: left;
  }

  .showcase__image-wrap {
    display: none;
  }

  .compliance__inner--licence {
    flex-direction: column;
    text-align: center;
  }

  .compliance__body {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .compliance__licence-img {
    width: min(200px, 55vw);
    margin: 0 auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .models-grid .model-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .product-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .top-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    padding: 0.5rem 1.25rem;
  }

  .site-header__inner {
    padding: 0 1.25rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .site-nav {
    order: 3;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.35rem;
    padding: 0.5rem 0 0.75rem;
  }

  .site-nav.site-nav--open {
    display: flex;
  }

  .site-nav .site-nav__link {
    display: block;
    width: 100%;
    text-align: center;
  }

  .site-nav__link--cta {
    margin-left: 0;
  }

  .top-bar__link--web {
    display: none;
  }

  .hero__strip-item {
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__glow {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 500px) {
  .top-bar__link:nth-child(3) {
    display: none;
  }

  .brand__name {
    font-size: 1.45rem;
  }

  .brand__tagline {
    font-size: 0.65rem;
  }

  .hero__inner {
    padding: 3rem 1.25rem 2rem;
  }

  .hero__heading {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .section {
    padding: 4rem 0;
  }

  .section__inner,
  .showcase__inner,
  .contact__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .specs-grid {
    flex-direction: column;
  }

  .specs-grid .spec-card {
    max-width: 100%;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .modularity-grid {
    grid-template-columns: 1fr;
  }

  .hero__strip {
    flex-direction: column;
  }

  .hero__strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}