/* قوائمي | Qawaimi — landing */
:root {
  --lp-bg: var(--qw-limestone, #F5F1EA);
  --lp-bg-card: var(--qw-white, #FFFCF7);
  --lp-bg-elev: #FFFCF7;
  --lp-border: var(--qw-border, #E4DCD0);
  --lp-border-hover: rgba(184, 69, 42, 0.45);
  --lp-primary: var(--qw-clay, #B8452A);
  --lp-primary-2: var(--qw-clay-hover, #9C3A24);
  --lp-accent: var(--qw-ink, #1A1714);
  --lp-text: var(--qw-ink, #1A1714);
  --lp-muted: var(--qw-slate, #5C564E);
  --lp-dim: var(--qw-slate-soft, #8A8278);
  --lp-radius: 16px;
  --lp-radius-lg: 24px;
  --lp-header-h: 64px;
  --lp-sticky-h: 0px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body.lp-body {
  font-family: var(--qw-font, "IBM Plex Sans Arabic", "IBM Plex Sans", "Noto Sans Arabic", sans-serif);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.65;
  direction: rtl;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding-bottom: var(--lp-sticky-h);
  background-image:
    radial-gradient(900px 420px at 90% -10%, rgba(184, 69, 42, 0.08), transparent 55%);
}

html[dir="ltr"] body.lp-body { direction: ltr; }

img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

.lp-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(245, 241, 234, 0.9);
  border-bottom: 1px solid var(--lp-border);
  padding: 10px 0;
  padding-top: max(10px, env(safe-area-inset-top));
}

.lp-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  min-width: 0;
}
.lp-brand { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-logo-icon {
  width: 36px; height: 36px; border-radius: 0; flex-shrink: 0;
  background: var(--qw-mark, url("../brand/logos/symbol-color.svg")) center / contain no-repeat;
  display: block;
}
.lp-logo-icon i { display: none; }

.lp-nav-links {
  display: flex; align-items: center; gap: 22px; list-style: none;
}
.lp-nav-link {
  color: var(--lp-muted); text-decoration: none; font-weight: 700; font-size: 14px;
}
.lp-nav-link:hover { color: var(--lp-primary); }
.lp-nav-mobile-only { display: none; }

.lp-menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  border: 1px solid var(--lp-border); border-radius: 12px;
  background: var(--lp-bg-card); cursor: pointer; flex-shrink: 0;
}
.lp-menu-toggle span { display: block; height: 2px; background: var(--lp-text); border-radius: 2px; transition: 0.2s; }
body.lp-nav-open .lp-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.lp-nav-open .lp-menu-toggle span:nth-child(2) { opacity: 0; }
body.lp-nav-open .lp-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-nav-backdrop { display: none; }

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

.lp-lang-switch {
  display: flex; background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  border-radius: 999px; padding: 3px;
}
.lp-lang-btn {
  border: 0; background: transparent; color: var(--lp-muted);
  padding: 5px 9px; border-radius: 999px; font: inherit; font-size: 11px; font-weight: 800; cursor: pointer;
}
.lp-lang-btn.active, .lp-lang-btn:hover { color: #fff; background: var(--lp-primary); }

.lp-btn-primary, .lp-btn-glass {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; text-decoration: none; border-radius: 12px; min-height: 44px;
}
.lp-btn-primary {
  background: var(--lp-primary); color: #fff;
  font-size: 14px; padding: 10px 18px; border: 0; box-shadow: 0 8px 24px rgba(184,69,42,0.18);
}
.lp-btn-primary:hover { background: var(--qw-clay-hover, #9C3A24); transform: translateY(-1px); }
.lp-btn-glass {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); color: var(--lp-text);
  font-size: 14px; padding: 10px 16px;
}
.lp-btn-lg { padding: 13px 22px; font-size: 15px; width: 100%; }
@media (min-width: 640px) {
  .lp-btn-lg { width: auto; min-width: 180px; }
}

/* Hero */
.lp-hero { padding: 28px 0 20px; }
.lp-hero-grid {
  display: grid; gap: 36px; align-items: center;
}
.lp-hero-copy { text-align: center; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
  background: var(--qw-clay-soft, #F3E4DC); border: 1px solid rgba(184,69,42,0.22);
  color: var(--lp-primary); font-weight: 600; font-size: 12.5px;
}
.lp-hero-title {
  font-size: clamp(28px, 7.2vw, 52px); font-weight: 700; line-height: 1.22;
  letter-spacing: -0.04em; text-wrap: balance; margin-bottom: 14px;
}
.lp-hero-title span { display: inline; }
.lp-grad {
  color: var(--lp-primary);
}
.lp-hero-desc {
  color: var(--lp-muted); font-size: 16px; max-width: 38rem; margin: 0 auto 22px; text-wrap: pretty;
}
.lp-hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px;
}
.lp-proof {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; max-width: 420px; margin: 0 auto;
}
.lp-proof span {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: 12px;
  padding: 10px 8px; font-size: 12.5px; font-weight: 800; color: var(--lp-muted); text-align: center;
  min-width: 0;
}
.lp-proof b { display: block; color: var(--lp-text); font-size: 14px; margin-bottom: 2px; }

/* Phone */
.lp-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lp-phone {
  width: min(100%, 280px); aspect-ratio: 9 / 18.4;
  border-radius: 34px; padding: 10px;
  background: linear-gradient(180deg, #2C2723, #1A1714);
  box-shadow: var(--qw-shadow-lg, 0 20px 48px rgba(26,23,20,0.12));
}
.lp-phone-screen {
  height: 100%; border-radius: 24px; overflow: hidden; background: #FFFCF7;
  display: flex; flex-direction: column;
}
.lp-ph-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px 6px; font-size: 10px; color: #5C564E; font-weight: 700;
}
.lp-ph-head {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px 10px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-ph-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--lp-primary); color: #fff; display: grid; place-items: center; font-size: 12px;
}
.lp-ph-head b { font-size: 12px; display: block; line-height: 1.2; }
.lp-ph-head small { color: var(--lp-muted); font-size: 10px; }
.lp-ph-banner {
  margin: 10px 12px 6px; height: 64px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(184,69,42,0.22), rgba(26,23,20,0.08));
}
.lp-ph-cats { display: flex; gap: 6px; padding: 8px 12px; overflow: hidden; }
.lp-ph-cats i {
  flex: 1; height: 22px; border-radius: 999px; background: var(--qw-sand, #E8E1D5);
  font-style: normal; font-size: 9px; font-weight: 700; color: var(--lp-text);
  display: grid; place-items: center; white-space: nowrap; padding: 0 4px;
}
.lp-ph-cats i.on { background: var(--lp-primary); color: #fff; }
.lp-ph-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 4px 12px 12px; flex: 1;
}
.lp-ph-card {
  background: #fff; border: 1px solid var(--lp-border);
  border-radius: 12px; padding: 8px; min-width: 0;
}
.lp-ph-thumb {
  height: 54px; border-radius: 8px; margin-bottom: 6px;
  display: grid; place-items: center; font-size: 22px;
  background: var(--qw-sand, #E8E1D5);
}
.lp-ph-card p { font-size: 10.5px; font-weight: 800; line-height: 1.3; margin-bottom: 4px; }
.lp-ph-card span { font-size: 10px; color: var(--lp-primary); font-weight: 800; }

.lp-mock-tabs {
  display: flex; gap: 6px; overflow-x: auto; max-width: 280px; width: 100%;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.lp-mock-tabs::-webkit-scrollbar { display: none; }
.lp-tab-btn {
  flex: 1 0 auto; min-height: 38px; padding: 6px 12px; border-radius: 999px; cursor: pointer;
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  color: var(--lp-muted); font: inherit; font-size: 12px; font-weight: 800;
}
.lp-tab-btn.active { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }

/* Sections */
.lp-section { padding: 56px 0; }
.lp-section.alt { background: rgba(232, 225, 213, 0.45); }
.lp-section-header { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.lp-section-tag {
  color: var(--lp-primary); font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  display: block; margin-bottom: 8px;
}
.lp-section-title {
  font-size: clamp(22px, 4.4vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.3; margin-bottom: 10px; text-wrap: balance;
}
.lp-section-desc { color: var(--lp-muted); font-size: 15px; }

/* Engines */
.lp-engines { display: grid; gap: 16px; }
.lp-engine {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-lg);
  padding: 22px 20px; position: relative; overflow: hidden;
  transition: transform .2s var(--qw-ease, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow .2s ease, border-color .2s ease;
}
.lp-engine:hover { transform: translateY(-2px); box-shadow: var(--qw-shadow-md, 0 8px 24px rgba(26,23,20,.07)); border-color: var(--lp-border-hover); }
.lp-engine::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 4px;
}
html[dir="ltr"] .lp-engine::before { inset: 0 0 0 auto; }
.lp-engine.menu::before { background: var(--lp-primary); }
.lp-engine.store::before { background: var(--lp-accent); }
.lp-engine-kicker { font-size: 11px; font-weight: 800; color: var(--lp-primary); margin-bottom: 6px; }
.lp-engine.store .lp-engine-kicker { color: var(--lp-accent); }
.lp-engine h3 { font-size: 22px; margin-bottom: 8px; }
.lp-engine > p { color: var(--lp-muted); font-size: 14px; margin-bottom: 14px; }
.lp-engine ul { list-style: none; display: grid; gap: 8px; margin-bottom: 16px; }
.lp-engine li {
  display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; font-weight: 700;
}
.lp-engine li i { color: var(--lp-primary); margin-top: 3px; }
.lp-engine.store li i { color: var(--lp-accent); }
.lp-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-chip {
  font-size: 12px; font-weight: 700; color: var(--lp-muted);
  background: var(--qw-sand, #E8E1D5); border: 1px solid var(--lp-border);
  border-radius: 999px; padding: 5px 10px;
}

/* Themes */
.lp-themes-filter {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 22px; flex-wrap: wrap;
}
.lp-theme-filter-btn {
  min-height: 40px; padding: 8px 16px; border-radius: 999px; cursor: pointer;
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  color: var(--lp-muted); font: inherit; font-size: 13px; font-weight: 800;
}
.lp-theme-filter-btn.active, .lp-theme-filter-btn:hover {
  background: var(--lp-primary); color: #fff; border-color: var(--lp-primary);
}
.lp-themes-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
.lp-theme-card {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s var(--qw-ease, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow .2s ease, border-color .2s ease;
}
.lp-theme-card:hover { transform: translateY(-3px); box-shadow: var(--qw-shadow-md, 0 8px 24px rgba(26,23,20,.07)); border-color: var(--lp-border-hover); }
.lp-theme-mini {
  height: 132px; padding: 12px; position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
.lp-theme-mini-top { height: 10px; border-radius: 999px; width: 42%; opacity: 0.9; }
.lp-theme-mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.lp-theme-mini-cell { border-radius: 10px; background: rgba(255,255,255,0.12); }
.lp-theme-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lp-theme-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lp-theme-cat {
  font-size: 11px; font-weight: 800; border-radius: 999px; padding: 3px 8px;
  background: var(--qw-clay-soft, #F3E4DC); color: var(--lp-primary);
}
.lp-theme-cat.store { background: var(--qw-sand, #E8E1D5); color: var(--lp-accent); }
.lp-swatches { display: flex; gap: 5px; }
.lp-swatches i { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--lp-border); font-style: normal; }
.lp-theme-card h4 { font-size: 16px; }
.lp-theme-card p { font-size: 13px; color: var(--lp-muted); flex: 1; }
.lp-theme-card a {
  align-self: flex-start; font-size: 13px; font-weight: 800; color: var(--lp-primary); text-decoration: none;
}

/* Features */
.lp-features-grid {
  display: grid; gap: 12px; grid-template-columns: 1fr;
}
.lp-feature-box {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  padding: 20px 18px;
  transition: transform .2s var(--qw-ease, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow .2s ease;
}
.lp-feature-box:hover { transform: translateY(-2px); box-shadow: var(--qw-shadow-md, 0 8px 24px rgba(26,23,20,.07)); }
.lp-feature-box.featured {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.12), var(--lp-bg-card) 55%);
  border-color: rgba(37, 211, 102, 0.28);
}
.lp-feat-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
  display: grid; place-items: center; color: var(--lp-primary);
  background: var(--qw-clay-soft, #F3E4DC); border: 1px solid rgba(184,69,42,0.18); font-size: 18px;
}
.lp-feature-box.featured .lp-feat-icon { color: #25D366; background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); }
.lp-feature-box h3 { font-size: 16px; margin-bottom: 6px; }
.lp-feature-box p { font-size: 13.5px; color: var(--lp-muted); }

/* Steps */
.lp-steps-wrap { display: grid; gap: 12px; }
.lp-step-card {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  padding: 20px 18px; position: relative;
}
.lp-step-num {
  position: absolute; top: 14px; left: 16px; font-size: 28px; font-weight: 700; color: rgba(26,23,20,0.08);
}
html[dir="ltr"] .lp-step-num { left: auto; right: 16px; }
.lp-step-icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 12px;
  display: grid; place-items: center; color: var(--lp-primary); background: var(--qw-clay-soft, #F3E4DC);
}
.lp-step-card h3 { font-size: 16px; margin-bottom: 6px; }
.lp-step-card p { font-size: 13.5px; color: var(--lp-muted); }

/* FAQ */
.lp-faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.lp-faq-item {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: 16px; overflow: hidden;
}
.lp-faq-item.active { border-color: var(--lp-border-hover); }
.lp-faq-question {
  width: 100%; padding: 16px 16px; background: transparent; border: 0; color: var(--lp-text);
  font: inherit; font-weight: 800; font-size: 15px; text-align: right;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; min-height: 56px;
}
html[dir="ltr"] .lp-faq-question { text-align: left; }
.lp-faq-question span { flex: 1; }
.lp-faq-question i { color: var(--lp-primary); transition: transform 0.2s; }
.lp-faq-item.active .lp-faq-question i { transform: rotate(180deg); }
.lp-faq-answer {
  display: none; padding: 0 16px 16px; color: var(--lp-muted); font-size: 14px;
}
.lp-faq-item.active .lp-faq-answer { display: block; }

/* CTA */
.lp-cta-box {
  background: var(--qw-ink, #1A1714); color: var(--qw-limestone, #F5F1EA);
  border: 1px solid transparent; border-radius: 24px;
  padding: 32px 20px; text-align: center;
}
.lp-cta-title { font-size: clamp(22px, 4vw, 32px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 10px; }
.lp-cta-desc { color: #A39A90; margin: 0 auto 20px; max-width: 36rem; }
.lp-cta-box .lp-btn-primary { background: var(--lp-primary); color: #fff; }

/* Footer */
.lp-footer {
  background: var(--qw-ink, #1A1714); color: var(--qw-limestone, #F5F1EA);
  border-top: 1px solid #322C26;
  padding: 40px 0 calc(24px + env(safe-area-inset-bottom));
}
.lp-footer-grid { display: grid; gap: 28px; margin-bottom: 28px; }
.lp-footer-brand p { color: #A39A90; font-size: 14px; margin-top: 12px; max-width: 32rem; }
.lp-footer .lp-brand, .lp-footer .lp-logo { color: #F5F1EA; }
.lp-footer .lp-logo-icon { background-image: var(--qw-mark-dark, url("../brand/logos/symbol-on-dark.svg")); }
.lp-footer-col h4 { font-size: 14px; margin-bottom: 12px; }
.lp-footer-col ul { list-style: none; display: grid; gap: 8px; }
.lp-footer-col a { color: #A39A90; text-decoration: none; font-size: 13.5px; }
.lp-footer-col a:hover { color: #F5F1EA; }
.lp-footer .lp-brand-en {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #A39A90;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.lp-footer-bottom {
  border-top: 1px solid #322C26; padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  color: #8A8278; font-size: 13px;
}

/* Sticky mobile CTA */
.lp-sticky-cta {
  display: none;
}

@media (min-width: 640px) {
  .lp-proof { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .lp-themes-grid { grid-template-columns: 1fr 1fr; }
  .lp-features-grid { grid-template-columns: 1fr 1fr; }
  .lp-feature-box.featured { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .lp-engines { grid-template-columns: 1fr 1fr; }
  .lp-steps-wrap { grid-template-columns: repeat(3, 1fr); }
  .lp-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .lp-section { padding: 72px 0; }
  .lp-hero { padding: 48px 0 28px; }
}

@media (min-width: 960px) {
  .lp-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
  .lp-hero-copy { text-align: start; }
  html[dir="ltr"] .lp-hero-copy { text-align: left; }
  .lp-hero-desc { margin-right: 0; margin-left: 0; }
  html[dir="rtl"] .lp-hero-desc { margin-left: auto; }
  .lp-hero-actions, .lp-proof { justify-content: flex-start; margin-right: 0; margin-left: 0; }
  html[dir="rtl"] .lp-proof { margin-left: 0; }
  .lp-themes-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-features-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-feature-box.featured { grid-column: auto; }
  .lp-container { padding: 0 24px; }
}

@media (max-width: 992px) {
  .lp-menu-toggle { display: flex; }
  .lp-nav-mobile-only { display: list-item; }
  .lp-nav-lang-item { display: block; list-style: none; padding: 8px 0 16px; }
  .lp-nav-actions .lp-lang-switch { display: none; }
  .lp-header-super { display: none !important; }
  .lp-nav-content { gap: 8px; }
  .lp-nav-links {
    display: flex; position: fixed; top: 0; bottom: 0; right: 0; left: auto;
    width: min(300px, 86%); height: 100dvh; flex-direction: column; align-items: stretch;
    gap: 2px; margin: 0; padding: calc(env(safe-area-inset-top) + 72px) 18px 24px;
    background: #FFFCF7; border-left: 1px solid var(--lp-border); z-index: 1100;
    transform: translateX(110%); transition: transform 0.25s ease, visibility 0.25s;
    overflow-y: auto; overflow-x: hidden; visibility: hidden; pointer-events: none;
  }
  html[dir="ltr"] .lp-nav-links {
    right: auto; left: 0; border-left: 0; border-right: 1px solid var(--lp-border);
    transform: translateX(-110%);
  }
  body.lp-nav-open .lp-nav-links,
  html[dir="ltr"] body.lp-nav-open .lp-nav-links {
    transform: none; visibility: visible; pointer-events: auto;
  }
  .lp-nav-link { display: block; padding: 12px 8px; font-size: 16px; }
  .lp-nav-backdrop {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1050;
  }
  .lp-nav-backdrop[hidden] { display: none; }
  body.lp-nav-open { overflow: hidden; }
  .lp-header-login span { display: none; }
  .lp-header-login { padding: 10px 12px; min-width: 42px; }
  .lp-logo { flex: 1; min-width: 0; }
}

@media (max-width: 639px) {
  :root { --lp-sticky-h: calc(64px + env(safe-area-inset-bottom)); }
  .lp-sticky-cta {
    display: flex; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(245,241,234,0.94); border-top: 1px solid var(--lp-border);
    backdrop-filter: blur(16px);
    width: 100%;
    box-sizing: border-box;
  }
  .lp-sticky-cta a { flex: 1; min-width: 0; }
  .lp-cta-box { margin-bottom: 8px; }
  .lp-hero { padding: 20px 0 12px; }
  .lp-section { padding: 40px 0; }
  .lp-hero-title { font-size: clamp(24px, 8vw, 34px); }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-engine, .lp-theme-card, .lp-feature-box, .lp-step-card { min-width: 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .lp-hero-copy { animation: qw-up .5s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .lp-phone-wrap { animation: qw-up .55s .08s cubic-bezier(0.22, 1, 0.36, 1) both; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-engine:hover, .lp-theme-card:hover, .lp-feature-box:hover { transform: none; }
}
@keyframes qw-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
