:root {
  --blue: #0b63f6;
  --blue-dark: #064bc4;
  --blue-soft: #eaf2ff;
  --cyan: #16b9d4;
  --navy: #071a3d;
  --text: #17213a;
  --muted: #64718a;
  --line: #dce4f1;
  --surface: #f6f8fc;
  --green: #119c61;
  --green-soft: #e8f8f0;
  --orange: #f3a328;
  --white: #fff;
  --shadow: 0 18px 50px rgba(20, 57, 112, 0.13);
  --small-shadow: 0 8px 24px rgba(20, 57, 112, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
.brand {
  font-family: "Manrope", "DM Sans", sans-serif;
}

.demo-bar {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 18px;
  color: #41506c;
  background: #edf3fc;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 163, 40, 0.15);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.45px;
  white-space: nowrap;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 31px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 900;
  transform: skew(-7deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.footer-links button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.nav-link {
  padding: 10px 13px;
  color: #43506a;
}

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

.header-cta,
.primary-button,
.white-button {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 12px 18px;
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(11, 99, 246, 0.22);
}

.header-cta:hover,
.primary-button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(11, 99, 246, 0.28);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.menu-button span {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 66px 0 88px;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.eyebrow-icon {
  font-size: 9px;
  color: var(--cyan);
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -3.6px;
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.destination-picker {
  max-width: 590px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--small-shadow);
}

.destination-picker label {
  display: block;
  margin: 0 0 9px 3px;
  color: #536079;
  font-size: 12px;
  font-weight: 700;
}

.picker-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.country-trigger {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  background: white;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.selected-flag {
  font-size: 20px;
}

.chevron {
  margin-left: auto;
  color: #6d7890;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 52px;
  padding: 0 22px;
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(11, 99, 246, 0.2);
}

.primary-button.wide {
  width: 100%;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 21px;
  color: #59667f;
  font-size: 12px;
  font-weight: 600;
}

.trust-row b {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
}

.hero-visual {
  min-height: 500px;
  position: relative;
}

.globe {
  width: 410px;
  height: 410px;
  position: absolute;
  top: 35px;
  right: 30px;
  overflow: hidden;
  border: 1px solid #bed6fc;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 43%, rgba(255,255,255,0.95) 0 4%, transparent 4.3%),
    radial-gradient(circle at 30% 34%, #d6e7ff 0 11%, transparent 11.5%),
    radial-gradient(circle at 67% 32%, #c8e0ff 0 14%, transparent 14.5%),
    radial-gradient(circle at 54% 69%, #d9e9ff 0 16%, transparent 16.5%),
    linear-gradient(145deg, #f0f6ff, #d9eaff);
  box-shadow: inset -25px -30px 55px rgba(60, 126, 226, 0.12);
}

.globe::before,
.globe::after,
.globe-line {
  content: "";
  position: absolute;
  border: 1px solid rgba(50, 113, 209, 0.15);
  border-radius: 50%;
}

.globe::before {
  width: 200px;
  height: 406px;
  left: 103px;
}

.globe::after {
  width: 406px;
  height: 175px;
  top: 112px;
}

.globe-line-one {
  width: 406px;
  height: 70px;
  top: 168px;
}

.globe-line-two {
  width: 82px;
  height: 406px;
  left: 161px;
}

.route {
  width: 280px;
  height: 170px;
  position: absolute;
  left: 65px;
  top: 84px;
  border-top: 2px dashed var(--blue);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.route-start {
  width: 10px;
  height: 10px;
  position: absolute;
  left: -2px;
  top: -6px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  background: white;
}

.route-plane {
  position: absolute;
  right: -8px;
  top: -23px;
  color: var(--blue);
  font-size: 31px;
  transform: rotate(15deg);
}

.phone {
  width: 180px;
  height: 360px;
  position: absolute;
  left: 55px;
  bottom: 14px;
  z-index: 3;
  padding: 16px 11px;
  border: 7px solid #10131b;
  border-radius: 38px;
  background: linear-gradient(160deg, #f9fbff, #eaf2ff);
  box-shadow: 0 30px 55px rgba(11, 37, 81, 0.28);
  transform: rotate(-4deg);
}

.phone-island {
  width: 76px;
  height: 19px;
  margin: -9px auto 70px;
  border-radius: 20px;
  background: #0c0e14;
}

.signal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 10px;
  border: 1px solid #d7e4f6;
  border-radius: 19px;
  background: white;
  text-align: center;
  box-shadow: var(--small-shadow);
}

.signal-bolt {
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.signal-card strong {
  margin-top: 7px;
  color: var(--navy);
}

.signal-card small {
  margin-top: 3px;
  color: var(--muted);
}

.signal-bars {
  height: 28px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 14px;
}

.signal-bars i {
  width: 5px;
  border-radius: 4px;
  background: var(--blue);
}

.signal-bars i:nth-child(1) { height: 9px; opacity: 0.5; }
.signal-bars i:nth-child(2) { height: 15px; opacity: 0.68; }
.signal-bars i:nth-child(3) { height: 21px; opacity: 0.82; }
.signal-bars i:nth-child(4) { height: 27px; }

.floating-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  z-index: 5;
  padding: 11px 14px;
  border: 1px solid #d9e5f6;
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(8px);
}

.floating-chip > span {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.floating-chip strong,
.floating-chip small {
  display: block;
}

.floating-chip strong {
  color: var(--navy);
  font-size: 12px;
}

.floating-chip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.chip-one {
  left: 2px;
  top: 85px;
}

.chip-two {
  right: 0;
  bottom: 56px;
}

.country-strip,
.plan-explainer,
.how-it-works {
  padding: 90px max(20px, calc((100vw - 1180px) / 2));
}

.country-strip {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.compatibility-banner h2 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.16;
  letter-spacing: -1.7px;
}

.section-heading.centered {
  max-width: 690px;
  display: block;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.centered p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.text-button {
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.country-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #e0e7f1;
  border-radius: 15px;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(21, 53, 105, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-align: left;
}

.country-card:hover {
  transform: translateY(-3px);
  border-color: #b8d1fa;
  box-shadow: var(--small-shadow);
}

.country-card .flag {
  font-size: 27px;
}

.country-card strong,
.country-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-card strong {
  color: var(--navy);
  font-size: 14px;
}

.country-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.country-card .arrow {
  margin-left: auto;
  color: #98a3b8;
}

.plan-explainer {
  background: white;
}

.explainer-grid {
  width: min(870px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto;
}

.explainer-card {
  position: relative;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f7faff);
  box-shadow: var(--small-shadow);
}

.explainer-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 17px;
  font-size: 30px;
  font-weight: 800;
}

.database-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.calendar-icon {
  color: #06978f;
  background: #e4f7f4;
}

.card-tag {
  position: absolute;
  top: 34px;
  right: 31px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-tag.mint {
  color: #087d75;
  background: #e4f7f4;
}

.explainer-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 24px;
}

.explainer-card p {
  color: var(--muted);
  line-height: 1.6;
}

.explainer-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: #48566f;
  font-size: 14px;
}

.explainer-card li::before {
  content: "✓";
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.how-it-works {
  background: #f8faff;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 5px;
}

.steps article {
  position: relative;
  text-align: center;
}

.step-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: calc(50% + 37px);
  z-index: 2;
  align-items: center;
  justify-content: center;
  border: 3px solid #f8faff;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.step-illustration {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 32px;
  color: var(--blue);
  background: linear-gradient(145deg, #e4efff, #f5f9ff);
  font-size: 45px;
  box-shadow: inset 0 0 0 1px #d8e7fd;
}

.steps h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.steps p {
  max-width: 270px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.step-connector {
  height: 1px;
  border-top: 2px dashed #bfd2ef;
  transform: translateY(-40px);
}

.compatibility-banner {
  width: min(1110px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 36px;
  margin: 90px auto;
  padding: 42px 48px;
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 10% 0%, rgba(62, 187, 255, 0.4), transparent 35%),
    linear-gradient(135deg, #073d9f, #0b63f6);
  box-shadow: 0 20px 45px rgba(5, 70, 177, 0.24);
}

.compatibility-banner h2 {
  color: white;
}

.compatibility-banner p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #dceaff;
  line-height: 1.6;
}

.section-kicker.light {
  color: #aee5ff;
}

.compatibility-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-phone {
  width: 75px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid white;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  transform: rotate(-5deg);
}

.mini-phone span {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green);
  background: white;
  font-size: 21px;
  font-weight: 800;
}

.white-button {
  min-width: 154px;
  padding: 14px 18px;
  color: var(--blue-dark);
  background: white;
}

.white-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

footer {
  padding: 55px 20px 35px;
  color: #9cacbf;
  background: #07142c;
  text-align: center;
}

.footer-brand {
  color: white;
}

footer p {
  margin: 10px 0 23px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 30px;
}

.footer-links button {
  color: #c6d4e7;
  cursor: pointer;
}

.footer-links button:hover {
  color: white;
}

footer small {
  font-size: 11px;
}

.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 15, 38, 0.57);
  backdrop-filter: blur(5px);
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(510px, 100%);
  max-height: min(690px, calc(100vh - 40px));
  position: relative;
  overflow: auto;
  padding: 32px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.modal h2 {
  margin: 7px 0 22px;
  color: var(--navy);
  font-size: 31px;
  letter-spacing: -1px;
}

.modal-close {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 50%;
  color: #526079;
  background: var(--surface);
  cursor: pointer;
  font-size: 24px;
}

.search-field {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.search-field span {
  color: #7c889e;
  font-size: 22px;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.country-list {
  display: grid;
  gap: 8px;
}

.country-list button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: white;
  cursor: pointer;
  text-align: left;
}

.country-list button:hover {
  border-color: #cbdcf7;
  background: #f6f9ff;
}

.country-list .flag {
  font-size: 22px;
}

.country-list small {
  margin-left: auto;
  color: var(--muted);
}

.empty-state {
  padding: 35px 15px;
  color: var(--muted);
  text-align: center;
}

.flow-shell {
  display: none;
  min-height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow-y: auto;
  color: var(--text);
  background: #f6f8fc;
}

.flow-shell.open {
  display: block;
}

.flow-header {
  height: 72px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1050px) / 2));
  border-bottom: 1px solid var(--line);
  background: white;
}

.flow-header .brand {
  justify-self: center;
}

.flow-back,
.flow-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.flow-back:hover,
.flow-close:hover {
  background: var(--surface);
}

.flow-progress {
  width: min(680px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 0;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8a95aa;
  font-size: 12px;
  font-weight: 700;
}

.progress-step span {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7d0df;
  border-radius: 50%;
  background: white;
}

.progress-step.active {
  color: var(--blue);
}

.progress-step.active span {
  border-color: var(--blue);
  color: white;
  background: var(--blue);
}

.progress-step.done {
  color: var(--green);
}

.progress-step.done span {
  border-color: var(--green);
  color: white;
  background: var(--green);
}

.flow-progress i {
  width: 60px;
  height: 1px;
  margin: 0 10px;
  background: #d5ddea;
}

.flow-content {
  width: min(1030px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.flow-title {
  margin-bottom: 28px;
  text-align: center;
}

.flow-title .flag-large {
  font-size: 31px;
}

.flow-title h1 {
  margin: 7px 0 7px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -1.7px;
}

.flow-title p {
  color: var(--muted);
}

.plan-layout,
.checkout-layout,
.install-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 3px 14px rgba(31, 65, 119, 0.05);
}

.plan-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f0f3f8;
}

.plan-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  color: #637089;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.plan-tabs button.active {
  color: var(--blue);
  background: white;
  box-shadow: 0 3px 10px rgba(16, 52, 108, 0.08);
}

.model-note {
  min-height: 45px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.plan-list {
  display: grid;
  gap: 11px;
}

.plan-option {
  width: 100%;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.plan-option:hover {
  border-color: #b6cdf3;
}

.plan-option.selected {
  border: 2px solid var(--blue);
  padding: 19px 17px;
  box-shadow: 0 6px 20px rgba(11, 99, 246, 0.1);
}

.radio {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #9eabc0;
  border-radius: 50%;
}

.selected .radio {
  border: 5px solid var(--blue);
}

.plan-main strong {
  color: var(--navy);
  font-size: 21px;
}

.plan-main span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.plan-main small {
  display: block;
  margin-top: 4px;
  color: #65728b;
  font-size: 12px;
}

.plan-price {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.recommended {
  position: absolute;
  top: -10px;
  left: 48px;
  padding: 4px 8px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.plan-facts div {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.plan-facts b {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 17px;
}

.summary-panel {
  position: sticky;
  top: 22px;
}

.summary-panel h3,
.panel-heading {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 18px;
}

.order-country {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.order-country span {
  font-size: 25px;
}

.order-country strong,
.order-country small {
  display: block;
}

.order-country small {
  margin-top: 3px;
  color: var(--muted);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
}

.summary-row strong {
  color: var(--text);
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.summary-total strong {
  font-size: 21px;
}

.secure-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.info-callout,
.daily-callout {
  display: flex;
  gap: 11px;
  padding: 14px;
  margin-top: 15px;
  border-radius: 11px;
  color: #315484;
  background: #eef5ff;
  font-size: 12px;
  line-height: 1.5;
}

.compat-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 35px;
  align-items: center;
}

.compat-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compat-phone {
  width: 145px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 6px solid #121722;
  border-radius: 32px;
  background: linear-gradient(160deg, #f2f7ff, #e5efff);
  box-shadow: var(--shadow);
}

.compat-phone::before {
  content: "";
  width: 55px;
  height: 14px;
  position: absolute;
  align-self: center;
  margin-top: -224px;
  border-radius: 20px;
  background: #121722;
}

.compat-face {
  font-size: 45px;
}

.compat-check {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(17, 156, 97, 0.25);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 22px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.check-item span {
  display: flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 12px;
}

.confirm-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  margin: 16px 0;
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.45;
}

.confirm-box input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.text-link {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field label {
  color: #4d5a72;
  font-size: 12px;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  color: var(--text);
  background: white;
}

.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 99, 246, 0.1);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.payment-method {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.payment-method span {
  font-size: 22px;
}

.payment-method.selected {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #f5f9ff;
}

.demo-payment-note {
  padding: 12px;
  margin: 15px 0;
  border: 1px solid #f1d8a4;
  border-radius: 10px;
  color: #72531c;
  background: #fff8e8;
  font-size: 11px;
  line-height: 1.5;
}

.processing {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spinner {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border: 5px solid #dce9fc;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.processing h2 {
  margin-bottom: 9px;
  color: var(--navy);
}

.processing p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.success-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 34px;
  box-shadow: 0 9px 25px rgba(17, 156, 97, 0.24);
}

.success-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #097444;
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
}

.qr-card {
  padding: 25px;
  border: 2px solid var(--blue);
  border-radius: 17px;
  text-align: center;
}

.fake-qr {
  width: 190px;
  height: 190px;
  margin: 0 auto 18px;
  padding: 13px;
  background:
    repeating-conic-gradient(#10141d 0 25%, white 0 50%) 0 0 / 18px 18px,
    white;
  box-shadow: inset 0 0 0 13px white;
  image-rendering: pixelated;
}

.qr-card h3 {
  margin-bottom: 6px;
  color: var(--navy);
}

.qr-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.qr-warning {
  padding: 10px;
  border-radius: 8px;
  color: #7b561b;
  background: #fff6e5;
  font-size: 10px;
}

.install-steps {
  display: grid;
  gap: 13px;
}

.install-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.install-step > span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 800;
}

.install-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.install-step small {
  color: var(--muted);
  line-height: 1.4;
}

.install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.secondary-button {
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid #b7cff5;
  border-radius: 11px;
  color: var(--blue);
  background: white;
  cursor: pointer;
  font-weight: 700;
}

.secondary-button:hover {
  background: #f4f8ff;
}

.order-ref {
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.toast {
  min-width: 240px;
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 200;
  padding: 13px 18px;
  border-radius: 12px;
  color: white;
  background: #10213e;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.locked {
  overflow: hidden;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }

  .globe {
    width: 350px;
    height: 350px;
    right: 0;
  }

  .phone {
    left: 15px;
  }

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

  .compatibility-banner {
    grid-template-columns: 110px 1fr;
  }

  .compatibility-banner .white-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .demo-bar {
    min-height: 37px;
    font-size: 10px;
  }

  .site-header {
    width: calc(100% - 32px);
    height: 66px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 15;
    padding: 0 16px;
    background: white;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  .mobile-menu.open {
    max-height: 240px;
    padding: 8px 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu button {
    padding: 12px;
    border: 0;
    border-radius: 10px;
    background: white;
    text-align: left;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: auto;
    display: block;
    padding: 55px 0 65px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
    letter-spacing: -2.7px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .picker-row {
    grid-template-columns: 1fr;
  }

  .country-trigger {
    min-height: 51px;
  }

  .trust-row {
    gap: 12px;
  }

  .hero-visual {
    display: none;
  }

  .country-strip,
  .plan-explainer,
  .how-it-works {
    padding: 65px 16px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading > .text-button {
    display: none;
  }

  .country-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .country-card {
    padding: 14px;
  }

  .country-card:nth-child(n+5) {
    display: none;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .step-connector {
    display: none;
  }

  .compatibility-banner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 34px 25px;
    margin: 65px auto;
    text-align: center;
  }

  .compatibility-art {
    display: none;
  }

  .compatibility-banner .white-button {
    grid-column: auto;
    justify-self: center;
  }

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

  .modal {
    padding: 27px 20px;
    border-radius: 20px;
  }

  .flow-header {
    padding: 0 15px;
  }

  .flow-progress {
    width: calc(100% - 24px);
  }

  .progress-step {
    font-size: 0;
  }

  .progress-step span {
    font-size: 11px;
  }

  .flow-progress i {
    width: 30px;
    margin: 0 5px;
  }

  .flow-content {
    width: calc(100% - 24px);
    padding-top: 25px;
  }

  .plan-layout,
  .checkout-layout,
  .install-layout,
  .compat-grid {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .plan-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .compat-phone-wrap {
    display: none;
  }

  .payment-methods {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fake-qr {
    width: 175px;
    height: 175px;
  }
}

@media (max-width: 390px) {
  .country-cards {
    grid-template-columns: 1fr;
  }

  .country-card:nth-child(4) {
    display: none;
  }

  .plan-option {
    grid-template-columns: 22px 1fr;
  }

  .plan-price {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
