:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f1f5fb;
  --text: #132c49;
  --muted: #5f768f;
  --primary: #163b66;
  --primary-strong: #0f2f54;
  --accent: #f39b4a;
  --border: #d6deea;
  --line: rgba(16, 48, 86, 0.12);
  --shadow-soft: 0 12px 40px rgba(10, 28, 54, 0.12);
  --success: #1f8a4d;
  --danger: #ba2d2d;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 480px at 20% 0%, rgba(22, 59, 102, 0.08), transparent 60%),
    radial-gradient(700px 420px at 85% 12%, rgba(243, 155, 74, 0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  text-underline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(243, 155, 74, 0.25);
  outline-offset: 2px;
}

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

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

.section {
  padding: 5.3rem 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.toplinks {
  display: none;
  gap: 1.1rem;
  align-items: center;
}

.toplinks a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.brand img {
  height: 44px;
  width: auto;
  display: block;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  max-width: 22ch;
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.lead,
.section-intro {
  color: var(--muted);
  max-width: 62ch;
}

.hero {
  padding-top: 5.1rem;
  padding-bottom: 5.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.8rem;
  align-items: start;
}

.hero-copy {
  padding-right: 0.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.chips {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.chip strong {
  font-weight: 800;
}

.chip-accent {
  border-color: rgba(243, 155, 74, 0.45);
  background: rgba(243, 155, 74, 0.12);
  color: #9f5d20;
}

.hero-aside {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.2rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.aside-title {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.aside-list {
  display: grid;
  gap: 0.95rem;
}

.aside-item {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.aside-item:first-child {
  border-top: none;
  padding-top: 0;
}

.aside-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

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

.section-head {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.video-frame {
  background: #000;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.copy .kicker {
  margin: 0 0 0.65rem;
  font-weight: 800;
  color: var(--primary-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.editorial-points {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.point:first-child {
  border-top: none;
  padding-top: 0;
}

.point-no {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(22, 59, 102, 0.06);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary-strong);
}

.point h3 {
  margin: 0 0 0.28rem;
  font-size: 1.05rem;
}

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

.callout {
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-strong);
}

.callout-strong {
  border-color: rgba(243, 155, 74, 0.35);
  background: rgba(243, 155, 74, 0.10);
  color: #9f5d20;
}

.two-col {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.minihead {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.cleanlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.cleanlist li {
  padding-left: 1.05rem;
  position: relative;
}

.cleanlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(22, 59, 102, 0.35);
}

.trust {
  padding: 3.5rem 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}

.trust-title {
  margin-bottom: 0.2rem;
  max-width: none;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.iconlink {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.iconlink:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(22, 59, 102, 0.24);
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(22, 59, 102, 0.05);
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: var(--primary-strong);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.contact-meta {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.meta-line {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  color: var(--muted);
}

.meta-label {
  display: inline-block;
  min-width: 70px;
  font-weight: 800;
  color: var(--primary-strong);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  display: grid;
  gap: 0.55rem;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d7eb;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(22, 59, 102, 0.17);
  border-color: #8fb1d8;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.25rem;
  margin: 0.32rem 0 0;
  color: var(--muted);
}

.form-status.ok {
  color: var(--success);
}

.form-status.err {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 1.45rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.68rem 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

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

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary-strong);
  border-color: rgba(22, 59, 102, 0.22);
}

.btn-secondary:hover {
  border-color: #9db8d9;
  background: #f8fbff;
}

.btn,
.iconlink {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .iconlink:hover {
    transform: none;
  }
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary-strong);
  border-color: #c7d7eb;
}

.btn-ghost:hover {
  border-color: #9db8d9;
  background: #f8fbff;
}

.cookie-banner {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 40;
}

.cookie-content {
  margin: 0 auto;
  width: min(920px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.cookie-content h2 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.cookie-content p {
  margin-bottom: 0.72rem;
  color: var(--muted);
}

.cookie-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0.5rem 0 0.7rem;
}

.cookie-preferences label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--text);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-widget {
  position: fixed;
  right: 0.95rem;
  bottom: 0.95rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(22, 59, 102, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-strong);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.cookie-widget:hover {
  background: #fff;
}

.cookie-widget svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .toplinks {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.4rem 0;
  }

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

  .cookie-actions .btn {
    flex: 1 1 100%;
  }
}

@media (min-width: 980px) {
  .toplinks {
    display: inline-flex;
  }
}
