:root {
  --red: #e3192d;
  --red-dark: #b80f20;
  --ink: #111318;
  --muted: #5f6570;
  --line: #e4e6ea;
  --soft: #f6f7f9;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 55px rgba(17, 19, 24, 0.12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 88px 0; }
.section.alt { background: var(--soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); border-radius: 999px; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 5.2rem); letter-spacing: -.055em; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.04em; margin-bottom: 16px; }
h3 { font-size: 1.18rem; }
p { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 680px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(228,230,234,.85);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
.brand img { width: 220px; height: 62px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: .94rem; font-weight: 700; color: #30343b; }
.site-nav a:hover { color: var(--red); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; border-radius: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 12px 30px rgba(227,25,45,.25); }
.btn-dark { color: white; background: var(--ink); }
.btn-light { background: white; border-color: var(--line); color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 64px 0 78px; background: radial-gradient(circle at 15% 10%, rgba(227,25,45,.10), transparent 34%), linear-gradient(180deg, #fff 0%, #f7f8fa 100%); }
.hero::after { content: ""; position: absolute; right: -10%; top: -30%; width: 48%; aspect-ratio: 1; border: 90px solid rgba(227,25,45,.035); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
.hero-copy strong { color: var(--red); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 13px 25px; margin-top: 28px; color: #363a42; font-size: .92rem; font-weight: 700; }
.hero-points span::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 50%; background: rgba(227,25,45,.11); color: var(--red); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: 25px -20px -20px 25px; background: var(--red); border-radius: 28px; transform: rotate(2deg); }
.hero-media img { position: relative; z-index: 1; width: 100%; min-height: 380px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; z-index: 2; left: -25px; bottom: 26px; padding: 16px 18px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.hero-badge b { display: block; font-size: 1.25rem; }
.hero-badge small { color: var(--muted); }

.trust-strip { background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 22px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; font-weight: 800; }
.trust-item:last-child { border-right: 0; }
.trust-item small { display: block; color: #aeb3bc; font-weight: 500; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 40px; }
.section-head p { max-width: 600px; margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-7px); box-shadow: 0 16px 40px rgba(17,19,24,.10); border-color: rgba(227,25,45,.25); }
.icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: rgba(227,25,45,.10); color: var(--red); margin-bottom: 22px; }
.icon svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.card p { font-size: .94rem; margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 65px; }
.image-card { position: relative; }
.image-card img { border-radius: 28px; box-shadow: var(--shadow); }
.image-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -22px; bottom: -22px; border: 20px solid rgba(227,25,45,.18); border-radius: 50%; z-index: -1; }
.check-list { display: grid; gap: 17px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: #343841; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: white; font-size: .78rem; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: white; border-radius: var(--radius); border: 1px solid var(--line); counter-increment: step; }
.step::before { content: "0" counter(step); display: inline-block; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .08em; margin-bottom: 25px; }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -15px; top: 42%; width: 30px; height: 30px; display: grid; place-items: center; background: var(--ink); color: white; border-radius: 50%; z-index: 2; }
.step p { margin-bottom: 0; font-size: .93rem; }

.cta { background: linear-gradient(135deg, #15171c, #262a32); color: white; border-radius: 30px; padding: clamp(32px,6vw,65px); display: flex; align-items: center; justify-content: space-between; gap: 35px; overflow: hidden; position: relative; }
.cta::after { content: ""; position: absolute; width: 330px; height: 330px; right: -100px; top: -130px; border-radius: 50%; border: 55px solid rgba(227,25,45,.26); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 8px; }
.cta p { color: #c4c8d0; margin: 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 35px; }
.contact-panel { background: var(--ink); color: white; border-radius: var(--radius); padding: 34px; }
.contact-panel p { color: #bec3cc; }
.contact-line { display: flex; gap: 13px; align-items: flex-start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
.contact-line b { display: block; }
.contact-line span, .contact-line a { color: #bec3cc; text-decoration: none; }
.form-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: 0 14px 45px rgba(17,19,24,.07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .87rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #d8dbe0; border-radius: 12px; padding: 13px 14px; background: white; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,25,45,.09); }
.field textarea { min-height: 115px; resize: vertical; }
.form-note { font-size: .78rem; color: var(--muted); margin: 12px 0 0; }

.site-footer { background: #0c0e12; color: white; padding: 52px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 50px; }
.footer-logo { width: 250px; background: white; padding: 8px 12px; border-radius: 12px; }
.site-footer p, .site-footer a { color: #aeb3bd; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; font-size: .84rem; color: #8f95a0; }

.legal-hero { padding: 70px 0 40px; background: var(--soft); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2.4rem,5vw,4rem); margin-bottom: 12px; }
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; padding: 60px 0 90px; }
.legal-nav { position: sticky; top: 105px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 16px; }
.legal-nav b { display: block; margin-bottom: 12px; }
.legal-nav a { display: block; padding: 7px 0; color: var(--muted); text-decoration: none; font-size: .9rem; }
.legal-nav a:hover { color: var(--red); }
.legal-content { max-width: 820px; }
.legal-content section { scroll-margin-top: 110px; margin-bottom: 38px; }
.legal-content h2 { font-size: 1.55rem; letter-spacing: -.02em; margin-bottom: 10px; }
.legal-content p, .legal-content li { color: #505660; }
.legal-content ul { padding-left: 22px; }
.notice { padding: 18px 20px; border-left: 4px solid var(--red); background: rgba(227,25,45,.06); border-radius: 0 12px 12px 0; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 300; transform: translate(-50%, 20px); opacity: 0; visibility: hidden; max-width: min(520px, calc(100% - 32px)); padding: 14px 18px; border-radius: 12px; background: var(--ink); color: white; box-shadow: var(--shadow); transition: all .25s ease; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 18px; right: 18px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 700px; }
  .card-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .step:nth-child(2)::after { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: none; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .section { padding: 66px 0; }
  .brand img { width: 180px; }
  .hero { padding-top: 45px; }
  .hero-grid { gap: 36px; }
  .hero-media img { min-height: 260px; }
  .hero-badge { left: 12px; bottom: 12px; }
  .section-head { display: block; }
  .card-grid, .steps, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .cta { display: block; }
  .cta .btn { margin-top: 22px; width: 100%; }
  .footer-grid { gap: 30px; }
  .footer-bottom { display: block; }
  .trust-item { padding: 17px 10px; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
