@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --slate-900: #1e2430;
  --slate-700: #3c495e;
  --slate-500: #5c6c82;
  --slate-100: #f0f3f7;
  --accent-peach: #dfbead;
  --accent-sand: #c7b5a3;
  --accent-sage: #95b3aa;
  --ink: #1a202c;
  --muted: #718096;
  --paper: #ffffff;
  --bg-body: #edf2f7;
  --line: #e2e8f0;
  --shadow-hover: 0 8px 24px -10px rgba(30, 36, 48, 0.12);
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.dark-theme {
  --slate-900: #ffffff;
  --slate-700: #a0aec0;
  --slate-500: #718096;
  --slate-100: #2a3441;
  --ink: #f0f3f7;
  --muted: #a0aec0;
  --paper: #1e2430;
  --bg-body: #0f131a;
  --line: #2d3748;
  --shadow-hover: 0 8px 24px -10px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg-body);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  scroll-behavior: smooth;
}

.theme-transitioning, .theme-transitioning * {
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out, fill 0.5s ease-in-out !important;
}

/* ===== Animasi Selimut (Menyapu) ===== */
.theme-blanket {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}
.theme-blanket.expand { transform: translate(-50%, -50%) scale(60); }
.theme-blanket.fade-out { opacity: 0; }

/* ===== Utility Sinkronisasi Gelombang ===== */
.no-transitions, .no-transitions * { transition: none !important; }

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
  display: block;
  pointer-events: none;
}
::view-transition-old(root) { z-index: 1; }
::view-transition-new(root) { z-index: 2; }

button:focus-visible, input:focus-visible, a:focus-visible {
  outline: 2px solid var(--slate-700);
  outline-offset: 2px;
}

.lp-section { max-width: 1020px; margin: 0 auto; padding: 0 32px; }
.lp-eyebrow { font-size: 14px; font-weight: 600; color: var(--slate-500); margin-bottom: 10px; }
.lp-section-head { max-width: 620px; margin: 0 0 48px; }
.lp-section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 14px; color: var(--slate-900); line-height: 1.2; }
.lp-section-sub { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ===== NAV (floating) ===== */
body { padding-top: 88px; }
.lp-nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 28px); max-width: 1080px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-hover);
  transition: border-radius 0.3s var(--ease);
}
.lp-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 19px;
  color: var(--slate-900); text-decoration: none;
}
.lp-nav__logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--slate-900); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.lp-nav__logo-icon svg { width: 18px; height: 18px; }
.lp-nav__links { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.lp-nav__links a { color: var(--slate-700); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s var(--ease); }
.lp-nav__links a:hover { color: var(--slate-900); }
.lp-nav__right { display: flex; align-items: center; gap: 12px; }
.lp-theme-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 55;
  width: 46px; height: 46px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--paper); color: var(--slate-700);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-hover);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lp-theme-float:hover { background: var(--slate-100); transform: translateY(-2px); }
.lp-theme-float svg { width: 19px; height: 19px; }
.lp-nav__cta, .lp-btn-primary, .lp-btn-secondary, .lp-btn-white {
  --btn-icon-size: 16px;
}
.lp-nav__cta svg, .lp-btn-primary svg, .lp-btn-secondary svg, .lp-btn-white svg {
  width: var(--btn-icon-size); height: var(--btn-icon-size); flex: none;
}
.lp-nav__cta, .lp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--slate-900); color: var(--paper);
  font-weight: 600; font-size: 14.5px;
  padding: 11px 22px; border-radius: var(--radius-pill);
  text-decoration: none; transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lp-nav__cta:hover, .lp-btn-primary:hover { background: var(--slate-700); transform: translateY(-1px); }
.lp-nav__hamburger { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--paper); color: var(--slate-900); align-items: center; justify-content: center; cursor: pointer; }
.lp-nav__hamburger svg { width: 20px; height: 20px; }

.lp-nav-menu {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-hover);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.lp-nav-menu.is-open { max-height: 420px; opacity: 1; pointer-events: auto; transform: translateY(0); }
.lp-nav-menu a { padding: 12px 14px; border-radius: 12px; color: var(--slate-900); text-decoration: none; font-weight: 500; font-size: 15px; transition: background 0.2s var(--ease); }
.lp-nav-menu a:hover { background: var(--slate-100); }
.lp-nav-menu .lp-btn-primary { justify-content: center; margin: 6px 2px 2px; }
@media (min-width: 901px) { .lp-nav-menu { display: none; } }

/* ===== HERO (dipersempit) ===== */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 36px 32px 48px; text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--slate-100) 0%, var(--bg-body) 60%);
}
.lp-hero__blob1, .lp-hero__blob2 {
  position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: 0.55;
}
.lp-hero__blob1 { width: 380px; height: 380px; top: -140px; left: -100px; background: var(--accent-sage); }
.lp-hero__blob2 { width: 320px; height: 320px; bottom: -160px; right: -80px; background: var(--accent-peach); }
.lp-hero__blob1 { animation: lpBlob1 14s ease-in-out infinite alternate; }
.lp-hero__blob2 { animation: lpBlob2 17s ease-in-out infinite alternate; }
@keyframes lpBlob1 {
  0% { border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%; transform: translate(0, 0) scale(1); }
  100% { border-radius: 64% 36% 42% 58% / 42% 62% 38% 58%; transform: translate(40px, 24px) scale(1.08); }
}
@keyframes lpBlob2 {
  0% { border-radius: 64% 36% 42% 58% / 42% 62% 38% 58%; transform: translate(0, 0) scale(1); }
  100% { border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%; transform: translate(-36px, -22px) scale(1.06); }
}

.lp-hero__shape { position: absolute; z-index: 0; pointer-events: none; filter: blur(0.5px); animation: lpFloat 6s ease-in-out infinite; }
.lp-hero__shape--cube {
  top: 44px; left: 7%; width: 60px; height: 60px; --rot: -18deg;
  background: var(--accent-sand); border-radius: 18px;
  box-shadow: 0 14px 24px -10px rgba(0, 0, 0, 0.2);
}
.lp-hero__shape--ball {
  top: 70px; right: 9%; width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent-sage) 70%);
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.2); animation-delay: 2s;
}
.lp-hero__shape--tri {
  bottom: 110px; left: 13%; width: 0; height: 0; --rot: 24deg;
  border-left: 26px solid transparent; border-right: 26px solid transparent;
  border-bottom: 44px solid var(--accent-peach); opacity: 0.85; animation-delay: 4s;
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 5deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__blob1, .lp-hero__blob2, .lp-hero__shape { animation: none; }
}
.lp-hero__badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 600; color: var(--slate-700); margin-bottom: 18px;
}
.lp-hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-sage); }
.lp-hero__title {
  position: relative; z-index: 1;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 5vw, 50px); line-height: 1.1; margin: 0 0 16px; color: var(--slate-900);
}
.lp-hero__title span { color: var(--slate-700); }
.lp-hero__sub {
  position: relative; z-index: 1;
  max-width: 540px; margin: 0 auto 26px; color: var(--muted); font-size: 16px; line-height: 1.6;
}
.lp-hero__actions { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 38px; }
.lp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); color: var(--slate-900); border: 1px solid var(--line);
  font-weight: 600; font-size: 14.5px; padding: 11px 22px; border-radius: var(--radius-pill);
  text-decoration: none; transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lp-btn-secondary svg { width: var(--btn-icon-size, 16px); height: var(--btn-icon-size, 16px); flex: none; }
.lp-btn-secondary:hover { background: var(--slate-100); transform: translateY(-1px); }
.lp-hero__stats {
  position: relative; z-index: 1;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.lp-hero__stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; color: var(--slate-900); }
.lp-hero__stat-label { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ===== ABOUT ===== */
.lp-about { padding: 56px 0; }
.lp-about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.lp-about-card {
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  text-align: left; border-radius: 0;
  background: var(--paper);
  padding: 40px 32px; box-shadow: var(--shadow-hover);
  display: flex; flex-direction: row; align-items: flex-start; justify-content: center; gap: 28px;
}
.lp-about-card__body { max-width: 700px; }
.lp-about-card__icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--slate-100); color: var(--slate-700);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.lp-about-card__icon svg { width: 24px; height: 24px; }
.lp-about-card__title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600; margin: 0 0 12px; color: var(--slate-900); }
.lp-about-card__text { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }
.lp-about-float {
  display: flex; align-items: center; justify-content: flex-start; gap: 14px;
  background: var(--slate-900); color: var(--paper);
  border-radius: 18px; padding: 16px 20px; margin: 24px 0 0; text-align: left;
}
.lp-about-float__icon { width: 38px; height: 38px; border-radius: 12px; background: var(--accent-sage); display: flex; align-items: center; justify-content: center; flex: none; }
.lp-about-float__icon svg { width: 18px; height: 18px; color: var(--slate-900); }
.lp-about-float__title { font-weight: 600; font-size: 14.5px; }
.lp-about-float__sub { font-size: 13px; opacity: 0.75; }
.lp-about-content { text-align: center; max-width: 680px; margin: 0 auto; }
.lp-about-content h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--slate-900); margin: 0 0 18px; line-height: 1.25; }
.lp-about-content p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin: 0 0 16px; }
.lp-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.lp-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--slate-700);
}
.lp-pill svg { width: 14px; height: 14px; color: var(--accent-sage); }

/* ===== HOW ===== */
.lp-how { padding: 56px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.lp-step { position: relative; padding: 28px 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--bg-body); text-align: center; }
.lp-step__icon {
  position: relative; width: 48px; height: 48px; border-radius: 14px;
  background: var(--slate-900); color: var(--paper);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.lp-step__icon svg { width: 22px; height: 22px; }
.lp-step__num {
  position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-sand); color: var(--slate-900); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif;
}
.lp-step__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; margin: 0 0 8px; color: var(--slate-900); }
.lp-step__desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ===== FEATURES ===== */
.lp-features { padding: 56px 0; }
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }
.lp-feat-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); text-align: center; transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease); }
.lp-feat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.lp-feat-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--slate-100); color: var(--slate-700); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.lp-feat-icon svg { width: 22px; height: 22px; }
.lp-feat-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; margin: 0 0 10px; color: var(--slate-900); }
.lp-feat-desc { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ===== PARTNERS (baris 5 kolom, hanya nama) ===== */
.lp-partners-section { padding: 56px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-partners-scroll { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 36px; }
.lp-partner-mini {
  border: 1px solid var(--line); border-radius: 14px; background: var(--bg-body);
  padding: 16px 10px; text-align: center; transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s;
}
.lp-partner-mini:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); background: var(--paper); }
.lp-partner-mini__name { font-weight: 600; font-size: 13.5px; color: var(--slate-900); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.3; } }
.lp-partners-cta { display: flex; justify-content: center; }

/* ---- loading / empty states ---- */
.lp-skel { border-radius: 14px; background: var(--slate-100); animation: pulse 1.4s infinite; }
.lp-skel--partner { height: 52px; }
.lp-skel--review { height: 190px; grid-column: span 1; }
.lp-empty-msg { grid-column: 1 / -1; text-align: center; padding: 30px; color: var(--muted); font-size: 14px; }

/* ===== REVIEWS ===== */
.lp-reviews-section { padding: 56px 0; }
.lp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 36px; align-items: start; }
.lp-review-card { border: 1px solid var(--line); border-radius: 20px; background: var(--paper); padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.lp-review-card__stars { display: flex; align-items: center; gap: 6px; color: var(--accent-sage); font-size: 12.5px; font-weight: 600; }
.lp-review-card__stars svg { width: 15px; height: 15px; flex: none; }
.lp-review-card__text { font-size: 14.5px; line-height: 1.7; color: var(--slate-700); margin: 0; }
.lp-review-card__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.lp-review-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--slate-100); color: var(--slate-700); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; font-family: 'Space Grotesk', sans-serif; }
.lp-review-card__name { font-size: 13.5px; font-weight: 600; color: var(--slate-900); }
.lp-blur-text { filter: blur(4px); user-select: none; display: inline-block; }

/* ===== FOOTER (ringkas, selalu gelap) ===== */
.lp-footer { padding: 48px 0 26px; background: #12161f; border-top: 1px solid rgba(255,255,255,0.07); color: #93a0b3; text-align: center; }
.lp-footer-logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; color: #ffffff; text-decoration: none; margin-bottom: 12px; }
.lp-footer-logo-icon { width: 32px; height: 32px; border-radius: 9px; background: #ffffff; color: #12161f; display: flex; align-items: center; justify-content: center; }
.lp-footer-logo-icon svg { width: 16px; height: 16px; }
.lp-footer-desc { font-size: 14px; color: #7c879a; line-height: 1.6; margin: 0 auto 18px; max-width: 40ch; }
.lp-footer-socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 22px; }
.lp-footer-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); color: #c3cbd8; display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease); }
.lp-footer-social:hover { background: rgba(255,255,255,0.08); }
.lp-footer-social svg { width: 16px; height: 16px; }
.lp-footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 12.5px; color: #5f6b7d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lp-nav__links, .lp-nav__cta { display: none; }
  .lp-nav__hamburger { display: flex; }
  .lp-nav { border-radius: var(--radius-pill); padding: 10px 12px 10px 18px; width: calc(100% - 24px); }
  body { padding-top: 78px; }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-partners-scroll { grid-template-columns: repeat(3, 1fr); }
  .lp-about-card { flex-direction: column; align-items: center; text-align: center; gap: 0; }
  .lp-about-card__text { margin: 0 auto; }
  .lp-about-float { justify-content: center; margin: 20px 0 0; }
}

@media (max-width: 560px) {
  body { padding-top: 70px; font-size: 15px; }
  .lp-nav { top: 10px; padding: 8px 8px 8px 16px; }
  .lp-nav__logo { font-size: 16px; }
  .lp-nav__logo-icon { width: 28px; height: 28px; border-radius: 8px; }
  .lp-nav__logo-icon svg { width: 14px; height: 14px; }
  .lp-nav__hamburger { width: 34px; height: 34px; border-radius: var(--radius-pill); }
  .lp-theme-float { left: 14px; bottom: 14px; width: 42px; height: 42px; }

  .lp-section { padding: 0 18px; }
  .lp-section-head { margin-bottom: 30px; }
  .lp-section-title { font-size: 22px; }
  .lp-section-sub { font-size: 14px; }

  .lp-hero { padding: 24px 18px 36px; }
  .lp-hero__shape--tri { display: none; }
  .lp-hero__shape--cube { left: 4%; width: 44px; height: 44px; }
  .lp-hero__shape--ball { right: 5%; width: 34px; height: 34px; }
  .lp-hero__badge { padding: 6px 13px; font-size: 12px; margin-bottom: 14px; }
  .lp-hero__title { font-size: 28px; margin-bottom: 12px; }
  .lp-hero__sub { font-size: 14px; margin-bottom: 20px; }
  .lp-hero__actions { gap: 10px; margin-bottom: 28px; }
  .lp-btn-primary, .lp-btn-secondary { padding: 10px 18px; font-size: 13.5px; }
  .lp-hero__stats { gap: 18px; }
  .lp-hero__stat-num { font-size: 20px; }
  .lp-hero__stat-label { font-size: 11px; }

  .lp-about, .lp-how, .lp-features, .lp-partners-section, .lp-reviews-section { padding: 44px 0; }
  .lp-about-card { padding: 24px 18px; }
  .lp-about-card__title { font-size: 17px; }
  .lp-about-card__text { font-size: 13.5px; }
  .lp-about-float { padding: 13px 16px; border-radius: 14px; margin: 16px 0 0; }
  .lp-pill { font-size: 12px; padding: 7px 12px; }

  .lp-steps, .lp-feat-grid, .lp-reviews-grid { grid-template-columns: 1fr; }
  .lp-step, .lp-feat-card { padding: 20px 18px; border-radius: 16px; }
  .lp-step__title, .lp-feat-title { font-size: 15.5px; }
  .lp-step__desc, .lp-feat-desc { font-size: 13px; }

  .lp-partners-scroll { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lp-partner-mini { padding: 12px 8px; border-radius: 12px; }
  .lp-partner-mini__name { font-size: 12.5px; }
  .lp-skel--partner { height: 44px; }
  .lp-skel--review { height: 150px; }

  .lp-review-card { padding: 20px; border-radius: 16px; }
  .lp-review-card__text { font-size: 13.5px; }

  .lp-footer { padding: 38px 0 20px; }
  .lp-footer-desc { font-size: 13px; max-width: 100%; }
}