:root {
  --primary: #1F6FEB;
  --secondary: #0B1220;
  --accent: #22C55E;
  --background: #F5F7FB;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --link: #3B82F6;
  --border: #E2E8F0;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  max-height: 50px;
}

.footer-logo {
  max-height: 100px;
}

.nav-wrap {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  background: var(--secondary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-list a {
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.nav-close {
  display: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.12), rgba(34, 197, 94, 0.08));
}

.hero.compact {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.hero-highlights h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-highlights p {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.info-grid,
.case-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card,
.case-card,
.form-card,
.media-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-card h3,
.case-card h3 {
  margin-bottom: 12px;
}

.info-card p,
.case-card p {
  color: var(--muted);
}

.text-block {
  margin-top: 24px;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.check-list,
.step-list,
.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.check-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  margin-right: 8px;
}

.step-list li {
  margin-left: 20px;
}

.step-list li strong {
  display: block;
  color: var(--text);
}

.contact-section .form-card {
  background: var(--surface);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.faq-item {
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

.site-footer {
  background: var(--secondary);
  color: #fff;
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-brand p,
.footer-nav a,
.footer-legal a {
  color: #E2E8F0;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  padding-top: 16px;
  text-align: center;
  color: #E2E8F0;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  width: min(920px, 92%);
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .nav-panel {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--secondary);
    padding: 80px 32px;
    transform: translateX(-100%);
  }
  .nav-toggle:checked ~ .nav-panel {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .nav-list a {
    color: #fff;
    font-size: 20px;
  }
  .nav-cta {
    background: #fff;
    color: var(--secondary);
  }
  .burger {
    display: inline-flex;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 60px 0;
  }
  .section {
    padding: 56px 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-content {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 14px 0;
  }
  .logo {
    max-height: 42px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .btn {
    width: 100%;
  }
}