:root {
  color-scheme: light;
  --bg: #fff;
  --surface: #f8fafd;
  --surface-strong: #f1f3f4;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --blue: #1a73e8;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --shadow: 0 1px 2px rgba(60, 64, 67, 0.14), 0 4px 12px rgba(60, 64, 67, 0.08);
  --shadow-strong: 0 1px 3px rgba(60, 64, 67, 0.2), 0 14px 38px rgba(60, 64, 67, 0.12);
  --radius: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.32);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(218, 220, 224, 0.72);
}

.brand,
.nav,
.hero-actions,
.quick-links,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}

.brand b {
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 12px;
  background: var(--surface-strong);
}

.brand-mark i {
  display: block;
  border-radius: 50%;
}

.blue { background: var(--blue); }
.red { background: var(--red); }
.yellow { background: var(--yellow); }
.green { background: var(--green); }

.nav {
  gap: 8px;
}

.nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  background: var(--surface-strong);
  color: var(--text);
}

.nav-button {
  background: var(--blue);
  color: #fff !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: clamp(54px, 9vh, 96px) 0 80px;
  text-align: left;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-label,
.plan {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.c-blue { color: var(--blue); }
.c-red { color: var(--red); }
.c-yellow { color: var(--yellow); }
.c-green { color: var(--green); }

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 28px);
  line-height: 1.32;
}

.search-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-self: center;
  align-items: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  background: #fff;
  box-shadow: none;
  text-align: left;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.search-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}

.search-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #5f6368;
  border-radius: 50%;
  opacity: 0.78;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #5f6368;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.search-text {
  overflow: hidden;
  color: #3c4043;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 5%, rgba(26, 115, 232, 0.13), transparent 16rem),
    radial-gradient(circle at 4% 92%, rgba(52, 168, 83, 0.1), transparent 15rem),
    #fff;
  box-shadow: var(--shadow-strong);
}

.panel-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: #3c4043;
}

.panel-top span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.task-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 12px;
  background: var(--surface);
}

.task-list div:hover {
  border-color: var(--line);
  background: #fff;
}

.task-list small {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
}

.button.soft {
  background: var(--surface-strong);
  color: #3c4043;
}

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

.button.outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
}

.button.full {
  width: 100%;
}

.quick-links {
  width: min(840px, calc(100% - 32px));
  margin: -26px auto 76px;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
}

.quick-links a {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 92px;
  color: #3c4043;
  font-size: 14px;
}

.quick-icon,
.card-icon {
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.quick-icon {
  width: 54px;
  height: 54px;
  font-size: 20px;
}

.quick-icon.multi {
  position: relative;
  background:
    linear-gradient(135deg, var(--blue) 0 25%, var(--red) 25% 50%, var(--yellow) 50% 75%, var(--green) 75%);
}

.quick-icon.multi::before,
.quick-icon.multi::after {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.quick-icon.multi::before {
  width: 18px;
  height: 3px;
}

.quick-icon.multi::after {
  width: 3px;
  height: 18px;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: end;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.intro h2,
.section-heading h2,
.lead-copy h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.intro > p,
.lead-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.cards-grid,
.price-grid,
.results {
  display: grid;
  gap: 18px;
}

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

.role-card,
.result-card,
.price-card,
.faq details,
.lead-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.role-card {
  padding: 24px;
}

.role-card:hover,
.price-card:hover {
  box-shadow: var(--shadow-strong);
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  font-size: 18px;
}

.role-card h3,
.result-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.role-card p,
.result-card p,
.price-card p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 90% 10%, rgba(251, 188, 4, 0.22), transparent 18rem),
    radial-gradient(circle at 12% 18%, rgba(26, 115, 232, 0.14), transparent 16rem),
    var(--surface);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline div {
  border-radius: 22px;
  padding: 20px;
  background: #fff;
}

.timeline span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--blue);
  font-weight: 700;
}

.timeline b {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

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

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

.result-card {
  padding: 28px;
}

.metric {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

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

.price-card {
  display: grid;
  min-height: 320px;
  align-content: start;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(26, 115, 232, 0.32);
  background:
    radial-gradient(circle at 88% 16%, rgba(26, 115, 232, 0.12), transparent 14rem),
    #fff;
}

.price-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-card .button {
  width: fit-content;
  margin-top: 30px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
}

.faq p {
  padding-bottom: 20px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: 32px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 92% 16%, rgba(52, 168, 83, 0.12), transparent 16rem),
    #fff;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form .button {
  margin-top: 10px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: #3c4043;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

textarea {
  resize: vertical;
}

.footer {
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 840px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .quick-links {
    margin-top: 20px;
  }

  .intro,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .timeline,
  .results,
  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand b {
    font-size: 16px;
  }

  .nav {
    gap: 4px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .search-card {
    grid-template-columns: auto 1fr;
    border-radius: 28px;
  }

  .search-text {
    white-space: normal;
  }

  .quick-links {
    justify-content: flex-start;
  }

  .quick-links a {
    min-width: 74px;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
  }

  .intro h2,
  .section-heading h2,
  .lead-copy h2 {
    font-size: 36px;
  }
}
