:root {
  --bg: #f6f6f6;
  --panel: #ffffff;
  --text: #1f1f1f;
  --muted: #666666;
  --line: #e4e4e4;
  --red: #d71920;
  --dark: #111111;
  --shadow: 0 18px 50px rgba(0,0,0,.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  letter-spacing: .03em;
}
.brand-main {
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: .95;
  color: var(--red);
}
.brand-sub {
  margin-top: 4px;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .16em;
}
.nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .95rem; }
.nav a { text-decoration: none; color: var(--dark); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--red); }
.lang { color: var(--muted); font-size: .9rem; }
.lang strong { color: var(--dark); }
.hero { padding: clamp(54px, 8vw, 96px) 0 46px; }
.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 430px;
}
.hero-content { padding: clamp(34px, 5vw, 62px); display: flex; flex-direction: column; justify-content: center; }
.kicker { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; }
h1 { margin: 14px 0 18px; font-size: clamp(2.05rem, 5vw, 4.25rem); line-height: 1.02; letter-spacing: -.045em; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: #3b3b3b; max-width: 760px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 1px solid transparent; }
.button.primary { background: var(--red); color: #fff; }
.button.secondary { background: #fff; color: var(--dark); border-color: var(--line); }
.hero-side {
  background: radial-gradient(circle at 30% 20%, #f04d52 0, #d71920 32%, #111 33%, #111 100%);
  min-height: 300px;
  position: relative;
}
.hero-side::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px auto 58px;
}
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.info-card h2, .info-card h3 { margin: 0 0 8px; font-size: 1.18rem; }
.info-card p { margin: 0; color: var(--muted); }
.content { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 48px); margin: 42px 0; box-shadow: var(--shadow); }
.content h1 { font-size: clamp(2rem, 4vw, 3rem); }
.content h2 { margin-top: 34px; padding-top: 8px; border-top: 1px solid var(--line); }
.content p { max-width: 900px; }
.site-footer { margin-top: 60px; padding: 36px 0; background: #111; color: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-inner a { color: #fff; text-decoration: none; }
.footer-inner a:hover { color: #ffb6b9; }
.footer-muted { color: #bbb; font-size: .92rem; }
@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-side { min-height: 180px; order: -1; }
  .info-grid { grid-template-columns: 1fr; }
}
