@import url("variables.css");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wb-font-main);
  color: var(--wb-text);
  background: var(--wb-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--wb-red);
  color: var(--wb-white);
  box-shadow: 0 12px 30px rgba(237, 28, 36, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #d9151d;
}

.btn-secondary {
  background: var(--wb-black);
  color: var(--wb-white);
}

.btn-outline {
  background: transparent;
  border-color: var(--wb-border);
  color: var(--wb-black);
}

.btn-outline:hover {
  border-color: var(--wb-red);
  color: var(--wb-red);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--wb-black);
  color: var(--wb-white);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 800;
  font-family: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(148, 183, 206, 0.35), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f7f5 100%);
  padding: 86px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wb-red);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--wb-gold);
}

.hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.hero h1 span {
  color: var(--wb-red);
}

.hero-text {
  max-width: 650px;
  color: var(--wb-muted);
  font-size: 18px;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}

.hero-point {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-md);
  padding: 16px;
  box-shadow: var(--wb-shadow-soft);
}

.hero-point strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--wb-black);
}

.hero-point span {
  display: block;
  margin-top: 7px;
  color: var(--wb-muted);
  font-size: 13px;
}

.form-card {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--wb-shadow-card);
}

.form-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.form-card p {
  margin: 0 0 22px;
  color: var(--wb-muted);
  font-size: 15px;
}

.form-grid {
  display: grid;
  gap: 13px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--wb-red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.08);
}

.form-grid .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--wb-muted);
}

.section {
  padding: 82px 0;
}

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

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

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--wb-muted);
  font-size: 17px;
}

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

.card {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-lg);
  padding: 28px;
  box-shadow: var(--wb-shadow-soft);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--wb-black);
  color: var(--wb-white);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

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

.feature-panel {
  border-radius: 34px;
  background: var(--wb-black);
  color: var(--wb-white);
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.feature-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  right: -60px;
  top: -60px;
  background: var(--wb-red);
  opacity: 0.9;
}

.feature-panel h2,
.feature-panel p,
.feature-panel ul {
  position: relative;
  z-index: 1;
}

.feature-panel h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.feature-panel p {
  color: rgba(255,255,255,0.78);
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wb-red);
  font-weight: 900;
}

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

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-md);
  padding: 20px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--wb-gold-soft);
  color: var(--wb-black);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 4px;
}

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

.trust-bar {
  background: var(--wb-black);
  color: var(--wb-white);
  padding: 18px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.cta-strip {
  background: linear-gradient(135deg, var(--wb-black), #202020);
  color: var(--wb-white);
  padding: 62px 0;
}

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

.cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.cta-inner p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.site-footer {
  background: #070707;
  color: var(--wb-white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  max-width: 190px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.72);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links strong {
  color: var(--wb-white);
  margin-bottom: 6px;
}

.footer-bottom {
  padding-top: 22px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-open .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: grid;
    gap: 0;
    background: var(--wb-white);
    border: 1px solid var(--wb-border);
    border-radius: 20px;
    box-shadow: var(--wb-shadow-card);
    padding: 12px;
  }

  .mobile-open .nav a {
    padding: 13px 10px;
  }

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

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

  .hero-points,
  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    display: grid;
  }

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

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

  .hero {
    padding: 56px 0 42px;
  }

  .hero-points,
  .trust-items,
  .form-grid .two-col {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .section {
    padding: 58px 0;
  }

  .logo img {
    height: 36px;
  }
}