:root {
  --blue: #0d386f;
  --blue-2: #0071e3;
  --orange: #f27a22;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --panel: rgba(255, 255, 255, 0.9);
  --soft: #f5f9ff;
  --shadow: 0 28px 80px rgba(16, 24, 40, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fbff 0%, #fff 42%, #f8fbff 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

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

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  line-height: 1.2;
}

p {
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.brand img {
  width: 238px;
  height: auto;
}

.brand span {
  padding: 6px 10px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--blue);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(38px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(28px, 5vw, 70px);
}

.hero-content {
  max-width: 1050px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.form-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.hero-metrics strong {
  color: var(--blue);
}

.hero-visual {
  position: relative;
}

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

.hero-visual::before {
  position: absolute;
  inset: 8% -8% -8% 12%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.18), rgba(242, 122, 34, 0.14));
  border-radius: 42px;
  content: "";
}

.section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

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

.intro-band {
  padding-top: 0;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.intro-band div {
  display: flex;
  gap: 18px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(18px);
}

.intro-band strong {
  min-width: max-content;
}

.intro-band span,
.card p,
.work-types p,
.steps p,
.reviews blockquote,
.form-note,
.platform-card p,
.repair-flow-copy p {
  color: var(--muted);
}

.repair-flow-section {
  padding-top: clamp(14px, 3vw, 34px);
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.repair-flow-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 68px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 92% 8%, rgba(242, 122, 34, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.08);
}

.repair-flow-visual-scroll {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(8px, 2vw, 18px);
  overflow: hidden;
  border: 1px solid #d8ecff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.repair-flow-card .repair-flow-visual {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.repair-flow-card h2 {
  max-width: 680px;
}

.repair-flow-copy p:last-child {
  margin-bottom: 0;
}

.result-highlight {
  padding: 16px 18px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 58%, #eef7ff 100%);
  border: 1px solid rgba(242, 122, 34, 0.28);
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(242, 122, 34, 0.08);
}

.result-highlight strong {
  color: var(--orange);
}

.benefit-grid,
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.reviews figure,
.signup-form,
.platform-card,
.team-story {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.card {
  padding: 22px;
}

.pro-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--orange);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pro-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-section {
  background: #fff;
}

.work-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-types article {
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.work-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--blue);
  background: #eef7ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.team-section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.team-copy {
  max-width: 980px;
  margin: 0 auto 24px;
}

.team-copy h2 {
  max-width: 880px;
}

.team-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.team-mosaic {
  position: relative;
  width: min(1180px, 100%);
  min-height: 770px;
  padding: 128px clamp(28px, 5vw, 70px) 62px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at 12% 10%, rgba(242, 122, 34, 0.18), transparent 28%),
    linear-gradient(135deg, #dbeaf2 0%, #f8fbff 44%, #e9eef2 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.team-mosaic::after {
  position: absolute;
  right: 5%;
  bottom: 6%;
  left: 5%;
  height: 78%;
  background:
    repeating-linear-gradient(90deg, rgba(13, 56, 111, 0.1) 0 2px, transparent 2px 136px),
    linear-gradient(180deg, transparent 0 69%, rgba(13, 56, 111, 0.08) 70% 72%, transparent 73% 100%);
  content: "";
}

.team-mosaic-badge {
  position: absolute;
  top: 38px;
  left: 5%;
  z-index: 3;
  padding: 10px 15px 10px 32px;
  color: #005d86;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.team-mosaic-badge::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.team-mosaic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px 16px;
}

.team-person {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 5px 5px 18px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.18);
  transform: rotate(var(--rot));
}

.team-person:nth-child(7n + 2),
.team-person:nth-child(7n + 5) {
  margin-top: 24px;
}

.team-person:nth-child(7n + 3),
.team-person:nth-child(7n + 7) {
  margin-top: 10px;
}

.team-portrait {
  width: 100%;
  height: calc(100% - 13px);
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border-radius: 3px;
  filter: sepia(0.1) saturate(1.08) contrast(1.03);
}

.platform-section {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.platform-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 5vw, 70px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
}

.matchrite-section {
  background: #fff;
}

.matchrite-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 68px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 0%, rgba(242, 122, 34, 0.4), transparent 32%),
    linear-gradient(135deg, #0d386f 0%, #082b57 58%, #061f40 100%);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.matchrite-card .eyebrow {
  color: #ffb15c;
}

.matchrite-card h2 {
  margin-bottom: 0;
}

.matchrite-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 22px;
}

.matchrite-logo-lockup.on-dark {
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
}

.matchrite-logo-lockup svg {
  width: 24px;
  height: 24px;
}

.matchrite-wordmark {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matchrite-wordmark span:first-child {
  color: #0b0e0c;
}

.matchrite-wordmark span:last-child {
  color: #6e7470;
}

.matchrite-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.matchrite-copy p:last-child {
  margin-bottom: 0;
  color: #fff;
}

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

.check-list li {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 16px 12px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  font-weight: 700;
}

.list-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #ffffff 0%, #eaf4ff 100%);
  border: 1px solid #d8ecff;
  border-radius: 14px;
}

.list-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specs-section {
  background: #fff;
}

.brand-heading {
  margin-bottom: 18px;
}

.brand-heading p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.brand-strip span {
  display: grid;
  flex: 1 1 150px;
  min-width: 150px;
  min-height: 70px;
  place-items: center;
}

.brand-strip img {
  width: 100%;
  max-width: 138px;
  max-height: 42px;
  object-fit: contain;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-weight: 900;
}

.proof-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.trustpilot-proof {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin-bottom: 26px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.trustpilot-proof p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.reviews figure {
  margin: 0;
  padding: 24px;
}

.reviews blockquote {
  margin: 0 0 18px;
  font-size: 1.12rem;
}

.reviews figcaption {
  display: grid;
  gap: 3px;
}

.reviews small {
  color: var(--muted);
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  background: #fff;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.button {
  display: inline-flex;
  justify-content: center;
  padding: 14px 20px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover {
  background: #082b57;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: clamp(38px, 6vw, 70px) clamp(18px, 4vw, 56px) 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #082b57;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 28px;
}

.footer-logo {
  width: 270px;
  max-width: 100%;
  padding: 10px 12px;
  background: #fff;
  border-radius: 16px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.register-link {
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: right;
}

.register-link img {
  width: 86px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .platform-card,
  .matchrite-card,
  .repair-flow-card,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .benefit-grid,
  .work-types,
  .steps,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-mosaic {
    min-height: 0;
    padding: 110px 28px 48px;
  }

  .team-mosaic-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.08rem;
  }

  p {
    line-height: 1.58;
  }

  .brand img {
    width: min(174px, 58vw);
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 26px 14px 34px;
  }

  .hero-text,
  .section-heading p,
  .form-copy p {
    font-size: 1rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-metrics span {
    width: 100%;
    padding: 10px 12px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .hero-visual::before {
    inset: 8% -3% -5% 8%;
    border-radius: 28px;
  }

  .section,
  .team-section {
    padding: 42px 14px;
  }

  .repair-flow-section,
  .intro-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .card,
  .work-types article,
  .steps li,
  .reviews figure {
    padding: 20px;
    border-radius: 20px;
  }

  .repair-flow-card,
  .platform-card,
  .matchrite-card,
  .signup-form {
    padding: 22px;
    border-radius: 22px;
  }

  .intro-band div,
  .field-row,
  .benefit-grid,
  .work-types,
  .steps,
  .reviews,
  .trustpilot-proof,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    display: grid;
    padding: 18px;
    border-radius: 22px;
  }

  .repair-flow-card .repair-flow-visual {
    width: 100%;
    max-width: 100%;
  }

  .pro-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .pro-icon svg {
    width: 40px;
    height: 40px;
  }

  .team-mosaic {
    padding: 92px 16px 42px;
    border-radius: 24px;
  }

  .team-mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .team-person {
    padding: 4px 4px 13px;
  }

  .brand-strip {
    gap: 12px 16px;
  }

  .brand-strip span {
    flex-basis: 132px;
    min-width: 132px;
    min-height: 54px;
  }

  .brand-strip img {
    max-width: 126px;
    max-height: 34px;
  }

  .trustpilot-proof {
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .footer-logo {
    width: min(250px, 100%);
  }

  .footer-bottom,
  .register-link {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.92rem, 9.4vw, 2.35rem);
  }

  .brand img {
    width: min(156px, 54vw);
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

}
