:root {
  --bg: #ffffff;
  --text: #141414;
  --muted: #2f2f32;
  --brand: #8f1019;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.page {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 1.15rem 0 2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  background: transparent;
  width: clamp(220px, 29vw, 390px);
  height: auto;
  display: block;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.lang-toggle {
  border: 1px solid #cfcfd5;
  background: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
}

#langIcon {
  font-size: 1.2rem;
  line-height: 1;
}

.contact {
  color: #222;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
}

.hero {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr minmax(310px, 460px);
  gap: 2.1rem;
  align-items: center;
}

.copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.05;
}

.copy p {
  margin: 0 0 0.52rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.26vw, 1.24rem);
  line-height: 1.3;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.btn {
  text-decoration: none;
  border-radius: 2px;
  padding: 1rem 1.95rem;
  font-size: 1rem;
  font-weight: 700;
}

.btn-secondary {
  background: linear-gradient(180deg, #d31626 0%, #8e0f18 100%);
  color: #fff;
  border: 1px solid #7f0d16;
  padding: 1.08rem 2.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 18px rgba(142, 15, 24, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(142, 15, 24, 0.34);
}

.pdf-icon {
  font-size: 1rem;
  line-height: 1;
}

.media {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.badge {
  position: absolute;
  right: 0.65rem;
  bottom: 0.5rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
  font-size: 0.95rem;
}

.cards {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.card {
  border: 1px solid #7f0d16;
  border-radius: 10px;
  padding: 1.25rem 2.9rem 1.25rem 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 9px 16px rgba(56, 7, 11, 0.28);
  background: #a5131e;
}

.card-arrow {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease;
}

.card:hover .card-arrow,
.card:focus-visible .card-arrow {
  transform: translateY(-50%) translateX(2px);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #e9e9e9;
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.6rem;
}

.modal-close {
  position: absolute;
  right: 0.75rem;
  top: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-title {
  margin: 0 0 1rem;
  color: #ca0f1d;
  font-size: clamp(1.3rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  padding-right: 2rem;
}

.modal-label {
  margin: 0 0 1rem;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 600;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.modal-options-stacked {
  grid-template-columns: 1fr;
}

.modal-option {
  background: #e21823;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  text-align: center;
  padding: 0.72rem 0.8rem;
  font-size: 1.55rem;
  font-weight: 600;
}

.modal-option-stacked {
  border-radius: 14px;
  text-align: left;
  padding: 1rem 1.05rem;
}

.modal-option-stacked h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.3vw, 2rem);
  color: #fff;
  font-style: italic;
  line-height: 1.2;
}

.modal-option-stacked p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-style: italic;
}


.footer-line {
  margin-top: 1.25rem;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: #121317;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

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



@media (max-width: 600px) {
  .page { padding-top: 0.8rem; }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .media { order: 1; }
  .copy { order: 2; }

  .top-right { gap: 0.65rem; }

  .contact {
    font-size: 0.86rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .copy h1 {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }

  .copy p {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .ctas {
    gap: 0.62rem;
    margin-top: 0.88rem;
  }

  .btn {
    flex: 1 1 100%;
    text-align: center;
    padding: 0.86rem 1rem;
    font-size: 0.94rem;
  }

  .card {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .media {
    max-height: 190px;
  }

  .media img {
    aspect-ratio: 16 / 8;
  }

  .modal-panel {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    padding: 1.25rem 1rem 1.25rem;
  }

  .modal-options {
    grid-template-columns: 1fr;
  }

  .modal-option {
    font-size: 1.15rem;
  }

}

.card-link {
  text-decoration: none;
}

.accessories-section {
  margin-top: 1.2rem;
}

.accessories-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.accessories-stack {
  display: grid;
  gap: 0.8rem;
}

.accessories-stack img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}


.modal-option-link {
  display: block;
  text-decoration: none;
}

.page-title-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.page-title-row .accessories-title {
  margin: 0;
}

.page-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #111;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  font-size: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}

.page-back::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg) translateX(1px);
  display: block;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.45rem;
  height: 2.45rem;
  border: 0;
  border-radius: 999px;
  background: #8f1019;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1200;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
