:root {
  --navy-950: #020b16;
  --navy-900: #061a31;
  --navy-800: #0c2c55;
  --blue-600: #2563eb;
  --blue-500: #197cff;
  --cyan-400: #29b6ff;
  --green-500: #16a34a;
  --green-100: #dcfce7;
  --red-500: #ef4444;
  --red-100: #fee2e2;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --surface: #ffffff;
  --page: #f7f9fc;
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.16);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.1);
  color: var(--slate-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 48% -12%, rgba(37, 99, 235, 0.1), transparent 34%),
    radial-gradient(circle at 98% 42%, rgba(41, 182, 255, 0.08), transparent 28%),
    var(--page);
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body,
button,
input {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1450px, calc(100% - 72px));
  min-height: 118px;
  margin: 0 auto;
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(344px, 100%);
  min-height: 86px;
  padding: 10px 18px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.72), rgba(2, 13, 26, 0.34) 72%, transparent),
    rgba(2, 13, 26, 0.22);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  filter:
    drop-shadow(0 16px 28px rgba(0, 123, 255, 0.28))
    drop-shadow(0 4px 14px rgba(0, 0, 0, 0.44));
  backdrop-filter: blur(10px);
}

.brand img {
  width: 308px;
  max-height: 106px;
  object-fit: contain;
}

.brand picture {
  display: grid;
  place-items: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 46px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 850;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #29b6ff, transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.34);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(66, 153, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 54%),
    linear-gradient(135deg, #0b6dff, #258bff 46%, #0063f5);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 20px 38px rgba(0, 112, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 65%);
  content: "";
  opacity: 0;
  transform: translateX(-130%);
}

.button:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 54%),
    linear-gradient(135deg, #167aff, #3496ff 46%, #0b6dff);
  transform: translateY(-1px);
}

.button:hover::before {
  opacity: 1;
  transform: translateX(130%);
  transition:
    opacity 0.2s ease,
    transform 0.72s ease;
}

.button.small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
  text-transform: none;
}

.button.outline {
  border-color: rgba(34, 197, 94, 0.78);
  background:
    linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.02)),
    rgba(0, 22, 38, 0.52);
  color: #62f29a;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(34, 197, 94, 0.18);
}

.button.outline:hover {
  background: rgba(22, 163, 74, 0.12);
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-height: min(760px, 100svh);
  padding: 126px max(42px, calc((100vw - 1450px) / 2)) 48px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 15%, rgba(17, 116, 255, 0.32), transparent 34%),
    radial-gradient(circle at 61% 52%, rgba(0, 72, 170, 0.26), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(0, 105, 255, 0.18), transparent 30%),
    linear-gradient(119deg, #020711 0%, #04172b 46%, #06152a 100%);
  color: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 72%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 72%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.18), transparent 46%),
    radial-gradient(ellipse at center, transparent 54%, rgba(1, 8, 18, 0.58) 100%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  max-width: 670px;
}

.eyebrow {
  margin: 0;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.flow-section h2,
.features-section h2,
.screens-section h2,
.cta-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.03;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(40px, 3.7vw, 58px);
  line-height: 1.01;
  text-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: #1284ff;
  text-shadow: 0 0 34px rgba(18, 132, 255, 0.46);
}

.hero h1::first-letter {
  letter-spacing: 0;
}

.lead,
.section-copy p,
.screens-section > p,
.cta-copy p {
  margin: 0;
  color: var(--slate-500);
  font-size: 18px;
  line-height: 1.55;
}

.hero .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
}

.hero-solution-panel,
.hero-pain-list {
  max-width: 640px;
}

.hero-solution-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  background: rgba(2, 13, 26, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-solution-panel strong,
.hero-solution-panel span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-solution-panel strong {
  color: #ffffff;
  text-transform: uppercase;
}

.hero-solution-panel span {
  padding: 7px 9px;
  border: 1px solid rgba(41, 182, 255, 0.2);
  border-radius: 999px;
  background: rgba(25, 124, 255, 0.12);
  color: rgba(226, 232, 240, 0.92);
}

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

.hero-pain-list li {
  position: relative;
  min-height: 32px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
}

.hero-pain-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
  font-size: 14px;
  font-weight: 950;
  content: "!";
}

.hero-primary::after {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12h14m-6-6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12h14m-6-6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-note {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 590px;
  padding: 0;
  margin: 5px 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  min-height: 44px;
  padding-left: 44px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.trust-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 32px;
  height: 34px;
  border: 1px solid rgba(41, 182, 255, 0.46);
  border-radius: 8px;
  background: rgba(17, 102, 210, 0.16);
  box-shadow: inset 0 0 18px rgba(41, 182, 255, 0.12);
  content: "";
}

.trust-list li::after {
  position: absolute;
  top: 8px;
  left: 7px;
  width: 18px;
  height: 18px;
  background: #2092ff;
  content: "";
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.trust-list li:nth-child(1)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm4 17h.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm4 17h.01'/%3E%3C/svg%3E");
}

.trust-list li:nth-child(2)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 16.5 12 20l6-3.5M6 12.5 12 16l6-3.5M12 4l6 3.5-6 3.5-6-3.5L12 4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 16.5 12 20l6-3.5M6 12.5 12 16l6-3.5M12 4l6 3.5-6 3.5-6-3.5L12 4Z'/%3E%3C/svg%3E");
}

.trust-list li:nth-child(3)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Zm-3-10 2 2 4-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Zm-3-10 2 2 4-4'/%3E%3C/svg%3E");
}

.hero-bg {
  position: absolute;
  z-index: 1;
  top: 118px;
  right: max(36px, calc((100vw - 1450px) / 2));
  width: min(860px, 54vw);
  max-width: 100%;
  height: 560px;
  overflow: visible;
}

.hero-bg::before {
  position: absolute;
  inset: -90px -120px -80px -140px;
  background:
    radial-gradient(circle at 64% 40%, rgba(25, 124, 255, 0.36), transparent 36%),
    radial-gradient(circle at 82% 70%, rgba(41, 182, 255, 0.16), transparent 31%);
  filter: blur(12px);
  content: "";
}

.hero-bg::after {
  position: absolute;
  right: 30px;
  bottom: 14px;
  left: 14px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.54), transparent 70%);
  filter: blur(14px);
  content: "";
}

.device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    #060d17;
  box-shadow:
    0 36px 105px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.laptop {
  right: 0;
  bottom: 42px;
  width: 760px;
  max-width: 100%;
  padding: 18px 18px 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px 28px 18px 18px;
}

.laptop::after {
  position: absolute;
  right: 84px;
  bottom: -30px;
  left: 84px;
  height: 32px;
  border-radius: 0 0 36px 36px;
  background:
    linear-gradient(180deg, #334155, #111827 60%, #020617);
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.42);
  content: "";
}

.device-top {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 132px;
  height: 26px;
  border-radius: 0 0 12px 12px;
  background: #02050a;
  transform: translateX(-50%);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 438px;
  overflow: hidden;
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.dashboard-shell aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 34px 16px 18px;
  background:
    linear-gradient(180deg, rgba(25, 124, 255, 0.12), transparent 32%),
    #071827;
  color: #ffffff;
}

.dashboard-shell aside strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.1;
}

.dashboard-shell aside small {
  display: block;
  color: #38bdf8;
  font-size: 11px;
}

.dashboard-shell aside span {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.dashboard-shell aside span.active {
  background: rgba(25, 124, 255, 0.32);
  color: #ffffff;
}

.dashboard-content {
  display: grid;
  gap: 16px;
  padding: 24px 20px 20px;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.mock-topbar span {
  margin-right: auto;
}

.mock-topbar i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #eef2f7;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mini-cards article {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.mini-cards small {
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-cards strong {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1;
}

.chart-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 14px;
}

.bar-chart,
.donut-chart,
.list-preview {
  min-height: 150px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
}

.bar-chart span {
  display: block;
  width: 18%;
  border-radius: 8px 8px 0 0;
  background: var(--blue-500);
}

.donut-chart {
  position: relative;
}

.donut-chart::before {
  position: absolute;
  inset: 28px;
  border: 22px solid var(--blue-500);
  border-right-color: var(--green-500);
  border-bottom-color: #f59e0b;
  border-radius: 50%;
  content: "";
}

.donut-chart::after {
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.list-preview {
  display: grid;
  gap: 9px;
  min-height: 82px;
  padding: 16px;
}

.list-preview span {
  border-radius: 999px;
  background: #e2e8f0;
}

.device.phone {
  right: -24px;
  bottom: 8px;
  width: 204px;
  min-height: 398px;
  padding: 44px 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 0%, rgba(25, 124, 255, 0.18), transparent 32%),
    #071321;
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.phone-bar {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}

.device.phone strong,
.device.phone span,
.device.phone b {
  display: block;
}

.device.phone strong {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
}

.device.phone strong small {
  display: block;
  color: #2da7ff;
  font-size: 12px;
}

.device.phone span {
  margin-top: 12px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}

.device.phone b {
  min-height: 58px;
  margin-top: 6px;
  padding: 16px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--slate-900);
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg::before {
    animation: heroGlow 9s ease-in-out infinite alternate;
  }

  .laptop {
    animation: deviceFloat 8s ease-in-out infinite;
  }

  .device.phone {
    animation: deviceFloat 8s ease-in-out 0.9s infinite;
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.7;
    transform: translate3d(-8px, 0, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(12px, -10px, 0) scale(1.03);
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, calc(100% - 48px));
  max-width: calc(100% - 48px);
  margin: 0 auto;
  padding: 30px 0;
  background: #ffffff;
}

.metrics article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 14px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--slate-200);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  color: var(--slate-900);
  font-size: 28px;
  line-height: 1;
}

.metrics small {
  grid-column: 2;
  color: var(--slate-500);
}

.icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--blue-600);
}

.icon::before {
  width: 24px;
  height: 24px;
  background: currentColor;
  content: "";
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon.car::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 17h14M6 17v2m12-2v2M5 17l1.8-6.2A3 3 0 0 1 9.7 8h4.6a3 3 0 0 1 2.9 2.8L19 17M7 14h.01M17 14h.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 17h14M6 17v2m12-2v2M5 17l1.8-6.2A3 3 0 0 1 9.7 8h4.6a3 3 0 0 1 2.9 2.8L19 17M7 14h.01M17 14h.01'/%3E%3C/svg%3E"); }
.icon.wrench::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14.7 6.3a4 4 0 0 0 5 5L11 20a2.1 2.1 0 0 1-3-3l8.7-8.7a4 4 0 0 0-2-2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14.7 6.3a4 4 0 0 0 5 5L11 20a2.1 2.1 0 0 1-3-3l8.7-8.7a4 4 0 0 0-2-2Z'/%3E%3C/svg%3E"); }
.icon.box::before,
.icon.parts::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m21 8-9-5-9 5 9 5 9-5ZM3 8v8l9 5 9-5V8M12 13v8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m21 8-9-5-9 5 9 5 9-5ZM3 8v8l9 5 9-5V8M12 13v8'/%3E%3C/svg%3E"); }
.icon.pin::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0ZM12 10h.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0ZM12 10h.01'/%3E%3C/svg%3E"); }
.icon.camera::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14.5 4 16 7h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3l1.5-3h5ZM12 17a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14.5 4 16 7h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3l1.5-3h5ZM12 17a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3C/svg%3E"); }
.icon.qr::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h7v7H3V3Zm2 2v3h3V5H5Zm9-2h7v7h-7V3Zm2 2v3h3V5h-3ZM3 14h7v7H3v-7Zm2 2v3h3v-3H5Zm9-2h2v2h-2v-2Zm4 0h3v2h-3v-2Zm-4 4h2v3h-2v-3Zm4 1h1v-2h2v4h-3v-2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h7v7H3V3Zm2 2v3h3V5H5Zm9-2h7v7h-7V3Zm2 2v3h3V5h-3ZM3 14h7v7H3v-7Zm2 2v3h3v-3H5Zm9-2h2v2h-2v-2Zm4 0h3v2h-3v-2Zm-4 4h2v3h-2v-3Zm4 1h1v-2h2v4h-3v-2Z'/%3E%3C/svg%3E"); }
.icon.cart::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 6h15l-2 8H8L6 3H3m7 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm8 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 6h15l-2 8H8L6 3H3m7 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm8 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z'/%3E%3C/svg%3E"); }
.icon.chart::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 19V5m0 14h16M8 16v-5m4 5V8m4 8v-9'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 19V5m0 14h16M8 16v-5m4 5V8m4 8v-9'/%3E%3C/svg%3E"); }
.icon.money::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 2v20m5-16H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 2v20m5-16H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
.icon.phone::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm4 17h.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm4 17h.01'/%3E%3C/svg%3E"); }

.section-grid,
.flow-section,
.features-section,
.screens-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.section-copy h2,
.flow-section h2,
.features-section h2,
.screens-section h2,
.cta-copy h2 {
  color: var(--slate-900);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}

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

.check-list li,
.mini-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
}

.check-list li::before,
.mini-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.check-list.danger li::before,
.mini-list.danger li::before {
  background: var(--red-100);
  color: var(--red-500);
  content: "×";
}

.check-list.success li::before,
.mini-list.success li::before {
  background: var(--green-100);
  color: var(--green-500);
  content: "✓";
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 18px;
  align-items: center;
}

.before-after article {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.before-after article > strong {
  color: var(--slate-900);
  font-size: 18px;
}

.tag {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.danger {
  color: var(--red-500);
}

.tag.success {
  color: var(--green-500);
}

.stock-scene {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 178px;
  padding: 14px;
  border-radius: 10px;
  background: var(--slate-100);
  overflow: hidden;
}

.stock-scene::before {
  position: absolute;
  inset: 18px 14px;
  border-top: 4px solid rgba(15, 23, 42, 0.12);
  border-bottom: 4px solid rgba(15, 23, 42, 0.12);
  content: "";
  pointer-events: none;
}

.stock-scene span {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: #94a3b8;
}

.stock-scene.messy span:nth-child(1),
.stock-scene.messy span:nth-child(4) {
  transform: rotate(-7deg);
}

.stock-scene.messy span:nth-child(2),
.stock-scene.messy span:nth-child(5) {
  transform: translateY(18px) rotate(5deg);
}

.stock-scene.messy span:nth-child(3),
.stock-scene.messy span:nth-child(6) {
  transform: translateY(8px) rotate(-3deg);
}

.stock-scene.organized {
  background: #edf7f1;
}

.stock-scene.organized span {
  background: #2f523c;
  transform: none;
}

.arrow-card {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.flow-section {
  padding-bottom: 36px;
  text-align: center;
}

.flow-section .eyebrow,
.features-section .eyebrow,
.screens-section .eyebrow {
  margin-bottom: 12px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.flow-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.flow-steps article:not(:last-child)::after {
  position: absolute;
  top: 20px;
  left: calc(50% + 34px);
  width: calc(100% - 50px);
  height: 1px;
  background: #cbd5e1;
  content: "";
}

.flow-steps strong {
  color: var(--blue-600);
}

.flow-steps small {
  color: var(--slate-700);
  font-weight: 700;
}

.finance-section {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding-top: 54px;
  isolation: isolate;
}

.finance-section::before {
  position: absolute;
  top: 12%;
  right: 4%;
  z-index: -1;
  width: 620px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 52% 42%, rgba(37, 99, 235, 0.1), transparent 52%),
    radial-gradient(circle at 74% 70%, rgba(16, 185, 129, 0.08), transparent 46%);
  content: "";
  filter: blur(8px);
}

.vehicle-profit-card {
  position: relative;
  display: grid;
  gap: 22px;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.08), transparent 28%);
  box-shadow:
    0 34px 76px rgba(15, 23, 42, 0.13),
    0 10px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.vehicle-profit-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.28), transparent);
  content: "";
}

.vehicle-profit-card::after {
  position: absolute;
  top: -120px;
  right: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.profit-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.profit-title {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.profit-title strong {
  color: var(--slate-900);
  font-size: 25px;
  line-height: 1.15;
}

.profit-header small {
  color: var(--slate-500);
  font-size: 14px;
}

.profit-title span {
  min-height: 26px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dcfce7, #c8f7d8);
  color: var(--green-500);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.profit-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: center;
}

.car-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 184px;
  padding: 0 8px 10px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 52% 82%, rgba(15, 23, 42, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(241, 247, 255, 0.42));
}

.car-preview::after {
  position: absolute;
  right: 10%;
  bottom: 18px;
  left: 12%;
  height: 16px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  content: "";
  filter: blur(14px);
}

.car-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(360px, 100%);
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(15, 23, 42, 0.16));
}

.car-preview picture {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
}

.profit-top-grid,
.profit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.profit-top-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.profit-top-grid div,
.profit-grid div {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 10px;
  min-height: 142px;
  padding: 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.07), transparent 42%);
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.profit-top-grid div {
  min-height: 112px;
  padding-right: 14px;
  padding-left: 14px;
}

.profit-top-grid small,
.profit-grid small {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.profit-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green-500);
}

.profit-top-grid strong,
.profit-grid strong {
  display: flex;
  gap: 6px;
  align-items: baseline;
  min-width: 0;
  color: var(--slate-900);
  font-size: clamp(20px, 1.24vw, 24px);
  line-height: 1.08;
  white-space: nowrap;
}

.profit-top-grid strong {
  gap: 4px;
  font-size: clamp(18px, 1vw, 20px);
}

.profit-grid strong {
  font-size: clamp(20px, 1.18vw, 24px);
}

.profit-top-grid strong span,
.profit-grid strong span {
  flex: 0 0 auto;
  font-size: 0.82em;
  letter-spacing: 0;
}

.profit-grid .stock small,
.profit-grid .stock strong,
.profit-grid .stock .profit-icon {
  color: var(--blue-600);
}

.profit-grid .stock .profit-icon {
  background: #dbeafe;
}

.profit-grid .positive strong,
.profit-grid .positive small {
  color: var(--green-500);
}

.profit-grid .current-loss strong,
.profit-grid .current-loss small {
  color: #f59e0b;
}

.profit-grid .current-loss .profit-icon {
  background: #ffedd5;
  color: #f59e0b;
}

.profit-grid p {
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.35;
}

.profit-grid .featured {
  border-color: rgba(37, 99, 235, 0.2);
  background:
    linear-gradient(145deg, #07182b, var(--navy-950)),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.45), transparent 40%);
  color: #ffffff;
  box-shadow:
    0 22px 42px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.profit-grid .featured::after {
  position: absolute;
  top: -50px;
  right: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.22);
  content: "";
  filter: blur(4px);
}

.profit-grid .featured small,
.profit-grid .featured strong,
.profit-grid .featured p {
  color: #ffffff;
}

.profit-grid .featured .profit-icon {
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
}

.profit-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  margin: 2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(191, 219, 254, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(241, 247, 255, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.12), transparent 32%);
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.45;
}

.profit-note-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  align-self: start;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--blue-600);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.profit-note-copy {
  display: block;
  min-width: 0;
}

.profit-note strong {
  display: block;
  color: #475569;
  font-weight: 800;
}

.features-section,
.screens-section {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  text-align: left;
}

.feature-grid article {
  display: grid;
  gap: 10px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.feature-grid strong {
  color: var(--slate-900);
}

.feature-grid small {
  color: var(--slate-500);
  line-height: 1.4;
}

.screens-section > p {
  max-width: 760px;
  margin: 12px auto 0;
}

.screen-showcase {
  display: grid;
  gap: 18px;
  margin-top: 40px;
  padding: 18px;
  border: 1px solid #dbe5f1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

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

.screen-tabs button {
  min-height: 48px;
  border: 1px solid #dbe5f1;
  border-radius: 12px;
  background: #ffffff;
  color: var(--slate-700);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.screen-tabs button:hover,
.screen-tabs button:focus-visible {
  border-color: rgba(37, 99, 235, 0.45);
  color: var(--blue-600);
  outline: 0;
  transform: translateY(-1px);
}

.screen-tabs button.is-active {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
}

.screen-feature {
  display: grid;
  gap: 16px;
}

.screen-feature-header {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  padding: 2px 4px 0;
  text-align: left;
}

.screen-feature-header h3 {
  margin: 4px 0 6px;
  color: var(--slate-900);
  font-size: 30px;
  line-height: 1.15;
}

.screen-feature-header p {
  max-width: 760px;
  color: var(--slate-500);
  font-size: 17px;
  line-height: 1.5;
}

.screen-kicker {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.screen-open {
  min-width: 148px;
  min-height: 44px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--blue-600);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.screen-feature-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  border-radius: 18px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(16, 185, 129, 0.2)) border-box;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.screen-image-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: #ffffff;
  cursor: zoom-in;
}

.screen-image-button img {
  display: block;
  width: 100%;
  min-height: 360px;
  max-height: 680px;
  object-fit: contain;
  object-position: top center;
}

.screen-image-button span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.screen-image-button:hover span,
.screen-image-button:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.proof-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 48px));
  max-width: calc(100% - 48px);
  margin: 0 auto 70px;
  padding: 22px;
  border: 1px solid #dbe5f1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.proof-section strong {
  flex-basis: 100%;
  color: var(--slate-900);
  font-size: 20px;
  text-align: center;
}

.proof-section span {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  width: 100%;
  max-width: 100%;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  padding: 76px max(40px, calc((100vw - 1180px) / 2));
  background: var(--navy-950);
  color: #ffffff;
}

.cta-copy {
  display: grid;
  gap: 16px;
}

.cta-copy h2 {
  color: #ffffff;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.82);
}

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

.lead-form h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 24px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--slate-900);
}

.lead-form button,
.lead-form small {
  grid-column: 1 / -1;
}

.lead-form small {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.contact-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.contact-links a:hover {
  color: #ffffff;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: #fecaca;
}

.form-status.is-success {
  color: #bbf7d0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.34);
}

.floating-whatsapp span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.floating-whatsapp span::before {
  position: absolute;
  right: 2px;
  bottom: -5px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  content: "";
  transform: rotate(35deg);
}

.screen-dialog {
  width: min(96vw, 1480px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #ffffff;
  color: var(--slate-900);
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.38);
}

.screen-dialog::backdrop {
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(5px);
}

.screen-dialog-inner {
  position: relative;
  max-height: 92vh;
  overflow: auto;
  padding: 18px;
}

.screen-dialog-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  min-height: 40px;
  margin-left: auto;
  padding: 0 16px;
  border: 1px solid #dbe5f1;
  border-radius: 999px;
  background: #ffffff;
  color: var(--slate-700);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.screen-dialog figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.screen-dialog img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  object-position: top center;
}

.screen-dialog figcaption {
  color: var(--slate-500);
  font-weight: 900;
  text-align: center;
}

.hero-badge {
  width: fit-content;
  max-width: 520px;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid rgba(41, 182, 255, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(41, 182, 255, 0.14), rgba(41, 182, 255, 0.04)),
    rgba(2, 13, 26, 0.48);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-bg {
  perspective: 1200px;
}

.hero-data-chip {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  min-width: 154px;
  padding: 13px 15px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(6, 24, 48, 0.88), rgba(3, 12, 24, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(41, 182, 255, 0.2), transparent 45%);
  color: #ffffff;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-data-chip::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(41, 182, 255, 0.5), transparent 44%, rgba(22, 163, 74, 0.28));
  content: "";
  opacity: 0.6;
}

.hero-data-chip span {
  color: rgba(226, 232, 240, 0.76);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-data-chip strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
}

.chip-profit {
  top: 72px;
  left: 8px;
}

.chip-ready {
  right: 14px;
  bottom: 118px;
}

.chip-market {
  right: 270px;
  bottom: 12px;
}

.laptop::before,
.device.phone::before,
.vehicle-profit-card::before,
.screen-feature-frame::before {
  pointer-events: none;
}

.laptop::before {
  position: absolute;
  inset: 22px 22px auto 34%;
  z-index: 3;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 60%);
  content: "";
  filter: blur(10px);
  opacity: 0.55;
}

.device.phone::before {
  position: absolute;
  inset: 16px 12px auto 42%;
  z-index: 2;
  height: 130px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 62%);
  content: "";
  filter: blur(10px);
  opacity: 0.56;
}

.metrics {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 72px));
  max-width: calc(100% - 72px);
  margin-top: -22px;
  padding: 24px 0;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 241, 0.86);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.88)),
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 34%);
  box-shadow:
    0 26px 70px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.metrics::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent),
    radial-gradient(circle at 100% 0%, rgba(41, 182, 255, 0.12), transparent 32%);
  content: "";
  pointer-events: none;
}

.metrics article {
  position: relative;
  z-index: 1;
}

.metrics strong {
  font-size: clamp(28px, 2vw, 36px);
  letter-spacing: -0.01em;
}

.metrics .icon,
.feature-grid .icon,
.flow-steps .icon {
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.section-grid,
.flow-section,
.features-section,
.screens-section {
  position: relative;
  max-width: calc(100% - 48px);
  overflow: clip;
}

.section-grid::before,
.features-section::before,
.screens-section::before {
  position: absolute;
  inset: 34px -70px auto;
  z-index: -1;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.06), transparent 62%);
  content: "";
  pointer-events: none;
}

.before-after article {
  position: relative;
  overflow: hidden;
  border-color: rgba(203, 213, 225, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.06), transparent 34%);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.before-after article::after,
.feature-grid article::after,
.screen-showcase::after,
.vehicle-profit-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-55%);
  transition:
    opacity 0.25s ease,
    transform 0.75s ease;
  pointer-events: none;
}

.before-after article:hover::after,
.feature-grid article:hover::after,
.screen-showcase:hover::after,
.vehicle-profit-card:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.before-card {
  border-top: 3px solid rgba(239, 68, 68, 0.5);
}

.after-card {
  border-top: 3px solid rgba(22, 163, 74, 0.5);
}

.arrow-card {
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.34),
    0 0 0 10px rgba(37, 99, 235, 0.08);
}

.flow-section {
  width: min(1280px, calc(100% - 48px));
  padding-top: 72px;
  padding-bottom: 62px;
}

.flow-steps {
  position: relative;
  gap: 22px;
}

.flow-steps::before {
  position: absolute;
  top: 22px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.22), transparent);
  content: "";
}

.flow-steps::after {
  position: absolute;
  top: 20px;
  left: 8%;
  z-index: 0;
  width: 14%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(41, 182, 255, 0.82), transparent);
  content: "";
  filter: blur(2px);
  opacity: 0.72;
}

.flow-steps article {
  isolation: isolate;
  z-index: 1;
}

.flow-steps article:not(:last-child)::after {
  opacity: 0;
}

.flow-steps article::before {
  position: absolute;
  z-index: 5;
  top: -72px;
  left: 50%;
  width: max-content;
  max-width: 210px;
  padding: 9px 11px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  background: rgba(2, 12, 25, 0.92);
  color: #ffffff;
  content: attr(data-detail);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  pointer-events: none;
}

.flow-steps article:hover::before,
.flow-steps article:focus-within::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.flow-steps article .icon {
  background: linear-gradient(180deg, #eef6ff, #eaf2ff);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.flow-steps article:hover .icon {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow:
    0 18px 32px rgba(37, 99, 235, 0.28),
    0 0 0 10px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

.profit-badge {
  width: fit-content;
  margin-top: 4px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
}

.vehicle-profit-card {
  transform: translateZ(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.vehicle-profit-card:hover {
  box-shadow:
    0 42px 92px rgba(15, 23, 42, 0.16),
    0 12px 32px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.profit-note {
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
}

.profit-note-copy {
  display: grid;
  gap: 2px;
  width: 100%;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  border-color: rgba(203, 213, 225, 0.8);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08), transparent 40%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.feature-grid article:hover {
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 26px 54px rgba(15, 23, 42, 0.1),
    0 10px 24px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

.feature-grid article:nth-child(1),
.feature-grid article:nth-child(7),
.feature-grid article:nth-child(8) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.12), transparent 42%);
}

.screen-showcase {
  position: relative;
  overflow: hidden;
  border-color: rgba(191, 219, 254, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.08), transparent 30%);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.screen-feature-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px) auto;
  align-items: end;
}

.screen-benefits,
.cta-proof {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.screen-benefits {
  align-self: center;
}

.screen-benefits li,
.cta-proof li {
  position: relative;
  padding-left: 24px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 850;
}

.screen-benefits li::before,
.cta-proof li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green-500);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.screen-open {
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.screen-open:hover {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

.screen-feature-frame {
  position: relative;
}

.screen-feature-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 8%, rgba(255, 255, 255, 0.24), transparent 34%);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 0.2s ease,
    transform 0.8s ease;
}

.screen-feature-frame:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.proof-section {
  position: relative;
  overflow: hidden;
  border-color: rgba(191, 219, 254, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.08), transparent 34%);
  box-shadow:
    0 24px 58px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.proof-section span {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 18%, rgba(37, 99, 235, 0.24), transparent 28%),
    radial-gradient(circle at 84% 26%, rgba(41, 182, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #020711 0%, #06172c 54%, #020b16 100%);
}

.cta-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.52;
}

.cta-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(41, 182, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 42px rgba(37, 99, 235, 0.12),
    0 0 70px rgba(37, 99, 235, 0.13);
  transform: translateY(-50%);
}

.cta-orbit::before,
.cta-orbit::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.cta-orbit::before {
  inset: 44px;
  border: 1px solid rgba(41, 182, 255, 0.16);
}

.cta-orbit::after {
  inset: 104px;
  border: 1px solid rgba(34, 197, 94, 0.16);
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-proof li {
  min-height: 34px;
  padding: 8px 12px 8px 34px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(8, 31, 58, 0.7);
  color: rgba(255, 255, 255, 0.84);
}

.cta-proof li::before {
  top: 8px;
  left: 12px;
}

.lead-form {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 26, 49, 0.82), rgba(4, 14, 28, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.18), transparent 42%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.lead-form::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 30%, transparent 70%, rgba(41, 182, 255, 0.12));
  content: "";
  pointer-events: none;
}

.lead-form input {
  border-color: rgba(219, 229, 241, 0.82);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lead-form input:focus {
  border-color: rgba(41, 182, 255, 0.82);
  box-shadow:
    0 0 0 4px rgba(41, 182, 255, 0.16),
    0 10px 18px rgba(0, 0, 0, 0.12);
  outline: 0;
}

.floating-whatsapp {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: inherit;
  content: "";
  opacity: 0.72;
}

.floating-whatsapp:hover {
  box-shadow:
    0 18px 42px rgba(22, 163, 74, 0.42),
    0 0 0 10px rgba(22, 163, 74, 0.08);
  transform: translateY(-2px);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.screen-feature-frame.is-changing img {
  opacity: 0.35;
  transform: scale(0.985);
}

.screen-feature-frame img {
  transition:
    opacity 0.2s ease,
    transform 0.24s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: heroGradient 14s ease-in-out infinite alternate;
  }

  .hero-data-chip {
    animation: chipFloat 7s ease-in-out infinite;
  }

  .chip-ready {
    animation-delay: 0.9s;
  }

  .chip-market {
    animation-delay: 1.8s;
  }

  .flow-steps::after {
    animation: flowEnergy 5.6s ease-in-out infinite;
  }

  .cta-orbit {
    animation: orbitSpin 20s linear infinite;
  }

  .floating-whatsapp::before {
    animation: whatsappPulse 2.2s ease-out infinite;
  }
}

@keyframes heroGradient {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes flowEnergy {
  0% {
    left: 8%;
    opacity: 0;
  }

  18%,
  72% {
    opacity: 0.82;
  }

  100% {
    left: 78%;
    opacity: 0;
  }
}

@keyframes orbitSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes whatsappPulse {
  from {
    opacity: 0.72;
    transform: scale(0.9);
  }

  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (max-width: 1120px) {
  .finance-section {
    grid-template-columns: 1fr;
    gap: 40px;
    width: min(980px, calc(100% - 48px));
  }

  .finance-section .section-copy {
    max-width: 760px;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    width: min(960px, calc(100% - 48px));
  }

  .hero-bg {
    opacity: 0.72;
    right: -210px;
    width: 820px;
  }

  .hero-data-chip {
    transform: scale(0.9);
    transform-origin: center;
  }

  .chip-profit {
    left: 42px;
  }

  .chip-market {
    right: 210px;
  }

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

  .screen-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  html,
  body,
  main {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    width: calc(100% - 32px);
    min-height: 86px;
  }

  .brand {
    width: 214px;
    min-height: 66px;
    padding: 8px 12px;
  }

  .brand img {
    width: 190px;
    max-height: 70px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 106px 20px 58px;
  }

  .hero::before {
    display: none;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: 100%;
    height: 360px;
    margin-top: 36px;
    overflow: hidden;
    opacity: 1;
  }

  .hero-data-chip {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    max-width: none;
  }

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

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

  .trust-list,
  .metrics,
  .section-grid,
  .before-after,
  .flow-steps,
  .profit-grid,
  .feature-grid,
  .cta-section,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .screen-showcase {
    padding: 12px;
    border-radius: 18px;
  }

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

  .screen-feature-header {
    display: grid;
    gap: 14px;
  }

  .screen-benefits {
    grid-template-columns: 1fr;
  }

  .screen-feature-header h3 {
    font-size: 24px;
  }

  .screen-feature-header p {
    font-size: 15px;
  }

  .screen-open {
    width: 100%;
  }

  .screen-image-button img {
    min-height: 220px;
    max-height: none;
  }

  .screen-image-button span {
    opacity: 1;
    transform: none;
  }

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

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

  .metrics {
    width: 100%;
    padding: 10px 20px;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
    padding: 18px 0;
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .section-grid,
  .flow-section,
  .features-section,
  .screens-section {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding: 58px 0;
  }

  .before-after {
    gap: 18px;
  }

  .arrow-card {
    justify-self: center;
    transform: rotate(90deg);
  }

  .flow-steps {
    margin-top: 30px;
    text-align: left;
  }

  .flow-steps::before,
  .flow-steps::after,
  .flow-steps article::before {
    display: none;
  }

  .flow-steps article {
    grid-template-columns: 42px 30px 1fr;
    justify-items: start;
    text-align: left;
  }

  .flow-steps article:not(:last-child)::after {
    display: none;
  }

  .vehicle-profit-card {
    padding: 18px;
  }

  .cta-section {
    padding: 56px 20px;
  }

  .cta-orbit {
    display: none;
  }

  .cta-proof {
    display: grid;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .laptop {
    right: 50%;
    width: min(690px, 176vw);
    transform: translateX(48%) scale(0.78);
    transform-origin: center bottom;
  }

  .device.phone {
    right: 0;
    width: 170px;
    min-height: 332px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-badge {
    border-radius: 14px;
  }

  .hero-actions {
    max-width: none;
  }

  .laptop {
    right: 50%;
    width: min(640px, 190vw);
    transform: translateX(48%) scale(0.62);
    transform-origin: center bottom;
  }

  .device.phone {
    right: 0;
    bottom: 10px;
    transform: scale(0.76);
    transform-origin: right bottom;
  }

  .dashboard-shell {
    grid-template-columns: 116px 1fr;
  }

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

  .chart-row {
    grid-template-columns: 1fr;
  }

  .donut-chart {
    display: none;
  }

  .vehicle-profit-card {
    padding: 20px;
  }

  .profit-note {
    align-items: start;
  }

  .profit-title strong {
    font-size: 22px;
  }

  .car-preview {
    min-height: 150px;
  }

  .profit-top-grid,
  .profit-grid {
    grid-template-columns: 1fr;
  }

  .profit-top-grid div,
  .profit-grid div {
    min-height: 104px;
  }

  .feature-grid article {
    min-height: 0;
  }

  .screen-tabs {
    grid-template-columns: 1fr;
  }

  .screen-tabs button {
    min-height: 44px;
  }

  .screen-dialog {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .screen-dialog-inner {
    max-height: 100vh;
    padding: 12px;
  }
}

/* Compact product showcase */
.screens-section {
  width: min(1240px, calc(100% - 48px));
  padding-top: 58px;
  padding-bottom: 58px;
}

.screens-section h2 {
  font-size: clamp(30px, 3.2vw, 50px);
}

.screen-intro {
  max-width: 680px;
  margin: 10px auto 0;
}

.compact-showcase {
  grid-template-columns: minmax(260px, 334px) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  min-height: 510px;
  max-height: 590px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 28px;
}

.compact-showcase::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 280px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 66%);
  content: "";
  pointer-events: none;
}

.screen-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.08), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 32px rgba(15, 23, 42, 0.04);
}

.screen-rail button {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--slate-700);
  text-align: left;
  box-shadow: none;
}

.screen-rail button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: translate(-6px, -50%);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.screen-rail button:hover,
.screen-rail button:focus-visible {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(239, 246, 255, 0.76);
  color: var(--blue-600);
  outline: 0;
  transform: none;
}

.screen-rail button:hover::after,
.screen-rail button:focus-visible::after,
.screen-rail button.is-active::after {
  opacity: 0.9;
  transform: translate(0, -50%);
}

.screen-rail button.is-active {
  border-color: rgba(37, 99, 235, 0.36);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(25, 124, 255, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.24), transparent 36%);
  color: #ffffff;
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.screen-rail button > span:last-child {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding-right: 18px;
}

.screen-rail strong,
.screen-rail small {
  display: block;
}

.screen-rail strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.15;
}

.screen-rail small {
  color: inherit;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.74;
}

.screen-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
}

.screen-rail button.is-active .screen-tab-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.compact-showcase .screen-feature {
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  padding: 8px;
}

.compact-showcase .screen-feature-header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  padding: 4px 4px 10px;
  text-align: left;
}

.compact-showcase .screen-feature-header > div {
  min-width: min(100%, 320px);
  flex: 1 1 320px;
}

.compact-showcase .screen-feature-header h3 {
  margin: 3px 0 4px;
  font-size: clamp(24px, 2vw, 32px);
}

.compact-showcase .screen-feature-header p {
  max-width: 620px;
  margin: 0;
  font-size: 15px;
}

.compact-showcase .screen-open {
  flex: 0 0 auto;
  min-width: 126px;
  min-height: 40px;
  border-radius: 999px;
}

.compact-showcase .screen-feature-frame {
  min-height: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 50%);
}

.compact-showcase .screen-image-button {
  display: grid;
  place-items: center;
  min-height: 390px;
  height: min(420px, 32vw);
  padding: 16px;
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.compact-showcase .screen-image-button img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.12));
}

.compact-showcase .screen-image-button span {
  right: 14px;
  bottom: 14px;
}

@media (max-width: 980px) {
  .compact-showcase {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .screen-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screen-rail::-webkit-scrollbar {
    display: none;
  }

  .screen-rail button {
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 188px;
    min-height: 66px;
    scroll-snap-align: start;
  }

  .screen-tab-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .screen-rail small {
    display: none;
  }

  .compact-showcase .screen-feature-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .compact-showcase .screen-open {
    width: 100%;
  }

  .compact-showcase .screen-image-button {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .screens-section {
    width: calc(100% - 28px);
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .screen-intro {
    font-size: 15px;
  }

  .compact-showcase {
    margin-top: 22px;
    padding: 12px;
    border-radius: 20px;
  }

  .screen-rail {
    padding: 8px;
    border-radius: 16px;
  }

  .screen-rail button {
    min-width: 150px;
    min-height: 56px;
    padding: 10px;
  }

  .screen-rail button::after {
    display: none;
  }

  .screen-rail strong {
    font-size: 13px;
  }

  .compact-showcase .screen-feature {
    padding: 4px;
  }

  .compact-showcase .screen-feature-header h3 {
    font-size: 22px;
  }

  .compact-showcase .screen-feature-header p {
    font-size: 14px;
  }

  .compact-showcase .screen-image-button {
    height: 232px;
    padding: 8px;
  }
}

/* Mobile hardening: avoid clipped text, overlapping cards and oversized previews. */
@media (max-width: 640px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    width: calc(100% - 28px);
    min-height: 82px;
  }

  .brand {
    width: 212px;
    min-height: 64px;
    padding: 8px 12px;
  }

  .brand img {
    width: 188px;
    max-height: 68px;
  }

  .hero {
    padding: 88px 18px 38px;
    overflow: hidden;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-badge {
    max-width: 100%;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.9vw, 36px);
    line-height: 1.04;
  }

  .hero .lead {
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
    text-align: center;
  }

  .hero-solution-panel {
    gap: 7px;
    padding: 10px;
  }

  .hero-solution-panel strong {
    flex: 1 1 100%;
  }

  .hero-solution-panel span {
    max-width: 100%;
    padding: 6px 8px;
    font-size: 10.5px;
  }

  .hero-pain-list {
    gap: 8px;
  }

  .hero-pain-list li:nth-child(n+3) {
    display: none;
  }

  .hero-pain-list li {
    min-height: 28px;
    font-size: 12.5px;
  }

  .trust-list {
    gap: 10px;
  }

  .trust-list li {
    min-height: 38px;
    padding-left: 38px;
    font-size: 12px;
  }

  .trust-list li::before {
    width: 30px;
    height: 30px;
  }

  .trust-list li::after {
    top: 7px;
    left: 6px;
  }

  .hero-bg {
    height: 248px;
    margin-top: 20px;
    overflow: hidden;
  }

  .laptop {
    right: 50%;
    bottom: 16px;
    width: min(620px, 196vw);
    transform: translateX(47%) scale(0.54);
    transform-origin: center bottom;
  }

  .device.phone {
    right: -8px;
    bottom: 0;
    width: 154px;
    min-height: 304px;
    transform: scale(0.68);
  }

  .metrics {
    width: calc(100% - 28px);
    margin-top: 0;
    border-radius: 18px;
  }

  .metrics article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 14px 0;
  }

  .metrics strong {
    font-size: 26px;
  }

  .metrics small {
    font-size: 13px;
  }

  .icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .section-grid,
  .flow-section,
  .features-section,
  .screens-section {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    overflow: hidden;
    padding: 42px 0;
  }

  .section-copy {
    gap: 14px;
  }

  .section-copy h2,
  .flow-section h2,
  .features-section h2,
  .screens-section h2,
  .cta-copy h2 {
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.08;
  }

  .lead,
  .section-copy p,
  .screens-section > p,
  .cta-copy p {
    font-size: 16px;
    line-height: 1.48;
  }

  .check-list,
  .mini-list {
    gap: 10px;
  }

  .check-list li,
  .mini-list li {
    font-size: 15px;
    line-height: 1.36;
  }

  .before-after article {
    padding: 16px;
  }

  .stock-scene {
    min-height: 132px;
  }

  .flow-section {
    text-align: left;
  }

  .flow-steps {
    gap: 12px;
  }

  .flow-steps article {
    grid-template-columns: 38px 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(203, 213, 225, 0.78);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
  }

  .flow-steps small {
    font-size: 13px;
    line-height: 1.25;
  }

  .finance-section {
    width: calc(100% - 28px);
    gap: 24px;
    padding-top: 42px;
  }

  .vehicle-profit-card {
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .profit-title {
    gap: 8px;
  }

  .profit-title strong {
    max-width: 100%;
    font-size: 21px;
  }

  .profit-header small {
    font-size: 12px;
    line-height: 1.35;
  }

  .profit-badge {
    font-size: 11px;
  }

  .profit-main {
    gap: 12px;
  }

  .car-preview {
    min-height: 126px;
    border-radius: 15px;
  }

  .car-preview img {
    width: min(260px, 92%);
    max-height: 138px;
  }

  .profit-top-grid,
  .profit-grid {
    gap: 10px;
  }

  .profit-top-grid div,
  .profit-grid div {
    min-height: 96px;
    padding: 14px;
    border-radius: 14px;
  }

  .profit-top-grid strong,
  .profit-grid strong {
    display: block;
    font-size: clamp(21px, 7vw, 28px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .profit-top-grid strong span,
  .profit-grid strong span {
    display: inline;
    font-size: 0.78em;
  }

  .profit-grid p {
    font-size: 12px;
  }

  .profit-note {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.4;
  }

  .profit-note-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 8px 12px;
    min-height: 0;
    padding: 14px;
    border-radius: 14px;
  }

  .feature-grid article strong,
  .feature-grid article small {
    min-width: 0;
  }

  .feature-grid article small {
    grid-column: 2;
  }

  .screens-section {
    text-align: left;
  }

  .screens-section .eyebrow,
  .screens-section h2,
  .screen-intro {
    text-align: left;
  }

  .screen-intro {
    max-width: none;
  }

  .compact-showcase {
    gap: 12px;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
    margin-top: 18px;
    padding: 10px;
    border-radius: 18px;
  }

  .screen-rail {
    gap: 8px;
    max-width: 100%;
    margin: 0;
    padding: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .screen-rail button {
    grid-template-columns: 30px minmax(0, 1fr);
    min-width: 138px;
    min-height: 54px;
    gap: 8px;
    padding: 8px;
    border-radius: 13px;
  }

  .screen-tab-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .screen-rail strong {
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .compact-showcase .screen-feature-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 2px 2px 6px;
  }

  .compact-showcase .screen-feature-header > div {
    min-width: 0;
    width: 100%;
  }

  .compact-showcase .screen-feature-header h3 {
    margin-bottom: 2px;
    font-size: 21px;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .compact-showcase .screen-feature-header p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.35;
  }

  .compact-showcase .screen-open {
    order: 2;
    width: 100%;
    min-height: 40px;
    font-size: 13px;
  }

  .compact-showcase .screen-feature-frame {
    border-radius: 15px;
  }

  .compact-showcase .screen-image-button {
    height: 210px;
    padding: 8px;
  }

  .compact-showcase .screen-image-button span {
    display: none;
  }

  .proof-section {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-bottom: 42px;
    padding: 16px;
    border-radius: 16px;
  }

  .proof-section strong {
    font-size: 17px;
    line-height: 1.3;
  }

  .proof-section span {
    min-height: 30px;
    font-size: 12px;
  }

  .cta-section {
    gap: 24px;
    padding: 44px 18px 86px;
  }

  .cta-copy {
    gap: 12px;
  }

  .cta-proof {
    gap: 8px;
  }

  .cta-proof li {
    width: 100%;
  }

  .lead-form {
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
  }

  .lead-form h3 {
    font-size: 21px;
  }

  .lead-form input {
    height: 46px;
  }

  .lead-form .button {
    min-height: 50px;
    padding: 0 12px;
    font-size: 13px;
  }

  .contact-links {
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero .lead,
  .section-copy p,
  .screens-section > p,
  .cta-copy p {
    font-size: 15px;
  }

  .hero-bg {
    height: 218px;
  }

  .laptop {
    right: 50%;
    transform: translateX(47%) scale(0.5);
  }

  .device.phone {
    right: -18px;
    transform: scale(0.62);
  }

  .section-copy h2,
  .flow-section h2,
  .features-section h2,
  .screens-section h2,
  .cta-copy h2 {
    font-size: 27px;
  }

  .screen-rail button {
    min-width: 128px;
  }

  .compact-showcase .screen-image-button {
    height: 188px;
  }

  .profit-top-grid strong,
  .profit-grid strong {
    font-size: 24px;
  }
}

/* Final overflow guard for mobile browsers that expand the layout viewport
   when transformed or decorative elements extend past the right edge. */
.site-header,
.hero,
.metrics,
.section-grid,
.flow-section,
.finance-section,
.features-section,
.screens-section,
.proof-section,
.cta-section {
  max-width: 100%;
}

@supports (overflow: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .metrics,
  .section-grid,
  .flow-section,
  .finance-section,
  .features-section,
  .screens-section,
  .proof-section,
  .cta-section {
    overflow-x: hidden;
  }

  .hero-bg::before,
  .hero-bg::after,
  .section-grid::before,
  .features-section::before,
  .screens-section::before,
  .finance-section::before {
    right: 0;
    left: 0;
    max-width: 100%;
  }
}
