:root {
  --blue: #0067ff;
  --blue-soft: #dce9ff;
  --black: #111111;
  --ink: #202020;
  --muted: #6b6b6b;
  --line: #e4e8f0;
  --paper: #ffffff;
  --white: #ffffff;
  --green: #2dbf73;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 103, 255, 0.12), transparent 32rem),
    var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.header-cta,
.button,
.problem-strip span,
.brand-mark {
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--black);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--black);
}

.header-cta {
  padding: 0.75rem 1.05rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  white-space: nowrap;
}

.hero,
.section {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 4.8rem);
  padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  color: var(--black);
  font-size: clamp(3.6rem, 8vw, 7.3rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  color: var(--black);
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 39rem;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--black);
}

.button-ghost {
  background: var(--white);
  color: var(--black);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 38rem;
  margin: 0;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.hero-stats dt {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -1rem 1.2rem 1.2rem -1rem;
  z-index: -1;
  border: 2px solid var(--black);
  border-radius: 1rem;
  background: var(--blue);
  content: "";
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--black);
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.repair-card {
  position: absolute;
  right: -0.6rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(19rem, calc(100% - 1rem));
  padding: 1rem;
  border: 2px solid var(--black);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--black);
}

.repair-card strong,
.repair-card span {
  display: block;
}

.repair-card strong {
  color: var(--black);
}

.repair-card span:not(.status-dot) {
  color: var(--muted);
  font-size: 0.84rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.35rem rgba(45, 191, 115, 0.18);
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.problem-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding-top: 1rem;
}

.problem-strip span {
  padding: 0.8rem 1rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--black);
}

.split-section,
.workshop-section,
.final-cta {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.steps article,
.conditions-grid article,
.product-grid article,
.commitment-card,
.contact-panel {
  border: 2px solid var(--black);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.95);
}

.service-card {
  padding: 1.35rem;
}

.service-card .icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 900;
}

.service-card p,
.steps p {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid article {
  padding: 1.25rem;
}

.product-grid strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--black);
  font-size: 1.1rem;
}

.product-grid p {
  margin-bottom: 1rem;
}

.product-grid span {
  display: inline-flex;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 850;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--black);
}

.process-section .eyebrow,
.process-section h2 {
  color: var(--blue-soft);
}

.process-section p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2rem;
}

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

.steps article {
  padding: 1.5rem;
}

.steps span {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

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

.conditions-grid article {
  padding: 1.25rem;
}

.conditions-grid strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--black);
  font-size: 1.08rem;
}

.conditions-grid p {
  margin-bottom: 0;
}

.psp-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: start;
}

.psp-panel {
  padding: 1.35rem;
  border: 2px solid var(--black);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.95);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.payment-logos span {
  display: inline-flex;
  min-width: 4.8rem;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.psp-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.psp-panel div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.psp-panel dt {
  color: var(--black);
  font-weight: 900;
}

.psp-panel dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.psp-panel a {
  color: var(--black);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.commitment-card {
  padding: 1.25rem;
}

.commitment-card span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.commitment-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--black);
  font-size: 1.1rem;
}

.commitment-card p {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.35rem;
}

.contact-panel strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--black);
  font-size: 1.2rem;
}

.contact-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--black);
}

.final-cta {
  align-items: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--black);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.legal-main {
  width: min(920px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.legal-main h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.legal-section ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-notice {
  padding: 1rem;
  border: 2px solid var(--black);
  border-radius: 0.75rem;
  background: var(--blue-soft);
  color: var(--black);
  font-weight: 800;
}

.placeholder {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .psp-section,
  .workshop-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-visual {
    max-width: 34rem;
  }

  .steps,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding-inline: 0.9rem;
  }

  .hero {
    width: min(100% - 1.2rem, 1180px);
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(3.05rem, 18vw, 4.2rem);
  }

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

  .hero-stats,
  .service-grid,
  .conditions-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .repair-card {
    position: static;
    width: auto;
    margin: -1.5rem 0.8rem 0;
  }

  .hero-visual::before {
    inset: -0.5rem 0.7rem 0.7rem -0.5rem;
  }

  .problem-strip {
    justify-content: flex-start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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