:root {
  --navy: #1a1a2e;
  --navy-2: #252749;
  --pink: #c2185b;
  --blue: #2d4a7a;
  --amber: #f9a825;
  --green: #6aaf7b;
  --red: #a8405a;
  --bg: #f5f7fa;
  --paper: #ffffff;
  --ink: #1a1a2e;
  --muted: #667085;
  --line: #e5e9f0;
  --shadow: 0 18px 50px rgba(26, 26, 46, 0.08);
  --radius: 18px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
.brand,
.button {
  font-family: "Nunito", system-ui, sans-serif;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 233, 240, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--pink);
}

.nav-app {
  padding: 10px 16px !important;
  border: 1px solid var(--navy);
  border-radius: 12px;
  color: var(--navy) !important;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy);
}

.section-shell {
  width: min(100% - 36px, var(--content));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
  min-height: calc(100svh - 66px);
  padding-top: 48px;
  padding-bottom: 44px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #475467;
  font-size: clamp(18px, 2.5vw, 22px);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(45, 74, 122, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.button.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(26, 26, 46, 0.18);
}

.button.secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid #cfd6e3;
}

.button.compact {
  margin-top: 28px;
}

.trust-line,
.soft-note {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 2% auto auto;
  width: 54%;
  height: 70%;
  border-radius: 999px;
  background: rgba(249, 168, 37, 0.14);
  filter: blur(20px);
}

.hero-media img {
  position: relative;
  border-radius: 24px;
  filter: drop-shadow(0 30px 45px rgba(26, 26, 46, 0.18));
}

.band {
  background: var(--bg);
}

.problem h2 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  background: #fff;
  color: #344054;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
}

.split-section h2,
.section-heading h2,
.request-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.rich-copy {
  color: #344054;
  font-size: 18px;
}

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

.benefit-callout {
  margin: 20px 0;
  border: 1px solid rgba(45, 74, 122, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.benefit-callout h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

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

.soft-note {
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  background: #fff8e7;
}

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

.section-heading > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.install-card,
.steps article,
.request-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 228px;
  padding: 22px;
  border-top: 5px solid var(--blue);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.accent-pink {
  border-top-color: var(--pink);
}

.accent-pink .feature-icon {
  color: var(--pink);
}

.accent-amber {
  border-top-color: var(--amber);
}

.accent-amber .feature-icon {
  color: #9a6400;
}

.accent-green {
  border-top-color: var(--green);
}

.accent-green .feature-icon {
  color: #2e7d32;
}

.accent-navy {
  border-top-color: var(--navy);
}

.accent-navy .feature-icon {
  color: var(--navy);
}

.demo-section {
  overflow: hidden;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.78fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.demo-layout > * {
  min-width: 0;
}

.demo-copy > p:not(.section-kicker),
.pricing-card p {
  color: #475467;
  font-size: 18px;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 22px;
  max-width: 100%;
}

.demo-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: #344054;
  font: 800 14px "Nunito", system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.demo-tab:hover,
.demo-tab.is-active {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.demo-caption {
  max-width: 560px;
  border-left: 4px solid var(--pink);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.demo-caption h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

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

.interactive-phone {
  display: grid;
  place-items: center;
  min-height: 570px;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.interactive-phone::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: rgba(194, 24, 91, 0.12);
  filter: blur(24px);
}

.phone-frame {
  position: relative;
  width: min(100%, 340px);
  min-height: 590px;
  border: 13px solid var(--navy);
  border-radius: 40px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 26px 70px rgba(26, 26, 46, 0.22);
}

.phone-top,
.phone-nav {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
}

.phone-top {
  height: 58px;
  justify-content: space-between;
  padding: 0 18px;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
}

.phone-top strong {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--pink);
  font-size: 12px;
}

.phone-nav {
  position: absolute;
  inset: auto 0 0;
  height: 54px;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
}

.phone-nav .is-active {
  color: #fff;
}

.demo-screen {
  display: grid;
  gap: 12px;
  padding: 18px 16px 72px;
  animation: screenIn 0.34s ease both;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-card,
.balance-card,
.notification-item,
.install-steps-demo {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.07);
}

.demo-card span,
.balance-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.demo-card strong,
.balance-card strong {
  display: block;
  color: var(--navy);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.15;
}

.demo-card small,
.balance-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.today-card {
  border-left: 5px solid var(--amber);
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  border-radius: 18px;
  background: #fff;
  padding: 13px;
  text-align: center;
}

.mini-calendar span {
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
}

.mini-calendar b {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
}

.mini-calendar .active {
  background: var(--navy);
  color: #fff;
}

.demo-list p {
  margin: 0;
  border-radius: 14px;
  background: #fff;
  padding: 11px 12px;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.demo-list p + p {
  margin-top: 8px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
}

.dot.pink {
  background: var(--pink);
}

.dot.blue {
  background: var(--blue);
}

.dot.green {
  background: #2e7d32;
}

.custody-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: #fff;
  padding: 14px 15px;
}

.custody-row.active {
  outline: 3px solid rgba(249, 168, 37, 0.25);
}

.chip {
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.chip.pink {
  background: var(--pink);
}

.chip.blue {
  background: var(--blue);
}

.note-card {
  border-left: 5px solid var(--pink);
}

.request-card-demo {
  position: relative;
  border-left: 5px solid var(--amber);
}

.request-card-demo em {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 999px;
  background: #fff3cd;
  color: #8a6d1a;
  padding: 4px 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.action-row button {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font: 800 13px "Nunito", system-ui, sans-serif;
}

.action-row .ghost {
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
}

.balance-card {
  background: var(--navy);
}

.balance-card span,
.balance-card small {
  color: rgba(255, 255, 255, 0.7);
}

.balance-card strong {
  color: #fff;
  font-size: 30px;
}

.expense-card-demo {
  border-left: 5px solid var(--amber);
}

.green-left {
  border-left-color: #2e7d32;
}

.notification-item {
  display: grid;
  gap: 3px;
  border-left: 5px solid var(--blue);
}

.notification-item b {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 18px;
}

.notification-item span {
  color: var(--muted);
  font-size: 13px;
}

.install-steps-demo p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #344054;
  font-weight: 700;
}

.install-steps-demo p + p {
  margin-top: 12px;
}

.install-steps-demo span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}

.app-icon-demo {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  justify-self: center;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(26, 26, 46, 0.2);
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: 0 28px 70px rgba(26, 26, 46, 0.18);
}

.pricing-card h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
}

.pricing-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card .section-kicker {
  color: #fff;
}

.price-box {
  display: grid;
  gap: 7px;
  border-radius: 22px;
  background: #fff;
  color: var(--navy);
  padding: 24px;
}

.price-box span,
.price-box small {
  color: var(--muted);
  font-weight: 700;
}

.price-box strong {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.price-box .button {
  margin-top: 10px;
}

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

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  border-radius: 14px;
  background: var(--navy);
  aspect-ratio: 16 / 9;
}

.reel-card {
  max-width: 420px;
}

.reel-card video {
  aspect-ratio: 9 / 16;
}

.video-card h3 {
  margin: 14px 0 4px;
  font-size: 21px;
}

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

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

.steps article {
  padding: 24px;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.steps h3,
.install-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.steps p,
.install-card li {
  color: var(--muted);
}

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

.install-card {
  padding: 26px;
}

.install-card ol {
  margin: 0;
  padding-left: 22px;
}

.install-card li + li {
  margin-top: 10px;
}

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

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 18px;
  color: var(--muted);
}

.faq-list a,
.site-footer a,
.consent a {
  color: var(--blue);
  font-weight: 700;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.request-copy p:not(.section-kicker) {
  color: #475467;
  font-size: 18px;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.request-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd6e3;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(45, 74, 122, 0.16);
  border-color: var(--blue);
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: var(--red);
}

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

.footer-inner {
  display: flex;
  width: min(100% - 36px, var(--content));
  margin: 0 auto;
  padding: 34px 0;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-footer a {
  color: #fff;
}

.legal-page {
  width: min(100% - 36px, 850px);
  margin: 0 auto;
  padding: 64px 0 80px;
}

.legal-page h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 6vw, 54px);
  line-height: 1.05;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-page p,
.legal-page li {
  color: #475467;
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 12px;
    font-size: 13px;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 66px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav.legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a,
  .nav-app {
    padding: 13px 12px !important;
    border-radius: 12px;
  }

  .site-nav.legal-nav a {
    padding: 9px 10px !important;
  }

  .nav-app {
    background: var(--navy);
    color: #fff !important;
  }

  .hero,
  .split-section,
  .request-layout,
  .demo-layout,
  .pricing-card,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .interactive-phone {
    min-height: auto;
  }

  .steps,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 28px, var(--content));
    padding: 54px 0;
  }

  .hero {
    gap: 26px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-media img {
    max-width: 92%;
    margin: 0 auto;
  }

  .trust-line {
    font-size: 13px;
  }

  .hero-actions,
  .hero-actions .button,
  .button.full,
  .request-form .button {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .feature-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .request-form {
    padding: 18px;
  }

  .phone-frame {
    width: min(100%, 292px);
    min-height: 512px;
    border-width: 10px;
    border-radius: 34px;
    box-shadow: 0 18px 42px rgba(26, 26, 46, 0.18);
  }

  .demo-controls {
    flex-wrap: nowrap;
    margin-right: 0;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 2px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .demo-controls::-webkit-scrollbar {
    display: none;
  }

  .demo-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .demo-screen {
    gap: 10px;
    padding: 14px 12px 64px;
  }

  .phone-top {
    height: 52px;
    padding: 0 14px;
  }

  .phone-nav {
    height: 48px;
  }

  .demo-card,
  .balance-card,
  .notification-item,
  .install-steps-demo {
    border-radius: 15px;
    padding: 12px;
  }

  .request-card-demo em {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
  }

  .price-box strong {
    font-size: 31px;
  }
}
