:root {
  --brand-blue: #123b5d;
  --brand-orange: #ff7a1a;
  --bg: #ffffff;
  --bg-alt: #f4f6f8;
  --text: #1d2a35;
  --muted: #5a6b78;
  --border: #d6dde3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #f5f7fb;
  line-height: 1.6;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #08111b 0%, #12263a 100%);
  border-bottom: 1px solid #1f3e5e;
  box-shadow: 0 10px 26px rgba(5, 12, 20, 0.32);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo img {
  width: clamp(150px, 21vw, 220px);
  height: auto;
  display: block;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 17, 27, 0.25);
  backdrop-filter: blur(4px);
  height: 36px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #dbe5ef;
  padding: 0 0.72rem;
  cursor: pointer;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1;
}

.lang-btn.active {
  background: #0f3a5d;
  color: #fff;
}

.section {
  padding: 3.75rem 0;
}

.alt {
  background: var(--bg-alt);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  border-bottom: 1px solid #dbe4ee;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(30, 121, 190, 0.2) 0%, rgba(30, 121, 190, 0) 70%);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.2) 0%, rgba(255, 122, 26, 0) 70%);
}

.eyebrow {
  color: var(--brand-orange);
  font-weight: 600;
  margin-top: 0.35rem;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  margin-bottom: 0.8rem;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-badges span {
  border: 1px solid #ccdeee;
  background: #f3f9ff;
  color: #254b6b;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, #ff9a34 0%, #ff6a00 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.35);
}

.btn-secondary {
  border-color: #1b4e76;
  color: var(--brand-blue);
  background: #fff;
}

.btn-call {
  background: #f7fbff;
  border-color: #b8d0e5;
  color: #0b2f4d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: 36px;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.05rem 1.2rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 42, 63, 0.12);
}

.stats {
  padding-top: 1.4rem;
  padding-bottom: 0.8rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  background: #fff;
  border: 1px solid #dce5ee;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 4px 12px rgba(16, 42, 63, 0.06);
}

.stat-value {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f3a5d;
}

.stat-label {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 0.9rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  background: #fff;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(16, 42, 63, 0.05);
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-shadow: 0 6px 14px rgba(16, 42, 63, 0.06);
}

.review-card p {
  margin: 0;
  font-size: 0.95rem;
}

.review-card span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.steps {
  padding-left: 1.1rem;
}

.steps li {
  margin-bottom: 0.6rem;
}

.split {
  display: grid;
  gap: 1.5rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.trust-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-links a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.contact-side-card {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  box-shadow: 0 6px 16px rgba(16, 42, 63, 0.08);
}

.contact-side-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.contact-side-card ul {
  margin: 0;
  padding-left: 1rem;
}

.contact-side-card li {
  margin-bottom: 0.45rem;
  color: #2e4458;
}

.contact-note {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-note a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  margin-top: 0.2rem;
}

.consent input {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-top: 0.22rem;
  flex: 0 0 auto;
}

.consent span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.42;
  color: var(--muted);
}

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

.form-status {
  margin: 0.3rem 0 0;
  color: var(--brand-blue);
  min-height: 1.2em;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

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

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid #d4e0ea;
  border-radius: 10px;
  background: #fff;
  padding: 0.7rem 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

@media (max-width: 520px) {
  .topbar-inner {
    gap: 0.45rem;
  }

  .logo img {
    width: 132px;
  }

  .top-actions {
    gap: 0.45rem;
  }

  .btn-call {
    height: 34px;
    padding: 0 0.72rem;
    font-size: 0.88rem;
  }
}

@media (min-width: 760px) {
  .topbar-inner {
    min-height: 82px;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
