:root {
  --red: #e30613;
  --red-dark: #b5050f;
  --black: #0d0d0d;
  --gray-900: #161616;
  --gray-700: #3a3a3a;
  --gray-400: #9a9a9a;
  --white: #fafafa;
  --font: "Barlow", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  font: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--gray-400);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

.lang-switch button:not([aria-pressed="true"]):hover {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 720px);
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.hero-copy {
  padding: 3rem 1.25rem 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0;
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 36ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.stat {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
}

.stat span {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-media {
  position: relative;
  min-height: 280px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gray-900) 0%, transparent 45%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-media {
    min-height: 220px;
    order: -1;
  }

  .hero-media::after {
    background: linear-gradient(180deg, var(--gray-900) 0%, transparent 50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.badge-years {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-style: italic;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-style: italic;
}

.section-head p {
  margin: 0;
  color: var(--gray-400);
  max-width: 60ch;
}

.bg-dark {
  background: #111;
}

.bg-black {
  background: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.card figure {
  margin: 0;
  aspect-ratio: 4/3;
  background: #1a1a1a;
}

.card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-body h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  font-style: italic;
}

.card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-400);
  flex: 1;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.list-check li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-400);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--red);
}

.cta-banner {
  margin: 2rem 0 0;
  background: linear-gradient(135deg, var(--red) 0%, #9f040c 100%);
  border-radius: 20px;
  padding: 2rem 2rem 2rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(227, 6, 19, 0.25);
}

@media (max-width: 700px) {
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner .btn {
    width: 100%;
  }
}

.cta-banner h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-banner p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.95rem;
}

.footnote {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 1.25rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1.25rem;
  background: #080808;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-inner .brand img {
  height: 36px;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-meta a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links button {
  font: inherit;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.footer-links button:hover {
  color: var(--white);
}

.footer-powered {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-powered a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-powered a:hover {
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.modal-overlay[open],
.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  max-width: 640px;
  max-height: 85vh;
  overflow: auto;
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
}

.modal h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.modal p,
.modal li {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.modal ul {
  padding-left: 1.1rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
