:root {
  --bg: #f3f3f3;
  --card: #ffffff;
  --text: #0b0b0c;
  --muted: #6b6f76;
  --line: #e5e7eb;
  --black: #0b0b0c;
  --red: #e10b14;
  --radius: 14px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: filter .15s, transform .1s;
}
.btn:hover { filter: brightness(1.02); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.btn-outline {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.btn-white {
  height: 48px;
  padding: 0 32px;
  border-radius: 12px;
  background: #fff;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}
.btn--pill {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--black);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.header__logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.header__link:hover { color: #fff; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  background: var(--black);
  padding: 0 20px 16px;
}
.mobile-nav__link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-nav__btn {
  width: 100%;
  margin-top: 12px;
}

/* ===== HERO ===== */
.hero {
  background: var(--black);
  padding-top: 56px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__dot {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__dot-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--red);
  opacity: .75;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.hero__dot-solid {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.hero__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero__desc {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.hero__btns {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__poster { display: flex; align-items: center; }
.hero__poster-card {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(225,11,20,.10), transparent 55%),
    radial-gradient(700px 400px at 80% 70%, rgba(11,11,12,.08), transparent 55%),
    #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}
.hero__poster-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero__poster-sub {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ===== TRUST BANNER ===== */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 56px;
}
.trust__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.trust__main {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}
.trust__sub {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

/* ===== SECTIONS ===== */
.section { padding: 54px 0 64px; }
.section__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  margin-bottom: 36px;
}

/* ===== TRUST GRID ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: #fbfbfb;
  border: 1px solid #efeff2;
}
.trust-card span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
}
.iconbox {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--black);
  color: #fff;
}
.iconbox i { width: 22px; height: 22px; }

.highlight-box {
  max-width: 800px;
  margin: 36px auto 0;
  padding: 24px;
  border-radius: 14px;
  background: rgba(225,11,20,.06);
  border: 1px solid rgba(225,11,20,.12);
  text-align: center;
}
.highlight-box__main {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}
.highlight-box__sub {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

/* ===== CLIENTS GRID ===== */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.client-card {
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #efeff2;
}
.client-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}
.client-card__desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 14px;
  background: #fbfbfb;
  border: 1px solid #efeff2;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.service-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #efeff2;
}
.service-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}
.check-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--red);
  margin-top: 2px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pricing__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 12px;
}
.pricing__btn { margin-top: 32px; }
.pricing__right { position: relative; }
.pricing__line {
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--line);
}
.pricing__steps { display: flex; flex-direction: column; gap: 32px; }
.pricing__step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.pricing__num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--bg);
  position: relative;
  z-index: 1;
}
.pricing__step p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid #efeff2;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(225,11,20,.12);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.faq-item__q {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.faq-item__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform .25s;
  margin-left: 8px;
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(225deg);
}
.faq-item__answer {
  padding: 0 14px 14px;
  padding-left: 54px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

/* ===== CTA BANNER ===== */
.cta2 {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.cta2__illus {
  position: absolute;
  right: 0;
  top: 0;
  width: 33%;
  height: 100%;
  background:
    radial-gradient(240px 180px at 25% 30%, rgba(225,11,20,.22), transparent 60%),
    radial-gradient(260px 200px at 75% 70%, rgba(255,255,255,.18), transparent 60%),
    rgba(255,255,255,.06);
  border-radius: 14px;
  pointer-events: none;
}
.cta2__content { position: relative; z-index: 1; }
.cta2__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta2__desc {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,.70);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta2__btns {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 48px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer__about {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,.70);
  max-width: 240px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.70);
}
.footer__links a {
  transition: color .2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.50);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: #fff;
  border: 1px solid #efeff2;
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
  margin: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #efeff2;
}
.modal__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  border-radius: 50%;
  transition: background .2s;
}
.modal__close:hover { background: #f3f3f3; }
.modal__body { padding: 20px; }

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.form-input {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--red); }
.form-textarea {
  height: auto;
  min-height: 80px;
  padding: 10px 16px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  margin-top: 4px;
}
.form-consent {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.form-success {
  text-align: center;
  padding: 32px 0;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(225,11,20,.06);
  color: var(--red);
  font-size: 24px;
  font-weight: 700;
}
.form-success__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success__desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: block; }
  .mobile-nav.active { display: block; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .hero__poster { display: none; }
  .hero__title { font-size: 32px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta2 { padding: 32px 20px; }
  .cta2__illus { display: none; }
  .cta2__title { font-size: 22px; }
}

@media (max-width: 700px) {
  .trust-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section__title { font-size: 26px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  .hero__title { font-size: 28px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .cta2__btns { flex-direction: column; }
  .cta2__btns .btn { width: 100%; }
}
