:root {
  --primary: #ffd200;
  --primary-dark: #e6bc00;
  --accent: #ed1c24;
  --accent-dark: #c3131a;
  --dark: #0b0b0b;
  --text: #1f1f1f;
  --muted: #5c5c5c;
  --bg: #ffffff;
  --bg-alt: #fff9e6;
  --border: #ececec;
  --radius: 6px;
  --shadow: 0 6px 20px rgba(11, 11, 11, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 700px; }
.center { text-align: center; }

h1, h2, h3 { color: var(--dark); line-height: 1.15; }
h1 { font-size: 2.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 0.5em; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4em; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { border-color: var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: rgba(11, 11, 11, 0.06); }
.btn-ghost { color: var(--muted); background: transparent; }
.btn-ghost:hover { color: var(--dark); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.topbar {
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.2px;
}

.header {
  position: sticky;
  top: 0;
  background: var(--dark);
  border-bottom: 3px solid var(--primary);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: #f2f2f2; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

.hero {
  background: var(--dark);
  color: #fff;
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: var(--primary);
  opacity: 0.12;
  transform: rotate(20deg);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: 3rem; margin: 18px 0; }
.hero h1 strong { color: var(--primary); }
.hero-sub { font-size: 1.2rem; max-width: 640px; opacity: 0.9; margin-bottom: 32px; }
.badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-cta .btn-outline { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.hero-cta .btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}
.hero-points li::before { content: "\2713 "; color: var(--primary); font-weight: 800; }

.stats { background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 26px 16px; text-align: center; border-right: 2px solid rgba(11, 11, 11, 0.12); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.stat-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; color: rgba(11, 11, 11, 0.7); }

.section { padding: 76px 0; }
.section-alt { background: var(--bg-alt); }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card p { color: var(--muted); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }

.price-card { position: relative; display: flex; flex-direction: column; }
.price-card ul { list-style: none; margin-top: 12px; }
.price-card li { padding: 4px 0; color: var(--text); }
.price-card li::before { content: "\2713 "; color: var(--accent); font-weight: 800; }
.price-featured { border: 3px solid var(--primary); }
.price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.price { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin: 8px 0 2px; }
.price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-size { color: var(--dark); font-weight: 700; margin-bottom: 6px; }
.price-note { margin-top: 24px; font-size: 0.9rem; color: var(--muted); text-align: center; }

.facts-list { list-style: none; }
.facts-list li { padding: 8px 0 8px 30px; position: relative; font-weight: 600; }
.facts-list li::before { content: "\2713"; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 800; }

.section-form { background: var(--dark); color: #fff; }
.section-form h2 { color: #fff; }
.section-form .section-sub { color: rgba(255, 255, 255, 0.8); }
.section-form .section-sub strong { color: var(--primary); }
.lead-form {
  background: #fff;
  border-top: 6px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.35);
}
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: 0.86rem !important; cursor: pointer; }
.checkbox input { margin-top: 4px; flex-shrink: 0; }
.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status { margin-top: 16px; font-weight: 700; color: #1e7d43; min-height: 1.4em; }
.form-status-error { color: var(--accent); }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 4px 24px;
}
.faq-item summary {
  font-weight: 700;
  color: var(--dark);
  padding: 14px 0;
  cursor: pointer;
}
.faq-item p { padding: 0 0 16px; color: var(--muted); }

.section-cta { background: var(--primary); color: var(--dark); text-align: center; }
.section-cta h2 { color: var(--dark); }
.section-cta p { opacity: 0.85; margin-bottom: 28px; font-weight: 600; }
.section-cta .btn-primary { background: var(--accent); color: #fff; }
.section-cta .btn-primary:hover { background: var(--accent-dark); }

.footer { background: var(--dark); color: #a8a8a8; padding: 48px 0 24px; }
.footer .logo { color: #fff; }
.footer-sub { margin-top: 6px; font-size: 0.92rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-contact a { color: #ddd; text-decoration: none; }
.footer-contact a:hover { color: var(--primary); }
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 4px solid var(--primary);
  box-shadow: 0 -6px 24px rgba(11, 11, 11, 0.2);
  z-index: 200;
  padding: 20px;
}
.cookie-banner-inner { max-width: 900px; margin: 0 auto; }
.cookie-banner p { font-size: 0.92rem; color: var(--text); margin-bottom: 14px; }
.cookie-banner a { color: var(--accent); font-weight: 700; }
.cookie-details { margin: 12px 0; padding: 12px 16px; background: var(--bg-alt); border-radius: var(--radius); }
.cookie-details .checkbox { margin-bottom: 10px; color: var(--text); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.legal { padding: 56px 0 80px; }
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal h2 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; margin: 32px 0 8px; }
.legal p, .legal li { color: #333; margin-bottom: 8px; }
.legal ul { padding-left: 22px; }

@media (max-width: 800px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 52px 0; }
}