/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Variables ── */
:root {
  --c-bg:      #0f0f0f;
  --c-surface: #2a2929;
  --c-border:  #2c2f38;
  --c-text:    #e0e0e0;
  --c-muted:   #a0a0a0;
  --c-accent:  #ffcd00;
  --c-accent2: #ffd000;
  --c-dark:    #444342;
  --c-white:   #f0f0f0;

  --nav-h: 51px;
  --frame-pad: 12px;
  --frame-radius: 18px;
  --skew: -8deg;
  --font-display: 'Dela Gothic One', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --footer-h: 47px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: var(--frame-pad);
  min-height: 100vh;
}

/* ── Page frame — rounded card ── */
.page-frame {
  position: fixed;
  inset: var(--frame-pad);
  border: none;
  border-radius: var(--frame-radius);
  background: var(--c-surface);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── NAV ── */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  padding-top: 6px;
  background: transparent;
}

/* ── Scrollable content area ── */
.page-frame > main {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
  scroll-behavior: auto; /* JS (scroll-pager.js) drives custom easing */
}

.page-frame > main::-webkit-scrollbar {
  display: none;
}

/* Each top-level section fills the viewport */
.page-frame > main > section {
  min-height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--transition);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.nav__logo-img {
  height: 36px;
  width: auto;
  color: var(--c-accent);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav__logo-text em {
  color: var(--c-accent);
  font-style: normal;
}

.nav__logo:hover {
  opacity: 0.85;
}

/* Links — center panel, trapezoid with rounded bottom */
.nav__menu {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  background: transparent;
  padding: 14px 40px;
  border: none;
  z-index: 1;
}

.nav__menu::before {
  content: '';
  position: absolute;
  inset: 0 -28px;
  background: var(--c-bg);
  border-radius: 0 0 10px 10px;
  transform: perspective(120px) rotateX(-8deg);
  transform-origin: top center;
  z-index: -1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Fillets — inverse rounded corners at panel-to-frame junction */
.nav__fillet {
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  overflow: hidden;
  pointer-events: none;
}

.nav__fillet::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 0 20px var(--c-bg);
}

.nav__fillet--left {
  left: calc(-28px - 11px);
}

.nav__fillet--left::before {
  right: 0;
  top: 0;
}

.nav__fillet--right {
  right: calc(-28px - 11px);
}

.nav__fillet--right::before {
  left: 0;
  top: 0;
}

.nav__link {
  position: relative;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--c-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--c-white);
}

.nav__link:hover::after {
  width: calc(100% - 32px);
}

.nav__link.active {
  color: var(--c-accent);
}

.nav__link.active::after {
  width: calc(100% - 32px);
}

/* ── Action buttons (top-right) ── */
.nav__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transform: skewX(-12deg);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: all var(--transition);
}

.nav__btn > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: skewX(12deg);
}

/* Contact button — filled (same as login) */
.nav__btn--contact {
  background: var(--c-accent);
  color: var(--c-bg);
}

.nav__btn--contact:hover {
  background: var(--c-accent2);
  box-shadow: 0 0 24px rgba(255, 205, 0, 0.3);
}

/* Login button — filled */
.nav__btn--login {
  background: var(--c-accent);
  color: var(--c-bg);
}

.nav__btn--login:hover {
  background: var(--c-accent2);
  box-shadow: 0 0 24px rgba(255, 205, 0, 0.3);
}

.nav__btn--login svg {
  flex-shrink: 0;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav__burger {
    display: flex;
  }

  .nav__actions {
    display: none;
  }

  .nav__menu {
    position: fixed;
    top: calc(var(--nav-h) + var(--frame-pad));
    left: var(--frame-pad);
    right: var(--frame-pad);
    flex-direction: column;
    padding: 16px 24px;
    background: rgba(25, 34, 48, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 0 0 var(--frame-radius) var(--frame-radius);
    border: 1px solid var(--c-border);
    border-top: none;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }

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

  .nav__link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .showcase__label {
    bottom: 80px;
    font-size: 18px;
    letter-spacing: 4px;
  }

  .showcase__specs { display: none; }

  /* Inactive products smaller on mobile */
  .showcase__item:not(.showcase__item--active) {
    width: 20% !important;
    max-width: 160px !important;
  }
}

/* ══════════════════════════════════════
   SHOWCASE — All products on one screen
   ══════════════════════════════════════ */
.showcase {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--c-surface);
}

.showcase__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* Large background text */
.showcase__bg-text {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 8px;
  text-transform: uppercase;
  z-index: 0;
  transition: opacity 0.4s;
}

/* ══ Product items — always visible ══ */
.showcase__item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.5);
}

.showcase__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* Shadow under product image */
.showcase__item::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: 10%;
  width: 80%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.7s;
}

/* ── Active product — center foreground ── */
.showcase__item--active {
  z-index: 5;
  cursor: default;
  filter: drop-shadow(0 0 9px rgba(160, 160, 160, 0.15)) drop-shadow(0 0 2px rgba(160, 160, 160, 0.1));
}

.showcase__item--active::after {
  opacity: 1;
}

/* ── Inactive hover ── */
.showcase__item:not(.showcase__item--active):hover {
  filter: brightness(0.75);
}

/* ── Home positions: active = center, inactive = fixed spots ── */

/* Product 1 (GORA) */
.showcase__item[data-index="0"].showcase__item--active {
  top: 50%;
  left: 50%;
  width: 55%;
  max-width: 750px;
  transform: translate(-50%, -50%);
}

.showcase__item[data-index="0"]:not(.showcase__item--active) {
  top: 50%;
  left: 25%;
  width: 22%;
  max-width: 320px;
  transform: translate(-50%, -50%);
}

/* Product 2 (VALKYRIE) */
.showcase__item[data-index="1"].showcase__item--active {
  top: 50%;
  left: 50%;
  width: 55%;
  max-width: 750px;
  transform: translate(-50%, -50%);
}

.showcase__item[data-index="1"]:not(.showcase__item--active) {
  top: 50%;
  left: 75%;
  right: auto;
  width: 22%;
  max-width: 320px;
  transform: translate(-50%, -50%);
}

/* Product 3 (future) */
.showcase__item[data-index="2"]:not(.showcase__item--active) {
  top: 25%;
  left: 8%;
  width: 22%;
  max-width: 300px;
  transform: translate(0, -50%);
}

.showcase__item[data-index="2"].showcase__item--active {
  top: 50%;
  left: 50%;
  width: 55%;
  max-width: 750px;
  transform: translate(-50%, -50%);
}

/* Placeholder styling */
.showcase__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px dashed var(--c-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  opacity: 0.5;
}

/* ══ Info panels — details for each product ══ */
.showcase__info {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 6;
}

.showcase__info--active {
  opacity: 1;
}

/* Spec cards */
.showcase__specs {
  position: absolute;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.showcase__specs--left { left: 40px; }
.showcase__specs--right { right: 40px; }

.showcase__spec-card {
  background: #ffb700;
  color: #0f0f0f;
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.showcase__spec-val {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: #0f0f0f;
  line-height: 1.2;
}

.showcase__spec-key {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-surface);
  margin-top: 4px;
}

/* Label */
.showcase__label {
  position: absolute;
  bottom: 185px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  z-index: 3;
}

/* Description box */
.showcase__desc-box {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffb700;
  color: #0f0f0f;
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 780px;
  width: 90%;
  text-align: center;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.showcase__desc-title {
  font-family: var(--font-display);
  font-size: 15.4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
}

.showcase__desc-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0f0f0f 30%, #0f0f0f 70%, transparent);
}

.showcase__desc-text {
  font-family: var(--font-display);
  font-size: 14.4px;
  line-height: 1.6;
  color: var(--c-surface);
}

/* Dots */
.showcase__dots {
  position: absolute;
  bottom: 170px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--c-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.showcase__dot:hover { border-color: var(--c-accent); }

.showcase__dot.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

/* Scroll hint */
.showcase__scroll-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--c-muted);
  opacity: 0.5;
  animation: bounceDown 2s infinite;
  z-index: 3;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ══════════════════════════════════════
   SECTIONS — Common
   ══════════════════════════════════════ */
.section {
  padding: 100px 48px;
}

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

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}

.section__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: block;
}

.section__tag--center {
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--c-white);
  white-space: nowrap;
}

.section__title--center {
  text-align: center;
}

.section__title .dim {
  color: var(--c-dark);
}

.section__title .accent {
  color: var(--c-accent);
}

.section__num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--c-border);
  line-height: 1;
  user-select: none;
}

/* ── Stats Strip ── */
.stats-strip {
  display: flex;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}

.stat-item {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid var(--c-border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--c-accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.product-card {
  background: var(--c-surface);
  overflow: hidden;
  transition: transform 0.4s;
}

.product-card:hover {
  transform: scale(1.005);
}

.product-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-card__img {
  background: var(--c-bg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card--featured .product-card__img {
  aspect-ratio: auto;
  min-height: 360px;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  transition: transform 0.6s;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.product-card:hover .product-card__img img {
  transform: scale(1.05) translateY(-4px);
}

.product-card__img--placeholder {
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img--placeholder::after {
  content: 'НЕЗАБАРОМ';
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-dark);
}

.product-card__info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--c-accent);
  color: var(--c-bg);
  margin-bottom: 20px;
  width: fit-content;
}

.product-card__badge--wip {
  background: var(--c-border);
  color: var(--c-muted);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--c-white);
  line-height: 0.95;
  margin-bottom: 8px;
}

.product-card--featured .product-card__name {
  font-size: 48px;
}

.product-card__name--muted {
  color: var(--c-muted);
}

.product-card__subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.product-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-muted);
  margin-bottom: 28px;
}

.product-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.spec {
  padding: 12px 0;
  border-top: 1px solid var(--c-border);
}

.spec__val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--c-accent);
  line-height: 1;
}

.spec__key {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 2px;
}

.product-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--transition);
}

.product-card__link:hover {
  gap: 18px;
}

/* ══════════════════════════════════════
   CAPABILITIES — Parallelogram card grid (mirrors .form-group)
   ══════════════════════════════════════ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 42px;
  max-width: 1416px;
  margin: 0 auto;
  padding: 0 20px;
}

.cap-card {
  background: var(--c-bg);
  border: none;
  border-radius: 6px;
  transform: skewX(-12deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cap-card:hover {
  background: #1a1a1a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.cap-card__inner {
  padding: 34px 38px;
  transform: skewX(12deg);
}

.cap-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  display: block;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

.cap-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent) 20%, var(--c-accent) 80%, transparent);
}

.cap-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.section--about {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 810px);
  gap: 72px;
  justify-content: center;
  align-content: center;
  padding: 80px 48px;
  background: var(--c-surface);
}

.about__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-height: calc(100vh - 220px);
  justify-self: end;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__content {
  max-width: 810px;
  background: transparent;
  padding: 36px 40px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.about__logo-bg {
  width: 70%;
  height: auto;
  opacity: 0.06;
  color: var(--c-accent);
}

.about__data {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--c-border);
}

.about__data-item {
  padding: 20px 24px;
  border-right: 1px solid var(--c-border);
}

.about__data-item:last-child {
  border-right: none;
}

.about__data-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}

.about__data-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-muted);
}

.about__quote {
  font-family: var(--font-body);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--c-white);
  margin: 72px 0 64px;
  border: none;
  padding: 0 0 0 30px;
  position: relative;
}

.about__quote::before,
.about__quote::after {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--c-accent);
  position: absolute;
  opacity: 0.35;
  line-height: 1;
}

.about__quote::before {
  content: '\201C';
  top: -56px;
  left: 0;
}

.about__quote::after {
  content: '\201D';
  bottom: -56px;
  right: 0;
}

.about__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--c-muted);
  margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-accent);
  color: var(--c-bg);
}

.btn--primary:hover {
  background: var(--c-accent2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.section--contact {
  background: var(--c-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact__inner {
  position: relative;
  z-index: 2;
}

/* ── Unified font for entire contact block ── */
.section--contact,
.section--contact .section__tag,
.section--contact .contact__sub,
.section--contact .form-group__input,
.section--contact .form-group__textarea {
  font-family: var(--font-display);
}

.section--contact .section__title {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
}

.contact__sub {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 16px 0 48px;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: left;
  padding: 0 20px;
}

/* Parallelogram form-group — mirrors .nav__btn shape */
.form-group {
  background: var(--c-bg);
  border: none;
  border-radius: 6px;
  transform: skewX(-12deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: background var(--transition), box-shadow var(--transition);
}

.form-group:focus-within {
  background: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.form-group__inner {
  padding: 14px 28px;
  transform: skewX(12deg);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
  display: block;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.form-group__input,
.form-group__textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
}

.form-group__textarea {
  resize: none;
  height: 96px;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--c-dark);
  font-family: var(--font-display);
}

/* Submit button — identical to .nav__btn--contact, just larger */
.contact__submit {
  font-size: 20px;
  padding: 12px 36px;
}

.about__btn {
  display: flex;
  width: fit-content;
  margin: 32px auto 0;
  grid-column: 1 / -1;
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .section {
    padding: 60px 24px;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card--featured {
    grid-template-columns: 1fr;
  }

  .cap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .cap-card__inner {
    padding: 18px 24px;
  }

  .section--about {
    grid-template-columns: 1fr;
  }

  .about__visual {
    display: none;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--c-border);
  }

  .section__num {
    font-size: 48px;
  }
}

/* ── Footer ── */
.footer {
  flex-shrink: 0;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
  padding: 14px 28px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copy {
  font-size: 13px;
  color: var(--c-muted);
}

.footer__link {
  font-size: 13px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--c-accent);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .carousel__track {
    transition: none;
  }
}
