:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --text: #0b1220;
  --muted: #536174;
  --primary: #0b1b3a;
  --accent: #2f7fd5;
  --accent-soft: #e8f2ff;
  --border: #dce6f2;
  --shadow: 0 20px 50px rgba(11, 27, 58, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 230, 242, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 270px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 127, 213, 0.25);
}

.btn-primary:hover {
  background: #246fbd;
}

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

.btn-secondary:hover {
  box-shadow: 0 12px 24px rgba(11, 27, 58, 0.08);
}

.hero {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 20% 15%, rgba(47, 127, 213, 0.13), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 34px;
}

.hero-card h2 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.2;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(11, 27, 58, 0.06);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.1;
}

.panel p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 6px;
  color: var(--primary);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.cta {
  background: linear-gradient(135deg, var(--primary), #143b72);
  color: #fff;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta .btn {
  background: #fff;
  color: var(--primary);
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 28px rgba(11, 27, 58, 0.06);
}

.contact-box h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 26px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form .privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
}

.form .privacy input {
  width: auto;
  margin-top: 5px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    gap: 12px;
  }

  .nav {
    width: 100%;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 14px;
    padding: 0 0 8px;
    scrollbar-width: thin;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .nav .btn {
    padding: 10px 16px;
    width: auto;
  }

  .logo img {
    width: 230px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 34px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 74px;
  }

  .logo img {
    width: 205px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .form .btn,
  .cta .btn {
    width: 100%;
  }

  .nav .btn {
    width: auto;
  }

  .hero-card,
  .card,
  .contact-box {
    padding: 24px;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(11, 27, 58, 0.18);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text {
  color: #536174;
  font-size: 14px;
}

.cookie-banner__text strong {
  display: block;
  color: #0b1b3a;
  font-size: 16px;
  margin-bottom: 4px;
}

.cookie-banner__text p {
  margin: 0 0 6px;
}

.cookie-banner__text a {
  color: #2f7fd5;
  font-weight: 700;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__actions button {
  border: 1px solid #dce6f2;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
  color: #0b1b3a;
}

#cookie-accept {
  background: #2f7fd5;
  color: #ffffff;
  border-color: #2f7fd5;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions button {
    width: 100%;
  }
}
