:root {
  --navy-950: #031a35;
  --navy-900: #062b55;
  --navy-800: #0a3a6f;
  --blue-600: #008fce;
  --blue-500: #10a8e8;
  --blue-100: #e7f7fd;
  --lime-500: #86c61a;
  --lime-400: #9bdd2c;
  --ink: #10243a;
  --muted: #5b6c7d;
  --line: #dce8f0;
  --surface: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 32, 63, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 100;
  background: linear-gradient(90deg, var(--blue-500), var(--lime-500));
}

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

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

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

h1,
h2,
h3 {
  font-family: "Outfit", "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7.4vw, 6.6rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
}

.skip-link:focus {
  top: 14px;
}

.announcement {
  color: #dff5ff;
  background: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
}

.announcement a {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(218, 231, 240, 0.8);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
  width: 248px;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 26px;
  color: #34495e;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(16, 168, 232, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.9rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #057ec0);
  box-shadow: 0 12px 30px rgba(0, 143, 206, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 35px rgba(0, 143, 206, 0.34);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: #b9ccda;
}

.button-outline-light {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-lime {
  width: 100%;
  margin-top: auto;
  color: var(--navy-950);
  background: var(--lime-400);
  box-shadow: 0 12px 30px rgba(134, 198, 26, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 86px;
  background:
    radial-gradient(circle at 4% 12%, rgba(16, 168, 232, 0.13), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 82%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -300px;
  bottom: -310px;
  border: 80px solid rgba(134, 198, 26, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--lime-500);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #3e5367;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  background: #e9f8d5;
  border-radius: 50%;
  font-size: 0.78rem;
}

.hero-visual,
.test-visual {
  margin: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 8px solid var(--white);
  border-radius: 32px 32px 90px 32px;
  box-shadow: var(--shadow);
}

.image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: min(290px, calc(100% - 36px));
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(3, 26, 53, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  line-height: 1.35;
}

.badge-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 14px 14px 14px 4px;
  font-family: "Outfit", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

figcaption {
  margin-top: 12px;
  color: #728293;
  font-size: 0.76rem;
  text-align: center;
}

.symptom-strip {
  color: var(--white);
  background: var(--navy-900);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.symptom-grid span {
  position: relative;
  padding: 25px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.symptom-grid span + span::before {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(82px, 10vw, 136px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

.concerns {
  background: var(--surface);
}

.concern-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.concern-photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 44px rgba(3, 32, 63, 0.07);
}

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

.concern-card-copy {
  position: relative;
  min-height: 250px;
  padding: 24px;
}

.concern-card-copy > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.concern-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.solution-card {
  min-height: 290px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid #e0ebf2;
  border-radius: var(--radius-md);
}

.solution-card:nth-child(2) {
  margin-top: 24px;
}

.solution-number {
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

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

.ro-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  margin-top: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 96% 4%, rgba(16, 168, 232, 0.3), transparent 38%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.ro-product {
  position: relative;
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 62px 34px 28px;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.ro-product img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.ro-product figcaption {
  color: #617487;
}

.product-chip {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  color: var(--navy-900);
  background: var(--blue-100);
  border: 1px solid #cdeaf6;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ro-showcase-copy {
  display: flex;
  min-width: 0;
  padding: clamp(38px, 6vw, 72px);
  flex-direction: column;
  justify-content: center;
}

.ro-showcase-copy h3 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.ro-showcase-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #c5d7e5;
}

.ro-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 22px;
}

.ro-spec-grid span {
  display: block;
  padding: 14px 12px;
  color: #bdd0df;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.35;
}

.ro-spec-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--lime-400);
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
}

.ro-showcase-copy .ro-showcase-note {
  margin-bottom: 0;
  color: #8fa8bb;
  font-size: 0.76rem;
}

.appliance-protection {
  background:
    radial-gradient(circle at 90% 10%, rgba(134, 198, 26, 0.12), transparent 26%),
    var(--blue-100);
}

.appliance-grid {
  display: block;
}

.appliance-copy {
  max-width: 940px;
}

.appliance-copy h2 {
  max-width: 870px;
}

.appliance-lede {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.04rem;
}

.appliance-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 850px;
  margin: 30px 0 24px;
}

.appliance-points article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 143, 206, 0.16);
  border-radius: 16px;
}

.appliance-points span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.appliance-points h3 {
  font-size: 1.16rem;
}

.appliance-points p,
.appliance-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.appliance-points p {
  margin-bottom: 0;
}

.appliance-note {
  max-width: 790px;
  padding-left: 14px;
  border-left: 3px solid var(--lime-500);
}

.appliance-copy .button {
  margin-top: 8px;
}

.packages {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 4%, rgba(16, 168, 232, 0.2), transparent 28%),
    var(--navy-950);
}

.packages::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -250px;
  bottom: -170px;
  border: 65px solid rgba(134, 198, 26, 0.08);
  border-radius: 50%;
}

.packages .shell {
  position: relative;
  z-index: 1;
}

.section-heading-light > p:last-child {
  color: #afc4d6;
}

.eyebrow-bright {
  color: #75d9ff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 515px;
  flex-direction: column;
  padding: 32px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
}

.package-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.package-featured {
  background: linear-gradient(180deg, rgba(7, 91, 145, 0.98), rgba(6, 43, 85, 0.98));
  border-color: rgba(117, 217, 255, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(-12px);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 11px;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-kicker {
  margin-bottom: 10px;
  color: #9fdfff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 26px;
  font-family: "Outfit", sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.price span {
  margin-right: 2px;
  color: var(--lime-400);
  font-size: 1.35rem;
  vertical-align: top;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  color: #d5e4ef;
  font-size: 0.9rem;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-400);
  font-weight: 800;
}

.pricing-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: #93abc0;
  font-size: 0.78rem;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
}

.steps {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step > span {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.test-visual img {
  width: 100%;
  height: auto;
  border-radius: 110px 28px 28px 28px;
  box-shadow: var(--shadow);
}

.equipment {
  padding-top: 0;
}

.equipment-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
  padding: clamp(34px, 6vw, 64px);
  background:
    linear-gradient(115deg, rgba(231, 247, 253, 0.96), rgba(245, 251, 255, 0.96));
  border: 1px solid #d7e9f3;
  border-radius: var(--radius-lg);
}

.equipment-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.equipment-panel > p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-area {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.service-grid > div:first-child > p:last-child {
  max-width: 660px;
  color: var(--muted);
}

.service-card {
  padding: clamp(30px, 5vw, 50px);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0%, rgba(16, 168, 232, 0.28), transparent 40%),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-card-label {
  margin-bottom: 12px;
  color: #8cddfa;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.service-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.phone-link {
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.email-link {
  color: #bcd5e7;
  font-size: 0.9rem;
}

footer {
  padding: 58px 0 92px;
  color: #afc3d5;
  background: var(--navy-950);
}

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

.footer-logo {
  width: 260px;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: var(--white);
  border-radius: 10px;
}

.footer-grid p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 0.88rem;
}

.footer-contact a {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #748da2;
  font-size: 0.7rem;
}

.footer-legal {
  display: flex;
  max-width: 660px;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  text-align: right;
}

.footer-legal > a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal > span {
  max-width: 580px;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--surface);
}

.legal-content {
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(3, 32, 63, 0.08);
}

.legal-content h1 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

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

.legal-content a {
  color: var(--blue-600);
  font-weight: 700;
}

.legal-updated {
  margin-bottom: 34px;
  font-size: 0.85rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

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

  .hero-grid {
    gap: 58px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(720px, 100%);
  }

  .image-frame {
    aspect-ratio: 4 / 3;
  }

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

  .ro-showcase {
    grid-template-columns: 1fr;
  }

  .ro-product img {
    max-height: 380px;
  }

  .concern-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concern-card-copy {
    min-height: 190px;
  }

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

  .solution-card:nth-child(2) {
    margin-top: 0;
  }

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

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 690px;
    margin-inline: auto;
  }

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

  .package-featured {
    transform: none;
  }

  .test-visual {
    width: min(620px, 100%);
  }

  .equipment-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  .announcement {
    display: none;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    width: 205px;
  }

  .header-cta {
    display: none;
  }

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

  h1 {
    font-size: clamp(3.15rem, 17vw, 4.9rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .image-frame {
    border-width: 5px;
    border-radius: 22px 22px 58px 22px;
    aspect-ratio: 4 / 3;
  }

  .image-badge {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .symptom-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 5px;
  }

  .symptom-grid span {
    padding: 17px 10px;
    font-size: 0.76rem;
  }

  .symptom-grid span + span::before {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .solution-card,
  .package-card {
    padding: 26px;
  }

  .ro-showcase {
    margin-top: 32px;
    border-radius: 22px;
  }

  .ro-product {
    padding: 58px 20px 24px;
  }

  .product-chip {
    top: 18px;
    left: 18px;
  }

  .ro-showcase-copy {
    padding: 34px 24px 38px;
  }

  .ro-spec-grid {
    gap: 7px;
  }

  .ro-spec-grid span {
    padding: 12px 9px;
  }

  .concern-photo-grid,
  .appliance-points {
    grid-template-columns: 1fr;
  }

  .concern-card-copy {
    min-height: 0;
    padding: 23px 24px 26px;
  }

  .package-card {
    border-radius: 22px;
  }

  .price {
    font-size: 2.75rem;
  }

  .test-visual img {
    border-radius: 72px 22px 22px 22px;
  }

  .equipment {
    padding-top: 0;
  }

  .equipment-panel {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .service-card {
    border-radius: 22px;
  }

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

  .footer-contact {
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  footer {
    padding-bottom: 112px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    overflow: hidden;
    padding: 5px;
    background: rgba(3, 26, 53, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(3, 26, 53, 0.35);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    color: var(--white);
    border-radius: 13px;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-action-bar a:last-child {
    color: var(--navy-950);
    background: var(--lime-400);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
