:root {
  --bg: #fff7f2;
  --surface: #ffffff;
  --surface-soft: #fff2e8;
  --ink: #1c1c1c;
  --muted: #585858;
  --line: #f1c2ae;
  --accent-start: #d72638;
  --accent-end: #ff7a1a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: rgba(255, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(241, 194, 174, 0.8);
}

.site-nav {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 252, 249, 0.95);
}

.site-nav-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

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

.brand-logo {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  object-fit: cover;
}

.brand-word {
  font-size: 1.95rem;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
  cursor: pointer;
  padding: 0.35rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.23rem;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: #722c17;
  border-radius: 2px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}

.nav-panel > a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a2a2a;
  white-space: nowrap;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.35rem;
}

.lang-switcher label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #6a2d18;
  white-space: nowrap;
}

.lang-switcher select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.32rem 0.7rem;
  min-width: 150px;
  font-size: 0.85rem;
}

.hero {
  width: min(1120px, 100%);
  margin: 1rem auto 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.hero-copy {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(160deg, #220c08 0%, #65191a 55%, #8e2a20 100%);
  color: #fff;
}

.hero-badge {
  margin: 0;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffd8c5;
}

.hero-copy h1 {
  margin-top: 0.55rem;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.95;
}

.hero-subtitle {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 1.55vw, 1.13rem);
  line-height: 1.6;
  max-width: 48ch;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-points {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-points span {
  font-size: 0.79rem;
  font-weight: 600;
  color: #ffd8c5;
  border: 1px solid rgba(255, 216, 197, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 0.6rem;
  background: linear-gradient(180deg, #fff 0%, #fff4ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 0.95rem;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.74rem 1.2rem;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--accent-start), var(--accent-end));
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) 1rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.8vw, 3.2rem);
  line-height: 0.95;
}

.section-text {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.section-alt {
  background: linear-gradient(180deg, #fffaf7 0%, #fff2e8 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-grid,
.benefit-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.step-number {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #b03d1f;
}

.info-card h3 {
  margin-top: 0.35rem;
  font-size: 1.6rem;
}

.info-card p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.pill-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.43rem 0.8rem;
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}

.section-download {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
}

.download-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.section-download .btn-ghost {
  color: #2a2a2a;
  border-color: var(--line);
  background: transparent;
}

.site-footer {
  margin-top: 1rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff8f3;
  padding: 1.35rem 1rem 1.9rem;
}

.site-footer p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.footer-links {
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #8b3219;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .site-nav {
    border-radius: 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0.75rem;
  }

  .site-nav-top {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 0.6rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
  }

  .site-nav.nav-open .nav-panel {
    display: flex;
  }

  .nav-panel > a {
    border: 1px solid var(--line);
    border-radius: 0.7rem;
    padding: 0.45rem 0.55rem;
    background: #fff;
  }

  .lang-switcher {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .lang-switcher select {
    width: 100%;
    min-width: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 0.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3.6rem);
  }

  .hero-media img {
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .hero-actions .btn,
  .download-row .btn {
    width: 100%;
  }

  .hero-copy,
  .hero-media,
  .info-card {
    border-radius: 0.95rem;
  }
}
