:root {
  --navy-950: #031224;
  --navy-900: #061a33;
  --navy-800: #0a294d;
  --blue-700: #075bcc;
  --blue-600: #0874f9;
  --blue-500: #1d8cff;
  --cyan-400: #39d5ff;
  --mint-400: #5ce8bf;
  --ink: #10233f;
  --muted: #5e7089;
  --line: #dbe6f2;
  --ice: #eef7ff;
  --cloud: #f7fbff;
  --white: #ffffff;
  --success: #0b8f67;
  --warning: #c67800;
  --danger: #bd2b38;
  --shadow-sm: 0 10px 30px rgba(10, 41, 77, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 49, 96, 0.14);
  --shadow-lg: 0 34px 90px rgba(0, 32, 77, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-600);
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.05rem, 4.3vw, 3.85rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

p {
  color: var(--muted);
}

::selection {
  color: var(--navy-950);
  background: #9ae8ff;
}

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 0;
}

.section-sm {
  padding: clamp(56px, 7vw, 86px) 0;
}

.section-ice {
  overflow: hidden;
  background: var(--cloud);
}

.section-navy {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(57, 213, 255, 0.17), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(8, 116, 249, 0.22), transparent 30%),
    var(--navy-950);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-navy p {
  color: #b8c8d9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-navy .eyebrow {
  color: var(--cyan-400);
}

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

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center p {
  margin-inline: auto;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(120deg, var(--blue-500), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
}

.kicker {
  color: var(--navy-800);
  font-size: 1.05rem;
  font-weight: 750;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 13px 32px rgba(8, 116, 249, 0.28);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 17px 40px rgba(8, 116, 249, 0.38);
}

.btn-secondary {
  color: var(--navy-950);
  border-color: #b9cbe0;
  background: rgba(255, 255, 255, 0.85);
}

.btn-secondary:hover {
  color: var(--blue-700);
  border-color: var(--blue-500);
  background: var(--white);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 13px 30px rgba(3, 18, 36, 0.22);
}

.btn-dark:hover {
  color: var(--white);
  background: var(--navy-800);
}

.btn-light {
  color: var(--navy-950);
  background: var(--white);
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost-light:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.arrow {
  transition: transform 180ms ease;
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(10, 41, 77, 0.09);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-tag {
  margin-top: 5px;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-main > a,
.nav-drop > button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: #263d59;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.nav-main > a:hover,
.nav-drop > button:hover,
.nav-main > a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--ice);
}

.nav-drop {
  position: relative;
}

.nav-drop > button::after {
  margin-left: 7px;
  font-size: 0.65rem;
  content: "▼";
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 660px;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, 9px);
  transition: opacity 170ms ease, visibility 170ms ease, transform 170ms ease;
}

.nav-drop:hover .dropdown,
.nav-drop:focus-within .dropdown,
.nav-drop.is-open .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
}

.dropdown a:hover {
  color: var(--blue-700);
  background: var(--ice);
}

.dropdown-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-700);
  background: #dceeff;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.dropdown strong {
  font-size: 0.88rem;
}

.dropdown small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-actions {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 21px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  display: block;
  margin: 5px auto;
}

.nav-toggle::before,
.nav-toggle::after {
  display: block;
  margin: auto;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 10%, rgba(57, 213, 255, 0.16), transparent 27%),
    linear-gradient(135deg, #031224 0%, #06284f 54%, #063878 100%);
}

.hero::after {
  position: absolute;
  right: -20%;
  bottom: -42%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(720px, calc(100vh - 116px));
  grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
  gap: clamp(35px, 5vw, 62px);
  align-items: center;
  padding: clamp(50px, 4vw, 68px) 0;
}

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

.hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.9rem, 3.75vw, 4rem);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 22px;
  color: #c3d2e2;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero .button-row {
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 18px;
  color: #d8e7f5;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-proof li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(57, 213, 255, 0.12);
  content: "";
}

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

#hero-canvas {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  opacity: 0.76;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(100%, 465px);
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 27px;
  background: rgba(4, 25, 49, 0.69);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%) rotate(1.5deg);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 14px;
}

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

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.window-url {
  overflow: hidden;
  color: #9db5cb;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-screen {
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border-radius: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 5%, #8ae6ff 0, transparent 27%),
    var(--white);
}

.demo-logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.demo-logo span:first-child {
  width: 87px;
  height: 9px;
  border-radius: 10px;
  background: var(--navy-950);
}

.demo-logo span:last-child {
  width: 55px;
  height: 24px;
  border-radius: 20px;
  background: var(--blue-600);
}

.demo-screen h2 {
  max-width: 335px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.demo-screen p {
  max-width: 300px;
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.demo-button {
  display: inline-block;
  width: 130px;
  height: 33px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-400));
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  color: var(--white);
  background: rgba(3, 18, 36, 0.84);
  box-shadow: var(--shadow-md);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.floating-card::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 5px rgba(92, 232, 191, 0.15);
  content: "";
}

.floating-card.one {
  top: 14%;
  right: -3%;
  animation: float 5s ease-in-out infinite;
}

.floating-card.two {
  bottom: 12%;
  left: -4%;
  animation: float 5s 1.3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: #d7e5f3;
  background: var(--navy-950);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-item {
  padding: 25px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-item:last-child {
  border-right: 0;
}

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

.trust-item strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
}

.trust-item span {
  color: #8ea6bc;
  font-size: 0.79rem;
}

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

.metric-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.metric-number {
  display: flex;
  min-height: 55px;
  align-items: baseline;
  color: var(--blue-700);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-card p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 84px);
  align-items: center;
}

.split-top {
  align-items: start;
}

.content-copy h2 {
  margin-bottom: 20px;
}

.content-copy > p {
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #29425f;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  font-size: 0.7rem;
  content: "✓";
}

.rental-showcase {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #d3fff1;
  background: rgba(11, 143, 103, 0.2);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 5px rgba(92, 232, 191, 0.12);
  animation: availability-pulse 1.8s ease-out infinite;
  content: "";
}

@keyframes availability-pulse {
  0% { box-shadow: 0 0 0 0 rgba(92, 232, 191, 0.5); }
  72%,
  100% { box-shadow: 0 0 0 8px rgba(92, 232, 191, 0); }
}

.rental-showcase h3 {
  margin: 20px 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.price-line strong {
  color: var(--cyan-400);
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.price-line span {
  color: #9db3c7;
}

.exclusive-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.exclusive-line span {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #d9e6f2;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.browser-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.browser-preview .window-bar {
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
  background: #f4f8fc;
}

.browser-preview .window-dots i:nth-child(1) { background: #ff7168; }
.browser-preview .window-dots i:nth-child(2) { background: #ffcb55; }
.browser-preview .window-dots i:nth-child(3) { background: #51d98c; }

.browser-preview .window-url {
  color: var(--muted);
}

.browser-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.rental-card .browser-preview img {
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

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

.comparison-row > div {
  padding: 18px 20px;
}

.comparison-row > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.comparison-row.header {
  color: var(--white);
  background: var(--navy-950);
  font-weight: 850;
}

.comparison-row:not(.header) > div:first-child {
  color: var(--navy-950);
  font-weight: 800;
}

.comparison-row:not(.header) > div:nth-child(2) {
  color: var(--ink);
  background: var(--white);
  font-weight: 650;
}

.comparison-row .highlight {
  color: var(--blue-700);
  background: var(--ice);
  font-weight: 750;
}

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

.tier-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.tier-card.featured {
  color: var(--white);
  border-color: var(--navy-950);
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.tier-card.featured h3 {
  color: var(--white);
}

.tier-card.featured p {
  color: #adbed0;
}

.tier-price {
  margin: 20px 0 15px;
  color: var(--blue-700);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.tier-card.featured .tier-price {
  color: var(--cyan-400);
}

.included-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 22px;
  color: #405873;
  font-size: 0.86rem;
}

.tier-card.featured .included-list li {
  color: #cedbe7;
}

.included-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 900;
  content: "✓";
}

.rental-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.rental-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.rental-card .browser-preview {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.rental-card-body {
  padding: 27px;
}

.rental-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.rental-card h3 {
  margin-bottom: 7px;
}

.rental-card .availability {
  color: var(--success);
  background: #e7fbf4;
}

.rental-card p {
  margin-bottom: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid #d8e5f1;
  border-radius: 999px;
  color: #38506b;
  background: var(--cloud);
  font-size: 0.74rem;
  font-weight: 750;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: #a8ccef;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(8, 116, 249, 0.05);
  border-radius: 50%;
  content: "";
}

.service-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 13px;
  color: var(--blue-700);
  background: var(--ice);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 0.91rem;
}

.before-after {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #edf2f7;
  box-shadow: var(--shadow-md);
  --position: 50%;
}

.ba-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before {
  color: #333;
  background: #ededed;
}

.ba-after {
  z-index: 2;
  background: var(--white);
  clip-path: inset(0 0 0 var(--position));
}

.ba-site {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 34px;
  grid-template-rows: auto 1fr;
}

.ba-before .ba-site {
  font-family: "Times New Roman", serif;
}

.ba-before-head {
  display: flex;
  width: min(100%, 480px);
  align-items: center;
  justify-content: space-between;
  justify-self: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #777;
}

.ba-before-head b {
  font-size: 1.35rem;
}

.ba-before-head span {
  font-size: 0.83rem;
}

.ba-before-body {
  width: min(100%, 430px);
  align-self: center;
  justify-self: center;
  text-align: center;
}

.ba-before-body h3 {
  color: #222;
  font-family: inherit;
  font-size: 2.1rem;
  letter-spacing: 0;
}

.ba-before-button {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #555;
  color: #222;
  background: #ddd;
  font-size: 0.8rem;
}

.ba-after .ba-site {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(57, 213, 255, 0.28), transparent 20%),
    linear-gradient(135deg, var(--navy-950), #074485);
}

.ba-after-head {
  display: flex;
  width: min(100%, 480px);
  align-items: center;
  justify-content: space-between;
  justify-self: center;
}

.ba-after-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.ba-after-brand i {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 8px 2px 8px 2px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  transform: skew(-8deg);
}

.ba-after-nav {
  display: flex;
  gap: 18px;
  color: #c8d9e8;
  font-size: 0.75rem;
  font-weight: 700;
}

.ba-after-body {
  width: min(100%, 430px);
  align-self: center;
  justify-self: center;
  text-align: center;
}

.ba-after-body span {
  color: var(--cyan-400);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ba-after-body h3 {
  margin: 11px 0 15px;
  color: var(--white);
  font-size: 2.45rem;
}

.ba-after-body p {
  color: #c6d5e4;
  font-size: 0.9rem;
}

.ba-after-body .ba-after-button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 850;
}

.ba-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(3, 18, 36, 0.18);
  pointer-events: none;
}

.ba-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: var(--shadow-md);
  font-size: 1.2rem;
  content: "↔";
  transform: translate(-50%, -50%);
}

.ba-input {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-label.before {
  left: 18px;
  color: #333;
  background: rgba(255, 255, 255, 0.86);
}

.ba-label.after {
  right: 18px;
  color: var(--white);
  background: rgba(3, 18, 36, 0.75);
}

.estimator {
  padding: clamp(27px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.choice-card {
  position: relative;
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card label {
  display: block;
  height: 100%;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.choice-card label strong,
.choice-card label small {
  display: block;
}

.choice-card label small {
  margin-top: 3px;
  color: var(--muted);
}

.choice-card input:checked + label {
  border-color: var(--blue-600);
  background: var(--ice);
  box-shadow: 0 0 0 4px rgba(8, 116, 249, 0.08);
}

.choice-card input:focus-visible + label {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

.range-wrap {
  margin: 26px 0;
}

.range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.range-head label {
  color: var(--navy-950);
  font-weight: 800;
}

.range-head output {
  color: var(--blue-700);
  font-weight: 900;
}

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

.estimator-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy-950);
}

.estimator-result strong,
.estimator-result span {
  display: block;
}

.estimator-result strong {
  font-size: 1.15rem;
}

.estimator-result span {
  margin-top: 3px;
  color: #a9bfd3;
  font-size: 0.8rem;
}

.estimator-value {
  color: var(--cyan-400);
  font-size: 1.5rem;
  font-weight: 900;
}

.estimator-value.is-stacked {
  line-height: 1.08;
  text-align: center;
  white-space: pre-line;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: 29px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  counter-increment: process;
}

.process-card::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  content: "0" counter(process);
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 47px;
  right: -18px;
  width: 19px;
  height: 2px;
  background: var(--blue-500);
  content: "";
}

.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.industry-cloud span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #29425f;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.84rem;
  font-weight: 750;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(35px, 7vw, 70px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(57, 213, 255, 0.3), transparent 24%),
    linear-gradient(130deg, var(--navy-950), #064991);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 35px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: #c5d8e9;
}

.cta-panel .button-row {
  justify-content: flex-end;
}

.site-footer {
  color: #a9bfd2;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 0.9fr;
  gap: 48px;
  padding: 76px 0 56px;
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand .brand-tag {
  color: var(--cyan-400);
}

.footer-brand p {
  max-width: 340px;
  color: #92a9bd;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #a9bfd2;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.77rem;
}

.footer-bottom p {
  margin: 0;
  color: #7991a7;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: #a9bfd2;
  text-decoration: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 18%, rgba(57, 213, 255, 0.17), transparent 27%),
    linear-gradient(135deg, var(--navy-950), #063b76);
}

.page-hero::after {
  position: absolute;
  top: -60%;
  right: -10%;
  width: 60%;
  height: 180%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(35px, 7vw, 82px);
  align-items: center;
}

.page-hero-grid > *,
.split > *,
.contact-grid > *,
.rental-detail > *,
.cta-panel > *,
.estimator-result > *,
.profile-feature-row > *,
.rental-card-head > * {
  min-width: 0;
}

.page-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
}

@media (min-width: 801px) {
  .page-hero .availability + h1 {
    font-size: clamp(3rem, 4.2vw, 4.2rem);
  }
}

.page-hero p {
  max-width: 750px;
  margin-bottom: 28px;
  color: #c4d6e7;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 23px;
  color: #8eabc3;
  font-size: 0.76rem;
  font-weight: 750;
}

.breadcrumb a {
  color: #c7e9ff;
  text-decoration: none;
}

.hero-side-card {
  position: relative;
  z-index: 2;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-side-card h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.35rem;
}

.hero-side-card p {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 21px;
  color: #d9e7f3;
  font-size: 0.83rem;
  font-weight: 700;
}

.mini-list li::before {
  position: absolute;
  left: 0;
  color: var(--cyan-400);
  content: "✓";
}

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

.feature-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card .feature-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 13px;
  color: var(--blue-700);
  background: var(--ice);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.deliverables li {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #29425f;
  background: var(--white);
  font-weight: 700;
}

.deliverables li::before {
  margin-right: 9px;
  color: var(--blue-600);
  content: "✓";
}

.architecture {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  align-items: stretch;
  margin-top: 30px;
}

.architecture-node {
  position: relative;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.architecture-node:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  color: var(--cyan-400);
  font-weight: 900;
  content: "→";
  transform: translateY(-50%);
}

.architecture-node strong,
.architecture-node span {
  display: block;
}

.architecture-node strong {
  color: var(--white);
  font-size: 0.88rem;
}

.architecture-node span {
  margin-top: 5px;
  color: #9db4c8;
  font-size: 0.74rem;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 20px 55px 20px 21px;
  color: var(--navy-950);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--ice);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 21px 22px;
  margin: 0;
}

.profile-preview-section {
  overflow: hidden;
}

.profile-preview-section .section-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.profile-device-stage {
  position: relative;
  width: min(100%, 1040px);
  padding-right: clamp(55px, 8vw, 92px);
  margin: 0 auto 68px;
}

.profile-desktop-preview img {
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
}

.profile-mobile-preview {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -54px;
  width: clamp(150px, 20%, 210px);
  padding: 7px;
  border: 7px solid var(--navy-900);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(3, 18, 36, 0.28);
}

.profile-mobile-preview::before {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 34%;
  height: 5px;
  border-radius: 999px;
  background: var(--navy-900);
  content: "";
  transform: translateX(-50%);
}

.profile-mobile-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.profile-preview-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.profile-preview-proof span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
}

.profile-feature-showcase {
  display: grid;
  gap: 28px;
}

.profile-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.profile-feature-row.is-reversed {
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
}

.profile-feature-row.is-reversed .profile-feature-media {
  order: 2;
}

.profile-feature-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cloud);
  box-shadow: 0 14px 38px rgba(10, 41, 77, 0.1);
}

.profile-feature-media img {
  display: block;
  width: 100%;
  height: auto;
}

.profile-feature-media.is-portrait {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 18px;
  background: linear-gradient(145deg, #f7fbff, #eaf3fb);
}

.profile-feature-media.is-portrait img {
  width: auto;
  max-width: 100%;
  max-height: 600px;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(3, 18, 36, 0.14);
}

.profile-feature-copy .eyebrow {
  margin-bottom: 15px;
}

.profile-feature-copy h3 {
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.profile-feature-copy p:last-child {
  margin-bottom: 0;
}

.profile-status-media {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: clamp(24px, 5vw, 50px);
  background:
    radial-gradient(circle at 82% 18%, rgba(57, 213, 255, 0.17), transparent 30%),
    linear-gradient(145deg, var(--navy-950), #0a315b);
}

.service-status-demo {
  width: min(100%, 570px);
}

.status-demo-controls {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.status-demo-controls button {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: #c8d7e7;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.status-demo-controls button.is-active {
  color: var(--navy-950);
  background: var(--white);
}

.service-status-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  padding: 18px;
  border: 1px solid #a7dfca;
  border-radius: 14px;
  background: #e3f7ef;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-status-card strong,
.service-status-card span {
  display: block;
}

.service-status-card strong {
  color: var(--navy-950);
  font-size: 0.96rem;
}

.service-status-card [data-status-description] {
  margin-top: 4px;
  color: #3f6574;
  font-size: 0.78rem;
}

.status-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(11, 143, 103, 0.12);
}

.service-status-card.is-accepting .status-pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(11, 143, 103, 0.55);
  border-radius: inherit;
  animation: status-pulse 1.8s ease-out infinite;
  content: "";
}

.service-status-card.is-paused {
  border-color: #efb5bd;
  background: #fff0f2;
}

.service-status-card.is-paused .status-pulse {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(189, 43, 56, 0.12);
}

.service-status-card.is-paused .status-pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(189, 43, 56, 0.58);
  border-radius: inherit;
  animation: status-pulse 1.8s ease-out infinite;
  content: "";
}

@keyframes status-pulse {
  0% { opacity: 0.9; transform: scale(0.7); }
  75%,
  100% { opacity: 0; transform: scale(1.8); }
}

.rental-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.rental-detail .browser-preview img {
  aspect-ratio: auto;
}

.sticky-card {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.sticky-card h2 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.sticky-card .price-line strong {
  color: var(--blue-700);
}

.sticky-card .availability {
  margin-bottom: 18px;
  color: var(--success);
  background: #e6faf3;
}

.sticky-card .btn {
  width: 100%;
  margin-top: 10px;
}

.notice {
  padding: 15px 17px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 12px 12px 0;
  color: #314b67;
  background: var(--ice);
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(35px, 7vw, 80px);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 13px;
  margin: 28px 0;
}

.contact-method {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.contact-method span,
.contact-method strong {
  display: block;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong {
  margin-top: 4px;
  color: var(--navy-950);
}

.contact-method:hover {
  border-color: var(--blue-500);
}

.form-card {
  padding: clamp(25px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 27px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #c4d3e2;
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(8, 116, 249, 0.1);
}

.form-field small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-600);
}

.check-field label {
  color: var(--muted);
  font-size: 0.79rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  color: #076346;
  background: #e1f9f0;
}

.form-status.error {
  color: #8c1f2a;
  background: #ffe8eb;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.76rem;
}

.legal-content {
  padding: clamp(60px, 8vw, 100px) 0;
}

.legal-content h2 {
  margin: 45px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 1.2rem;
}

.legal-content li,
.legal-content p {
  color: #405873;
}

.legal-note {
  padding: 17px 19px;
  border: 1px solid #bcd9f4;
  border-radius: 12px;
  background: var(--ice);
}

.success-shell {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.success-card {
  max-width: 700px;
  padding: clamp(34px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .nav-main {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: min(88vw, 410px);
    padding: 110px 25px 35px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    box-shadow: -30px 0 70px rgba(3, 18, 36, 0.2);
    transform: translateX(100%);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .nav-main.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-main > a,
  .nav-drop > button {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
    font-size: 1rem;
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 5px 0 10px 12px;
    border: 0;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    transform: none;
  }

  .nav-drop:hover .dropdown,
  .nav-drop:focus-within .dropdown {
    display: none;
  }

  .nav-drop.is-open .dropdown {
    display: grid;
    transform: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  }

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

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

  .process-card:nth-child(2)::after {
    display: none;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-grid,
  .rental-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-feature-row,
  .profile-feature-row.is-reversed {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-feature-row.is-reversed .profile-feature-media {
    order: 0;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero .button-row,
  .hero-proof {
    justify-content: center;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .rental-grid,
  .architecture-flow {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .architecture-node:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -14px;
    content: "\2193";
    transform: translateX(50%);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .button-row {
    justify-content: flex-start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 67px;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

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

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .page-hero {
    padding: 56px 0;
  }

  .page-hero .availability + h1 {
    font-size: clamp(1.875rem, 8.5vw, 2.2rem);
  }

  .page-hero .button-row {
    align-items: stretch;
  }

  .page-hero .button-row .btn {
    width: 100%;
  }

  .rental-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .profile-device-stage {
    padding-right: 0;
    margin-bottom: 26px;
  }

  .profile-mobile-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(43%, 180px);
    margin: -64px 12px 0 auto;
  }

  .profile-feature-media.is-portrait {
    min-height: 0;
    padding: 14px;
  }

  .profile-status-media {
    min-height: 280px;
    padding: 22px 16px;
  }

  .status-demo-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

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

  .brand-name {
    font-size: 1.04rem;
  }

  .brand-tag {
    font-size: 0.56rem;
  }

  .nav-actions {
    display: none;
  }

  .hero-grid {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-panel {
    width: 94%;
    padding: 11px;
  }

  .demo-screen {
    min-height: 280px;
    padding: 22px;
  }

  .demo-logo {
    margin-bottom: 35px;
  }

  .floating-card {
    font-size: 0.68rem;
  }

  .floating-card.one {
    right: 0;
  }

  .floating-card.two {
    left: 0;
  }

  .service-grid,
  .feature-grid,
  .metrics-grid,
  .process-grid,
  .form-grid,
  .deliverables,
  .choice-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-card::after {
    display: none;
  }

  .exclusive-line {
    grid-template-columns: 1fr;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 650px;
  }

  .before-after {
    min-height: 420px;
  }

  .ba-site {
    padding: 24px;
  }

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

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 8px;
    padding: 9px 12px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -10px 30px rgba(3, 18, 36, 0.11);
    backdrop-filter: blur(12px);
  }

  .mobile-actions .btn {
    min-height: 48px;
    padding: 10px 13px;
    font-size: 0.84rem;
  }
}

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

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