:root {
  --carbon: #0B0B0F;
  --graphite: #2A2A31;
  --ivory: #F6F2EA;
  --white: #FFFFFF;
  --stone: #C8C4BC;
  --brand-blue: #1D4ED8;
  --brand-blue-dark: #173EAD;
  --blue-tint: #DBEAFE;
  --green: #166534;
  --red: #B91C1C;
  --shadow: 0 22px 55px rgba(11, 11, 15, .09);
  --radius: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--carbon);
  background: var(--ivory);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  background: var(--carbon);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246,242,234,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,42,49,.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { width: 132px; }
.nav__links {
  display: flex;
  gap: 22px;
  color: rgba(42,42,49,.82);
  font-weight: 600;
}

.btn {
  min-height: 54px;
  border-radius: 18px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--brand-blue-dark);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(23,62,173,.18);
}
.btn--secondary {
  background: var(--white);
  color: var(--graphite);
  border: 1px solid rgba(42,42,49,.10);
}
.btn--ghost {
  background: transparent;
  color: var(--brand-blue-dark);
  border: 1px solid rgba(29,78,216,.22);
}
.btn--dark {
  background: var(--carbon);
  color: var(--white);
}
.btn--full { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.eyebrow--dark {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}

.hero {
  padding: 46px 0 60px;
  background:
    radial-gradient(circle at top right, rgba(29,78,216,.12), transparent 32%),
    var(--ivory);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .82fr;
  gap: 28px;
  align-items: stretch;
}
.hero__content,
.hero__card {
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(42,42,49,.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero__content {
  padding: 40px;
}
.hero__content h1 {
  margin: 18px 0 16px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.05em;
  max-width: 12ch;
}
.hero__lead {
  max-width: 58ch;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(42,42,49,.82);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero__microproof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero__microproof span {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid rgba(42,42,49,.08);
  font-weight: 600;
  font-size: 14px;
}
.hero__card {
  padding: 30px;
  background: var(--carbon);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__card::after {
  content: '';
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  background: rgba(29,78,216,.22);
  border-radius: 50%;
}
.hero__card-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.hero__card h2 {
  margin: 18px 0 12px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: .95;
  letter-spacing: -.04em;
  position: relative;
  z-index: 1;
}
.hero__card p,
.hero__card ul { position: relative; z-index: 1; }
.hero__card p {
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.hero__card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.92);
  display: grid;
  gap: 10px;
}
.price {
  margin-top: 20px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: .9;
  letter-spacing: -.05em;
  position: relative;
  z-index: 1;
}
.price small {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  color: rgba(255,255,255,.72);
}
.hero__card .btn {
  margin-top: 22px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.proof-strip {
  padding: 14px 0;
  background: var(--white);
  border-top: 1px solid rgba(42,42,49,.06);
  border-bottom: 1px solid rgba(42,42,49,.06);
}
.proof-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.proof-strip strong {
  display: inline-block;
  margin-right: 10px;
}
.proof-strip span {
  color: rgba(42,42,49,.8);
}

.section {
  padding: 82px 0;
}
.section--light { background: #fbf8f3; }
.section--dark {
  background: var(--carbon);
  color: var(--white);
}
.section__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}
.section__head--left {
  text-align: left;
  margin: 0 0 32px;
}
.section__head h2 {
  margin: 16px 0 12px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.04em;
}
.section__head p {
  margin: 0;
  color: rgba(42,42,49,.78);
  font-size: 18px;
  line-height: 1.6;
}
.section--dark .section__head p,
.section--dark .contact-copy p {
  color: rgba(255,255,255,.78);
}

.service-grid,
.steps {
  display: grid;
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(3, 1fr); }
.service-card,
.step,
.card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(42,42,49,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.service-card,
.step {
  padding: 26px;
}
.service-card__icon,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--brand-blue-dark);
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
}
.service-card h3,
.step h3,
.package-group__title h3,
.card h4,
.contact-copy h2 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  letter-spacing: -.03em;
}
.service-card h3,
.step h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  line-height: 1.02;
}
.service-card p,
.step p {
  margin: 0;
  color: rgba(42,42,49,.78);
  line-height: 1.6;
}
.step { position: relative; }
.step::after {
  content: '';
  position: absolute;
  top: 26px;
  right: -9px;
  width: 18px;
  height: 18px;
  background: var(--white);
  transform: rotate(45deg);
  border-top: 1px solid rgba(42,42,49,.08);
  border-right: 1px solid rgba(42,42,49,.08);
}
.steps .step:last-child::after { display: none; }

.package-group + .package-group { margin-top: 42px; }
.package-group__title { margin-bottom: 18px; }
.package-group__title h3 {
  margin: 0 0 8px;
  font-size: 34px;
}
.package-group__title p {
  margin: 0;
  color: rgba(42,42,49,.78);
}
.cards {
  display: grid;
  gap: 18px;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card--featured {
  border-color: rgba(29,78,216,.26);
  box-shadow: 0 22px 55px rgba(29,78,216,.12);
}
.card__top { display: grid; gap: 10px; }
.card__label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  background: #f3efe8;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card__label--blue {
  background: var(--blue-tint);
  color: var(--brand-blue-dark);
}
.card h4 {
  margin: 0;
  font-size: 34px;
  line-height: .96;
}
.card__price {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 42px;
  line-height: .92;
  letter-spacing: -.04em;
}
.card__price span {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  margin-left: 4px;
  color: rgba(42,42,49,.72);
}
.card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(42,42,49,.85);
  flex: 1;
}
.card .btn { width: 100%; }

.faq-wrap { display: grid; gap: 28px; }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq-list details {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(42,42,49,.08);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin: 12px 0 0;
  color: rgba(42,42,49,.78);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;
  align-items: start;
}
.contact-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}
.contact-copy__list {
  margin: 22px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,.88);
}
.contact-card {
  padding: 22px;
  background: var(--white);
  color: var(--carbon);
}
form {
  display: grid;
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
}
label span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(42,42,49,.78);
  text-transform: uppercase;
  letter-spacing: .04em;
}
input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(42,42,49,.12);
  padding: 0 14px;
  background: #fffdfa;
  outline: none;
}
textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(29,78,216,.48);
  box-shadow: 0 0 0 4px rgba(29,78,216,.12);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(42,42,49,.72);
}
.form-status--ok { color: var(--green); }
.form-status--error { color: var(--red); }

.site-footer {
  background: var(--carbon);
  color: rgba(255,255,255,.82);
  padding: 28px 0 38px;
}
.footer__inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.footer__logo { width: 124px; }

.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  min-height: 52px;
  border-radius: 999px;
  background: var(--brand-blue-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  box-shadow: 0 18px 36px rgba(23,62,173,.24);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero__grid,
  .contact-grid,
  .service-grid,
  .steps,
  .cards--3 { grid-template-columns: 1fr; }
  .cards--2 { grid-template-columns: 1fr; }
  .proof-strip__inner { grid-template-columns: 1fr; }
  .steps .step::after { display: none; }
}

@media (max-width: 840px) {
  .nav__links { display: none; }
  .hero__content,
  .hero__card,
  .contact-card { padding: 22px; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__content h1,
  .section__head h2,
  .contact-copy h2 { max-width: none; }
}

@media (max-width: 640px) {
  .topbar__inner { justify-content: start; gap: 10px 14px; }
  .nav { min-height: 70px; }
  .brand img { width: 118px; }
  .hero { padding-top: 28px; }
  .section { padding: 62px 0; }
  .btn { width: 100%; }
  .hero__actions { display: grid; }
}
