:root {
  --ink: #14213d;
  --muted: #566171;
  --line: #dce3ee;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --navy: #101828;
  --red: #d62828;
  --red-dark: #a4161a;
  --teal: #0f766e;
  --amber: #f6bd60;
  --shadow: 0 22px 60px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 42%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 227, 238, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.nav-call {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  background: var(--red);
  color: white !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 44px;
}

.hero::before {
  content: "";
  position: absolute;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0.9rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  color: var(--navy);
  font-size: 1.15rem;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1rem;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-cta {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 30px rgba(214, 40, 40, 0.26);
}

.primary-cta:hover,
.nav-call:hover,
.sticky-call:hover {
  background: var(--red-dark);
}

.secondary-cta {
  border: 1px solid var(--line);
  color: var(--navy);
  background: white;
}

.trust-note {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-media {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.photo-card {
  padding: 0;
  overflow: hidden;
  background: white;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.16);
}

.photo-badge strong,
.photo-badge span,
.hero-proof span {
  display: block;
}

.photo-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-proof span {
  min-height: 54px;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.quick-strip div {
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-strip div:last-child {
  border-right: 0;
}

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

.quick-strip span {
  color: #cbd5e1;
  font-size: 0.94rem;
}

.ready-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
  align-items: center;
  border: 1px solid #b7eee4;
  border-radius: 8px;
  background: #effdfa;
}

.ready-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.ready-strip ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.ready-strip li {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 800;
}

.activation-card {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.activation-card h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.activation-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.issue-finder {
  padding-bottom: 28px;
}

.issue-finder .section-heading p:last-child {
  color: var(--muted);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.issue-grid button {
  min-height: 84px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.issue-grid button:hover,
.issue-grid button.is-active {
  border-color: var(--teal);
  background: #effdfa;
}

.issue-result {
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #b7eee4;
  border-radius: 8px;
  background: #effdfa;
}

.issue-result span {
  color: var(--muted);
}

.issue-result a {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  border-radius: 7px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.support-options {
  padding-top: 34px;
}

.support-options .section-heading p:last-child,
.device-help .section-heading p:last-child {
  color: var(--muted);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.option-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(16, 24, 40, 0.07);
}

.option-grid .featured-option {
  border-color: rgba(214, 40, 40, 0.45);
  background: #fff8f8;
}

.option-label {
  width: max-content;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #e9fbf8;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-grid p,
.option-grid li,
.device-grid p {
  color: var(--muted);
}

.option-grid ul {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
}

.option-grid a {
  margin-top: auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--red);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.device-help {
  padding-top: 24px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.device-grid article {
  min-height: 180px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.08), transparent 55%),
    white;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
}

.device-grid span {
  display: inline-grid;
  min-width: 48px;
  height: 34px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 7px;
  background: var(--navy);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}

.premium-support {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding-top: 42px;
}

.premium-image-stack {
  position: relative;
  min-height: 520px;
}

.premium-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.premium-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-photo-large {
  position: absolute;
  inset: 0 92px 72px 0;
}

.premium-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 58%);
  aspect-ratio: 1 / 1;
  border: 6px solid white;
}

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

.premium-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0;
}

.premium-points div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.premium-points strong,
.premium-points span {
  display: block;
}

.premium-points strong {
  color: var(--navy);
}

.premium-points span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.service-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.trust-grid div,
.faq-list details,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(16, 24, 40, 0.07);
}

.service-card {
  padding: 1.25rem;
}

.service-card p,
.trust-grid p,
.split p,
.process-copy p,
.contact-section p,
.footer p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #e9fbf8;
  color: var(--teal);
  font-weight: 900;
}

.callout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 8px;
  background: #fff7e8;
  border: 1px solid #f8dba5;
}

.callout h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.conversion-section {
  padding-bottom: 32px;
}

.conversion-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.conversion-grid article,
.testimonial-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(16, 24, 40, 0.07);
}

.conversion-grid strong,
.conversion-grid span {
  display: block;
}

.conversion-grid strong {
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.conversion-grid span,
.testimonial-grid p {
  color: var(--muted);
}

.split,
.process-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.process-section {
  position: relative;
  padding: 76px 0;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 32px -18px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), transparent 44%),
    #f8fbff;
}

.process-copy {
  position: sticky;
  top: 104px;
}

.process-copy h2 {
  max-width: 560px;
}

.process-cta {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

.process-cta .primary-cta {
  width: max-content;
}

.process-cta span {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.steps li {
  position: relative;
  min-height: 132px;
  padding: 1.35rem 1.35rem 1.35rem 6rem;
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
}

.steps li::after {
  content: "";
  position: absolute;
  left: 2.65rem;
  top: 4.4rem;
  bottom: -1rem;
  width: 2px;
  background: #b7eee4;
}

.steps li:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  left: 1.4rem;
  top: 1.3rem;
  width: 50px;
  height: 50px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white !important;
  font-size: 0.88rem;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: var(--muted);
}

.steps strong {
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 1.12rem;
}

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

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

.trust-grid div {
  padding: 1.25rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.testimonials {
  padding-top: 24px;
}

.testimonial-grid p {
  font-size: 1.05rem;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.contact-section h2,
.contact-section .eyebrow {
  color: white;
}

.contact-section p {
  color: #d8dee9;
}

.contact-panel {
  padding: 1.4rem;
  background: white;
  color: var(--ink);
}

.phone-large {
  display: block;
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-decoration: none;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 96px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 12;
  transform: translateX(-50%);
  width: min(460px, calc(100% - 32px));
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 24, 40, 0.66);
}

.modal-backdrop[hidden] {
  display: none;
}

.activation-modal {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 8px;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.activation-modal h2 {
  max-width: 780px;
  margin-bottom: 0.75rem;
}

.modal-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.modal-call-panel {
  margin: 24px 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.modal-call-panel strong,
.modal-call-panel span {
  display: block;
}

.modal-call-panel span,
.modal-disclaimer {
  color: var(--muted);
}

.modal-call-panel a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0.8rem 1.1rem;
  background: var(--navy);
  color: white;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.modal-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.modal-steps article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.modal-steps strong,
.modal-steps span {
  display: block;
}

.modal-steps span {
  margin-top: 0.5rem;
  color: var(--muted);
}

.modal-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.policy-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 110px;
}

.policy-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.policy-page section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 1rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
  }

  .nav-call {
    text-align: center;
  }

  .hero,
  .split,
  .process-section,
  .premium-support,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .premium-image-stack {
    min-height: 420px;
  }

  .process-copy {
    position: static;
  }

  .hero {
    padding-top: 42px;
  }

  .service-grid,
  .trust-grid,
  .quick-strip,
  .ready-strip,
  .issue-grid,
  .option-grid,
  .device-grid,
  .conversion-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ready-strip ul {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .callout,
  .activation-card,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-call-panel,
  .modal-steps,
  .issue-result {
    grid-template-columns: 1fr;
  }

  .modal-call-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .issue-result {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero-actions a,
  .callout a,
  .activation-card button,
  .process-cta .primary-cta {
    width: 100%;
  }

  .hero-media {
    padding: 12px;
  }

  .section {
    padding: 56px 0;
  }

  .callout,
  .activation-card,
  .contact-section {
    padding: 24px;
  }

  .activation-modal {
    padding-top: 66px;
  }

  .premium-image-stack {
    min-height: auto;
  }

  .premium-photo-large,
  .premium-photo-small {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .premium-photo-small {
    margin-top: 1rem;
    border-width: 1px;
  }

  .steps li {
    min-height: auto;
    padding: 1.2rem 1.1rem 1.2rem 4.8rem;
  }

  .step-number {
    left: 1rem;
    width: 42px;
    height: 42px;
  }

  .steps li::after {
    left: 2.28rem;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
