:root {
  color-scheme: light;
  --blue: #0099d5;
  --blue-deep: #006f9f;
  --blue-dark: #07384e;
  --blue-soft: #eef9fd;
  --blue-pale: #f7fcfe;
  --ink: #0b1620;
  --muted: #536570;
  --white: #ffffff;
  --shadow-soft: 0 24px 72px rgba(7, 56, 78, 0.09);
  --shadow-blue: 0 24px 64px rgba(0, 111, 159, 0.16);
  --wrap: 1180px;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-family: inherit;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #72d8fa;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.wordmark {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -.045em;
}

.wordmark span,
.site-footer strong span {
  color: var(--blue);
}

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

.header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.header-link:hover {
  color: var(--blue-deep);
}

.language-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.language-option {
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.language-option:hover {
  color: var(--blue-deep);
}

.language-option.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 22, 32, .16);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.015em;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--small {
  min-height: 46px;
  padding-inline: 19px;
}

.button--ink,
.button--primary {
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover,
.button--primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(0, 111, 159, .2);
}

.button--soft {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.button--soft:hover {
  background: #dcf3fb;
}

.hero {
  overflow: hidden;
  padding: 68px 0 108px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.hero-copy,
.hero-visual,
.split-heading > *,
.included-grid > *,
.scope-grid > *,
.faq-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a3e9ff;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(50px, 6.15vw, 82px);
  font-weight: 850;
}

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

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 840;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 820;
  letter-spacing: -.03em;
}

.hero-intro {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.48;
}

.hero-facts {
  display: grid;
  gap: 9px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  color: #2c424e;
  font-size: 15px;
  font-weight: 720;
}

.hero-facts li {
  position: relative;
  padding-left: 24px;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--blue-soft);
}

.microcopy {
  max-width: 660px;
  margin: 15px 0 0;
  color: #667883;
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  padding: 0 0 58px 28px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -19% 2% 14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, rgba(0, 153, 213, .22), rgba(0, 153, 213, .04) 58%, transparent 72%);
  filter: blur(4px);
}

.image-shell {
  overflow: hidden;
  aspect-ratio: .78;
  border-radius: 42px 42px 168px 42px;
  background: var(--blue-soft);
  box-shadow: var(--shadow-blue);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.repair-route {
  position: absolute;
  right: clamp(-16px, -2vw, -2px);
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr) auto minmax(18px, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 17px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 52px rgba(7, 56, 78, .14);
  backdrop-filter: blur(14px);
}

.repair-route span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.repair-route b {
  color: var(--blue-deep);
  font-size: 11px;
  letter-spacing: .08em;
}

.repair-route em {
  color: #425963;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.repair-route i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 153, 213, .18), var(--blue));
}

.repair-route .is-complete b,
.repair-route .is-complete em {
  color: var(--ink);
}

.stack-strip {
  padding: 20px 0;
  background: var(--blue-pale);
}

.stack-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #54717e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}

.split-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.diagnosis-flow,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.diagnosis-flow article,
.process-grid article {
  min-height: 250px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--blue-pale);
}

.diagnosis-flow article:nth-child(2) {
  background: var(--blue-soft);
}

.diagnosis-flow article:nth-child(3) {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.diagnosis-flow article > span,
.process-grid article > span,
.included-list article > span {
  display: block;
  margin-bottom: 64px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.diagnosis-flow article:nth-child(3) > span {
  color: #a3e9ff;
}

.diagnosis-flow p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.diagnosis-flow article:nth-child(3) p {
  color: #cce9f3;
}

.plans-section {
  background: var(--blue-pale);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.plan-card--featured {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  transform: translateY(-14px);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(163, 233, 255, .13);
  color: #a3e9ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plan-kind {
  min-height: 52px;
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-card--featured .plan-kind {
  min-height: auto;
  color: #a3e9ff;
}

.price {
  margin: 0 0 12px;
  font-size: 68px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: -.07em;
}

.price span {
  margin-right: 6px;
  font-size: 17px;
  letter-spacing: 0;
  vertical-align: 1.8em;
}

.plan-summary {
  min-height: 58px;
  margin: 0;
  color: var(--muted);
}

.plan-card--featured .plan-summary {
  color: #cce9f3;
}

.plan-card ul {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
  color: #314954;
  font-size: 15px;
}

.plan-card--featured ul {
  color: #e2f4f9;
}

.plan-card li {
  position: relative;
  padding-left: 23px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: .56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.button--plan {
  width: 100%;
  margin-top: auto;
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.button--plan:hover {
  background: #dcf3fb;
  box-shadow: 0 12px 28px rgba(0, 111, 159, .13);
}

.button--plan-featured {
  background: var(--white);
  color: var(--ink);
}

.button--plan-featured:hover {
  background: #e8f9ff;
}

.plans-note {
  margin-top: 24px;
  color: #6d8089;
  font-size: 13px;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.included-copy {
  position: sticky;
  top: 128px;
}

.included-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.included-list {
  display: grid;
  gap: 16px;
}

.included-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--blue-pale);
}

.included-list article > span {
  margin: 5px 0 0;
}

.included-list h3 {
  margin-bottom: 8px;
}

.included-list p {
  margin: 0;
  color: var(--muted);
}

.scope-section {
  background: var(--ink);
  color: var(--white);
}

.scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.scope-positive h2 {
  max-width: 680px;
}

.scope-positive > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 28px;
  color: #bdd5de;
  font-size: 18px;
}

.text-action,
.final-link {
  display: inline-block;
  color: #a3e9ff;
  font-weight: 820;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.scope-exclusions {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: #142a34;
}

.scope-exclusions h3 {
  color: var(--white);
}

.scope-exclusions ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding-left: 21px;
  color: #cce0e7;
}

.scope-exclusions p {
  margin: 0;
  color: #8eabb6;
  font-size: 14px;
}

.process-grid {
  margin-top: 0;
}

.process-grid article {
  background: var(--blue-pale);
}

.process-grid article > span {
  margin-bottom: 52px;
}

.faq-section {
  background: var(--blue-pale);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: clamp(56px, 9vw, 120px);
}

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

.faq-list details {
  padding: 24px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 56, 78, .05);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 820;
  line-height: 1.35;
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.final-section {
  padding: 96px 0;
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 48px;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.final-card h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.final-card p:last-child {
  max-width: 660px;
  margin: 0;
  color: #cce9f3;
}

.final-actions {
  display: grid;
  justify-items: center;
  gap: 17px;
}

.button--light {
  min-width: 240px;
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: #e8f9ff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.site-footer {
  padding: 26px 0 38px;
  color: #60757f;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.035em;
}

.footer-inner > div {
  display: flex;
  gap: 22px;
}

.footer-inner a {
  text-underline-offset: 4px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr);
    gap: 42px;
  }

  .header-link {
    display: none;
  }

  .repair-route {
    left: -24px;
    right: -12px;
  }

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

  .plan-card--featured {
    transform: none;
  }

  .plan-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .final-card {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-items: start;
  }
}

@media (max-width: 780px) {
  .wrap {
    width: min(calc(100% - 34px), var(--wrap));
  }

  .site-header .button--small {
    display: none;
  }

  .hero {
    padding: 46px 0 82px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
    padding-left: 0;
  }

  .stack-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 9px;
  }

  .section {
    padding: 84px 0;
  }

  .split-heading,
  .included-grid,
  .scope-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .diagnosis-flow,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .diagnosis-flow article,
  .process-grid article {
    min-height: 0;
  }

  .diagnosis-flow article > span,
  .process-grid article > span {
    margin-bottom: 36px;
  }

  .included-copy {
    position: static;
  }

  .faq-grid {
    gap: 30px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

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

  .brand img {
    width: 36px;
    height: 36px;
  }

  .wordmark {
    font-size: 21px;
  }

  .language-option {
    min-width: 38px;
    min-height: 38px;
    padding-inline: 8px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .hero-intro {
    font-size: 18px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    padding-bottom: 48px;
  }

  .image-shell {
    border-radius: 30px 30px 112px 30px;
  }

  .repair-route {
    right: -8px;
    left: -8px;
    gap: 7px;
    padding: 14px 13px;
  }

  .repair-route span {
    display: grid;
    gap: 0;
  }

  .repair-route b {
    font-size: 9px;
  }

  .repair-route em {
    font-size: 10px;
  }

  .stack-list {
    font-size: 10px;
    column-gap: 16px;
  }

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

  .plan-card,
  .plan-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 30px 26px;
  }

  .plan-kind,
  .plan-summary {
    min-height: 0;
  }

  .price {
    font-size: 62px;
  }

  .included-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 24px 21px;
  }

  .scope-exclusions {
    padding: 28px 24px;
  }

  .final-section {
    padding: 64px 0;
  }

  .final-card {
    gap: 32px;
    padding: 36px 25px;
    border-radius: 32px;
  }

  .button--light {
    width: 100%;
    min-width: 0;
  }

  .final-actions {
    width: 100%;
    justify-items: stretch;
    text-align: center;
  }

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

  .footer-inner > div {
    flex-wrap: wrap;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 -18px 50px rgba(7, 56, 78, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 820;
    text-align: center;
    text-decoration: none;
  }

  .mobile-whatsapp {
    background: var(--blue-soft);
    color: var(--blue-deep);
  }

  .mobile-pay {
    background: var(--ink);
    color: var(--white);
  }
}

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

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