:root {
  --primary: #0081fd;
  --primary-dark: #004d97;
  --primary-deep: #006ed8;
  --secondary: #85dfff;
  --surface: #ffffff;
  --surface-soft: #f5f2f2;
  --surface-muted: #f0f4f9;
  --text: #151a2d;
  --text-muted: #545454;
  --text-soft: #737681;
  --border: #d2d2d2;
  --offer: #8cbcb3;
  --warning: #e38b1a;
  --error: #ed5746;
  --dark: #121212;
  --shadow: 0 18px 50px rgba(0, 77, 151, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(245, 242, 242, 0.88);
  border-bottom: 1px solid rgba(210, 210, 210, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-centered {
  justify-content: center;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 129, 253, 0.28);
  font-size: 22px;
  letter-spacing: 0;
}

.brand-text {
  font-size: 21px;
}

.nav-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(210, 210, 210, 0.75);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(21, 26, 45, 0.06);
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--text-muted);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-tab:hover,
.nav-tab:focus-visible,
.nav-tab.is-active {
  color: #fff;
  background: var(--primary);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(700px, calc(84svh - 76px));
  padding: clamp(36px, 5vw, 64px) clamp(20px, 6vw, 84px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 129, 253, 0.92), rgba(0, 77, 151, 0.88)),
    radial-gradient(circle at 86% 18%, rgba(133, 223, 255, 0.75), transparent 36%),
    linear-gradient(150deg, #0081fd 0%, #004d97 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--surface-soft), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

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

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(58px, 10vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(0, 129, 253, 0.28);
}

.hero .button-primary {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button:focus-visible,
.contact-email:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(133, 223, 255, 0.72);
  outline-offset: 3px;
}

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

.hero-stats div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  margin-bottom: 2px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
}

.route-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  transform: rotate(-18deg);
  opacity: 0.7;
}

.route-line-one {
  top: 22%;
  right: -8%;
  width: 54%;
}

.route-line-two {
  right: 8%;
  bottom: 24%;
  width: 44%;
  transform: rotate(16deg);
}

.phone-shell {
  position: absolute;
  right: clamp(28px, 8vw, 130px);
  top: 50%;
  width: min(330px, 31vw);
  min-width: 260px;
  transform: translateY(-50%) rotate(4deg);
  padding: 12px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.36);
}

.phone-screen {
  min-height: 620px;
  padding: 18px;
  color: var(--text);
  background: var(--surface-soft);
  border-radius: 18px;
  overflow: hidden;
}

.phone-status {
  width: 76px;
  height: 8px;
  margin: 0 auto 18px;
  background: #1f2937;
  border-radius: 999px;
}

.phone-header {
  display: grid;
  gap: 2px;
  margin-bottom: 18px;
  color: #fff;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 129, 253, 0.72), rgba(245, 242, 242, 0.96)),
    linear-gradient(145deg, var(--primary), var(--secondary));
  border-radius: 8px;
}

.phone-header span {
  font-size: 13px;
  opacity: 0.88;
}

.phone-header strong {
  font-size: 22px;
  line-height: 1.08;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 14px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.search-row span {
  width: 16px;
  height: 16px;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.search-row p,
.offer-preview p,
.provider-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.chip-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.chip-row span {
  padding: 7px 10px;
  color: var(--primary-dark);
  background: #d8eeff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.offer-preview {
  display: grid;
  grid-template-columns: 64px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(21, 26, 45, 0.08);
}

.offer-image {
  height: 64px;
  background:
    linear-gradient(135deg, rgba(251, 102, 84, 0.7), rgba(227, 139, 26, 0.52)),
    linear-gradient(160deg, #85dfff, #0081fd);
  border-radius: 8px;
}

.offer-preview small {
  display: block;
  color: var(--text-soft);
  font-weight: 700;
}

.offer-preview strong {
  display: block;
  margin: 2px 0;
  line-height: 1.15;
}

.offer-preview b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  font-size: 12px;
}

.provider-list {
  display: grid;
  gap: 10px;
}

.provider-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}

.provider-list span {
  width: 34px;
  height: 34px;
  background: var(--offer);
  border-radius: 8px;
}

.section {
  padding: clamp(52px, 8vw, 96px) clamp(20px, 6vw, 84px);
}

.hero + .section {
  padding-top: clamp(24px, 4vw, 42px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading h2,
.destination-band h2,
.page-hero h1,
.contact-panel h2,
.support-panel h2,
.document-panel h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.feature-card,
.process-grid article,
.contact-panel,
.support-panel,
.document-panel {
  background: #fff;
  border: 1px solid rgba(210, 210, 210, 0.72);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(21, 26, 45, 0.06);
}

.feature-card {
  padding: 22px;
}

.feature-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--surface-muted);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.icon-offer::before {
  inset: 11px 8px;
  border-radius: 5px;
  transform: rotate(-8deg);
}

.icon-offer::after {
  width: 7px;
  height: 7px;
  inset: 17px auto auto 26px;
  border: 0;
  background: var(--warning);
}

.icon-map::before {
  inset: 8px 14px 12px;
  border-color: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-map::after {
  inset: auto 10px 8px;
  height: 3px;
  border: 0;
  background: var(--offer);
  border-radius: 99px;
}

.icon-qr::before {
  inset: 9px;
  border: 0;
  border-radius: 3px;
  background:
    linear-gradient(90deg, var(--dark) 35%, transparent 35% 65%, var(--dark) 65%),
    linear-gradient(var(--dark) 35%, transparent 35% 65%, var(--dark) 65%);
}

.icon-qr::after {
  display: none;
}

.feature-card h3,
.process-grid h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.feature-card p,
.process-grid p,
.destination-band p,
.page-hero p,
.contact-panel p,
.support-list span,
.document-panel p {
  color: var(--text-muted);
}

.process-section {
  padding-top: 24px;
}

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

.process-grid article {
  padding: 26px;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.destination-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: 0 clamp(20px, 6vw, 84px) clamp(52px, 7vw, 88px);
  padding: clamp(34px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 129, 253, 0.92), rgba(18, 18, 18, 0.86)),
    linear-gradient(135deg, #0081fd, #004d97);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.destination-band .eyebrow,
.destination-band h2,
.destination-band p {
  color: #fff;
}

.destination-band p {
  max-width: 650px;
  opacity: 0.86;
}

.destination-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.destination-band li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid rgba(210, 210, 210, 0.7);
}

.site-footer span {
  color: var(--text);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
  font-weight: 700;
}

.page-hero {
  padding: clamp(46px, 7vw, 80px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(216, 238, 255, 0.78)),
    var(--surface-muted);
}

.compact-hero {
  border-bottom: 1px solid rgba(210, 210, 210, 0.7);
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.updated-label {
  display: inline-flex;
  margin-top: 8px;
  color: var(--text-soft);
  font-weight: 800;
}

.policy-layout,
.contact-layout {
  min-height: calc(100svh - 152px);
}

.document-panel {
  max-width: 940px;
  margin: clamp(24px, 5vw, 52px) auto clamp(52px, 7vw, 88px);
  padding: clamp(24px, 5vw, 50px);
}

.document-panel article + article {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(210, 210, 210, 0.7);
}

.document-panel h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.document-panel a {
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 18px;
  padding: clamp(24px, 5vw, 52px) clamp(20px, 6vw, 84px)
    clamp(52px, 7vw, 88px);
}

.contact-panel,
.support-panel {
  padding: clamp(22px, 4vw, 34px);
}

.contact-panel h2,
.support-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(178, 192, 207, 0.8);
  border-radius: 8px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 129, 253, 0.14);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

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

.support-list li {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--surface-muted);
  border-radius: 8px;
}

.contact-email {
  display: inline-flex;
  color: var(--primary-dark);
  font-weight: 900;
}

.auth-layout {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 14%, rgba(133, 223, 255, 0.46), transparent 34%),
    linear-gradient(145deg, #0081fd, #004d97 54%, #121212);
}

.reset-card {
  width: min(100%, 460px);
  padding: clamp(24px, 6vw, 40px);
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.reset-copy {
  margin-top: 28px;
  text-align: center;
}

.reset-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 7vw, 42px);
  line-height: 1.05;
}

.reset-copy p {
  color: var(--text-muted);
}

.reset-form {
  margin-top: 26px;
}

.reset-result {
  margin-top: 18px;
  padding: 0;
  color: var(--text-muted);
  text-align: center;
}

.reset-result.is-error {
  color: var(--error);
}

.reset-result.is-success {
  color: #1f9d66;
}

.reset-result:empty {
  display: none;
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .phone-shell {
    right: -80px;
    opacity: 0.28;
    transform: translateY(-50%) rotate(8deg);
  }

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

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header {
    position: relative;
  }

  .nav-tabs {
    width: 100%;
  }

  .nav-tab {
    flex: 1;
    justify-content: center;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .feature-grid,
  .process-grid,
  .contact-grid,
  .destination-band {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 13px;
  }

  .hero-stats dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .phone-shell {
    width: 280px;
    right: -118px;
    top: 58%;
  }

  .hero-copy {
    max-width: 92%;
  }

  .destination-band {
    margin-right: 20px;
    margin-left: 20px;
  }

  .destination-band ul {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: center;
  }

  .contact-grid,
  .section,
  .page-hero {
    padding-right: 16px;
    padding-left: 16px;
  }
}
