:root {
  --ink: #041847;
  --ink-soft: #152b52;
  --panel: #365f7a;
  --panel-dark: #27485e;
  --aqua: #64ddd7;
  --aqua-dark: #35b8b3;
  --cloud: #f6fbff;
  --muted: #d4e6ef;
  --line: rgba(255, 255, 255, .18);
  --shadow: 0 20px 60px rgba(2, 11, 28, .28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cloud);
  background: #151a20;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(4, 24, 71, .75), rgba(32, 67, 86, .55)),
    url("bp-icon.svg") center 15vh / 360px auto no-repeat,
    #20262c;
  opacity: .22;
}

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

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(21, 26, 32, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  box-shadow: inset 0 -4px 0 rgba(4, 24, 71, .08);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-line {
  color: var(--muted);
  font-size: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--aqua);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(100, 221, 215, .24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #78eee8;
}

.button-outline {
  border-color: var(--line);
  color: var(--cloud);
  background: rgba(255, 255, 255, .06);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, .11);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: 44px;
  padding: 56px 0 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(100, 221, 215, .45);
  border-radius: var(--radius);
  color: #b9fffb;
  background: rgba(100, 221, 215, .08);
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(100, 221, 215, .16);
}

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

h1 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: #e7f5fb;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.store-stack {
  display: inline-grid;
  gap: 10px;
  justify-items: start;
}

.play-badge {
  width: min(100%, 286px);
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 9px 18px;
  border-radius: 13px;
  background: #000000;
  color: #ffffff;
  border: 2px solid #aeb5bb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 10px 22px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease;
}

.play-badge:hover,
.play-badge:focus-visible {
  transform: translateY(-1px);
  border-color: #d7dde2;
  outline: none;
}

.play-symbol {
  width: 48px;
  height: 54px;
  flex: 0 0 auto;
}

.play-copy {
  display: grid;
  line-height: 1;
  white-space: nowrap;
}

.play-small {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

.play-large {
  margin-top: 5px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}

.trust-item {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.trust-number {
  display: block;
  color: var(--aqua);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.trust-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.visual-wrap {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.brand-panel {
  width: min(100%, 400px);
  aspect-ratio: 1.55;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .16);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.brand-panel::before,
.brand-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(100, 221, 215, .18);
  inset: 18px;
  border-radius: var(--radius);
  z-index: -1;
}

.brand-panel::after {
  inset: auto -40px -54px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(100, 221, 215, .08);
}

.hero-logo {
  width: clamp(124px, 18vw, 180px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 88px);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.contact-strip {
  width: min(100%, 400px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-pill {
  min-height: 70px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.contact-pill small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.contact-pill strong {
  display: block;
  color: var(--cloud);
  font-size: 16px;
  margin-top: 5px;
  word-break: break-word;
}

.section {
  padding: 74px 0;
}

.band-blue {
  background: var(--panel);
}

.band-light {
  color: var(--ink);
  background: var(--cloud);
}

.band-dark {
  background: #101827;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.section-head p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 0;
  font-size: 17px;
}

.band-light .section-head p {
  color: #486072;
}

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

.service-card {
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #dbeaf1;
  box-shadow: 0 14px 28px rgba(9, 37, 61, .08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #e8fbfa;
  color: var(--ink);
  margin-bottom: 16px;
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card p {
  color: #53697a;
  margin: 0;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  min-height: 150px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

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

.app-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #dbeaf1;
  box-shadow: 0 16px 36px rgba(9, 37, 61, .09);
}

.app-row h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.app-row p {
  color: #526778;
  margin-bottom: 0;
}

.app-row .store-stack {
  justify-self: end;
}

.app-row .button {
  justify-self: end;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(300px, .38fr);
  gap: 30px;
  align-items: start;
}

.seo-copy {
  color: #233b52;
  font-size: 16px;
}

.seo-copy h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.seo-copy p {
  margin-bottom: 17px;
}

.quick-box {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--cloud);
  box-shadow: 0 18px 34px rgba(9, 37, 61, .12);
}

.quick-box h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

.quick-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.notice {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(100, 221, 215, .12);
  color: #dbfffd;
  font-size: 13px;
}

.footer {
  padding: 38px 0 96px;
  background: #0c121d;
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .11);
  padding-top: 24px;
}

.footer strong {
  color: var(--cloud);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 54px;
  border-radius: var(--radius);
  padding: 12px 16px;
  background: var(--aqua);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
}

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

@media (max-width: 900px) {
  .hero,
  .seo-layout,
  .app-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

  .quick-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    flex: 1 1 160px;
  }

  .store-stack,
  .play-badge,
  .app-row .store-stack,
  .app-row .button {
    width: 100%;
    justify-self: stretch;
  }

  .play-badge {
    justify-content: center;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    gap: 30px;
  }

  .trust-row,
  .service-grid,
  .steps,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .app-row {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 11px 14px;
    font-size: 13px;
  }
}
