:root {
  --navy: #07152f;
  --navy-soft: #0d2145;
  --blue: #2868ff;
  --cyan: #48d5ff;
  --mint: #5be3a4;
  --ink: #101c32;
  --muted: #647087;
  --line: #dce3ee;
  --paper: #f5f8fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue",
    Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 227, 238, 0.82);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 78px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--blue), #1aa8e9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(40, 104, 255, 0.24);
  color: white;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  letter-spacing: -2px;
  transform: skew(-5deg);
  width: 42px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.brand small {
  color: #8792a7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav a {
  color: #49566d;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  background: var(--blue);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 22px;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-nav a.active {
  color: var(--navy);
}

.header-cta {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  padding: 12px 18px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  align-items: center;
  background: #f3f6fb;
  border: 1px solid #dce4ef;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  list-style: none;
  width: 42px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary i {
  background: var(--navy);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 16px;
}

.mobile-nav[open] summary i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav[open] summary i:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] summary i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav nav {
  background: white;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(7, 21, 47, 0.18);
  display: grid;
  min-width: 230px;
  overflow: hidden;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 52px;
}

.mobile-nav nav a {
  border-radius: 10px;
  color: #4d5b70;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 14px;
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible,
.mobile-nav nav a.active {
  background: #edf3ff;
  color: var(--blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(40, 104, 255, 0.28);
  outline-offset: 3px;
}

.hero {
  background:
    radial-gradient(circle at 72% 26%, rgba(72, 213, 255, 0.16), transparent 25%),
    radial-gradient(circle at 85% 82%, rgba(40, 104, 255, 0.18), transparent 30%),
    var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 690px;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) clamp(24px, 7vw, 110px);
  position: relative;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(109, 186, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 186, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  inset: 0;
  mask-image: linear-gradient(to right, transparent 8%, black 62%, transparent);
  position: absolute;
}

.hero::after {
  border: 1px solid rgba(72, 213, 255, 0.12);
  border-radius: 50%;
  content: "";
  height: 600px;
  position: absolute;
  right: -270px;
  top: -260px;
  width: 600px;
}

.hero-copy {
  align-self: center;
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: #3480ff;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow {
  color: #9ddaf1;
}

.status-dot,
.pulse {
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(91, 227, 164, 0.12);
  height: 7px;
  width: 7px;
}

.hero h1 {
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1.02;
  margin: 0;
}

.hero h1 span {
  background: linear-gradient(90deg, white 8%, #a4e8ff 55%, var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: #afbdd1;
  font-size: 17px;
  line-height: 1.85;
  margin: 30px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 34px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  background: var(--mint);
  box-shadow: 0 16px 38px rgba(91, 227, 164, 0.18);
  color: #071d29;
}

.button.primary:hover {
  background: #71edb5;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  gap: 0;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--navy);
}

.button.outline:hover {
  background: #edf3ff;
  border-color: #c9d7f1;
}

.hero-trust {
  color: #90a0b9;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 24px;
  margin-top: 30px;
}

.hero-visual {
  align-self: center;
  height: 500px;
  margin-left: 28px;
  max-width: 620px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.visual-orbit {
  border: 1px solid rgba(72, 213, 255, 0.16);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 430px;
  left: 35px;
  top: 24px;
  width: 430px;
}

.orbit-two {
  border-color: rgba(91, 227, 164, 0.12);
  height: 310px;
  left: 95px;
  top: 85px;
  width: 310px;
}

.device-card {
  backdrop-filter: blur(18px);
  border: 1px solid rgba(158, 219, 255, 0.2);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  position: absolute;
}

.copier-card {
  background: linear-gradient(150deg, rgba(25, 57, 103, 0.9), rgba(6, 19, 44, 0.94));
  border-radius: 24px;
  height: 388px;
  left: 82px;
  padding: 24px;
  top: 30px;
  transform: rotate(-2deg);
  width: 330px;
}

.device-label {
  display: flex;
  flex-direction: column;
}

.device-label small,
.laptop-card small {
  color: #74a7c7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.device-label strong,
.laptop-card strong {
  font-size: 15px;
  margin-top: 4px;
}

.copier {
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.34));
  margin: 24px auto 18px;
  position: relative;
  width: 190px;
}

.copier-top {
  background: linear-gradient(145deg, #dce6f0, #8394a7);
  border-radius: 9px 9px 4px 4px;
  height: 76px;
  position: relative;
  transform: skewY(-3deg);
}

.paper-slot {
  background: #152439;
  border-radius: 5px;
  height: 9px;
  left: 30px;
  position: absolute;
  top: 20px;
  width: 84px;
}

.screen {
  align-items: center;
  background: #39c6f3;
  border: 3px solid #25384e;
  border-radius: 4px;
  color: rgba(0, 36, 58, 0.6);
  display: flex;
  font-size: 7px;
  height: 31px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: 34px;
  width: 48px;
}

.copier-body {
  background: linear-gradient(100deg, #b4c2d1, #edf3f8 52%, #8293a6);
  border-radius: 3px 3px 8px 8px;
  height: 132px;
  padding: 27px 20px;
}

.copier-body span {
  background: linear-gradient(#596c81, #2e3e52);
  border-radius: 3px;
  display: block;
  height: 9px;
  margin-bottom: 14px;
  position: relative;
}

.copier-body span::after {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 22px;
  position: absolute;
  top: 3px;
  width: 55px;
}

.device-meta {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.device-meta span {
  background: rgba(72, 213, 255, 0.1);
  border: 1px solid rgba(72, 213, 255, 0.18);
  border-radius: 999px;
  color: #8ee8ff;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 10px;
}

.device-meta b {
  color: #afbdd1;
  font-size: 11px;
}

.laptop-card {
  align-items: flex-end;
  background: linear-gradient(145deg, rgba(20, 51, 91, 0.95), rgba(11, 28, 57, 0.98));
  border-radius: 18px;
  bottom: 8px;
  display: flex;
  gap: 18px;
  padding: 18px;
  right: 12px;
  transform: rotate(3deg);
  width: 250px;
}

.laptop {
  width: 116px;
}

.laptop-screen {
  align-items: center;
  background: linear-gradient(140deg, #112949, #1b70a1);
  border: 4px solid #aab8c8;
  border-bottom-width: 6px;
  border-radius: 5px 5px 2px 2px;
  display: flex;
  gap: 7px;
  height: 68px;
  justify-content: center;
}

.laptop-screen i {
  background: #5be3a4;
  border-radius: 2px;
  height: 20px;
  opacity: 0.75;
  width: 13px;
}

.laptop-screen i:nth-child(2) {
  background: #48d5ff;
  height: 33px;
}

.laptop-base {
  background: linear-gradient(#d7e0e8, #8797aa);
  border-radius: 1px 1px 5px 5px;
  height: 8px;
  transform: perspective(80px) rotateX(45deg);
}

.laptop-card > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-bottom: 8px;
}

.availability-badge {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(6, 23, 49, 0.84);
  border: 1px solid rgba(91, 227, 164, 0.2);
  border-radius: 14px;
  display: flex;
  gap: 14px;
  padding: 14px 18px;
  position: absolute;
  right: 6px;
  top: 14px;
}

.availability-badge > div {
  display: flex;
  flex-direction: column;
}

.availability-badge small {
  color: #7790ac;
  font-size: 9px;
}

.availability-badge strong {
  font-size: 12px;
  margin-top: 3px;
}

.proof-strip {
  background: white;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1400px;
  min-height: 112px;
}

.proof-strip > div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: center;
}

.proof-strip > div:last-child {
  border: 0;
}

.proof-strip strong {
  color: var(--navy);
  font-size: 25px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  margin: 0 auto;
  max-width: 1400px;
  padding: 110px clamp(24px, 6.5vw, 100px);
}

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

.section-heading h2,
.solution-intro h2,
.process-copy h2,
.estimate-copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  max-width: 425px;
}

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

.service-card {
  background: #f8faff;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card::before {
  background: var(--accent, var(--cyan));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  box-shadow: 0 24px 60px rgba(18, 40, 74, 0.1);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.blue {
  --accent: #2868ff;
}

.service-card.mint {
  --accent: #35c985;
}

.service-card.violet {
  --accent: #806dff;
}

.service-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.service-topline span {
  color: #b1bbca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-topline b {
  background: white;
  border: 1px solid #dde5ef;
  border-radius: 999px;
  color: #677389;
  font-size: 10px;
  padding: 6px 10px;
}

.service-product {
  aspect-ratio: 3 / 2;
  background: #edf2f8;
  border: 1px solid #e3e9f2;
  border-radius: 14px;
  margin-top: 24px;
  overflow: hidden;
}

.service-product img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
  width: 100%;
}

.service-card:hover .service-product img {
  transform: scale(1.035);
}

.service-card h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 22px 0 12px;
}

.service-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.service-card ul {
  color: #4f5e73;
  display: grid;
  font-size: 12px;
  gap: 9px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.service-card li::before {
  color: var(--accent, #16a9d8);
  content: "—";
  margin-right: 8px;
}

.service-card > a {
  color: #22334e;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
}

.solution-section {
  background: var(--navy);
  color: white;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.78fr 1.22fr;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1400px) / 2 + 100px));
  padding-right: max(24px, calc((100vw - 1400px) / 2 + 100px));
}

.section-kicker.light {
  color: #79dcff;
}

.solution-intro h2,
.estimate-copy h2 {
  color: white;
}

.solution-intro > p:not(.section-kicker),
.estimate-copy > p:not(.section-kicker) {
  color: #9aabc1;
  font-size: 14px;
  line-height: 1.9;
  margin: 25px 0;
  max-width: 460px;
}

.text-link {
  color: var(--mint);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 18px;
  margin-top: 12px;
}

.compare-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
}

.compare-head {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a5bd;
  font-size: 11px;
  padding: 20px 24px;
}

.compare-head strong {
  color: white;
  font-size: 13px;
}

.compare-head i {
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 7px;
  width: 7px;
}

.rent-dot {
  background: var(--mint);
}

.buy-dot {
  background: var(--cyan);
}

.compare-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 78px;
  padding: 0 24px;
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > * {
  align-items: center;
  display: flex;
  margin: 0;
  padding-right: 18px;
}

.compare-row span {
  color: #a5b4c8;
  font-size: 11px;
  font-weight: 800;
}

.compare-row p {
  color: #e2e9f2;
  font-size: 12px;
  line-height: 1.6;
}

.scenario-section {
  padding-bottom: 70px;
}

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

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

.scenario-card {
  background: #edf3fa;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.scenario-card::after {
  border: 1px solid rgba(40, 104, 255, 0.1);
  border-radius: 50%;
  content: "";
  height: 250px;
  position: absolute;
  right: -80px;
  top: -80px;
  width: 250px;
  z-index: 0;
}

.scenario-card.project {
  background: #e9f8f3;
}

.scenario-card.growing {
  background: #eef0ff;
}

.scenario-card > span {
  color: #7b899e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 1;
}

.scenario-card > div {
  position: relative;
  z-index: 1;
}

.scenario-visual {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 80% 20%, rgba(40, 104, 255, 0.12), transparent 46%);
  border: 1px solid rgba(30, 57, 91, 0.08);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  margin: 20px 0 24px;
  min-height: 128px;
  overflow: hidden;
  padding: 18px 20px;
}

.scenario-metric {
  display: grid;
  gap: 4px;
}

.scenario-metric strong {
  color: var(--navy);
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.scenario-metric small {
  color: #68778c;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.equipment-set {
  height: 88px;
  position: relative;
  width: 136px;
}

.equipment-set i {
  display: block;
  position: absolute;
}

.startup .equipment-primary {
  background: #142a4d;
  border: 5px solid white;
  border-radius: 7px;
  box-shadow: 0 10px 20px rgba(17, 37, 69, 0.14);
  height: 54px;
  right: 0;
  top: 7px;
  width: 88px;
}

.startup .equipment-primary::after {
  background: #142a4d;
  border-radius: 2px 2px 6px 6px;
  bottom: -11px;
  content: "";
  height: 7px;
  left: -10px;
  position: absolute;
  width: 98px;
}

.startup .equipment-secondary {
  background: white;
  border-radius: 8px;
  bottom: 2px;
  box-shadow: 0 10px 22px rgba(17, 37, 69, 0.12);
  height: 50px;
  left: 2px;
  width: 44px;
}

.startup .equipment-secondary::after {
  background: #24b9dd;
  border-radius: 2px;
  content: "";
  height: 5px;
  left: 9px;
  position: absolute;
  top: 15px;
  width: 26px;
}

.startup .equipment-accent,
.project .equipment-accent,
.growing .equipment-accent {
  background: #35c985;
  border: 4px solid white;
  border-radius: 50%;
  height: 20px;
  right: -2px;
  top: 0;
  width: 20px;
}

.project .equipment-primary,
.project .equipment-secondary {
  background: #143252;
  border: 4px solid white;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(17, 37, 69, 0.13);
  height: 50px;
  right: 2px;
  top: 27px;
  width: 86px;
}

.project .equipment-primary::after,
.project .equipment-secondary::after {
  background: #143252;
  border-radius: 4px;
  bottom: -9px;
  content: "";
  height: 6px;
  left: -8px;
  position: absolute;
  width: 94px;
}

.project .equipment-secondary {
  opacity: 0.42;
  right: 25px;
  top: 6px;
}

.project .equipment-accent {
  background: #24b9dd;
  left: 1px;
  right: auto;
  top: 49px;
}

.growing .equipment-primary {
  background: white;
  border-radius: 8px;
  bottom: 0;
  box-shadow: 0 10px 22px rgba(17, 37, 69, 0.13);
  height: 78px;
  right: 3px;
  width: 48px;
}

.growing .equipment-primary::before,
.growing .equipment-primary::after {
  background: #536783;
  content: "";
  height: 4px;
  left: 8px;
  position: absolute;
  width: 32px;
}

.growing .equipment-primary::before {
  top: 18px;
}

.growing .equipment-primary::after {
  top: 31px;
}

.growing .equipment-secondary {
  background: #142a4d;
  border: 5px solid white;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(17, 37, 69, 0.13);
  height: 50px;
  left: 2px;
  top: 8px;
  width: 78px;
}

.growing .equipment-secondary::after {
  background: #142a4d;
  bottom: -15px;
  content: "";
  height: 15px;
  left: 34px;
  position: absolute;
  width: 10px;
}

.growing .equipment-accent {
  background: #806dff;
  right: -3px;
  top: -3px;
}

.scenario-card h3 {
  font-size: 28px;
  margin: 0 0 12px;
}

.scenario-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 25px;
}

.scenario-card b {
  border-top: 1px solid rgba(30, 57, 91, 0.12);
  display: block;
  font-size: 12px;
  padding-top: 18px;
}

.process-section {
  align-items: start;
  display: grid;
  gap: 90px;
  grid-template-columns: 0.72fr 1.28fr;
  padding-top: 70px;
}

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

.process-copy > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 24px;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 60px 1fr;
  min-height: 126px;
}

.process-list > li > span {
  color: #2e71ff;
  font-size: 11px;
  font-weight: 900;
}

.process-list h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.process-list p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.estimate-section {
  background:
    radial-gradient(circle at 0 0, rgba(72, 213, 255, 0.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(91, 227, 164, 0.1), transparent 24%),
    var(--navy);
  padding: 100px max(24px, calc((100vw - 1400px) / 2 + 100px));
}

.estimate-shell {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.82fr 1.18fr;
  margin: auto;
  max-width: 1200px;
}

.advisor-note {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 15px;
  margin-top: 38px;
  max-width: 430px;
  padding-top: 24px;
}

.advisor-note > span {
  align-items: center;
  background: rgba(91, 227, 164, 0.12);
  border: 1px solid rgba(91, 227, 164, 0.25);
  border-radius: 50%;
  color: var(--mint);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.advisor-note > div {
  display: flex;
  flex-direction: column;
}

.advisor-note strong {
  color: white;
  font-size: 13px;
}

.advisor-note small {
  color: #7e91aa;
  font-size: 10px;
  margin-top: 5px;
}

.estimator-card {
  background: white;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  overflow: hidden;
}

.estimator-fields {
  display: grid;
  gap: 22px;
  padding: 32px;
}

.estimator-fields label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.estimator-fields label > span {
  color: #4c5b70;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
}

.estimator-fields label > span b {
  color: var(--blue);
}

.estimator-fields select,
.number-input {
  background: #f5f8fc;
  border: 1px solid #dfe6ef;
  border-radius: 10px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.estimator-fields select:focus,
.number-input:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 104, 255, 0.1);
}

.input-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.number-input {
  align-items: center;
  display: flex;
}

.number-input input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 700;
  min-width: 0;
  outline: none;
  width: 100%;
}

.number-input input:disabled,
.estimator-fields input:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.number-input em {
  color: #8c97a9;
  font-size: 11px;
  font-style: normal;
}

input[type="range"] {
  accent-color: var(--blue);
  cursor: pointer;
  width: 100%;
}

.range-labels {
  color: #a4adba;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
}

.estimate-result {
  background: #edf5ff;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.result-label {
  align-items: center;
  color: #61718a;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.08em;
}

.estimate-result h3 {
  font-size: 20px;
  margin: 18px 0 13px;
}

.estimate-result ul {
  color: #586980;
  display: grid;
  font-size: 11px;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.estimate-result li::before {
  color: #1cb879;
  content: "✓";
  margin-right: 7px;
}

.budget {
  border-bottom: 1px solid #d3dfed;
  border-top: 1px solid #d3dfed;
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  padding: 19px 0;
}

.budget span {
  color: #6d7b90;
  font-size: 10px;
}

.budget strong {
  color: var(--blue);
  font-size: 22px;
  margin-top: 5px;
}

.budget i {
  color: #8c9aab;
  font-style: normal;
  margin: 0 4px;
}

.estimate-result button {
  background: var(--navy);
  border: 0;
  border-radius: 9px;
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  min-height: 45px;
  padding: 0 14px;
  transition: background 180ms ease;
}

.estimate-result button:hover {
  background: var(--blue);
}

.estimate-result > small {
  color: #97a2b2;
  font-size: 8px;
  margin-top: 10px;
  text-align: center;
}

footer {
  background: #050f22;
  color: white;
  padding: 70px max(24px, calc((100vw - 1400px) / 2 + 100px)) 26px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  padding-bottom: 54px;
}

.footer-brand .brand-mark {
  background: linear-gradient(145deg, var(--mint), #17aede);
  color: #06172a;
}

.footer-brand strong {
  color: white;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact p {
  color: #7f90aa;
  font-size: 12px;
  line-height: 1.8;
  margin: 4px 0 0;
}

.footer-contact a,
.footer-contact span {
  color: #aeb9c9;
  font-size: 10px;
}

.footer-links {
  display: grid;
  font-size: 11px;
  gap: 13px;
  grid-template-columns: 1fr 1fr;
}

.footer-links a {
  color: #aeb9c9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #5e6c81;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom a {
  color: #7f90aa;
}

.footer-bottom a:hover {
  color: #aeb9c9;
}

.mobile-cta {
  display: none;
}

.page-hero {
  align-items: end;
  background:
    radial-gradient(circle at 78% 20%, rgba(72, 213, 255, 0.16), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(40, 104, 255, 0.2), transparent 28%),
    var(--navy);
  color: white;
  display: grid;
  gap: clamp(50px, 10vw, 160px);
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 420px;
  overflow: hidden;
  padding:
    clamp(78px, 9vw, 120px)
    max(24px, calc((100vw - 1400px) / 2 + 100px));
  position: relative;
}

.page-hero::before {
  background-image:
    linear-gradient(rgba(109, 186, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 186, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, transparent, black 65%, transparent);
  position: absolute;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.065em;
  line-height: 1.08;
  margin: 0;
}

.page-hero > p {
  color: #aebbd0;
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 8px;
  max-width: 470px;
}

.home-overview {
  padding-bottom: 90px;
}

.home-link-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.home-link-card {
  background: #f7f9fd;
  border: 1px solid #e0e7f0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-link-card:hover {
  box-shadow: 0 22px 55px rgba(15, 36, 70, 0.1);
  transform: translateY(-6px);
}

.home-link-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.home-link-card > span {
  color: #8c99ad;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.home-link-card strong {
  font-size: 24px;
  margin-top: 46px;
}

.home-link-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 13px 0;
}

.home-link-card.featured p {
  color: #9cadc3;
}

.home-link-card b {
  color: var(--blue);
  font-size: 11px;
  margin-top: auto;
}

.home-link-card.featured b {
  color: var(--mint);
}

.home-products {
  background: #f7f9fd;
  max-width: 1400px;
}

.home-product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.home-product-card {
  --product-accent: var(--cyan);
  background: white;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.home-product-card.blue {
  --product-accent: var(--blue);
}

.home-product-card.mint {
  --product-accent: #35c985;
}

.home-product-card.violet {
  --product-accent: #806dff;
}

.home-product-card:hover {
  box-shadow: 0 22px 54px rgba(15, 36, 70, 0.1);
  transform: translateY(-6px);
}

.home-product-image {
  aspect-ratio: 3 / 2;
  background: #edf2f8;
  overflow: hidden;
  position: relative;
}

.home-product-image::after {
  background: var(--product-accent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 34%;
}

.home-product-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
  width: 100%;
}

.home-product-card:hover img {
  transform: scale(1.035);
}

.home-product-image > span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 227, 238, 0.9);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 11px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.home-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.home-product-copy small {
  color: #8b98aa;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.home-product-copy h3 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 16px 0 10px;
}

.home-product-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.home-product-copy b {
  color: #263853;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  margin-top: auto;
}

.home-product-copy i {
  color: var(--product-accent);
  font-style: normal;
}

.home-choice {
  background:
    radial-gradient(circle at 12% 12%, rgba(72, 213, 255, 0.12), transparent 25%),
    var(--navy);
  color: white;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.72fr 1.28fr;
  margin: 0 auto;
  max-width: 1400px;
  padding: 100px clamp(24px, 6.5vw, 100px);
}

.home-choice-copy {
  align-self: center;
}

.home-choice-copy h2 {
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.15;
  margin: 0;
}

.home-choice-copy > p:not(.section-kicker) {
  color: #9babc0;
  font-size: 13px;
  line-height: 1.85;
  margin: 24px 0;
  max-width: 430px;
}

.home-choice-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.home-choice-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  min-height: 190px;
  padding: 24px;
}

.home-choice-grid article:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-choice-grid span {
  border-radius: 999px;
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  margin-bottom: 28px;
  padding: 6px 9px;
}

.home-choice-grid .rent span {
  background: rgba(91, 227, 164, 0.13);
  color: var(--mint);
}

.home-choice-grid .buy span {
  background: rgba(72, 213, 255, 0.13);
  color: #79dcff;
}

.home-choice-grid strong {
  display: block;
  font-size: 17px;
  line-height: 1.45;
}

.home-choice-grid p {
  color: #94a5bc;
  font-size: 11px;
  line-height: 1.65;
  margin: 10px 0 0;
}

.home-process {
  padding-bottom: 90px;
}

.home-process-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-process-grid article {
  border-right: 1px solid var(--line);
  min-height: 220px;
  padding: 34px 30px 30px;
}

.home-process-grid article:last-child {
  border-right: 0;
}

.home-process-grid span {
  color: var(--blue);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 46px;
}

.home-process-grid strong {
  display: block;
  font-size: 20px;
}

.home-process-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  margin: 12px 0 0;
}

.home-process-link {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 28px;
}

.home-faq {
  align-items: start;
  background: #f7f9fd;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.72fr 1.28fr;
}

.home-faq-intro {
  position: sticky;
  top: 120px;
}

.home-faq-intro h2 {
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0;
}

.home-faq-intro > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 22px 0 0;
  max-width: 410px;
}

.home-faq-list {
  border-top: 1px solid #d7dfea;
}

.home-faq-list details {
  border-bottom: 1px solid #d7dfea;
}

.home-faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  min-height: 80px;
  padding: 0 4px;
}

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

.home-faq-list summary span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.home-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.home-faq-list details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: -4px 0 0;
  max-width: 610px;
  padding: 0 42px 24px 4px;
}

.home-cta {
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(72, 213, 255, 0.12), transparent 26%),
    var(--navy);
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 70px clamp(24px, 6.5vw, 100px);
}

.home-cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0;
}

.detail-band,
.service-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 100px;
  max-width: 1200px;
}

.detail-band > div,
.service-promise > div {
  border-right: 1px solid var(--line);
  padding: 10px 42px;
}

.detail-band > div:first-child,
.service-promise > div:first-child {
  padding-left: 0;
}

.detail-band > div:last-child,
.service-promise > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.detail-band span {
  color: var(--blue);
  display: block;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 18px;
}

.detail-band strong,
.service-promise strong {
  display: block;
  font-size: 18px;
}

.detail-band p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.page-solution {
  margin: 0;
}

.page-process {
  padding-bottom: 80px;
}

.service-promise {
  background: #f2f6fb;
  border-radius: 18px;
  margin-bottom: 100px;
  padding: 44px;
}

.service-promise > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: center;
}

.service-promise span {
  color: var(--muted);
  font-size: 11px;
}

.estimate-page-hero {
  min-height: 360px;
}

.estimate-page-section {
  padding-top: 90px;
}

.error-page-hero {
  min-height: 500px;
}

.error-page-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding-bottom: 100px;
  padding-top: 80px;
}

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

  .mobile-nav {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-visual {
    transform: scale(0.82);
    transform-origin: center right;
  }

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

  .home-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-choice,
  .home-faq {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .home-faq-intro {
    position: static;
  }

  .home-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-process-grid article:nth-child(2) {
    border-right: 0;
  }

  .home-process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: 430px;
  }

  .solution-section,
  .estimate-shell {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .solution-intro > p:not(.section-kicker) {
    max-width: 680px;
  }

  .process-section {
    gap: 50px;
  }

  .estimator-card {
    max-width: 780px;
  }

  .page-hero {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .brand-mark {
    border-radius: 9px;
    font-size: 16px;
    height: 36px;
    width: 36px;
  }

  .brand strong {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav summary {
    height: 38px;
    width: 38px;
  }

  .mobile-nav nav {
    right: -2px;
    top: 46px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 70px 22px 62px;
  }

  .page-hero {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-height: 370px;
    padding: 68px 22px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-hero > p {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .button {
    flex: 1;
    font-size: 12px;
    gap: 16px;
    min-height: 50px;
    min-width: 150px;
    padding: 0 16px;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-visual {
    height: 430px;
    margin: 40px 0 0 -16px;
    transform: scale(0.84);
    transform-origin: left top;
    width: calc(100% + 70px);
  }

  .copier-card {
    left: 45px;
  }

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

  .proof-strip > div {
    border-bottom: 1px solid var(--line);
    min-height: 84px;
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .proof-strip strong {
    font-size: 20px;
  }

  .section {
    padding: 78px 20px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .solution-intro h2,
  .process-copy h2,
  .estimate-copy h2 {
    font-size: 34px;
  }

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

  .home-link-grid {
    grid-template-columns: 1fr;
  }

  .home-product-grid,
  .home-choice-grid,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-link-card {
    min-height: 240px;
  }

  .home-choice {
    padding: 78px 22px;
  }

  .home-choice-grid article {
    min-height: 170px;
  }

  .home-process-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 190px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .home-process-grid article:last-child {
    border-bottom: 0;
  }

  .home-process-grid span {
    margin-bottom: 32px;
  }

  .home-faq {
    gap: 38px;
  }

  .home-faq-list summary {
    font-size: 14px;
    gap: 18px;
  }

  .home-cta {
    align-items: start;
    flex-direction: column;
    gap: 34px;
    padding: 60px 22px;
  }

  .home-cta .button {
    flex: none;
  }

  .service-card {
    min-height: 425px;
  }

  .solution-section {
    padding: 78px 20px;
  }

  .compare-card {
    overflow-x: auto;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: 100px 180px 180px;
    min-width: 460px;
  }

  .scenario-section {
    padding-bottom: 50px;
  }

  .scenario-card {
    min-height: 280px;
  }

  .process-section {
    display: block;
    padding-top: 50px;
  }

  .process-copy {
    position: static;
  }

  .process-list {
    margin-top: 36px;
  }

  .estimate-section {
    padding: 78px 20px 90px;
  }

  .detail-band,
  .service-promise {
    gap: 0;
    grid-template-columns: 1fr;
    margin: 0 20px 76px;
  }

  .detail-band > div,
  .detail-band > div:first-child,
  .detail-band > div:last-child,
  .service-promise > div,
  .service-promise > div:first-child,
  .service-promise > div:last-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 28px 0;
  }

  .detail-band > div:last-child,
  .service-promise > div:last-child {
    border-bottom: 0;
  }

  .service-promise {
    padding: 20px 28px;
  }

  .estimator-card {
    grid-template-columns: 1fr;
  }

  .estimator-fields,
  .estimate-result {
    padding: 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 56px;
  }

  .mobile-cta {
    align-items: center;
    background: var(--mint);
    bottom: 14px;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(7, 21, 47, 0.24);
    color: #071b28;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    gap: 18px;
    justify-content: center;
    left: 50%;
    min-height: 48px;
    padding: 0 25px;
    position: fixed;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 60;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
