/* ==========================================================================
 * Hypertronic Homepage v2
 * File: home-v2.css
 * ========================================================================== */

:root {
  --ink: #0f172a;
  --ink-soft: #25324a;
  --muted: #64748b;
  --line: #dce5f1;
  --soft: #f6f9fd;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eaf2ff;
  --green-soft: #ecfdf3;
  --white: #ffffff;
  --dark: #0b1220;
  --dark-soft: #111c31;
  --shadow:
    0 28px 80px rgba(15, 23, 42, 0.12);
  --shadow-soft:
    0 16px 50px rgba(15, 23, 42, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 229, 241, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.07);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #344258;
  font-size: 0.88rem;
  font-weight: 750;
}

.primary-navigation > a:not(.button) {
  transition: color 0.15s ease;
}

.primary-navigation > a:not(.button):hover {
  color: var(--blue);
}

.nav-account-link {
  margin-left: 8px;
}

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

.mobile-menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 0.82rem;
}

.button-large {
  min-height: 54px;
  padding: 0 26px;
  font-size: 0.94rem;
}

.button-primary {
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #2f6bed,
      #1f56d8
    );
  box-shadow:
    0 12px 30px rgba(37, 99, 235, 0.23);
}

.button-primary:hover {
  background:
    linear-gradient(
      135deg,
      #2862df,
      #194fcf
    );
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
}

.button-light {
  color: var(--dark);
  background: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
  background:
    linear-gradient(
      180deg,
      #f7faff 0%,
      #ffffff 100%
    );
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    radial-gradient(
      circle at center,
      rgba(37, 99, 235, 0.2) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 74%
    );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: -230px;
  right: -180px;
  width: 540px;
  height: 540px;
  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.15),
      transparent 68%
    );
}

.hero-glow-two {
  bottom: -220px;
  left: -220px;
  width: 480px;
  height: 480px;
  background:
    radial-gradient(
      circle,
      rgba(255, 107, 44, 0.09),
      transparent 68%
    );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  min-height: 34px;
  border: 1px solid #cfe0fb;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.82);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow:
    0 0 0 5px rgba(34, 197, 94, 0.12);
}

.hero-content h1 {
  max-width: 700px;
  margin: 24px 0 22px;
  font-size: clamp(3.3rem, 6.7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.058em;
}

.hero-content h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: #52627a;
  font-size: 1.09rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: grid;
  gap: 5px;
}

.trust-row strong {
  font-size: 0.84rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-product {
  position: relative;
  min-height: 520px;
}

.product-window {
  position: absolute;
  inset: 32px 10px 20px 36px;
  overflow: hidden;
  border: 1px solid #dbe5f2;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.product-window-top {
  display: grid;
  grid-template-columns:
    1fr auto 1fr;
  align-items: center;
  height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.product-dots {
  display: flex;
  gap: 6px;
}

.product-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.product-dots span:first-child {
  background: #fb7185;
}

.product-dots span:nth-child(2) {
  background: #fbbf24;
}

.product-dots span:nth-child(3) {
  background: #4ade80;
}

.product-window-label {
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 800;
}

.live-status {
  justify-self: end;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 5px 9px;
  color: #166534;
  background: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-card {
  margin: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: var(--white);
}

.product-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card-heading div {
  display: grid;
  gap: 5px;
}

.product-card-heading span,
.route-point span,
.engineer-row span,
.mini-metric span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.product-card-heading strong {
  font-size: 1rem;
}

.status-chip {
  border-radius: 999px;
  padding: 7px 10px;
  color: #166534 !important;
  background: var(--green-soft);
  font-size: 0.66rem !important;
  font-weight: 900 !important;
}

.request-route {
  display: grid;
  grid-template-columns:
    auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 17px;
  border-radius: 15px;
  background: var(--soft);
}

.route-point {
  display: grid;
  gap: 4px;
}

.route-point strong {
  font-size: 0.8rem;
}

.route-line {
  height: 2px;
  border-radius: 2px;
  background: #cbd5e1;
}

.engineer-row {
  display: grid;
  grid-template-columns:
    44px 1fr 34px;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid #bfdbfe;
  border-radius: 15px;
  background: #eff6ff;
}

.engineer-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.engineer-row > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.engineer-row strong {
  font-size: 0.82rem;
}

.engineer-check {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #166534;
  background: #dcfce7;
  font-weight: 900;
}

.request-progress {
  display: grid;
  grid-template-columns:
    auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.progress-item {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
}

.progress-item span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
}

.progress-item strong {
  max-width: 74px;
  font-size: 0.62rem;
  text-align: center;
}

.progress-item.complete {
  color: var(--ink);
}

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

.progress-bar {
  height: 2px;
  background: #dbe3ef;
}

.progress-bar.active {
  background: var(--blue);
}

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

.mini-metric {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px;
  background: var(--white);
}

.mini-metric strong {
  font-size: 0.78rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  border: 1px solid #d9e4f2;
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.floating-card-top {
  top: 0;
  right: -22px;
}

.floating-card-bottom {
  bottom: 0;
  left: -8px;
}

.floating-card > div {
  display: grid;
  gap: 3px;
}

.floating-card strong {
  font-size: 0.76rem;
}

.floating-card span:last-child {
  color: var(--muted);
  font-size: 0.66rem;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.69rem;
  font-weight: 900;
}

.signal-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns:
    1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 112px;
}

.signal-grid > div:not(.signal-separator) {
  display: grid;
  gap: 7px;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-grid strong {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.signal-separator {
  width: 1px;
  height: 44px;
  background: var(--line);
}

.section {
  padding: 110px 0;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(37, 99, 235, 0.26),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--dark),
      var(--dark-soft)
    );
}

.section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.workflow-copy h2,
.pricing-copy h2,
.control-copy h2,
.final-cta h2 {
  margin: 13px 0 0;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.section-heading p,
.workflow-copy p,
.pricing-copy p,
.control-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 25px;
  background: var(--white);
  box-shadow:
    0 12px 38px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08);
}

.service-number,
.control-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 34px 0 10px;
  font-size: 1.16rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.workflow-layout,
.pricing-layout,
.control-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);
  gap: 90px;
}

.workflow-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.workflow-copy p,
.pricing-copy p,
.control-copy p {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--blue);
  font-weight: 900;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-step {
  display: grid;
  grid-template-columns:
    50px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 23px;
  background: var(--white);
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.workflow-step h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

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

.coverage-card {
  position: relative;
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.coverage-top {
  display: grid;
  grid-template-columns:
    56px 1fr auto;
  gap: 14px;
  align-items: center;
}

.country-flag {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  font-size: 1.55rem;
}

.coverage-top > div {
  display: grid;
  gap: 3px;
}

.coverage-top > div span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-top h3 {
  margin: 0;
  font-size: 1.45rem;
}

.coverage-status {
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #166534;
  background: var(--green-soft);
  font-size: 0.66rem;
  font-weight: 900;
}

.coverage-card > p {
  margin: 30px 0 26px;
  color: var(--muted);
  line-height: 1.75;
}

.operator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.coverage-card small {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--muted);
  font-size: 0.72rem;
}

.section-kicker-light {
  color: #93c5fd;
}

.pricing-layout {
  align-items: center;
}

.pricing-copy p {
  color: #aab7cb;
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.2);
}

.pricing-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pricing-main > span {
  color: #c7d2e3;
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.price strong {
  font-size: 2.65rem;
  letter-spacing: -0.045em;
}

.price small {
  color: #aab7cb;
}

.pricing-details {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 20px;
}

.pricing-details div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-details span {
  color: #9facbf;
  font-size: 0.68rem;
  line-height: 1.4;
}

.pricing-details strong {
  font-size: 0.85rem;
}

.pricing-card > p {
  margin: 0 0 23px;
  color: #b2bed0;
  font-size: 0.79rem;
  line-height: 1.65;
}

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

.control-features article {
  display: grid;
  grid-template-columns:
    44px 1fr;
  gap: 14px;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.control-features h3 {
  margin: 4px 0 8px;
  font-size: 0.95rem;
}

.control-features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.final-cta-section {
  padding: 0 0 110px;
}

.final-cta {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  gap: 60px;
  align-items: center;
  border: 1px solid #bfd2f0;
  border-radius: 30px;
  padding: 48px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(37, 99, 235, 0.14),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #f7faff,
      #ffffff
    );
  box-shadow: var(--shadow-soft);
}

.final-cta p {
  max-width: 650px;
  margin-top: 18px;
}

.final-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.site-footer {
  color: #c2ccdc;
  background: var(--dark);
}

.footer-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);
  gap: 80px;
  padding: 66px 0 48px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #93a2b8;
  font-size: 0.85rem;
  line-height: 1.65;
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.77rem;
}

.footer-links a,
.footer-links span {
  color: #94a3b8;
  font-size: 0.77rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0 28px;
  color: #718096;
  font-size: 0.7rem;
}

@media (max-width: 1050px) {
  .primary-navigation {
    gap: 18px;
  }

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

  .hero-product {
    width: min(720px, 100%);
    margin: 10px auto 0;
  }

  .section-heading,
  .workflow-layout,
  .pricing-layout,
  .control-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .workflow-copy {
    position: static;
  }
}

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

  .primary-navigation {
    position: fixed;
    z-index: 99;
    inset: 79px 16px auto;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
  }

  .primary-navigation.open {
    display: grid;
    gap: 4px;
  }

  .primary-navigation a {
    display: flex;
    min-height: 46px;
    align-items: center;
    border-radius: 12px;
    padding: 0 13px;
  }

  .primary-navigation .button {
    margin-top: 5px;
  }

  .nav-account-link {
    margin-left: 0;
  }

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

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

  .signal-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .signal-separator {
    width: 100%;
    height: 1px;
  }

  .final-cta,
  .footer-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 650px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy span {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .primary-navigation {
    inset: 69px 12px auto;
  }

  .hero-section {
    padding: 62px 0 70px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions,
  .final-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .final-cta-actions .button {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-product {
    min-height: 480px;
  }

  .product-window {
    inset: 28px 0 20px;
  }

  .floating-card {
    display: none;
  }

  .product-card {
    margin: 15px;
    padding: 15px;
  }

  .product-card-heading {
    display: grid;
  }

  .status-chip {
    justify-self: start;
  }

  .request-route {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 2px;
    height: 12px;
    margin-left: 5px;
  }

  .progress-item strong {
    display: none;
  }

  .product-metrics {
    margin: 0 15px;
  }

  .mini-metric {
    padding: 10px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .service-grid,
  .control-features {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    min-height: 410px;
    padding: 23px;
  }

  .coverage-top {
    grid-template-columns:
      50px 1fr;
  }

  .coverage-status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .coverage-card small {
    right: 23px;
    bottom: 22px;
    left: 23px;
  }

  .pricing-card {
    padding: 22px;
  }

  .pricing-main {
    display: grid;
  }

  .price {
    justify-items: start;
  }

  .pricing-details {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 30px 22px;
  }

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

  .footer-bottom {
    display: grid;
  }
}
