:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5d6974;
  --line: #d9e0e7;
  --paper: #ffffff;
  --soft: #f5f8fa;
  --red: #d71920;
  --deep-red: #a80f18;
  --teal: #008a92;
  --gold: #f0b429;
  --charcoal: #263645;
  --success: #087d62;
  --error: #b3261e;
  --shadow: 0 18px 45px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: min(420px, 100%);
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.16;
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: 680px;
  padding: clamp(62px, 7vw, 94px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(104deg, #ffffff 0%, #ffffff 52%, #eefafa 52%, #eefafa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: linear-gradient(90deg, var(--red) 0 62%, var(--teal) 62% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 0;
  width: min(38vw, 560px);
  background: var(--red);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red);
}

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

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 span:last-child {
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 {
  max-width: 800px;
  color: var(--ink);
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.94;
}

.hero h1 span:first-child {
  color: var(--red);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.hero-note {
  max-width: 640px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.28);
}

.button.primary:hover {
  background: var(--deep-red);
}

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

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

.hero-brand-stage {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(500px, 100%);
  justify-self: end;
}

.hero-logo-panel,
.hero-main-offer,
.hero-offer-row article,
.hero-device-scene {
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(23, 33, 43, 0.18);
}

.hero-logo-panel {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.hero-logo-panel img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
}

.hero-logo-panel strong,
.hero-logo-panel span {
  display: block;
}

.hero-logo-panel strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.hero-logo-panel span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.hero-main-offer {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: white;
  background: var(--red);
}

.hero-main-offer::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--teal);
}

.hero-main-offer span,
.hero-main-offer strong,
.hero-main-offer p {
  position: relative;
  display: block;
}

.hero-main-offer span {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-main-offer strong {
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 0.95;
}

.hero-main-offer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  line-height: 1.45;
}

.hero-offer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-offer-row article {
  padding: 18px;
}

.hero-offer-row span,
.hero-offer-row strong,
.hero-offer-row small {
  display: block;
}

.hero-offer-row span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
}

.hero-offer-row strong {
  margin-top: 8px;
  color: var(--red);
  font-size: 44px;
  line-height: 0.95;
}

.hero-offer-row small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.hero-device-scene {
  position: relative;
  min-height: 236px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #102230 0%, #17212b 100%);
}

.hero-device-scene::before {
  content: "No contract · Port-in · eSIM";
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.hero-phone {
  position: absolute;
  bottom: 30px;
  width: 116px;
  height: 172px;
  border: 8px solid #0a1016;
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

.hero-phone-back {
  right: 130px;
  transform: rotate(-8deg);
  background: #f5f8fa;
}

.hero-phone-front {
  right: 42px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  color: white;
  background: var(--red);
}

.hero-phone-front span {
  font-size: 18px;
  font-weight: 950;
}

.hero-phone-front strong {
  font-size: 28px;
  line-height: 1;
}

.hero-sim-row {
  position: absolute;
  right: 194px;
  bottom: 34px;
  display: grid;
  gap: 8px;
}

.hero-sim-row span {
  display: inline-flex;
  min-width: 82px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font-size: 12px;
  font-weight: 950;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.full {
  width: 100%;
}

.legal-page {
  background: var(--soft);
}

.legal-hero {
  padding: 72px clamp(18px, 5vw, 64px) 34px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 72px);
}

.legal-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  width: min(960px, calc(100% - 36px));
  margin: 34px auto 56px;
  padding: clamp(24px, 4vw, 44px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 33, 43, 0.08);
}

.legal-content h2 {
  margin-top: 28px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--teal);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -34px clamp(18px, 5vw, 64px) 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 22px;
  background: white;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 82px clamp(18px, 5vw, 64px);
}

.section-head {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-head p:not(.eyebrow),
.contact-section > div > p,
.store-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.brand-info-section {
  background: white;
}

.brand-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.brand-explain {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
  border-radius: 8px;
  background: var(--soft);
}

.brand-explain h3 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 42px);
}

.brand-explain p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.official-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font-weight: 900;
  text-decoration: none;
}

.official-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

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

.trust-proof-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.trust-proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
}

.trust-proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.customer-note {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 138, 146, 0.28);
  border-radius: 8px;
  background: #eefcfd;
}

.customer-note strong,
.customer-note span {
  display: block;
}

.customer-note span {
  color: var(--muted);
  line-height: 1.65;
}

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

.bill-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.bill-card,
.result-panel,
.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.bill-grid,
.lead-fields,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid #c9d3dd;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: white;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 138, 146, 0.22);
  border-color: var(--teal);
}

.checks {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}

.check input {
  width: 18px;
  min-height: 18px;
}

.bill-card .button {
  margin-top: 16px;
}

.result-panel {
  position: sticky;
  top: 96px;
}

.result-panel h3 {
  margin-bottom: 8px;
}

.result-panel p {
  color: var(--muted);
  line-height: 1.58;
}

.per-line {
  margin: 16px 0;
  padding: 16px;
  border-radius: 8px;
  color: white;
  background: var(--charcoal);
  font-size: 34px;
  font-weight: 950;
}

.hidden-result {
  display: none;
}

.matched-store {
  display: none;
  margin: 16px 0 4px;
  padding: 14px;
  border: 1px solid rgba(0, 138, 146, 0.28);
  border-radius: 8px;
  background: #eef9fa;
}

.matched-store strong {
  display: block;
  margin-bottom: 6px;
}

.lead-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--success);
  font-weight: 900;
  line-height: 1.5;
}

.form-status.error {
  color: var(--error);
}

.sms-consent {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.sms-consent a {
  color: var(--teal);
  font-weight: 900;
}

.short-form-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 138, 146, 0.26);
  border-radius: 8px;
  color: var(--muted);
  background: #eef9fa;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.58;
}

.hidden {
  display: none;
}

.store-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: 34px;
  align-items: start;
  padding: 72px clamp(18px, 5vw, 64px);
  color: white;
  background: var(--charcoal);
}

.store-band .eyebrow {
  color: var(--gold);
}

.store-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.location-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.location-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  color: white;
  line-height: 1.35;
}

.location-card a:not(.button) {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-actions .button {
  flex: 1 1 100px;
  min-height: 40px;
  padding: 10px 12px;
}

.deals-section {
  background: white;
}

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

.remote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.remote-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.08);
}

.remote-card p {
  color: var(--muted);
  line-height: 1.58;
}

.remote-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(0, 138, 146, 0.28);
  border-radius: 8px;
  background: white;
}

.remote-cta strong,
.remote-cta span {
  display: block;
}

.remote-cta strong {
  font-size: 20px;
}

.remote-cta span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.lead-page {
  background: var(--soft);
}

.qualify-page {
  background: var(--soft);
}

.remote-lead-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  min-height: calc(100vh - 91px);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.remote-lead-hero > div:first-child {
  padding-top: 34px;
}

.remote-lead-hero h1 {
  color: var(--ink);
}

.remote-lead-hero > div:first-child > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.check-list.compact {
  margin-top: 28px;
}

.remote-lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

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

.qualify-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  min-height: calc(100vh - 91px);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.qualify-copy {
  padding-top: 28px;
}

.qualify-copy h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 88px);
}

.qualify-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.selected-offer {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.selected-offer span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.selected-offer strong {
  color: var(--ink);
  font-size: clamp(25px, 3.5vw, 36px);
  line-height: 1.15;
}

.selected-offer p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.mini-store {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(0, 138, 146, 0.28);
  border-radius: 8px;
  color: var(--charcoal);
  background: #eef9fa;
  font-weight: 850;
  line-height: 1.5;
}

.mini-store strong,
.mini-store span,
.mini-store a {
  display: block;
}

.mini-store a {
  color: var(--teal);
  font-weight: 950;
  text-decoration: none;
}

.submission-next {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(8, 125, 98, 0.28);
  border-radius: 8px;
  background: #eefaf6;
}

.submission-next strong,
.submission-next span {
  display: block;
}

.submission-next strong {
  color: var(--success);
  font-size: 17px;
  line-height: 1.35;
}

.submission-next span {
  color: var(--muted);
  line-height: 1.5;
}

.qualify-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.store-call-section {
  padding: 0 clamp(18px, 5vw, 64px) 72px;
}

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

.store-call-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.store-call-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.store-call-card strong {
  line-height: 1.35;
}

.store-call-card a:not(.button) {
  color: var(--teal);
  font-weight: 950;
  text-decoration: none;
}

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

.deal-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(23, 33, 43, 0.12);
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--red);
}

.deal-internet::before {
  background: var(--teal);
}

.deal-plan::before {
  background: var(--teal);
}

.deal-internet .deal-price {
  background: #06273a;
}

.deal-byo .deal-price {
  background: var(--deep-red);
}

.deal-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.deal-kicker,
.deal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.deal-kicker {
  color: var(--red);
  background: #fff0f1;
}

.deal-internet .deal-kicker {
  color: var(--teal);
  background: #eef9fa;
}

.deal-plan .deal-kicker {
  color: var(--teal);
  background: #eef9fa;
}

.deal-badge {
  color: var(--ink);
  background: #eef2f6;
}

.deal-card h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.06;
}

.deal-subtitle,
.deal-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.deal-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  padding: 18px;
  border-radius: 8px;
  color: white;
  background: var(--charcoal);
}

.deal-price span {
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 950;
  line-height: 0.95;
}

.deal-price small {
  font-size: 17px;
  font-weight: 900;
}

.deal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.deal-list li {
  position: relative;
  min-height: 42px;
  padding-left: 26px;
  color: var(--charcoal);
  font-weight: 850;
  line-height: 1.35;
}

.deal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
}

.deal-card .button {
  margin-top: auto;
  width: 100%;
}

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

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

.review-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.review-card-muted {
  border-top-color: var(--charcoal);
}

.review-topline {
  display: grid;
  gap: 8px;
}

.review-topline span {
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

.review-topline strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.review-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-card li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal);
  font-weight: 850;
  line-height: 1.35;
}

.review-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.review-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

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

.promo-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.08);
}

.promo-card p {
  color: var(--muted);
  line-height: 1.55;
}

.promo-card a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.accent-teal {
  border-top-color: var(--teal);
}

.accent-teal a {
  color: var(--teal);
}

.accent-ink {
  border-top-color: var(--charcoal);
}

.accent-ink a {
  color: var(--charcoal);
}

.faq-section {
  background: white;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.06);
}

.faq-item summary {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: #eef2f6;
  font-size: 12px;
  font-weight: 900;
}

.fine-print {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  background: var(--soft);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
}

.footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: #111820;
  font-size: 13px;
  line-height: 1.5;
}

.footer p {
  margin: 0 0 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.lead-nudge {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  width: min(410px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(0, 138, 146, 0.24);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 50px rgba(23, 33, 43, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lead-nudge[hidden] {
  display: none;
}

.lead-nudge.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lead-nudge-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: white;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lead-nudge-kicker {
  display: inline-flex;
  margin: 0 42px 10px 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: #eef9fa;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.lead-nudge strong {
  display: block;
  margin-bottom: 8px;
  padding-right: 28px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.lead-nudge p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.lead-nudge-actions {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 10px;
}

.lead-nudge-actions .button {
  min-height: 46px;
  padding: 11px 12px;
  font-size: 14px;
  text-align: center;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  .deal-grid,
  .review-grid,
  .promo-grid,
  .store-call-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .trust-strip,
  .brand-info-layout,
  .hero,
  .bill-layout,
  .store-band,
  .contact-section,
  .remote-lead-hero,
  .qualify-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    top: auto;
    left: 0;
    width: 100%;
    height: 44%;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-brand-stage {
    justify-self: stretch;
    width: min(620px, 100%);
  }

  .remote-lead-hero,
  .qualify-hero {
    min-height: auto;
  }

  .result-panel {
    position: static;
  }

  .promo-grid,
  .review-grid,
  .remote-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 44px 18px 56px;
  }

  .hero-content {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

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

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-logo-panel {
    padding: 14px;
  }

  .hero-logo-panel img {
    width: 58px;
    height: 58px;
  }

  .hero-logo-panel strong {
    font-size: 16px;
  }

  .hero-main-offer {
    padding: 20px;
  }

  .hero-main-offer strong {
    font-size: clamp(36px, 13vw, 52px);
  }

  .hero-offer-row {
    gap: 10px;
  }

  .hero-offer-row article {
    padding: 14px;
  }

  .hero-offer-row strong {
    font-size: 34px;
  }

  .hero-device-scene {
    min-height: 216px;
  }

  .hero-phone {
    width: 96px;
    height: 146px;
  }

  .hero-phone-back {
    right: 108px;
  }

  .hero-phone-front {
    right: 26px;
  }

  .hero-sim-row {
    right: 156px;
  }

  .hero-sim-row span {
    min-width: 70px;
    min-height: 32px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .nav {
    gap: 8px 12px;
    font-size: 13px;
  }

  body:has(.mobile-sticky-cta) {
    padding-bottom: 86px;
  }

  .trust-strip,
  .bill-grid,
  .lead-fields,
  .checks,
  .store-grid,
  .contact-form,
  .form-grid,
  .store-call-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .store-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .bill-card,
  .result-panel,
  .contact-form,
  .remote-lead-form,
  .qualify-form {
    padding: 20px;
  }

  .qualify-hero {
    padding-top: 42px;
  }

  .qualify-copy {
    padding-top: 0;
  }

  .qualify-copy h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .qualify-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .deal-card {
    min-height: 0;
  }

  .deal-list {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(23, 33, 43, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta .button {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 13px;
    text-align: center;
  }

  .mobile-sticky-cta .button.secondary {
    border-color: rgba(0, 138, 146, 0.28);
    color: var(--teal);
  }

  .lead-nudge {
    right: 12px;
    bottom: 98px;
    left: 12px;
    width: auto;
    padding: 18px;
  }

  .lead-nudge strong {
    font-size: 20px;
  }

  .lead-nudge-actions {
    grid-template-columns: 1fr;
  }
}
