:root {
  --red: #C81E26;
  --red-bright: #D62028;
  --bg: #131418;
  --bg-deep: #0e0f12;
  --panel: #1c1f24;
  --panel-edge: #2b2f36;
  --white: #f5f5f7;
  --text: #e6e7ea;
  --grey: #9aa0a8;
  --grey-dim: #6e7278;
  --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
}

/* Header */
.site-header {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--panel-edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo { height: 52px; width: auto; }
.site-header nav { display: flex; gap: 28px; align-items: center; }
.site-header a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.site-header a:hover { color: var(--red-bright); }
.nav-cta {
  background: var(--red);
  padding: 8px 20px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--red-bright); color: var(--white) !important; }
.lang-switch {
  border: 1px solid var(--panel-edge);
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 13px !important;
  color: var(--grey) !important;
  letter-spacing: 0.06em;
}
.lang-switch:hover { border-color: var(--red-bright); color: var(--white) !important; }

/* Hero */
.hero {
  background: var(--bg);
  color: var(--white);
  padding: 90px 5vw 100px;
  max-width: 100%;
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.kicker {
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  background: var(--red);
  margin-top: 18px;
}
.hero-sub {
  font-size: 19px;
  color: var(--grey);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-bright); }
.btn-ghost {
  border: 2px solid currentColor;
  color: inherit;
}

/* USP bar */
.usp-bar {
  background: var(--red);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  padding: 0 5vw;
}
.usp {
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.usp-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.usp-sub { font-size: 14px; opacity: 0.85; }

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 5vw;
}
.section h2 {
  font-size: clamp(36px, 5vw, 54px);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin-top: 12px;
}
.section-intro { max-width: 640px; color: var(--grey); margin-bottom: 36px; }
.note { font-size: 14px; color: var(--grey-dim); margin-top: 18px; }

.section-dark {
  max-width: 100%;
  background: var(--bg-deep);
  color: var(--text);
}
.section-dark > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-dark p { max-width: 680px !important; }
.section-dark .note { color: var(--grey-dim); }

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.package {
  border: 1px solid var(--panel-edge);
  border-radius: 8px;
  padding: 32px 28px;
  background: var(--panel);
}
.package-featured {
  border: 2px solid var(--red);
  position: relative;
}
.package-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.package h3 { font-size: 28px; margin-bottom: 8px; text-transform: uppercase; }
.package-desc { color: var(--grey); font-size: 15px; margin-bottom: 16px; }
.package-price {
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

/* Images */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-img, .about-img, .section-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.section-img {
  max-width: var(--max);
  margin: 40px auto 0;
}
@media (max-width: 860px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Tagline */
.tagline {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  color: var(--red-bright);
  letter-spacing: 0.03em;
  margin: 18px 0 10px;
}
.tagline-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--grey-dim);
  letter-spacing: 0;
}

/* Extras price list */
.extras { margin-top: 40px; }
.extras h3 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.extras-list {
  list-style: none;
  max-width: 560px;
}
.extras-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--panel-edge);
  font-size: 15px;
}
.extras-list li span:last-child {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 18px;
  max-width: 680px;
}
.steps li {
  counter-increment: step;
  padding-left: 64px;
  position: relative;
  min-height: 48px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.steps strong { color: var(--white); }

/* FAQ */
.section-faq details {
  border-bottom: 1px solid var(--panel-edge);
  padding: 18px 0;
}
.section-faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 17px;
  color: var(--white);
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.section-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 0;
  color: var(--red-bright);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.section-faq details[open] summary::after { content: "\2013"; }
.section-faq details p { margin-top: 12px; color: var(--grey); max-width: 720px; }

/* Contact */
.section-contact { padding-bottom: 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-details p { margin-bottom: 20px; }
.contact-details strong { color: var(--white); }
.contact-details a { color: var(--red-bright); font-weight: 700; text-decoration: none; }
.contact-form { display: grid; gap: 16px; }
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--panel-edge);
  border-radius: 4px;
  font: inherit;
  font-size: 16px;
  background: var(--panel);
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 0;
  border-color: var(--red);
}
.contact-form ::placeholder { color: var(--grey-dim); }
.contact-form button { border: none; cursor: pointer; justify-self: start; }

/* Legal pages */
.legal { padding-top: 60px; padding-bottom: 20px; }
.legal h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin: 28px 0 8px;
}
.legal p { max-width: 760px; color: var(--grey); margin-bottom: 12px; }
.legal p strong, .legal-list strong { color: var(--white); }
.legal a { color: var(--red-bright); }
.legal-list { max-width: 760px; color: var(--grey); padding-left: 20px; }
.legal-list li { margin-bottom: 8px; }

/* Footer */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--panel-edge);
  color: var(--grey);
  text-align: center;
  padding: 48px 5vw;
  font-size: 14px;
}
.logo-small { height: 40px; width: auto; margin-bottom: 16px; opacity: 0.9; }
.footer-legal { margin-top: 10px; font-size: 12px; }
.site-footer a { color: var(--grey); }
.credit {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey-dim);
}
.credit a {
  color: var(--red-bright);
  text-decoration: none;
  font-weight: 600;
}
.credit a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .site-header nav { gap: 16px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { padding: 60px 6vw 70px; }
}
