:root {
  color-scheme: dark;
  --bg: #070b0e;
  --bg-soft: #0b1115;
  --bg-card: rgba(15, 23, 28, 0.82);
  --bg-card-strong: rgba(17, 27, 33, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 111, 15, 0.42);
  --text: #f6f7f9;
  --muted: #aab4bd;
  --muted-strong: #d5d9de;
  --orange: #ff6a13;
  --orange-2: #ff8a2a;
  --green: #3fc65c;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 106, 19, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 24%, rgba(255, 106, 19, 0.08), transparent 24rem),
    linear-gradient(180deg, #06090c 0%, #0a1014 42%, #06090c 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 106, 19, 0.08) 46% 46.3%, transparent 46.3%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 106, 19, 0.05) 62% 62.2%, transparent 62.2%),
    radial-gradient(circle at 50% 0, transparent, rgba(0, 0, 0, 0.38) 68%);
}

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

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

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

p {
  color: var(--muted-strong);
}

button,
input,
summary {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 12, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 224px;
}

.footer-brand {
  width: 196px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: #eef1f4;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  fill: currentColor;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff7b17 52%, var(--orange-2));
  box-shadow: 0 12px 28px rgba(255, 106, 19, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 36px rgba(255, 106, 19, 0.34);
}

.btn-ghost,
.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover,
.btn-ghost:hover,
.btn-outline:focus-visible,
.btn-ghost:focus-visible {
  border-color: rgba(255, 106, 19, 0.55);
  background: rgba(255, 106, 19, 0.08);
}

.btn-large {
  min-height: 50px;
  padding-inline: 24px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  padding: clamp(64px, 7vw, 112px) 0;
}

.section-dark {
  border-bottom: 1px solid var(--line);
}

.section-band {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 12, 0.36);
}

.hero {
  padding-top: clamp(32px, 4.5vw, 72px);
  padding-bottom: clamp(36px, 4.8vw, 64px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 1.04fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.35vw, 4.3rem);
  font-weight: 950;
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  color: #dce2e7;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
  margin-top: 24px;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #f3f5f7;
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-row span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 106, 19, 0.28), transparent 14rem),
    radial-gradient(circle at 52% 47%, rgba(255, 255, 255, 0.07), transparent 18rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero-visual::before {
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 106, 19, 0.65) 7% 7.35%, transparent 7.35% 15%, rgba(255, 106, 19, 0.45) 15% 15.35%, transparent 15.35%),
    linear-gradient(0deg, transparent 0 14%, rgba(255, 106, 19, 0.42) 14% 14.4%, transparent 14.4% 25%, rgba(255, 106, 19, 0.48) 25% 25.35%, transparent 25.35%),
    repeating-linear-gradient(30deg, rgba(255, 106, 19, 0.2) 0 2px, transparent 2px 45px);
  opacity: 0.75;
  transform: perspective(800px) rotateX(58deg) rotateZ(-16deg) scale(1.2);
  transform-origin: 50% 46%;
}

.hero-visual::after {
  background:
    radial-gradient(circle, rgba(255, 106, 19, 0.88) 0 2px, transparent 3px) 18% 28% / 72px 72px,
    radial-gradient(circle, rgba(255, 106, 19, 0.55) 0 2px, transparent 3px) 82% 64% / 84px 84px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 34%, rgba(0, 0, 0, 0.52));
}

.circuit-field {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.trace {
  position: absolute;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 19, 0.84), transparent);
  box-shadow: 0 0 16px rgba(255, 106, 19, 0.42);
}

.t1 { width: 50%; left: 4%; top: 39%; transform: rotate(-12deg); }
.t2 { width: 58%; right: -3%; top: 31%; transform: rotate(16deg); }
.t3 { width: 42%; left: 18%; bottom: 22%; transform: rotate(14deg); }
.t4 { width: 34%; right: 11%; bottom: 29%; transform: rotate(-24deg); }
.t5 { width: 45%; left: 2%; top: 58%; transform: rotate(4deg); }
.t6 { width: 32%; right: 2%; top: 55%; transform: rotate(-9deg); }
.t7 { width: 30%; left: 34%; top: 17%; transform: rotate(23deg); }

.ecu-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(64%, 470px);
  aspect-ratio: 1.42 / 1;
  transform: translate(-43%, -47%) rotate(-12deg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 28%),
    linear-gradient(155deg, #151a1e, #080c0f 65%, #171c20);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.72),
    inset 0 0 0 8px rgba(255, 255, 255, 0.035),
    inset 0 0 0 12px rgba(0, 0, 0, 0.22);
}

.ecu-chip::before,
.ecu-chip::after {
  position: absolute;
  content: "";
  border-radius: 14px;
}

.ecu-chip::before {
  inset: 24px;
  border: 1px solid rgba(255, 106, 19, 0.35);
  opacity: 0.75;
}

.ecu-chip::after {
  right: -72px;
  top: 34%;
  width: 90px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #080b0e, #181d20);
  box-shadow: inset 10px 0 0 rgba(255, 255, 255, 0.035);
}

.chip-screw {
  position: absolute;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #05080a;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.s1 { left: 17px; top: 17px; }
.s2 { right: 17px; top: 17px; }
.s3 { left: 17px; bottom: 17px; }
.s4 { right: 17px; bottom: 17px; }

.chip-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 118px;
  height: 92px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--orange);
  border-radius: 14px;
  color: var(--orange);
  box-shadow: 0 0 28px rgba(255, 106, 19, 0.32);
}

.chip-mark span {
  width: 58px;
  height: 58px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 46% 46%;
}

.section-heading {
  max-width: 680px;
}

.section-heading.narrow {
  max-width: 830px;
}

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

.section-heading.compact {
  max-width: 780px;
  margin-bottom: 30px;
}

.card-grid,
.pricing-grid,
.advantage-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  margin-top: 32px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card,
.audience-panel,
.price-card,
.verify-card,
.data-panel,
.steps-grid article,
.advantage-grid article,
.cta-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.feature-card,
.audience-panel,
.price-card,
.verify-card,
.steps-grid article,
.advantage-grid article {
  padding: 24px;
}

.feature-card {
  min-height: 230px;
}

.icon,
.verify-shield {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--orange);
  background: rgba(255, 106, 19, 0.08);
  font-weight: 900;
}

.feature-card p,
.steps-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.66fr) minmax(0, 0.95fr);
}

.split.reverse .section-heading {
  order: 2;
}

.data-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.data-panel div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.data-panel span,
.plan,
.advantage-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.data-panel strong {
  font-size: 1.18rem;
}

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

.audience-panel {
  position: relative;
  overflow: hidden;
}

.audience-panel::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 19, 0.16), transparent 68%);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #dfe4e8;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "✓";
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  position: relative;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}

.verify-card {
  padding: 34px;
}

.verify-shield {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.55rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.price-card {
  min-height: 330px;
}

.price-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card.highlighted {
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255, 106, 19, 0.18), rgba(255, 255, 255, 0.026)),
    var(--bg-card-strong);
}

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

.advantage-grid article {
  min-height: 134px;
}

.advantage-grid h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: #f4f6f7;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 22px;
  top: 50%;
  content: "+";
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-cta {
  padding-top: clamp(72px, 9vw, 128px);
}

.legal-hero {
  min-height: calc(100vh - 78px);
  padding-top: clamp(58px, 7vw, 104px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 106, 19, 0.13), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.legal-block {
  padding: clamp(22px, 3vw, 32px);
}

.legal-block + .legal-block {
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-block h3 {
  margin: 20px 0 8px;
  color: #f6f7f9;
  font-size: 1rem;
  font-weight: 900;
}

.legal-block p {
  margin-bottom: 0;
  color: #e4e9ed;
  font-size: 1.05rem;
}

.legal-block p + p {
  margin-top: 18px;
}

.legal-block ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: #e4e9ed;
}

.legal-block ul + p,
.legal-block p + ul {
  margin-top: 16px;
}

.legal-block li::marker {
  color: var(--orange);
}

.legal-block a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 106, 19, 0.8);
  text-underline-offset: 4px;
}

.legal-block a:hover,
.legal-block a:focus-visible {
  color: var(--orange);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 58px);
  background:
    radial-gradient(circle at 82% 40%, rgba(255, 106, 19, 0.2), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--bg-card-strong);
}

.cta-panel p {
  max-width: 700px;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: rgba(4, 7, 9, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.footer-grid p {
  max-width: 540px;
  margin: 14px 0 0;
}

.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px 24px;
  flex-wrap: wrap;
  color: var(--muted-strong);
  font-weight: 750;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: var(--orange);
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .site-header.is-open .site-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 0;
  }

  .site-header.is-open .site-nav a {
    padding: 12px 0;
  }

  .site-header.is-open .header-actions {
    padding-bottom: 18px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .section-heading {
    order: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

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

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

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

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

  .brand {
    width: 188px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .btn-large {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .trust-row,
  .card-grid,
  .audience-grid,
  .pricing-grid,
  .advantage-grid,
  .data-panel,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    min-height: 42px;
  }

  .hero-visual {
    min-height: 330px;
    border-radius: 12px;
  }

  .ecu-chip {
    width: min(68%, 340px);
    transform: translate(-48%, -48%) rotate(-12deg);
  }

  .ecu-chip::after {
    right: -48px;
    width: 60px;
    height: 64px;
  }

  .chip-mark {
    width: 84px;
    height: 66px;
  }

  .chip-mark span {
    width: 40px;
    height: 40px;
  }

  .feature-card,
  .audience-panel,
  .price-card,
  .verify-card,
  .steps-grid article,
  .advantage-grid article {
    padding: 20px;
  }

  .feature-card,
  .price-card {
    min-height: 0;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
