@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #101827;
  --muted: #5f6b7a;
  --line: #dfe6ef;
  --primary: #3b66f5;
  --primary-dark: #2850d6;
  --accent: #48d8b5;
  --dark: #0b1220;
  --dark-soft: #111c31;
  --success: #17875e;
  --danger: #c43b48;
  --shadow: 0 20px 60px rgba(20, 38, 78, .12);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.section {
  position: relative;
  padding: 104px 0;
}

.section--soft {
  background: linear-gradient(180deg, #eff4ff 0%, #f7f9fc 100%);
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(59, 102, 245, .35), transparent 34%),
    radial-gradient(circle at 85% 85%, rgba(72, 216, 181, .14), transparent 28%),
    var(--dark);
}

.page-glow {
  position: absolute;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .22;
  pointer-events: none;
}

.page-glow--one {
  top: 80px;
  left: -220px;
  background: #4c7dff;
}

.page-glow--two {
  top: 420px;
  right: -250px;
  background: #64e7c4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 230, 239, .8);
  background: rgba(247, 249, 252, .88);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), #6c8dff);
  box-shadow: 0 10px 24px rgba(59, 102, 245, .28);
  font-size: 14px;
}

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

.main-nav > a:not(.button) {
  color: #364153;
  transition: color .2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--text);
  transition: .25s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), #5479ff);
  box-shadow: 0 12px 26px rgba(59, 102, 245, .22);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(59, 102, 245, .3);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .8);
  box-shadow: none;
}

.button--ghost:hover,
.button--outline:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #fff;
  box-shadow: none;
}

.button--outline {
  width: 100%;
  color: var(--primary);
  border-color: #cad6fb;
  background: #f7f9ff;
  box-shadow: none;
}

.hero {
  padding-top: 84px;
  padding-bottom: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #85a3ff;
}

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

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
}

h1 em {
  color: var(--primary);
  font-style: normal;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #3f4b5c;
  font-size: 13px;
  font-weight: 700;
}

.hero-features span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  color: var(--success);
  border-radius: 50%;
  background: #dbf7ed;
}

.browser-card {
  position: relative;
  border: 1px solid rgba(219, 227, 240, .9);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 35px 80px rgba(31, 49, 88, .2);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid #e6ebf2;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6d78;
}

.browser-dots i:nth-child(2) {
  background: #ffc759;
}

.browser-dots i:nth-child(3) {
  background: #4ed19a;
}

.browser-address {
  width: 58%;
  padding: 6px 12px;
  color: #8791a0;
  border-radius: 8px;
  background: #f3f5f8;
  font-size: 10px;
}

.browser-body {
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 410px;
}

.mock-sidebar {
  padding: 22px 14px;
  border-right: 1px solid #edf0f5;
  background: #101a2d;
}

.mock-logo {
  width: 38px;
  height: 14px;
  margin-bottom: 34px;
  border-radius: 5px;
  background: #4e73fa;
}

.mock-line {
  height: 6px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: #2f3d55;
}

.mock-line--short {
  width: 70%;
}

.mock-content {
  padding: 42px 34px 30px;
  overflow: hidden;
}

.mock-badge {
  width: 74px;
  height: 9px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #dce5ff;
}

.mock-title {
  width: 82%;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #172238;
}

.mock-title--short {
  width: 62%;
}

.mock-text {
  width: 88%;
  height: 8px;
  margin-top: 22px;
  border-radius: 4px;
  background: #dfe5ed;
}

.mock-text--short {
  width: 66%;
  margin-top: 8px;
}

.mock-actions {
  display: flex;
  gap: 9px;
  margin: 28px 0 38px;
}

.mock-actions span {
  width: 86px;
  height: 28px;
  border-radius: 7px;
  background: #4b70f8;
}

.mock-actions span:last-child {
  width: 72px;
  border: 1px solid #dce3ec;
  background: #fff;
}

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

.mock-cards article {
  min-width: 0;
  padding: 14px 12px;
  border: 1px solid #e7ebf2;
  border-radius: 10px;
}

.mock-cards b {
  display: block;
  margin-bottom: 12px;
  color: #4b70f8;
  font-size: 11px;
}

.mock-cards i {
  display: block;
  height: 5px;
  margin-top: 7px;
  border-radius: 4px;
  background: #dfe5ed;
}

.mock-cards i:last-child {
  width: 70%;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(220, 228, 239, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 36px rgba(28, 47, 87, .16);
  backdrop-filter: blur(12px);
  transform: translateZ(30px);
}

.floating-chip--speed {
  top: 86px;
  right: -35px;
}

.floating-chip--speed strong {
  color: var(--success);
  font-size: 18px;
}

.floating-chip span {
  color: #526070;
  font-size: 11px;
  font-weight: 700;
}

.floating-chip--mobile {
  bottom: 42px;
  left: -42px;
}

.floating-chip--mobile svg {
  width: 19px;
  fill: var(--primary);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.results-grid h2,
.order-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
}

.section-heading p,
.results-grid p,
.order-copy > p {
  color: var(--muted);
  font-size: 16px;
}

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

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 35px rgba(29, 46, 80, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #c8d5f8;
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #edf2ff;
}

.service-icon svg {
  width: 24px;
  fill: var(--primary);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(24, 44, 80, .06);
}

.price-card--featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 10%, rgba(92, 129, 255, .4), transparent 35%),
    var(--dark-soft);
  box-shadow: 0 25px 65px rgba(22, 39, 76, .24);
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 15px;
  color: #092b23;
  border-radius: 999px;
  background: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.price-label {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card--featured .price-label {
  color: #8eabff;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.price-card__top p {
  min-height: 72px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.price-card--featured .price-card__top p,
.price-card--featured .price-note,
.price-card--featured li {
  color: #b8c3d5;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1;
}

.price strong {
  font-size: 48px;
  letter-spacing: -.06em;
}

.price span {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 800;
}

.price-note {
  margin: 10px 0 25px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-card ul {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: #465366;
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--success);
  border-radius: 50%;
  background: #dcf6ed;
  font-size: 11px;
  font-weight: 900;
}

.price-card--featured li::before {
  color: #8ff0d5;
  background: rgba(72, 216, 181, .13);
}

.pricing-footnote {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 80px;
}

.process-layout .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.results-grid p {
  color: #aeb9cb;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-grid > div {
  display: flex;
  min-height: 120px;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.check-grid b {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--accent);
  border-radius: 50%;
  background: rgba(72, 216, 181, .12);
}

.check-grid span {
  color: #d6deea;
  font-size: 13px;
  font-weight: 600;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  color: var(--text);
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item i {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 5px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform .2s ease;
}

.faq-item i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 42px 24px 0;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.order-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 80%, rgba(72, 216, 181, .16), transparent 30%),
    linear-gradient(135deg, #101a2e 0%, #0a1120 100%);
}

.order-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.order-copy > p {
  color: #aeb9cb;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-points > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 39px;
  height: 39px;
  color: #8eabff;
  border: 1px solid rgba(142, 171, 255, .25);
  border-radius: 12px;
  background: rgba(59, 102, 245, .08);
  font-size: 11px;
  font-weight: 800;
}

.contact-points p {
  margin: 0;
  color: #99a6b9;
  font-size: 13px;
}

.contact-points strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}

.order-form {
  padding: 36px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-form label {
  display: block;
  margin-bottom: 17px;
}

.order-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid #d9e0e9;
  border-radius: 12px;
  outline: none;
  background: #f9fbfd;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.order-form input,
.order-form select {
  height: 50px;
  padding: 0 14px;
}

.order-form textarea {
  min-height: 125px;
  padding: 13px 14px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 102, 245, .11);
}

.order-form input.is-invalid,
.order-form select.is-invalid,
.order-form textarea.is-invalid {
  border-color: var(--danger);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.consent span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit svg {
  width: 20px;
  fill: currentColor;
}

.form-submit[disabled] {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.form-status {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  color: #116642;
  border-color: #a9dfc9;
  background: #e7f8f0;
  font-size: clamp(20px, 2.2vw, 26px);
  box-shadow: 0 10px 28px rgba(23, 135, 94, .14);
}

.form-status.error {
  color: var(--danger);
  border-color: #efbdc3;
  background: #fff0f2;
}

.turnstile-wrap {
  display: flex;
  min-height: 70px;
  align-items: center;
  margin: 4px 0 18px;
  overflow: hidden;
}

.turnstile-wrap .cf-turnstile {
  max-width: 100%;
}

@media (max-width: 380px) {
  .turnstile-wrap {
    transform-origin: left center;
  }

  .turnstile-wrap .cf-turnstile {
    transform: scale(.92);
    transform-origin: left center;
  }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  color: #aeb8c7;
  background: #070c15;
}

.footer-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
}

.site-footer .logo {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1020px) {
  .hero-grid,
  .process-layout,
  .results-grid,
  .faq-layout,
  .order-grid {
    gap: 50px;
  }

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

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

  .price-card {
    padding: 28px;
  }

  .browser-body {
    min-height: 370px;
  }

  .mock-content {
    padding: 36px 25px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 249, 252, .98);
    box-shadow: 0 20px 35px rgba(17, 31, 62, .12);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    margin-top: 15px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .process-layout,
  .results-grid,
  .faq-layout,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .browser-card {
    width: min(92%, 570px);
    margin-inline: auto;
    transform: none;
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 610px;
    margin-inline: auto;
  }

  .price-card--featured {
    order: -1;
    transform: none;
  }

  .price-card__top p {
    min-height: 0;
  }

  .process-layout .section-heading {
    position: static;
  }

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

  .faq-layout,
  .order-grid {
    gap: 44px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav {
    top: 70px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-features {
    display: grid;
    gap: 10px;
  }

  .browser-card {
    width: 100%;
  }

  .browser-body {
    grid-template-columns: 62px 1fr;
    min-height: 300px;
  }

  .mock-sidebar {
    padding: 18px 11px;
  }

  .mock-content {
    padding: 28px 18px 22px;
  }

  .mock-cards {
    gap: 6px;
  }

  .mock-cards article {
    padding: 10px 8px;
  }

  .floating-chip--speed {
    top: 62px;
    right: -5px;
  }

  .floating-chip--mobile {
    bottom: 18px;
    left: -7px;
  }

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

  .trust-grid > div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

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

  .service-card,
  .price-card {
    padding: 25px;
  }

  .section-heading h2,
  .results-grid h2,
  .order-copy h2 {
    font-size: 34px;
  }

  .step {
    grid-template-columns: 48px 1fr;
  }

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

  .check-grid > div {
    min-height: 0;
  }

  .order-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
