:root {
  --sand-50: #fff7ee;
  --sand-100: #f5e7d8;
  --sand-200: #f1d6bf;
  --coral-500: #e1583a;
  --coral-700: #b23d29;
  --teal-300: #b8e1d8;
  --teal-600: #2d857a;
  --ink-900: #1b1713;
  --ink-700: #3e3a36;
  --ink-500: #6a645f;
  --white: #ffffff;
  --shadow-soft: 0 12px 24px rgba(16, 14, 13, 0.12);
  --shadow-strong: 0 24px 44px rgba(16, 14, 13, 0.18);
  --page-max: 1560px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top, #fffdf9 0%, #fff3e8 35%, #f5efe6 100%);
  min-height: 100vh;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  font-size: 17.5px;
}

body.page {
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  filter: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.page.page-loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

body.page.page-fade-out {
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  body.page,
  body.page.page-loaded,
  body.page.page-fade-out {
    transition: none;
    transform: none;
    filter: none;
  }
}

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

button,
input,
select {
  font-family: inherit;
}

a,
button,
input,
select {
  transition: box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease,
    background 0.2s ease, border-color 0.2s ease;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

[data-reveal][data-delay="1"] {
  transition-delay: 80ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 160ms;
}

[data-reveal][data-delay="3"] {
  transition-delay: 240ms;
}

.hover-border-target {
  position: relative;
  --hover-stroke: 3px;
  --hover-gap: 0px;
  --hover-border-color: currentColor;
  --hover-draw-overlap: calc(var(--hover-stroke) * 3);
  --perimeter: 0px;
  --draw: 0px;
  --start: 0px;
}

.hover-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hover-border path {
  fill: none;
  stroke: var(--hover-border-color);
  stroke-width: var(--hover-stroke);
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--draw) calc(var(--perimeter) - var(--draw));
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: stroke-dasharray, stroke-dashoffset;
}

.hover-border path.forward {
  stroke-dashoffset: calc(-1 * var(--start));
}

.hover-border path.backward {
  stroke-dashoffset: calc(-1 * (var(--start) - var(--draw)));
}

.hover-border-target.hover-border-active .hover-border path {
  opacity: 1;
}

.hover-border-target:focus-visible {
  --draw: calc(var(--perimeter) / 2 + var(--hover-draw-overlap));
}

.hover-border-target:focus-visible .hover-border path {
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(225, 88, 58, 0.35);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(225, 88, 58, 0.18);
}

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

.hero-cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 140px 24px 140px;
  background-image: url("assets/welcome-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 5, 0.72) 0%,
    rgba(8, 6, 5, 0.62) 55%,
    rgba(8, 6, 5, 0.4) 75%,
    rgba(8, 6, 5, 0.18) 90%
  );
}

.hero-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36%;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 5, 0) 0%,
    rgba(255, 249, 242, 0.6) 60%,
    rgba(255, 249, 242, 1) 100%
  );
}

@supports (background-image: image-set(url("x") 1x)) {
  .hero-cover {
    background-image: image-set(
      url("assets/welcome-bg.webp") type("image/webp"),
      url("assets/welcome-bg.jpg") type("image/jpeg")
    );
  }
}

.hero-cover-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.hero-cover h1 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-cover-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-cover-note {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-cover .hero-actions {
  justify-content: center;
}

.hero-cover .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.hero-cover .site-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-cover .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.hero-cover .nav-links a:hover,
.hero-cover .nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-cover .brand-tag {
  color: rgba(255, 255, 255, 0.7);
}

.hero-cover .ghost-btn {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.hero-cover .ghost-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-cover .install-app-btn {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.hero-cover .install-app-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-cover .btn.primary {
  box-shadow: 0 14px 22px rgba(225, 88, 58, 0.36);
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.55;
  z-index: -1;
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(225, 88, 58, 0.28), transparent 70%);
  top: -160px;
  right: -120px;
}

.shape-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(45, 133, 122, 0.22), transparent 70%);
  bottom: -180px;
  left: -120px;
  animation-delay: -6s;
}

.shape-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(241, 214, 191, 0.6), transparent 70%);
  top: 50%;
  left: 55%;
  animation-delay: -12s;
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: none;
  background: rgba(255, 252, 248, 0.92);
  border-bottom: 1px solid var(--sand-100);
  box-shadow: 0 10px 24px rgba(16, 14, 13, 0.08);
}

.nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 12px 20px rgba(225, 88, 58, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 16px;
}

.brand-tag {
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink-700);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--sand-100);
  color: var(--coral-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.ghost-btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral-500), var(--coral-700));
  box-shadow: 0 12px 18px rgba(225, 88, 58, 0.3);
  border: none;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 24px rgba(225, 88, 58, 0.36);
}

.ghost-btn {
  border: 1px solid var(--sand-200);
  color: var(--coral-700);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.ghost-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.install-app-btn {
  border: 1px solid rgba(225, 88, 58, 0.22);
}

.install-app-btn[hidden] {
  display: none !important;
}

.install-help-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(92vw, 540px);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(27, 23, 19, 0.92);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(16, 14, 13, 0.22);
  font-size: 14px;
  line-height: 1.5;
  z-index: 1200;
}

.install-help-toast[hidden] {
  display: none !important;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 10px;
}

.welcome {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 60px 24px 120px;
}

body:not(.perf-lite) .welcome section:not(.hero),
body:not(.perf-lite) .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 72px;
}

.hero h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--ink-700);
  margin-bottom: 24px;
}

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

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

.stat {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid var(--sand-100);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.stat-value {
  font-weight: 700;
  color: var(--coral-700);
  font-size: 18px;
}

.stat-label {
  font-size: 15px;
  color: var(--ink-500);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0e4, #fffefc);
  border: 2px solid rgba(241, 214, 191, 0.7);
  box-shadow: var(--shadow-strong);
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.visual-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 13, 0) 55%, rgba(16, 14, 13, 0.65) 100%);
}

.visual-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 1;
}

.visual-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
}

.visual-stack {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid var(--sand-100);
  box-shadow: var(--shadow-soft);
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.mini-card img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.mini-card.alt {
  border-color: rgba(45, 133, 122, 0.25);
}

.mini-title {
  font-weight: 700;
  font-size: 17px;
}

.mini-text {
  font-size: 16px;
  color: var(--ink-500);
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 72px;
}

.info-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 22px;
  border: 1px solid var(--sand-100);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.card-kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13.5px;
  color: var(--coral-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-card h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.info-card p {
  color: var(--ink-700);
  font-size: 17px;
}

.steps {
  margin-bottom: 72px;
}

.steps-header {
  max-width: 640px;
  margin-bottom: 18px;
}

.steps-header h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 36px;
  margin-bottom: 8px;
}

.steps-subtitle {
  color: var(--ink-500);
  font-size: 18px;
}

.step-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--sand-100);
  box-shadow: var(--shadow-soft);
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.step-number {
  font-weight: 700;
  color: var(--coral-700);
  font-size: 18px;
}

.step-list h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.step-list p {
  font-size: 16.5px;
  color: var(--ink-500);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}

.panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid var(--sand-100);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.panel.highlight {
  background: linear-gradient(160deg, rgba(225, 88, 58, 0.12), rgba(255, 255, 255, 0.9));
  border-color: rgba(225, 88, 58, 0.3);
}

.panel h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 28px;
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-700);
  font-size: 16.5px;
}

.panel-list li {
  position: relative;
  padding-left: 18px;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-700));
}

.trust {
  margin-bottom: 72px;
}

.trust-header {
  margin-bottom: 18px;
}

.trust-header h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 36px;
  margin-bottom: 6px;
}

.trust-subtitle {
  color: var(--ink-500);
  font-size: 18px;
}

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

.trust-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--sand-100);
  box-shadow: var(--shadow-soft);
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
}

.trust-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-card p {
  font-size: 16.5px;
  color: var(--ink-500);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(130deg, rgba(225, 88, 58, 0.16), rgba(45, 133, 122, 0.16));
  border: 1px solid rgba(225, 88, 58, 0.2);
  box-shadow: var(--shadow-strong);
  animation: floatIn 600ms ease both;
  animation-delay: var(--delay, 0ms);
  contain: paint;
  margin-bottom: 80px;
}

.cta h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 34px;
  margin-bottom: 6px;
}

.cta p {
  color: var(--ink-500);
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  border-top: 2px solid #ada9a8;
  width: 100%;
  margin: 0;
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #fff1e4 0%, #f7dfca 52%, #efc8a9 100%);
  color: #6a4f3d;
}

.footer-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 24px 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-about h3 {
  color: #9b3e2b;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.footer-about p {
  max-width: 360px;
  font-size: 16px;
  color: #7a5b47;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: #c14f35;
  font-size: 20px;
}

.social-links a:hover {
  color: #8f3321;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h4 {
  color: #9b3e2b;
  font-size: 20px;
  margin-bottom: 6px;
}

.footer-col a {
  color: #6f5342;
  font-size: 16px;
}

.footer-col a:hover {
  color: #8f3321;
}

.footer-bottom {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(159, 105, 77, 0.28);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  color: #6f5342;
}

.footer-bottom-links a:hover {
  color: #8f3321;
}

@media (max-width: 960px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-cover {
    padding: 140px 24px 100px;
  }

  .hero-cover-content {
    gap: 14px;
  }

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

  .hero-visual {
    order: -1;
  }

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

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

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

@media (max-width: 640px) {
  .nav-inner {
    padding: 12px 16px;
    gap: 14px;
  }

  .brand {
    width: 100%;
  }

  .brand-text {
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    flex: 1 1 140px;
    text-align: center;
  }

  .nav-actions {
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-actions .btn,
  .nav-actions .ghost-btn,
  .hero-actions .btn,
  .hero-actions .ghost-btn,
  .cta-actions .btn,
  .cta-actions .ghost-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-cover {
    padding: 140px 20px 90px;
  }

  .hero-cover h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .hero-cover-subtitle {
    font-size: 15px;
  }

  .hero {
    margin-bottom: 52px;
  }

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

  .visual-card img {
    height: 210px;
  }

  .visual-meta {
    flex-wrap: wrap;
    gap: 8px;
    padding-right: 16px;
  }

  .info-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    align-items: flex-start;
    padding: 22px 18px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 16px;
  }

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

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-shape {
    animation: none;
  }

  .stat,
  .visual-card,
  .mini-card,
  .info-card,
  .step-list li,
  .panel,
  .trust-card,
  .cta {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body.perf-lite {
  --shadow-soft: 0 6px 12px rgba(16, 14, 13, 0.08);
  --shadow-strong: 0 12px 22px rgba(16, 14, 13, 0.12);
  background: linear-gradient(180deg, #fff9f2 0%, #f6efe6 100%);
}

body.perf-lite .bg-shape {
  display: none;
}

body.perf-lite .bg-photo {
  opacity: 0.45;
  filter: saturate(0.9);
}

body.perf-lite .stat,
body.perf-lite .visual-card,
body.perf-lite .mini-card,
body.perf-lite .info-card,
body.perf-lite .step-list li,
body.perf-lite .panel,
body.perf-lite .trust-card,
body.perf-lite .cta {
  animation: none;
}
