:root {
  --dark: #0f1720;
  --dark-soft: rgba(15, 23, 32, 0.74);
  --orange: #ff6a00;
  --orange-dark: #e84d00;
  --blue: #1646ff;
  --white: #ffffff;
  --muted: #e7edf5;
  --text: #1c2430;
  --soft: #f4f7fb;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--soft);
  color: var(--text);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--white);
}

.plain-topbar {
  position: static;
  background: var(--dark);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 17px;
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.28);
}

.top-call {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 76px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 32, 0.82), rgba(15, 23, 32, 0.62)),
    url('../img/hero-bg.svg') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.32), rgba(255, 106, 0, 0));
}

.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 70, 255, 0.28), rgba(22, 70, 255, 0));
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  padding: clamp(34px, 6vw, 62px);
  border-radius: 34px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow,
.mini-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -1.8px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.55;
  color: var(--muted);
}

.primary-call,
.secondary-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 76px;
  padding: 18px 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  text-decoration: none;
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(255, 106, 0, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-call:hover,
.secondary-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(255, 106, 0, 0.42);
}

.phone-line {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 32px));
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 26px 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(20, 30, 43, 0.12);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 21px;
}

.trust-item span {
  color: #657286;
  font-size: 15px;
  line-height: 1.5;
}

.content-section,
.faq-section {
  padding: 90px 20px;
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-head h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.steps-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  padding: 32px 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(20, 30, 43, 0.09);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 900;
  font-size: 22px;
}

.step-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 22px;
}

.step-card p {
  color: #657286;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 90px;
  padding: 44px;
  border-radius: 34px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.split-text h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.split-text p {
  max-width: 700px;
  color: #cfdae8;
  font-size: 18px;
  line-height: 1.65;
}

.call-panel {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.call-panel h3 {
  margin-bottom: 8px;
  font-size: 27px;
}

.call-panel p {
  margin-bottom: 20px;
  color: #cfdae8;
}

.call-panel span {
  display: block;
  margin-top: 16px;
  font-weight: 900;
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 14px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 30, 43, 0.08);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--dark);
  font-weight: 900;
  font-size: 18px;
}

.faq-list p {
  padding: 0 24px 22px;
  color: #657286;
  line-height: 1.65;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #080d13;
  color: var(--white);
}

.footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

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

.mobile-sticky {
  display: none;
}

.legal-wrap {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.legal-wrap h1 {
  margin-bottom: 24px;
  color: var(--dark);
  font-size: 42px;
}

.legal-wrap h2 {
  margin: 30px 0 10px;
  color: var(--dark);
  font-size: 24px;
}

.legal-wrap p {
  margin-bottom: 16px;
  color: #4d5b6d;
  line-height: 1.75;
}

.legal-wrap a {
  color: var(--orange-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .trust-strip,
  .steps-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding: 32px 22px;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 16px;
  }

  .top-call {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding: 104px 14px 96px;
  }

  .hero-card {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .primary-call,
  .secondary-call {
    width: 100%;
    min-width: 0;
    min-height: 74px;
    font-size: 22px;
  }

  .trust-strip {
    margin-top: -36px;
  }

  .content-section,
  .faq-section {
    padding: 64px 16px;
  }

  .split-section {
    width: calc(100% - 32px);
    margin-bottom: 70px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding-bottom: 96px;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: block;
    padding: 12px;
    background: rgba(8, 13, 19, 0.92);
    backdrop-filter: blur(10px);
  }

  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
  }
}
