:root {
  --ink: #111512;
  --ink-soft: #202621;
  --cream: #f2f0e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #13bf77;
  --green-dark: #07975a;
  --green-soft: #d9f7e9;
  --red: #f05847;
  --blue: #5e8eff;
  --line: rgba(17, 21, 18, 0.14);
  --muted: #6d736e;
  --radius-lg: 42px;
  --radius-md: 28px;
  --section: min(1240px, calc(100vw - 64px));
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 105px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

#contenu {
  display: flex;
  flex-direction: column;
}

#top { order: 1; }
#protection { order: 2; }
.product-section { order: 3; }
.value-section { order: 4; }
.report-section { order: 5; }
.workflow { order: 6; }
.pricing { order: 7; }
#faq { order: 8; }
.final-cta { order: 9; }
.all-in-one[hidden] { display: none; }

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  width: var(--section);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, calc(100vw - 36px));
  min-height: 70px;
  padding: 10px 12px 10px 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 250, 246, 0.88);
  box-shadow: 0 15px 45px rgba(17, 21, 18, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #454a46;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.login-link {
  position: relative;
}

.desktop-nav a::after,
.login-link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover::after,
.login-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 13px;
}

.button-large {
  min-height: 62px;
  padding: 0 28px;
  font-size: 16px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(17, 21, 18, 0.14);
}

.button-dark:hover {
  background: #252b26;
}

.button-green {
  background: var(--green);
  color: #061b11;
  box-shadow: 0 13px 32px rgba(19, 191, 119, 0.24);
}

.button-green:hover {
  background: #1dce83;
  box-shadow: 0 16px 36px rgba(19, 191, 119, 0.3);
}

.button-white {
  min-height: 56px;
  padding: 0 24px;
  background: var(--white);
  color: var(--ink);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  grid-template-rows: auto auto;
  column-gap: clamp(36px, 5vw, 84px);
  align-items: center;
  min-height: 920px;
  padding: 130px max(32px, calc((100vw - 1240px) / 2)) 70px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 660px;
}

.hero-conversion {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 660px;
  margin-top: 18px;
}

.hero-kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #4d544e;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  width: fit-content;
  padding-left: 30px;
  color: var(--green-dark);
}

.hero-kicker::before {
  width: 20px;
  height: 1px;
  margin-left: -30px;
  background: currentColor;
  content: "";
}

.hero h1,
.display-title,
.cta-panel h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 5.25vw, 82px);
}

.hero h1 span,
.display-title em {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero h1 span {
  position: relative;
  color: var(--green-dark);
  font-style: italic;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 32px;
  color: #515852;
  font-size: 19px;
  line-height: 1.62;
}

.problem-board {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  margin-top: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.problem-question {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 440px;
  padding: 40px;
  background: var(--ink);
  color: var(--white);
}

.problem-question > span {
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.problem-question h3 {
  max-width: 470px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 3.3vw, 49px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.problem-question-content {
  margin-top: 56px;
}

.profit-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding: 17px 18px;
  border: 1px solid rgba(19,191,119,0.52);
  border-radius: 15px;
  background: var(--green);
  color: #082518;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease;
}

.profit-trigger:hover {
  background: #1dce83;
  transform: translateY(-2px);
}

.profit-trigger span {
  font-size: 19px;
}

.problem-question-content > small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
}

.problem-list {
  padding: 18px 46px;
}

.problem-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

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

.problem-list article > span {
  padding-top: 3px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
}

.problem-list h3 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.problem-list p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.text-link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.text-link:hover span {
  background: var(--ink);
  color: var(--white);
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 46px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  min-width: 145px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}

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

.hero-visual {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  place-items: center;
  min-height: 700px;
}

.visual-grid,
.cta-grid {
  position: absolute;
  inset: 3% 0 0 3%;
  border-radius: 50%;
  background-image: linear-gradient(rgba(17, 21, 18, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 21, 18, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 0%, transparent 68%);
}

.phone {
  position: relative;
  border: 10px solid var(--ink);
  border-radius: 49px;
  background: var(--ink);
  box-shadow: 0 35px 90px rgba(17, 21, 18, 0.24);
  overflow: hidden;
}

.phone-main {
  z-index: 2;
  width: 350px;
  height: 700px;
  background: #f4f2ec;
  transform: rotate(3deg);
}

.phone-main img,
.value-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 38px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 96px;
  height: 25px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.hero-app,
.summary-app {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 23px 18px 14px;
  border-radius: 38px;
  background: #f4f2ec;
  color: var(--ink);
  overflow: hidden;
}

.hero-app-status,
.summary-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  font-size: 10px;
  font-weight: 700;
}

.ios-status {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ios-signal {
  display: flex;
  align-items: end;
  gap: 1.5px;
  height: 10px;
}

.ios-signal b {
  width: 2px;
  border-radius: 1px;
  background: var(--ink);
}

.ios-signal b:nth-child(1) { height: 4px; }
.ios-signal b:nth-child(2) { height: 6px; }
.ios-signal b:nth-child(3) { height: 8px; }
.ios-signal b:nth-child(4) { height: 10px; }

.ios-wifi {
  width: 14px;
  height: 11px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.ios-battery {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 14px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
}

.ios-battery::after {
  position: absolute;
  right: -3px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: var(--ink);
  content: "";
}

.ios-battery b {
  font-size: 7px;
  line-height: 1;
}

.hero-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px 2px 22px;
}

.hero-app-head small,
.hero-app-head strong {
  display: block;
}

.hero-app-head small {
  color: var(--muted);
  font-size: 10px;
}

.hero-app-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.app-avatar {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.app-create-card {
  border: 1px solid rgba(17,21,18,0.1);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17,21,18,0.08);
  overflow: hidden;
}

.app-address-field {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(17,21,18,0.08);
}

.app-address-field small,
.app-address-field strong {
  display: block;
}

.app-address-field small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.app-address-field strong {
  color: #8b8d88;
  font-size: 14px;
  font-weight: 500;
}

.app-create-card button {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.app-create-card button span {
  margin-right: 5px;
  font-size: 18px;
}

.app-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 5px 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.app-history-head strong {
  color: var(--green-dark);
  letter-spacing: 0;
}

.app-history-list {
  border: 1px solid rgba(17,21,18,0.08);
  border-radius: 17px;
  background: var(--white);
  overflow: hidden;
}

.app-history-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(17,21,18,0.08);
}

.app-history-list > div:last-child {
  border-bottom: 0;
}

.app-history-list p {
  min-width: 0;
  margin: 0;
}

.app-history-list strong,
.app-history-list small {
  display: block;
}

.app-history-list strong {
  max-width: 240px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-history-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.app-history-list > div > span {
  color: #9da19c;
  font-size: 20px;
}

.app-section-label,
.app-next-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.app-status-pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  letter-spacing: 0.08em;
}

.app-mission-card {
  padding: 17px;
  border-radius: 19px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(17,21,18,0.15);
}

.app-route {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.app-route i {
  color: var(--green);
  font-style: normal;
}

.app-meta {
  display: flex;
  gap: 6px;
  margin-top: 9px;
}

.app-meta span {
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.66);
  font-size: 8px;
}

.app-mission-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,0.11);
}

.app-mission-bottom small,
.app-mission-bottom strong {
  display: block;
}

.app-mission-bottom small {
  color: rgba(255,255,255,0.44);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.app-mission-bottom strong {
  font-size: 14px;
}

.app-mission-bottom button {
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #082518;
  font-size: 8px;
  font-weight: 700;
}

.app-next-head {
  margin-top: 22px;
}

.app-next-head strong {
  color: var(--green-dark);
}

.app-checklist {
  border: 1px solid rgba(17,21,18,0.08);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.app-checklist > div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(17,21,18,0.07);
}

.app-checklist > div:last-child {
  border-bottom: 0;
}

.app-checklist > div > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(17,21,18,0.13);
  border-radius: 50%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.app-checklist .done > span {
  border-color: transparent;
  background: var(--green-soft);
  color: var(--green-dark);
}

.app-checklist .current {
  background: #f1fbf6;
}

.app-checklist .current > span {
  border-color: transparent;
  background: var(--green);
  color: var(--ink);
}

.app-checklist p {
  margin: 0;
  line-height: 1.25;
}

.app-checklist strong,
.app-checklist small {
  display: block;
}

.app-checklist strong {
  font-size: 10px;
}

.app-checklist small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.app-checklist i {
  color: var(--green-dark);
  font-style: normal;
}

.app-bottom-nav,
.summary-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  padding: 12px 8px 10px;
  border-top: 1px solid rgba(17,21,18,0.08);
  background: rgba(255,255,255,0.93);
}

.app-bottom-nav span,
.summary-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--muted);
  font-size: 17px;
}

.app-bottom-nav svg,
.summary-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-bottom-nav .active svg path:first-child {
  fill: rgba(19,191,119,0.12);
}

.app-bottom-nav small,
.summary-nav small {
  font-size: 7px;
}

.app-bottom-nav .active,
.summary-nav .active {
  color: var(--green-dark);
}

.floating-card,
.floating-net {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 21, 18, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 45px rgba(17, 21, 18, 0.16);
  backdrop-filter: blur(16px);
}

.floating-card small,
.floating-card strong,
.floating-net small,
.floating-net strong {
  display: block;
}

.floating-card small,
.floating-net small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.floating-card strong,
.floating-net strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.status-icon,
.document-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.status-icon svg,
.document-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-proof {
  top: 19%;
  left: 2%;
  animation: float 5s ease-in-out infinite;
}

.floating-report {
  right: -3%;
  bottom: 20%;
  animation: float 6s ease-in-out 1s infinite;
}

.floating-net {
  right: 1%;
  top: 33%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--white);
  transform: rotate(-4deg);
}

.floating-net small {
  color: rgba(255, 255, 255, 0.55);
}

.floating-net strong {
  color: var(--green);
  font-size: 24px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(19, 191, 119, 0.2), transparent 68%);
}

.hero-orb-two {
  bottom: -30%;
  left: -13%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(114, 145, 255, 0.11), transparent 68%);
}

.scroll-hint {
  position: absolute;
  bottom: 35px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint span {
  width: 34px;
  height: 1px;
  background: var(--muted);
}

.ticker {
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.56);
  overflow: hidden;
  transform: none;
}

.mission-rail {
  display: grid;
  grid-template-columns: repeat(5, auto 24px) auto;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.mission-rail span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.mission-rail span b {
  color: var(--green-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.mission-rail > i {
  color: #a5aaa5;
  font-size: 14px;
  font-style: normal;
}

.manifesto {
  padding-top: 160px;
  padding-bottom: 150px;
}

.manifesto-grid,
.section-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.display-title {
  font-size: clamp(50px, 6vw, 84px);
}

.display-title em {
  font-style: italic;
}

.manifesto-copy {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 18px;
}

.manifesto-copy p {
  margin: 0 0 20px;
}

.manifesto-copy .manifesto-strong {
  color: var(--ink);
  font-weight: 600;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 86px;
}

.before-after article {
  position: relative;
  min-height: 755px;
  padding: 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.chaos-card {
  border: 1px solid var(--line);
  background: #e8e5dc;
}

.order-card {
  background: var(--ink);
  color: var(--white);
}

.card-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.order-card .card-label {
  color: rgba(255,255,255,0.6);
}

.order-card .card-label span {
  background: var(--green);
}

.before-after h3,
.before-after p {
  position: relative;
  z-index: 2;
}

.before-after h3 {
  margin: 390px 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.before-after p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.order-card p {
  color: rgba(255,255,255,0.56);
}

.compare-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid rgba(17,21,18,0.12);
  list-style: none;
}

.compare-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17,21,18,0.09);
  font-size: 12px;
}

.compare-list span {
  color: var(--muted);
}

.compare-list b {
  font-weight: 600;
  text-align: right;
}

.order-card .compare-list {
  border-color: rgba(255,255,255,0.14);
}

.order-card .compare-list li {
  border-color: rgba(255,255,255,0.1);
}

.order-card .compare-list span {
  color: rgba(255,255,255,0.48);
}

.compare-list-after b {
  color: var(--green);
}

.chaos-stage,
.report-stack {
  position: absolute;
  top: 70px;
  right: 10%;
  left: 10%;
  height: 350px;
}

.paper {
  position: absolute;
  display: grid;
  place-items: center;
  width: 210px;
  height: 116px;
  border: 1px solid rgba(17,21,18,0.12);
  border-radius: 8px;
  background: #fffef9;
  box-shadow: 0 18px 40px rgba(17,21,18,0.13);
  color: #777a76;
  font-family: monospace;
  font-size: 13px;
}

.paper-one { top: 40px; left: 4%; transform: rotate(-11deg); }
.paper-two { top: 8px; right: 2%; transform: rotate(8deg); }
.paper-three { bottom: 28px; left: 25%; transform: rotate(4deg); }
.paper-four { bottom: 0; right: 4%; transform: rotate(-7deg); background: #f1e6c8; }

.report-sheet {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 270px;
  height: 355px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  transform: translateX(-50%);
}

.report-back {
  background: #243129;
  transform: translate(-42%, 3%) rotate(7deg);
}

.report-front {
  padding: 24px;
  box-shadow: 0 28px 50px rgba(0,0,0,0.32);
  transform: translate(-54%, 0) rotate(-3deg);
}

.mini-report-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--green);
}

.mini-report-head b { color: var(--green-dark); }
.mini-report-head small { color: var(--muted); font-size: 8px; }
.mini-route { display: flex; justify-content: space-between; margin: 35px 0; font-size: 13px; font-weight: 700; }
.mini-route i { color: var(--green-dark); font-style: normal; }
.mini-report-lines { display: grid; gap: 12px; }
.mini-report-lines span { height: 1px; background: var(--line); }
.mini-mission-list { display: grid; gap: 10px; color: #555d57; font-size: 10px; }
.mini-mission-list span:nth-child(1),
.mini-mission-list span:nth-child(2) { color: var(--green-dark); }
.mini-mission-list span:nth-child(3) { padding: 8px; border-radius: 5px; background: var(--green-soft); color: var(--ink); font-weight: 700; }
.mini-report-check { margin-top: 55px; padding: 10px; border-radius: 5px; background: var(--green-soft); color: var(--green-dark); font-size: 9px; font-weight: 800; text-align: center; letter-spacing: 0.08em; }
.mini-mission-list + .mini-report-check { margin-top: 24px; }

.copilot-preview {
  position: absolute;
  top: 64px;
  right: 9%;
  left: 9%;
  display: grid;
  gap: 12px;
  height: 360px;
}

.copilot-route-card,
.copilot-profit-card,
.copilot-report-card {
  border-radius: 13px;
  background: #f8f7f2;
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0,0,0,0.25);
}

.copilot-route-card {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 13px;
  align-items: center;
  padding: 12px;
  transform: rotate(-3deg);
}

.copilot-map {
  position: relative;
  height: 94px;
  border-radius: 9px;
  background: #18231e;
  overflow: hidden;
}

.copilot-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 4;
}

.map-point {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
}

.map-start { bottom: 17px; left: 19px; }
.map-end { top: 18px; right: 18px; background: var(--red); }

.copilot-route-card small,
.copilot-route-card strong,
.copilot-route-card span,
.copilot-profit-card small,
.copilot-profit-card strong,
.copilot-profit-card span,
.copilot-report-card small,
.copilot-report-card strong,
.copilot-report-card span {
  display: block;
}

.copilot-route-card small,
.copilot-profit-card small,
.copilot-report-card small {
  color: #7d837e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.copilot-route-card strong {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -0.04em;
}

.copilot-route-card span,
.copilot-profit-card span,
.copilot-report-card span {
  margin-top: 4px;
  color: #717871;
  font-size: 8px;
}

.copilot-bottom-cards {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.copilot-profit-card {
  padding: 16px;
  background: var(--green);
  transform: rotate(2deg);
}

.copilot-profit-card strong {
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.05em;
}

.copilot-profit-card small,
.copilot-profit-card span {
  color: rgba(17,21,18,0.63);
}

.copilot-report-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  transform: rotate(-2deg);
}

.mini-doc-icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 43px;
  margin: 0 !important;
  border-radius: 6px;
  background: var(--ink);
  color: var(--green) !important;
  font-size: 8px !important;
  font-weight: 800;
}

.copilot-report-card strong {
  margin-top: 3px;
  font-size: 11px;
}

.section-dark {
  padding: 145px max(32px, calc((100vw - 1240px) / 2));
  border-radius: 52px 52px 0 0;
  background: var(--ink);
  color: var(--white);
}

.report-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
  margin-top: 90px;
}

.report-showcase-copy {
  max-width: 420px;
}

.report-showcase-copy .feature-number {
  color: var(--green);
}

.report-showcase-copy h3 {
  margin: 22px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.report-showcase-copy p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 16px;
  line-height: 1.7;
}

.report-showcase-copy .report-tags {
  margin-top: 28px;
}

.report-showcase-copy .report-tags span {
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
}

.report-preview-combined {
  max-height: 740px;
}

.doc-photo-annex {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.doc-photo-annex b {
  font-weight: 700;
  letter-spacing: 0;
}

.report-capture {
  margin-top: 115px;
}

.section-dark .display-title em {
  color: var(--green);
}

.section-head p {
  max-width: 490px;
  margin: 0 0 7px auto;
  color: rgba(255,255,255,0.58);
  font-size: 18px;
  line-height: 1.7;
}

.section-kicker-light {
  color: rgba(255,255,255,0.54);
}

.capture-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: center;
  margin-top: 100px;
}

.capture-copy {
  max-width: 420px;
}

.capture-step {
  display: inline-flex;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(19,191,119,0.55);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capture-copy h3 {
  margin: 28px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 46px;
  letter-spacing: -0.05em;
}

.capture-copy > p {
  color: rgba(255,255,255,0.58);
  font-size: 17px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list span {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(19,191,119,0.15);
  color: var(--green);
}

.camera-phone {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 44px;
  background: #080b09;
  box-shadow: 0 45px 100px rgba(0,0,0,0.45);
}

.camera-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 8px 10px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}

.camera-top span:nth-child(2) { color: var(--white); font-weight: 700; text-align: center; }
.camera-top span:last-child { text-align: right; letter-spacing: 0.16em; }

.camera-view {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 410px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 45%, rgba(19,191,119,0.13), transparent 35%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #151a16;
  background-size: auto, 42px 42px, 42px 42px, auto;
  overflow: hidden;
}

.car-outline {
  width: 100%;
  height: 100%;
  fill: rgba(19,191,119,0.06);
  stroke: rgba(19,191,119,0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(19,191,119,0.24));
}

.vehicle-turntable {
  position: relative;
  display: grid;
  place-items: center;
  width: 170px;
  height: 310px;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-front {
  position: absolute;
  top: -18px;
  left: 50%;
  color: rgba(19,191,119,0.64);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform: translateX(-50%);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 16px var(--green);
  animation: scan 4s ease-in-out infinite;
}

.corner {
  position: absolute;
  width: 45px;
  height: 45px;
  border-color: rgba(255,255,255,0.58);
  border-style: solid;
}

.corner-tl { top: 28px; left: 28px; border-width: 2px 0 0 2px; border-radius: 12px 0 0 0; }
.corner-tr { top: 28px; right: 28px; border-width: 2px 2px 0 0; border-radius: 0 12px 0 0; }
.corner-bl { bottom: 28px; left: 28px; border-width: 0 0 2px 2px; border-radius: 0 0 0 12px; }
.corner-br { right: 28px; bottom: 28px; border-width: 0 2px 2px 0; border-radius: 0 0 12px 0; }

.angle-label {
  position: absolute;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.angle-label span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.angle-label b { font-size: inherit; }

.camera-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 23px 30px 16px;
}

.camera-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 24px;
}

.camera-controls .shutter {
  width: 64px;
  height: 64px;
  border: 2px solid var(--white);
}

.shutter span { width: 52px; height: 52px; border-radius: 50%; background: var(--white); }
.thumb { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #555, #1f3027); }

.camera-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding-bottom: 6px;
}

.camera-progress span {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.camera-progress span.done { background: var(--green); }
.camera-progress span.active { width: 35px; background: var(--white); }

.workflow {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.workflow-intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.workflow-list {
  border-top: 1px solid var(--line);
}

.workflow-item {
  display: grid;
  grid-template-columns: 46px 70px 1fr;
  gap: 26px;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-index,
.workflow-item > div:last-child > span,
.feature-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.workflow-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.workflow-item h3 {
  margin: 12px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.workflow-item p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-section {
  padding: 140px 0;
  background: #dff7eb;
}

.product-head {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
}

.product-head .section-kicker,
.product-head h2 {
  grid-column: 1;
}

.product-head p {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 410px;
  margin: 0 0 7px auto;
  color: #557064;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 80px;
}

.product-card {
  position: relative;
  min-height: 760px;
  padding: 42px;
  border: 1px solid rgba(17,21,18,0.09);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}

.product-card-report {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  min-height: 680px;
  background: var(--ink);
  color: var(--white);
}

.product-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.product-copy h3 {
  margin: 20px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.screen-window {
  position: absolute;
  top: 250px;
  left: 50%;
  width: 440px;
  height: 640px;
  border: 9px solid var(--ink);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: 0 34px 70px rgba(17,21,18,0.19);
  overflow: hidden;
}

.screen-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 35px;
}

.screen-route { transform: translateX(-49%) rotate(-3deg); }
.screen-money { transform: translateX(-49%) rotate(3deg); }

.calculator-card {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
  min-height: 650px;
  padding: 68px;
  border-radius: var(--radius-lg);
  background: #122019;
  color: var(--white);
  overflow: hidden;
}

.calculator-card::before {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(19,191,119,0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(19,191,119,0.035), 0 0 0 140px rgba(19,191,119,0.025);
  content: "";
}

.calculator-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.calculator-copy .feature-number {
  color: var(--green);
}

.calculator-copy h3 {
  margin: 22px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.calculator-copy p {
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 16px;
  line-height: 1.7;
}

.calculator-copy p strong {
  color: var(--white);
}

.calculator-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.calculator-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.calculator-copy li span {
  display: grid;
  place-items: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green);
  color: #092318;
  font-size: 11px;
  font-weight: 800;
}

.calculator-window {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  justify-self: end;
  padding: 28px;
  border-radius: 32px;
  background: #fbfbf9;
  color: var(--ink);
  box-shadow: 0 28px 75px rgba(0,0,0,0.28);
  transform: rotate(1.5deg);
}

.calculator-head {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.calculator-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #e9f0ff;
  color: #4774ed;
}

.calculator-head > span:last-child {
  color: var(--muted);
  font-size: 22px;
}

.legal-profile {
  position: relative;
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding: 15px 86px 15px 16px;
  border: 1px solid rgba(19,191,119,0.28);
  border-radius: 16px;
  background: var(--green-soft);
}

.legal-profile small {
  color: #4e6d5e;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.legal-profile strong {
  font-size: 13px;
}

.legal-profile > span {
  position: absolute;
  top: 50%;
  right: 15px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  transform: translateY(-50%);
}

.calculator-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.calculator-fields label {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f0efeb;
}

.calculator-fields span {
  color: var(--muted);
  font-size: 9px;
}

.calculator-fields b {
  font-size: 18px;
}

.calculator-result {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 12px;
}

.calculator-result > div {
  display: flex;
  justify-content: space-between;
}

.calculator-result > div:nth-child(2) b,
.calculator-result > div:nth-child(3) b {
  color: var(--red);
}

.calculator-result .calculator-net {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.calculator-net b {
  color: var(--green-dark);
  font-size: 19px;
}

.calculator-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.product-card-money {
  background: #f8eddd;
}

.product-card-report .feature-number { color: rgba(255,255,255,0.45); }
.product-card-report .product-copy { align-self: center; padding-left: 20px; }
.product-card-report .product-copy h3 { max-width: 430px; font-size: 48px; }
.product-card-report .product-copy p { color: rgba(255,255,255,0.57); }

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.report-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
}

.report-preview {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(82%, 560px);
  max-height: 590px;
  padding: 10px;
  border-radius: 18px 18px 0 0;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 35px 90px rgba(0,0,0,0.45);
  overflow: hidden;
  transform: rotate(1.5deg) translateY(42px);
}

.report-preview.report-preview-combined {
  height: 660px;
  max-height: 660px;
}

.report-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 11px;
}

.report-document {
  width: 133.33%;
  min-height: 620px;
  margin-left: -16.665%;
  padding: 26px;
  border-radius: 11px;
  background: var(--paper);
  color: var(--ink);
  transform: scale(0.75);
  transform-origin: top center;
}

.doc-head > div:first-child strong {
  color: var(--ink);
  font-size: 20px;
}

.doc-head > div:first-child b {
  display: block;
  margin-top: 5px;
  font-size: 11px;
}

.doc-head > div:last-child em {
  display: block;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}

.doc-green-line {
  height: 2px;
  margin: 13px 0 17px;
  background: var(--green);
}

.doc-block {
  margin-bottom: 13px;
}

.doc-block-title {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.doc-data-row,
.doc-route-row,
.doc-vehicle-split,
.doc-expenses > div:last-child {
  border: 1px solid #deddd7;
  border-radius: 6px;
  background: #faf9f5;
}

.doc-data-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 8px;
}

.doc-data-row b {
  color: var(--ink);
}

.doc-route-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 0;
  border-bottom: 0;
}

.doc-route-row:nth-child(3) {
  border-bottom: 1px solid #deddd7;
  border-radius: 0 0 6px 6px;
}

.doc-route-row:nth-child(2) {
  border-radius: 6px 6px 0 0;
}

.route-dot {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 2px;
  border-radius: 50%;
}

.route-dot.green { background: var(--green); }
.route-dot.red { background: var(--red); }

.doc-route-row p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.2;
}

.doc-route-row p b {
  color: var(--ink);
}

.doc-route-row small {
  display: block;
  margin-top: 2px;
  color: #898d88;
  font-size: 6px;
}

.doc-vehicle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 5px;
  overflow: hidden;
}

.doc-vehicle-split > div {
  padding: 8px 10px;
}

.doc-vehicle-split > div:first-child {
  border-right: 1px solid #deddd7;
}

.doc-vehicle-split small,
.doc-vehicle-split span {
  display: block;
}

.doc-vehicle-split small {
  color: var(--green-dark);
  font-size: 7px;
  font-weight: 800;
}

.doc-vehicle-split span {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 700;
}

.doc-expenses > div:last-child {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 8px;
}

.doc-expenses b {
  color: var(--green-dark);
}

.signature-title {
  margin-top: 16px;
}

.doc-signatures {
  margin-top: 0;
}

.doc-signatures > div {
  min-height: 82px;
  border-color: rgba(19,191,119,0.45);
  background: #fbfffd;
}

.doc-signatures strong {
  display: block;
  color: var(--green-dark);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.doc-signatures svg {
  width: 100%;
  height: 39px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 1.4;
}

.doc-signatures small {
  display: block;
  color: var(--muted);
  font-size: 6px;
}

.doc-head,
.doc-route,
.doc-stats,
.doc-details,
.doc-signatures {
  display: flex;
}

.doc-head {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green);
}

.doc-head > div:last-child {
  text-align: right;
}

.doc-head strong,
.doc-head b,
.doc-head small,
.doc-route small,
.doc-route strong,
.doc-stats small,
.doc-stats b,
.doc-details small,
.doc-details b {
  display: block;
}

.doc-head strong {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.doc-head b {
  font-size: 10px;
}

.doc-head small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.doc-route {
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 20px;
  padding: 20px;
  border-radius: 12px;
  background: #efeee8;
}

.doc-route > div:last-child {
  text-align: right;
}

.doc-route span {
  color: var(--green-dark);
  font-size: 23px;
}

.doc-route small,
.doc-stats small,
.doc-details small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.doc-route strong {
  font-size: 17px;
}

.doc-stats,
.doc-details {
  justify-content: space-between;
  gap: 8px;
}

.doc-stats > div,
.doc-details > div {
  flex: 1;
}

.doc-stats b,
.doc-details b {
  margin-top: 3px;
  font-size: 10px;
}

.doc-section-title {
  display: flex;
  justify-content: space-between;
  margin: 26px 0 12px;
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.doc-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.doc-photo-grid span {
  position: relative;
  display: grid;
  place-items: center;
  height: 72px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(19,191,119,0.16), rgba(17,21,18,0.03)),
    linear-gradient(rgba(17,21,18,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,21,18,0.06) 1px, transparent 1px);
  background-size: auto, 15px 15px, 15px 15px;
  overflow: hidden;
}

.doc-photo-grid span::before {
  width: 72px;
  height: 26px;
  border: 2px solid rgba(17,21,18,0.34);
  border-radius: 14px 21px 8px 8px;
  content: "";
  transform: skewX(-5deg);
}

.doc-photo-grid i {
  position: absolute;
  right: 5px;
  bottom: 4px;
  color: var(--muted);
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.doc-photo-grid-report {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.doc-photo-grid-report .vehicle-photo {
  height: 72px;
  background:
    linear-gradient(to bottom, #dcece5 0 54%, #a8aea9 54% 60%, #777d79 60% 100%);
  box-shadow: inset 0 0 0 1px rgba(17,21,18,0.08);
}

.doc-photo-grid-report .vehicle-photo::before {
  width: 70px;
  height: 25px;
  border: 0;
  border-radius: 12px 22px 7px 7px;
  background: linear-gradient(165deg, #edf0ee 0 42%, #9ba5a0 43% 54%, #d7dcda 55%);
  box-shadow: inset 0 0 0 2px rgba(17,21,18,0.35), -20px 15px 22px rgba(17,21,18,0.18);
  transform: translateY(4px) skewX(-7deg);
}

.doc-photo-grid-report .vehicle-photo::after {
  position: absolute;
  top: 47px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #dfe2df;
  border-radius: 50%;
  background: #242825;
  box-shadow: 45px 0 0 -2px #242825, 45px 0 0 0 #dfe2df;
  content: "";
  transform: translateX(-35px);
}

.doc-photo-grid-report .vehicle-photo-front::before {
  width: 54px;
  transform: translateY(4px);
}

.doc-photo-grid-report .vehicle-photo-front::after {
  box-shadow: 32px 0 0 -2px #242825, 32px 0 0 0 #dfe2df;
  transform: translateX(-27px);
}

.doc-photo-grid-report .vehicle-photo-rear {
  background: linear-gradient(to bottom, #e7dfd1 0 54%, #aaa49b 54% 60%, #73716d 60% 100%);
}

.doc-photo-grid-report .vehicle-photo-rear::before {
  background: linear-gradient(165deg, #d8dedd 0 42%, #78837f 43% 54%, #c4cbca 55%);
  transform: translateY(4px) skewX(6deg);
}

.doc-photo-grid-report .vehicle-photo-meter {
  background: linear-gradient(145deg, #202722, #080b09);
}

.doc-photo-grid-report .vehicle-photo-meter::before {
  width: 88px;
  height: 40px;
  border-radius: 8px;
  background: #050806;
  box-shadow: inset 0 0 0 2px #2d3932, inset 0 0 0 8px #101712;
  content: "28 870";
  color: #d7f8e7;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  transform: none;
}

.doc-photo-grid-report .vehicle-photo-meter::after {
  display: none;
}

.doc-photo-grid-report .vehicle-photo i {
  right: 5px;
  bottom: 5px;
  padding: 3px 5px;
  border-radius: 4px;
  background: rgba(17,21,18,0.74);
  color: var(--white);
}

.doc-details {
  margin-top: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.doc-signatures {
  gap: 12px;
  margin-top: 0;
}

.doc-signatures > div {
  flex: 1;
  min-height: 82px;
  padding: 11px;
  border: 1px solid rgba(19,191,119,0.42);
  border-radius: 10px;
  background: linear-gradient(145deg, #fbfffd, #effaf4);
}

.doc-signatures strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-signatures strong i {
  color: var(--green-dark);
  font-size: 6px;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.doc-signatures span,
.doc-signatures em {
  display: block;
}

.doc-signatures span {
  color: var(--muted);
  font-size: 7px;
}

.doc-signatures em {
  margin-top: 13px;
  font-family: Georgia, serif;
  font-size: 15px;
}

.report-seal {
  position: absolute;
  right: 18px;
  bottom: 22px;
  padding: 11px 14px;
  border: 2px solid var(--green-dark);
  border-radius: 7px;
  background: rgba(217,247,233,0.94);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  transform: rotate(-3deg);
}

.value-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.value-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 760px;
  padding: 70px;
  border-radius: 52px;
  background: var(--green);
  overflow: hidden;
}

.value-panel::after {
  position: absolute;
  right: -10%;
  bottom: -55%;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(17,21,18,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(17,21,18,0.035), 0 0 0 160px rgba(17,21,18,0.025);
  content: "";
}

.value-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 490px;
}

.value-copy .section-kicker { color: rgba(17,21,18,0.66); }
.value-copy h2 { margin: 0 0 25px; font-family: "Manrope", sans-serif; font-size: clamp(45px, 4.6vw, 66px); line-height: 1; letter-spacing: -0.06em; }
.value-copy p { margin: 0 0 32px; color: rgba(17,21,18,0.68); font-size: 17px; line-height: 1.68; }

.value-visual {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.value-phone {
  position: absolute;
  top: 5%;
  right: 12%;
  width: 330px;
  height: 660px;
  background: #f4f2ec;
  transform: rotate(5deg);
}

.summary-app {
  padding: 24px 17px 14px;
}

.summary-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 28px 0 16px;
}

.summary-head small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.summary-head h3 {
  margin: 1px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.summary-head > span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 8px;
}

.summary-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.summary-tabs span {
  padding: 7px 5px;
  border-radius: 999px;
}

.summary-tabs .active {
  background: var(--ink);
  color: var(--white);
}

.summary-good {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  padding: 12px;
  border: 1px solid rgba(19,191,119,0.3);
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.summary-good > span {
  font-size: 20px;
}

.summary-good strong,
.summary-good small {
  display: block;
}

.summary-good strong {
  font-size: 10px;
}

.summary-good small {
  margin-top: 2px;
  color: #476858;
  font-size: 7px;
}

.summary-net {
  padding: 17px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
}

.summary-net > small {
  color: rgba(255,255,255,0.48);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.summary-net > strong {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  letter-spacing: -0.05em;
}

.summary-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.summary-split small,
.summary-split b {
  display: block;
}

.summary-split small {
  color: rgba(255,255,255,0.4);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.summary-split b {
  margin-top: 2px;
  font-size: 11px;
}

.summary-split span:last-child b {
  color: var(--red);
}

.summary-bar {
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--red);
  overflow: hidden;
}

.summary-bar i {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--green);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(17,21,18,0.08);
  border-radius: 14px;
  background: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.summary-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 400;
}

.summary-row b {
  color: var(--green-dark);
}

.value-stat {
  position: absolute;
  z-index: 3;
  padding: 17px 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17,21,18,0.18);
}

.value-stat small,
.value-stat strong { display: block; }
.value-stat small { color: var(--muted); font-size: 9px; letter-spacing: 0.1em; }
.value-stat strong { margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 24px; letter-spacing: -0.04em; }
.stat-one { top: 24%; left: 0; transform: rotate(-4deg); }
.stat-two { right: 0; bottom: 17%; transform: rotate(3deg); }
.stat-two strong { color: var(--green-dark); }

.value-panel {
  grid-template-columns: 0.74fr 1.26fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "copy visual"
    "footer visual";
  gap: 54px;
  min-height: 850px;
  padding: 68px;
  background: #e7ecef;
}

.value-panel::after {
  right: -16%;
  bottom: -38%;
  border-color: rgba(57,81,94,0.16);
  box-shadow: 0 0 0 80px rgba(57,81,94,0.035), 0 0 0 160px rgba(57,81,94,0.022);
}

.value-copy {
  grid-area: copy;
  align-self: end;
}

.value-copy .section-kicker {
  color: var(--green-dark);
}

.value-copy p strong {
  color: var(--ink);
}

.value-copy > p {
  margin-bottom: 0;
}

.value-footer {
  position: relative;
  z-index: 3;
  grid-area: footer;
  align-self: start;
  max-width: 490px;
}

.value-footer .value-profile-copy {
  margin: 0 0 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(17,21,18,0.16);
  color: rgba(17,21,18,0.64);
  font-size: 14px;
  line-height: 1.55;
}

.value-footer .value-profile-copy strong {
  color: var(--ink);
}

.value-visual {
  grid-area: visual;
  display: grid;
  place-items: center;
  min-height: 710px;
}

.declaration-board {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  padding: 25px;
  border: 1px solid rgba(17,21,18,0.08);
  border-radius: 32px;
  background: #f7f6f2;
  box-shadow: 0 32px 80px rgba(17,21,18,0.2);
  transform: rotate(1.5deg);
}

.declaration-head {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
}

.declaration-back {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.declaration-head strong,
.declaration-head small {
  display: block;
}

.declaration-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.declaration-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.declaration-period {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.declaration-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 19px;
  padding: 4px;
  border-radius: 14px;
  background: #ecebe7;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.declaration-tabs span {
  padding: 9px 4px;
  border-radius: 11px;
}

.declaration-tabs .active {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.declaration-summary {
  margin-top: 14px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17,21,18,0.06);
  overflow: hidden;
}

.declaration-total {
  padding: 18px 20px;
  background: var(--ink);
  color: var(--white);
}

.declaration-total small,
.declaration-total strong {
  display: block;
}

.declaration-total small {
  color: rgba(255,255,255,0.52);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.declaration-total strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.declaration-lines {
  display: grid;
  gap: 8px;
  padding: 16px 20px 12px;
}

.declaration-lines > div,
.declaration-net {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.declaration-lines span {
  color: var(--muted);
  font-size: 10px;
}

.declaration-lines b {
  font-size: 10px;
}

.declaration-lines .negative b {
  color: var(--red);
}

.declaration-net {
  margin: 0 20px;
  padding: 13px 0 17px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.declaration-net strong {
  color: var(--green-dark);
  font-size: 18px;
}

.declaration-missions {
  margin-top: 14px;
  border: 1px solid rgba(17,21,18,0.08);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.declaration-missions-head,
.declaration-missions > div:not(.declaration-missions-head) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.declaration-missions-head {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.declaration-missions > div:not(.declaration-missions-head) {
  padding: 10px 14px;
  border-top: 1px solid rgba(17,21,18,0.07);
}

.declaration-missions span small,
.declaration-missions span b,
.declaration-missions > div > strong small {
  display: block;
}

.declaration-missions span small,
.declaration-missions > div > strong small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
}

.declaration-missions span b {
  margin-top: 2px;
  font-size: 10px;
}

.declaration-missions > div > strong {
  color: var(--green-dark);
  font-size: 12px;
  text-align: right;
}

.declaration-more {
  display: block;
  width: fit-content;
  margin: 10px auto 12px;
  padding: 6px 13px;
  border: 1px solid rgba(17,21,18,0.12);
  border-radius: 999px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  pointer-events: none;
}

.declaration-export {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 13px;
  border-radius: 15px;
  background: var(--green);
  color: #082518;
  font-size: 11px;
  font-weight: 800;
}

.declaration-export svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.all-in-one {
  padding-bottom: 150px;
}

.all-in-one .section-head p { color: var(--muted); }
.all-in-one .section-head .text-link { justify-self: end; align-self: end; }

.capabilities-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 70px;
}

.capabilities-table article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.capabilities-table article:hover {
  background: rgba(255,255,255,0.48);
}

.capabilities-table > article > span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.capabilities-table h3 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.capabilities-table p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pricing-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.pricing-head p {
  max-width: 440px;
  margin: 0 0 7px auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pricing-head p strong {
  color: var(--ink);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,0.58);
}

.pricing-card-head > span {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pricing-card-head p {
  min-height: 50px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-price {
  margin: 36px 0 28px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.pricing-price strong,
.pricing-price small {
  display: block;
}

.pricing-price strong {
  font-family: "Manrope", sans-serif;
  font-size: 43px;
  letter-spacing: -0.055em;
}

.pricing-card-enterprise .pricing-price strong {
  font-size: 34px;
}

.pricing-price small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: #3f4741;
  font-size: 13px;
}

.pricing-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.pricing-card li span {
  color: var(--green-dark);
  font-weight: 800;
}

.pricing-card .button {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
}

.pricing-button {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.pricing-button:hover {
  background: var(--ink);
  color: var(--white);
}

.pricing-card-pro {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(17,21,18,0.18);
}

.pricing-card-pro .pricing-card-head > span,
.pricing-card-pro .pricing-price strong {
  color: var(--green);
}

.pricing-card-pro .pricing-card-head p,
.pricing-card-pro .pricing-price small {
  color: rgba(255,255,255,0.54);
}

.pricing-card-pro .pricing-price {
  border-color: rgba(255,255,255,0.13);
}

.pricing-card-pro ul {
  color: rgba(255,255,255,0.78);
}

.pricing-card-pro li span {
  color: var(--green);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding-top: 145px;
  padding-bottom: 145px;
  border-top: 1px solid var(--line);
}

.faq-intro p { margin-top: 28px; color: var(--muted); }
.faq-intro p a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; cursor: pointer; list-style: none; font-family: "Manrope", sans-serif; font-size: 19px; font-weight: 700; letter-spacing: -0.025em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; font-size: 23px; font-weight: 400; transition: transform 0.2s ease, background 0.2s ease; }
.faq details[open] summary span { background: var(--green); transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: -4px 55px 30px 0; color: var(--muted); line-height: 1.68; }

.faq-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-more:hover {
  background: var(--ink);
  color: var(--white);
}

.faq-more span {
  font-size: 19px;
  transition: transform 0.2s ease;
}

.faq-more[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.final-cta {
  padding-bottom: 30px;
}

.cta-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 620px;
  padding: 105px 30px;
  border-radius: 52px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-grid { inset: 0; border-radius: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); mask-image: radial-gradient(circle, black 0%, transparent 62%); }
.cta-kicker { position: relative; z-index: 2; padding-bottom: 8px; border-bottom: 1px solid rgba(19,191,119,0.55); color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.cta-panel h2 { position: relative; z-index: 2; margin-top: 28px; font-size: clamp(50px, 6vw, 82px); }
.cta-panel h2 span { color: var(--green); }
.cta-panel p { position: relative; z-index: 2; max-width: 610px; margin: 26px 0 32px; color: rgba(255,255,255,0.58); font-size: 18px; }
.cta-panel .button { position: relative; z-index: 2; }
.cta-panel > small { position: relative; z-index: 2; margin-top: 18px; color: rgba(255,255,255,0.42); }

body.modal-open {
  overflow: hidden;
}

.profit-modal[hidden] {
  display: none;
}

.profit-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.profit-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7,12,9,0.72);
  cursor: default;
  backdrop-filter: blur(9px);
}

.profit-modal-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 30px;
  background: #fbfbf9;
  box-shadow: 0 34px 100px rgba(0,0,0,0.42);
  overflow-y: auto;
}

.profit-modal-head {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
}

.profit-modal-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #e9f0ff;
  color: #4774ed;
  font-weight: 800;
}

.profit-modal-head strong,
.profit-modal-head small {
  display: block;
}

.profit-modal-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.profit-modal-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.profit-modal-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #efeee9;
  color: var(--muted);
  cursor: pointer;
  font-size: 23px;
}

.profit-form {
  margin-top: 24px;
}

.profit-form-fields {
  display: grid;
  gap: 15px;
}

.profit-form-fields label {
  display: grid;
  gap: 7px;
}

.profit-form-fields label > span:first-child {
  color: #677069;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profit-form-fields label > small {
  color: var(--muted);
  font-size: 9px;
}

.profit-input {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #efeee9;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.profit-input:focus-within {
  border-color: var(--green);
  background: var(--white);
}

.profit-input input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 700 17px/1 "Manrope", sans-serif;
}

.profit-input b {
  color: var(--muted);
}

.profit-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(19,191,119,0.28);
  border-radius: 16px;
  outline: 0;
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 700;
}

.profit-result {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  font-size: 13px;
}

.profit-result > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profit-result > div > span {
  color: var(--muted);
}

.profit-result .negative b {
  color: var(--red);
}

.profit-result-net {
  margin-top: 3px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.profit-result-net output {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.profit-result-net output.is-negative {
  color: var(--red);
}

.profit-disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.profit-modal-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  margin-top: 18px;
}

.profit-modal-actions .button {
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

.profit-close-button {
  background: #efeee9;
  color: var(--ink);
}

.site-footer {
  width: var(--section);
  margin: 0 auto;
  padding: 95px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 80px;
}

.footer-main p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-email {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay { transition-delay: 0.16s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(320px); opacity: 1; }
}

@media (max-width: 1100px) {
  :root { --section: min(100% - 42px, 960px); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { margin-right: 70px; }
  .menu-button { position: absolute; right: 14px; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%; background: var(--ink); }
  .menu-button span:not(.sr-only) { position: absolute; width: 19px; height: 1.5px; background: var(--white); transition: transform 0.25s ease; }
  .menu-button span:nth-child(2) { transform: translateY(-4px); }
  .menu-button span:nth-child(3) { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: -1; top: -18px; right: -18px; left: -18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; min-height: 100vh; padding: 110px 24px 40px; background: var(--paper); font-family: "Manrope", sans-serif; font-size: 28px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(-20px); transition: opacity 0.25s ease, transform 0.25s ease; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu .button { margin-top: 10px; padding: 20px 26px; font-size: 16px; }
  .hero { grid-template-columns: 1fr 0.9fr; min-height: 850px; }
  .hero h1 { font-size: clamp(60px, 7vw, 78px); }
  .phone-main { width: 320px; height: 640px; }
  .floating-proof { left: -5%; }
  .floating-report { right: -7%; }
  .capture-showcase { grid-template-columns: 0.62fr 1.38fr; gap: 45px; }
  .product-card { min-height: 700px; padding: 34px; }
  .screen-window { top: 260px; width: 370px; height: 580px; }
  .value-panel { grid-template-columns: 0.9fr 1.1fr; padding: 55px; }
  .value-phone { right: 8%; }
}

@media (max-width: 820px) {
  :root { --section: calc(100vw - 32px); --radius-lg: 30px; --radius-md: 24px; }
  .site-header { top: 10px; width: calc(100vw - 20px); min-height: 62px; padding-left: 14px; border-radius: 17px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .brand-mark svg { width: 22px; }
  .header-actions { display: none; }
  .menu-button { right: 8px; width: 44px; height: 44px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; padding: 108px 16px 60px; }
  .hero-copy { order: 1; max-width: none; }
  .hero-visual { order: 2; }
  .hero-conversion { order: 3; align-self: stretch; width: 100%; max-width: none; margin-top: 48px; }
  .hero-kicker { margin-bottom: 17px; font-size: 9px; }
  .hero h1 { font-size: clamp(43px, 12.4vw, 59px); line-height: 0.97; }
  .hero-lead { margin: 21px 0 0; font-size: 15px; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual { min-height: 455px; margin-top: 18px; }
  .phone-main { width: min(60vw, 232px); height: 455px; border-width: 8px; border-radius: 38px; transform: rotate(1.5deg); }
  .phone-main .phone-speaker { top: 10px; width: 64px; height: 19px; }
  .hero-app { padding: 20px 12px 10px; }
  .hero-app-status { padding: 0 5px; font-size: 9px; }
  .hero-app-status .ios-status { gap: 3px; }
  .hero-app-status .ios-signal { gap: 1.2px; height: 9px; }
  .hero-app-status .ios-signal b { width: 1.8px; }
  .hero-app-status .ios-signal b:nth-child(1) { height: 3.5px; }
  .hero-app-status .ios-signal b:nth-child(2) { height: 5.3px; }
  .hero-app-status .ios-signal b:nth-child(3) { height: 7.1px; }
  .hero-app-status .ios-signal b:nth-child(4) { height: 9px; }
  .hero-app-status .ios-wifi { width: 12px; height: 10px; stroke-width: 1.8; }
  .hero-app-status .ios-battery { width: 24px; height: 12px; border-radius: 4px; }
  .hero-app-status .ios-battery::after { right: -2px; width: 1.5px; height: 4px; }
  .hero-app-status .ios-battery b { font-size: 6px; }
  .hero-app-head { margin: 22px 2px 16px; }
  .hero-app-head strong { font-size: 21px; }
  .app-avatar { width: 34px; height: 34px; }
  .app-address-field { padding: 9px 12px; }
  .app-address-field strong { font-size: 11px; }
  .app-create-card button { min-height: 41px; font-size: 11px; }
  .app-history-head { margin-top: 14px; }
  .app-history-list > div { min-height: 43px; padding: 6px 10px; }
  .app-history-list strong { max-width: 195px; font-size: 8px; }
  .app-history-list small { font-size: 6px; }
  .floating-proof { top: 16%; left: 0; }
  .floating-report { right: 0; bottom: 14%; }
  .floating-net { top: 38%; right: -2%; padding: 13px 16px; }
  .floating-net strong { font-size: 18px; }
  .floating-card { padding: 10px 12px; }
  .status-icon, .document-icon { width: 34px; height: 34px; }
  .floating-card strong { font-size: 11px; }
  .floating-card small { font-size: 8px; }
  .scroll-hint { display: none; }
  .ticker { padding: 9px 16px; }
  .mission-rail { grid-template-columns: repeat(3, 1fr); gap: 0; min-height: auto; }
  .mission-rail > i { display: none; }
  .mission-rail span { justify-content: center; padding: 11px 5px; border-right: 1px solid var(--line); font-size: 10px; }
  .mission-rail span:nth-of-type(3n) { border-right: 0; }
  .mission-rail span:nth-of-type(-n+3) { border-bottom: 1px solid var(--line); }
  .mission-rail span b { font-size: 7px; }
  .manifesto { padding-top: 88px; padding-bottom: 82px; }
  .manifesto-grid, .section-head { grid-template-columns: 1fr; gap: 30px; }
  .display-title { font-size: clamp(44px, 13vw, 65px); }
  .manifesto-copy { font-size: 16px; }
  .problem-board { grid-template-columns: 1fr; margin-top: 44px; border-radius: 28px; }
  .problem-question { min-height: 290px; padding: 28px; }
  .problem-question h3 { font-size: 32px; }
  .problem-question-content { margin-top: 34px; }
  .problem-list { padding: 5px 24px; }
  .problem-list article { grid-template-columns: 27px 1fr; gap: 12px; padding: 23px 0; }
  .problem-list h3 { font-size: 18px; }
  .problem-list p { font-size: 13px; }
  .before-after { grid-template-columns: 1fr; margin-top: 50px; }
  .before-after article { min-height: 705px; padding: 26px; }
  .before-after h3 { margin-top: 340px; font-size: 25px; }
  .compare-list { margin-top: 22px; }
  .compare-list li { align-items: flex-start; flex-direction: column; gap: 2px; padding: 10px 0; }
  .compare-list b { text-align: left; }
  .copilot-preview { top: 58px; right: 7%; left: 7%; transform: scale(0.92); transform-origin: top center; }
  .chaos-stage, .report-stack { top: 55px; right: 6%; left: 6%; transform: scale(0.88); }
  .section-dark { padding: 95px 16px; border-radius: 32px 32px 0 0; }
  .section-head p { margin-left: 0; font-size: 16px; }
  .capture-showcase { grid-template-columns: 1fr; gap: 50px; margin-top: 60px; }
  .capture-copy h3 { font-size: 38px; }
  .camera-phone { padding: 9px; border-radius: 30px; }
  .camera-view { min-height: 300px; border-radius: 23px; }
  .vehicle-turntable { width: 135px; height: 250px; }
  .camera-controls { padding: 18px 20px 12px; }
  .camera-controls .shutter { width: 56px; height: 56px; }
  .shutter span { width: 45px; height: 45px; }
  .corner { width: 32px; height: 32px; }
  .corner-tl { top: 18px; left: 18px; } .corner-tr { top: 18px; right: 18px; } .corner-bl { bottom: 18px; left: 18px; } .corner-br { right: 18px; bottom: 18px; }
  @keyframes scan { 0%,100% { transform: translateY(0); } 50% { transform: translateY(220px); } }
  .workflow { grid-template-columns: 1fr; gap: 55px; padding-top: 90px; padding-bottom: 90px; }
  .workflow-intro { position: static; }
  .workflow-item { grid-template-columns: 35px 1fr; gap: 15px; padding: 38px 0; }
  .workflow-icon { grid-column: 2; grid-row: 1; }
  .workflow-item > div:last-child { grid-column: 2; }
  .workflow-item h3 { font-size: 25px; }
  .product-section { padding: 90px 0; }
  .product-head { display: block; }
  .product-head p { margin: 28px 0 0; font-size: 16px; }
  .product-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .product-card, .product-card-report { grid-column: auto; display: block; min-height: 670px; padding: 28px; }
  .product-copy h3 { font-size: 29px; }
  .screen-window { top: 270px; width: min(76vw, 370px); height: 530px; }
  .calculator-card { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 36px 26px; border-radius: 30px; }
  .calculator-copy h3 { font-size: 39px; }
  .calculator-copy p { font-size: 14px; }
  .calculator-copy ul { font-size: 12px; }
  .calculator-window { width: 100%; padding: 19px; border-radius: 24px; transform: none; }
  .calculator-fields { grid-template-columns: 1fr; }
  .product-card-report { min-height: 860px; }
  .product-card-report .product-copy { padding-left: 0; }
  .product-card-report .product-copy h3 { font-size: 36px; }
  .report-preview { position: absolute; right: 5%; bottom: -15px; left: 5%; width: auto; height: 560px; transform: rotate(1.5deg); }
  .report-document { padding: 20px; }
  .report-showcase { grid-template-columns: 1fr; gap: 45px; margin-top: 60px; }
  .report-showcase-copy { max-width: none; }
  .report-showcase-copy h3 { font-size: 35px; }
  .report-preview-combined { position: relative; right: auto; bottom: auto; left: auto; width: 100%; height: 720px; max-height: 720px; margin: 0; }
  .doc-photo-grid-report .vehicle-photo { height: 62px; }
  .report-capture { margin-top: 70px; }
  .value-section { padding-top: 90px; padding-bottom: 90px; }
  .value-panel { display: block; min-height: auto; padding: 40px 26px; border-radius: 32px; }
  .value-copy,
  .value-visual,
  .value-footer { grid-area: auto; align-self: auto; }
  .value-copy h2 { font-size: 45px; }
  .value-visual { min-height: auto; margin-top: 46px; }
  .declaration-board { width: 100%; padding: 16px; border-radius: 24px; transform: none; }
  .declaration-total strong { font-size: 27px; }
  .declaration-lines { padding-inline: 15px; }
  .declaration-net { margin-inline: 15px; }
  .value-footer { margin-top: 32px; }
  .value-phone { top: 15px; right: 50%; width: min(73vw, 320px); transform: translateX(50%) rotate(3deg); }
  .stat-one { top: 19%; left: -2%; }
  .stat-two { right: -2%; bottom: 5%; }
  .all-in-one { padding-bottom: 90px; }
  .all-in-one .section-head .text-link { justify-self: start; }
  .capabilities-table { grid-template-columns: 1fr; margin-top: 45px; }
  .capabilities-table article { min-height: 125px; padding: 24px 20px; }
  .pricing { padding-top: 90px; padding-bottom: 90px; }
  .pricing-head { grid-template-columns: 1fr; gap: 28px; }
  .pricing-head p { margin: 0; font-size: 15px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 45px; }
  .pricing-card { min-height: auto; padding: 28px; border-radius: 26px; }
  .pricing-card-head p { min-height: 0; }
  .pricing-price { margin: 28px 0 24px; }
  .pricing-card .button { margin-top: 8px; }
  .faq { grid-template-columns: 1fr; gap: 55px; padding-top: 90px; padding-bottom: 90px; }
  .faq summary { padding: 22px 0; font-size: 16px; }
  .faq details p { margin-right: 15px; font-size: 14px; }
  .final-cta { padding-bottom: 10px; }
  .cta-panel { min-height: 570px; padding: 82px 20px; border-radius: 32px; }
  .cta-panel h2 { font-size: clamp(43px, 12vw, 60px); }
  .cta-panel p { font-size: 16px; }
  .cta-panel .button { width: 100%; padding-inline: 17px; font-size: 14px; }
  .profit-modal { place-items: end center; padding: 0; }
  .profit-modal-panel { width: 100%; max-height: 93vh; padding: 22px 18px 18px; border-radius: 28px 28px 0 0; }
  .profit-modal-actions { position: sticky; bottom: -18px; margin-right: -18px; margin-left: -18px; padding: 12px 18px 18px; background: #fbfbf9; }
  .site-footer { padding-top: 70px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 50px; }
  .footer-email { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 420px) {
  .hero-proof div { padding-inline: 10px; }
  .phone-main { width: 226px; height: 448px; }
  .hero-visual { min-height: 450px; }
  .floating-report { bottom: 9%; }
  .before-after article { min-height: 520px; }
  .paper { width: 178px; height: 100px; font-size: 11px; }
  .report-stack { transform: scale(0.8); }
  .camera-view { min-height: 270px; }
  .vehicle-turntable { width: 115px; height: 215px; }
  .copilot-preview { transform: scale(0.82); }
  .calculator-window { padding: 16px; }
  .legal-profile { padding-right: 74px; }
  .declaration-head { grid-template-columns: 24px 1fr; }
  .declaration-period { display: none; }
  .declaration-tabs { font-size: 8px; }
}

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

/* Custom logo image */
.brand-mark.brand-mark-img { background: transparent; border-radius: 0; width: 40px; height: 40px; overflow: hidden; }
.brand-mark.brand-mark-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 640px) {
  .brand-mark.brand-mark-img { width: 36px; height: 36px; }
}

/* Tarifs — bascule mensuel / annuel */
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 42px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #fff;
}

.billing-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.billing-option.is-active {
  background: #161a1d;
  color: #fff;
}

.billing-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: #15d67f;
  color: #083f26;
  font-size: 11px;
  font-weight: 700;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .pricing-grid-4 { grid-template-columns: 1fr; }
  .billing-toggle { margin-top: 30px; width: 100%; justify-content: center; }
}
