:root {
  --ink: #102a43;
  --ink-soft: #486581;
  --blue: #1769e0;
  --blue-dark: #0b4baa;
  --blue-pale: #eaf4ff;
  --cyan: #56c9ed;
  --cream: #fffaf1;
  --white: #ffffff;
  --line: #d9e2ec;
  --green: #16866f;
  --shadow: 0 24px 70px rgba(30, 77, 118, 0.14);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 226, 236, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  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;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(176, 110, 216, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

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

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 82% 16%, rgba(86, 201, 237, 0.32), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(23, 105, 224, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, var(--white) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -190px;
  right: -120px;
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(23, 105, 224, 0.035), 0 0 0 108px rgba(23, 105, 224, 0.025);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 850;
}

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

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 780;
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(23, 105, 224, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  box-shadow: 0 12px 24px rgba(30, 77, 118, 0.1);
}

.microcopy {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.phone-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(23, 105, 224, 0.13), rgba(86, 201, 237, 0.3));
}

.phone {
  position: relative;
  width: 286px;
  min-height: 540px;
  padding: 16px;
  border: 9px solid #16324a;
  border-radius: 44px;
  background: #f7fbff;
  box-shadow: 0 36px 80px rgba(16, 42, 67, 0.28);
  transform: rotate(3deg);
}

.phone-notch {
  width: 84px;
  height: 22px;
  margin: -5px auto 18px;
  border-radius: 0 0 15px 15px;
  background: #16324a;
}

.phone-topline {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-title {
  margin-bottom: 18px;
  font-size: 1.55rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.destination-card {
  padding: 16px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(145deg, #1769e0, #299ed4);
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.22);
}

.destination-row,
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.destination-name {
  font-size: 1.1rem;
  font-weight: 800;
}

.destination-sub {
  opacity: 0.78;
  font-size: 0.74rem;
}

.flag {
  font-size: 2rem;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.plan-card {
  padding: 14px;
  border: 1px solid #e4edf5;
  border-radius: 17px;
  background: var(--white);
}

.plan-name {
  font-size: 0.82rem;
  font-weight: 800;
}

.plan-meta {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.plan-price {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
}

.phone-action {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border: 0;
  border-radius: 13px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 58px;
  width: 190px;
  padding: 15px;
  border: 1px solid rgba(217, 226, 236, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.floating-label {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-value {
  margin-top: 4px;
  font-size: 0.92rem;
  font-weight: 750;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--cream);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-number {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.route-board {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.route-board::before,
.route-board::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.route-board::before {
  width: 270px;
  height: 270px;
  top: -90px;
  right: -60px;
  border: 48px solid rgba(86, 201, 237, 0.16);
}

.route-board::after {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: -45px;
  background: rgba(23, 105, 224, 0.34);
}

.route-title {
  position: relative;
  z-index: 1;
  max-width: 250px;
  font-size: 1.8rem;
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.route {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin-top: 54px;
}

.route-stop {
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 2px var(--cyan);
}

.route-line {
  position: absolute;
  left: 7px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: rgba(86, 201, 237, 0.45);
}

.route-stop strong {
  display: block;
}

.route-stop span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.cta {
  padding: 76px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(130deg, var(--blue-dark), var(--blue) 62%, #3cb7dc);
  box-shadow: var(--shadow);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -160px;
  border: 42px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 14px;
}

.cta-card p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-card .button {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
  background: var(--white);
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.footer-copy {
  max-width: 400px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--blue);
}

.legal-hero {
  padding: 76px 0 50px;
  background: linear-gradient(180deg, #f5faff, var(--white));
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: 68px;
  align-items: start;
  padding: 58px 0 100px;
}

.legal-index {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
}

.legal-index a {
  padding: 8px 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.legal-index a:hover {
  color: var(--blue);
}

.legal-content section {
  scroll-margin-top: 24px;
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  font-size: 1.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 22px;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: var(--blue-pale);
  color: var(--ink-soft);
}

.delete-panel {
  max-width: 760px;
  margin: 58px auto 100px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.delete-panel h2 {
  font-size: 2rem;
}

.delete-panel .button {
  margin: 10px 0 20px;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 20px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 42px;
  padding-left: 58px;
  color: var(--ink-soft);
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -6px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-pale);
  font-weight: 850;
}

.meta {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

  .hero-grid {
    gap: 42px;
  }

  .phone-wrap {
    min-height: 570px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-index {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .legal-index a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 10px;
    background: #f4f8fb;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px 16px;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .phone-wrap {
    min-height: 520px;
    transform: scale(0.9);
    margin: -30px 0;
  }

  .floating-card {
    right: -4px;
  }

  .section {
    padding: 76px 0;
  }

  .cta {
    padding: 52px 0;
  }

  .cta-card,
  .delete-panel {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .legal-hero {
    padding: 58px 0 38px;
  }

  .legal-layout {
    padding: 38px 0 70px;
  }
}

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

  .button {
    transition: none;
  }
}
