/* ═══════════════════════════════════════════
   DESIGN TOKENS — Premium Apple-level system
═══════════════════════════════════════════ */
:root {
  --brand: #5a5fcf;
  --brand-dark: #4348b8;
  --brand-light: #f0f0ff;
  --brand-glow: rgba(90,95,207,.18);
  --accent: #a855f7;
  --accent2: #ec4899;
  --text: #09090b;
  --text2: #3f3f46;
  --muted: #71717a;
  --subtle: #a1a1aa;
  --border: #e4e4e7;
  --border-subtle: #f4f4f5;
  --bg: #ffffff;
  --bg2: #fafafa;
  --bg3: #f4f4f5;
  --glass: rgba(255,255,255,.72);
  --glass-border: rgba(255,255,255,.5);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.06);
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --transition-slow: .45s cubic-bezier(.4,0,.2,1);
}

/* BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--brand-light); color: var(--brand-dark); }

.lp-container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.lp-section { padding: 112px 0; }

/* GRADIENT TEXT */
.lp-gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 50%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%; animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* ═══════════════════════════════════════════
   NAV — Apple-style frosted glass
═══════════════════════════════════════════ */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all var(--transition-slow);
}
.lp-nav.scrolled {
  background: rgba(255,255,255,.85); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
  padding: 12px 0;
}
.lp-nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 8px;
}
.lp-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -.3px; color: var(--text);
  margin-right: auto;
}
.lp-logo-icon { font-size: 21px; }
.lp-logo-text { font-weight: 800; }

.lp-nav-links { display: flex; align-items: center; gap: 2px; }
.lp-nav-link {
  padding: 7px 14px; border-radius: 8px; color: var(--text2);
  font-size: 14px; font-weight: 500; letter-spacing: -.1px;
  transition: all var(--transition); position: relative;
}
.lp-nav-link:hover { color: var(--text); background: var(--bg3); }
.lp-nav-link.active { color: var(--brand); background: var(--brand-light); font-weight: 600; }

.lp-nav-cta { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.lp-btn-ghost {
  padding: 8px 18px; border-radius: 50px; color: var(--text2);
  font-size: 14px; font-weight: 500; transition: all var(--transition);
}
.lp-btn-ghost:hover { color: var(--text); background: var(--bg3); }

/* PRIMARY BUTTON — premium with glow */
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 14px; letter-spacing: -.1px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 1px 3px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,.15);
}
.lp-btn-primary:hover {
  background: var(--brand-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--brand-glow), 0 2px 6px rgba(0,0,0,.08);
}
.lp-btn-primary:active { transform: translateY(0); box-shadow: none; }

.lp-btn-xl { padding: 15px 34px; font-size: 16px; font-weight: 700; letter-spacing: -.2px; border-radius: 50px; }

/* OUTLINE BUTTON */
.lp-btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--border); color: var(--text2);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  transition: all var(--transition); background: var(--bg);
}
.lp-btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }

.lp-btn-full { width: 100%; justify-content: center; }

/* WHITE & GHOST-WHITE for dark sections */
.lp-btn-white {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.95); color: var(--brand);
  padding: 15px 34px; border-radius: 50px; font-weight: 700; font-size: 16px;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.lp-btn-white:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

.lp-btn-ghost-white {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.9);
  padding: 15px 34px; border-radius: 50px; font-weight: 600; font-size: 16px;
  transition: all var(--transition); backdrop-filter: blur(8px);
}
.lp-btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); color: #fff; }

/* HAMBURGER */
.lp-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.lp-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* FLASH */
.lp-flash { position: fixed; top: 88px; left: 50%; transform: translateX(-50%); z-index: 999; padding: 14px 28px; border-radius: 14px; font-weight: 500; font-size: 15px; white-space: nowrap; box-shadow: var(--shadow-md); animation: slideDown .3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateX(-50%) translateY(-10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.lp-flash-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.lp-flash-error { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

/* ═══════════════════════════════════════════
   HERO — Cinematic, Apple-grade
═══════════════════════════════════════════ */
.lp-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 130px 28px 100px; position: relative; overflow: hidden; text-align: center;
}
.lp-hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Soft radial blobs */
.lp-hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .12; animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 700px; height: 700px; background: radial-gradient(circle, #6366f1, #a855f7); top: -250px; right: -150px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, #ec4899, #f97316); bottom: -150px; left: -120px; animation-delay: -4s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(20px,-20px) scale(1.03)} 66%{transform:translate(-15px,15px) scale(.97)} }

/* Dot grid */
.lp-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #c7d2fe 1px, transparent 1px);
  background-size: 36px 36px; opacity: .35;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

/* Hero content */
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,.08); color: var(--brand);
  border: 1px solid rgba(99,102,241,.2);
  padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 36px; letter-spacing: -.1px;
  backdrop-filter: blur(8px);
}
.badge-dot { width: 7px; height: 7px; background: var(--brand); border-radius: 50%; animation: pulse 2s ease infinite; box-shadow: 0 0 8px var(--brand); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }

.lp-hero-title {
  font-size: clamp(42px, 6.5vw, 80px); font-weight: 900;
  line-height: 1.06; letter-spacing: -2.5px; margin-bottom: 28px;
  color: var(--text); position: relative;
}
.lp-hero-sub {
  font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto 48px;
  line-height: 1.72; font-weight: 400; letter-spacing: -.1px;
}
.lp-hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

/* Stats pill */
.lp-hero-stats {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.8); backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px; padding: 20px 44px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.8);
}
.hero-stat { text-align: center; padding: 0 36px; }
.hero-stat-num { display: block; font-size: 30px; font-weight: 800; color: var(--brand); letter-spacing: -1px; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; letter-spacing: .2px; }
.hero-stat-divider { width: 1px; height: 44px; background: var(--border); }
/* PHONE MOCKUP */
.lp-hero-mockup{position:absolute;right:5%;top:50%;transform:translateY(-50%);display:none;}
.phone-frame{width:220px;background:#1e293b;border-radius:36px;padding:12px;box-shadow:0 32px 80px rgba(0,0,0,.3);border:4px solid #334155;}
.phone-notch{width:60px;height:8px;background:#0f172a;border-radius:4px;margin:0 auto 12px;}
.phone-screen{background:#f8fafc;border-radius:24px;overflow:hidden;padding:12px;}
.mock-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;}
.mock-restaurant-name{font-weight:700;font-size:12px;}
.mock-logo{font-size:18px;}
.mock-search{background:#e2e8f0;border-radius:8px;padding:6px 10px;font-size:10px;color:#94a3b8;margin-bottom:8px;}
.mock-cats{display:flex;gap:6px;margin-bottom:10px;overflow:hidden;}
.mock-cat{font-size:9px;padding:4px 10px;border-radius:50px;background:#e2e8f0;color:#64748b;white-space:nowrap;}
.mock-cat.active{background:#6366f1;color:#fff;}
.mock-products{display:flex;flex-direction:column;gap:6px;}
.mock-product{display:flex;align-items:center;gap:8px;background:#fff;border-radius:10px;padding:8px;}
.mock-product-img{font-size:20px;}
.mock-product-name{font-size:10px;font-weight:600;}
.mock-product-price{font-size:10px;color:#6366f1;font-weight:700;margin-top:2px;}
.qr-badge{position:absolute;bottom:-20px;left:-30px;background:#fff;border-radius:12px;padding:10px 14px;box-shadow:var(--shadow-lg);text-align:center;font-size:11px;color:var(--muted);}
.qr-icon{font-size:8px;line-height:1.2;margin-bottom:4px;}
/* ═══ LOGOS ═══ */
.lp-logos { padding: 40px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.lp-logos-label { text-align: center; font-size: 11px; color: var(--subtle); font-weight: 600; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; }
.lp-logos-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.lp-logo-pill { background: var(--bg2); border: 1px solid var(--border); padding: 9px 22px; border-radius: 50px; font-size: 13px; color: var(--muted); font-weight: 500; transition: all var(--transition); }
.lp-logo-pill:hover { background: var(--brand-light); color: var(--brand); border-color: transparent; }
/* ═══ SECTION HEADER ═══ */
.lp-section-header { text-align: center; margin-bottom: 72px; }
.lp-section-badge { display: inline-block; background: var(--brand-light); color: var(--brand); padding: 5px 16px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(90,95,207,.15); }
.lp-section-title { font-size: clamp(30px,4vw,48px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 18px; line-height: 1.1; }
.lp-section-sub { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto; line-height: 1.75; }
/* ═══ FEATURES ═══ */
.lp-features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(268px,1fr)); gap: 18px; }
.lp-feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all var(--transition); position: relative; overflow: hidden; }
.lp-feature-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.6),transparent); opacity:0; transition:opacity var(--transition); pointer-events:none; }
.lp-feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.lp-feature-card:hover::before { opacity: 1; }
.lp-feature-icon { font-size: 28px; margin-bottom: 18px; display: inline-block; }
.lp-feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.2px; }
.lp-feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.lp-feature-amber{border-top:2.5px solid #f59e0b;}.lp-feature-violet{border-top:2.5px solid #8b5cf6;}.lp-feature-sky{border-top:2.5px solid #0ea5e9;}.lp-feature-emerald{border-top:2.5px solid #10b981;}.lp-feature-rose{border-top:2.5px solid #f43f5e;}.lp-feature-slate{border-top:2.5px solid #64748b;}.lp-feature-teal{border-top:2.5px solid #14b8a6;}.lp-feature-orange{border-top:2.5px solid #f97316;}
.lp-features-cta { text-align: center; margin-top: 56px; }
/* ═══ HOW IT WORKS ═══ */
.lp-how { background: var(--bg2); }
.lp-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.lp-step { flex:1; min-width:220px; max-width:300px; text-align:center; padding:48px 28px; }
.lp-step-num { display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:16px; background:linear-gradient(135deg,var(--brand),var(--accent)); color:#fff; font-size:20px; font-weight:800; margin-bottom:20px; box-shadow:0 8px 24px var(--brand-glow); }
.lp-step-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.lp-step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.lp-step-arrow { font-size: 20px; color: var(--border); margin-top: 72px; flex-shrink: 0; }
/* ═══ TESTIMONIALS ═══ */
.lp-testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; }
.lp-testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all var(--transition); position: relative; }
.lp-testi-card::after { content:'"'; position:absolute; top:20px; right:28px; font-size:64px; color:var(--brand-light); font-family:Georgia,serif; line-height:1; pointer-events:none; }
.lp-testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.lp-testi-stars { color: #f59e0b; font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }
.lp-testi-text { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.lp-testi-author { display: flex; align-items: center; gap: 12px; }
.lp-testi-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--brand),var(--accent)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; flex-shrink:0; }
.lp-testi-name { font-weight: 700; font-size: 14px; }
.lp-testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
/* ═══ PRICING TEASER ═══ */
.lp-pricing-teaser { background: var(--bg2); }
.lp-pricing-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; box-shadow: var(--shadow); }
.lp-pricing-left .lp-section-badge { margin-bottom: 16px; }
.lp-pricing-left h2 { font-size: 34px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
.lp-pricing-left p { color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.lp-price-highlight { background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%); border-radius: var(--radius); padding: 36px; color: #fff; position: relative; overflow: hidden; box-shadow: 0 16px 48px var(--brand-glow); }
.lp-price-highlight::before { content:''; position:absolute; top:-40px; right:-40px; width:160px; height:160px; background:rgba(255,255,255,.08); border-radius:50%; pointer-events:none; }
.lp-price-badge { display: inline-block; background: rgba(255,255,255,.2); padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 20px; letter-spacing: .3px; }
.lp-price-amount { font-size: 56px; font-weight: 900; line-height: 1; letter-spacing: -2px; }
.lp-price-currency { font-size: 28px; vertical-align: top; margin-top: 10px; display: inline-block; font-weight: 700; }
.lp-price-period { font-size: 17px; opacity: .75; font-weight: 400; }
.lp-price-name { font-size: 15px; opacity: .8; margin: 6px 0 24px; }
.lp-price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-price-features li { font-size: 14px; opacity: .9; display: flex; align-items: center; gap: 8px; }
.lp-price-features li::before { content:''; display:inline-block; width:16px; height:16px; background:rgba(255,255,255,.3); border-radius:50%; flex-shrink:0; }
/* ═══ PRICING PAGE ═══ */
.lp-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 24px; margin-bottom: 88px; }
.lp-plan-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; position: relative; transition: all var(--transition); }
.lp-plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lp-plan-featured { border: 2px solid var(--brand); background: linear-gradient(160deg, var(--brand-light) 0%, #fff 60%); box-shadow: var(--shadow-md); }
.lp-plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; padding: 5px 20px; border-radius: 50px; font-size: 11px; font-weight: 700; white-space: nowrap; letter-spacing: .3px; }
.lp-plan-name { font-size: 17px; font-weight: 700; margin-bottom: 14px; letter-spacing: -.3px; }
.lp-plan-price { font-size: 48px; font-weight: 900; color: var(--brand); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.lp-plan-currency { font-size: 24px; vertical-align: top; margin-top: 8px; display: inline-block; }
.lp-plan-period { font-size: 15px; color: var(--muted); font-weight: 400; }
.lp-plan-desc { color: var(--muted); font-size: 14px; margin: 12px 0 24px; line-height: 1.6; }
.lp-plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.lp-plan-features li { font-size: 14px; color: var(--text2); padding-left: 20px; position: relative; }
.lp-plan-features li::before { content:''; position:absolute; left:0; top:6px; width:8px; height:8px; border-radius:50%; background:var(--brand); opacity:.5; }
/* ═══ FAQ ═══ */
.lp-faq { margin-top: 88px; }
.lp-faq-title { font-size: 34px; font-weight: 800; text-align: center; margin-bottom: 48px; letter-spacing: -1px; }
.lp-faq-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; }
.lp-faq-item { background: var(--bg2); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border-subtle); transition: all var(--transition); }
.lp-faq-item:hover { background: #fff; box-shadow: var(--shadow); border-color: var(--border); }
.lp-faq-q { font-weight: 700; margin-bottom: 10px; font-size: 15px; letter-spacing: -.2px; }
.lp-faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }
/* ═══ CTA ═══ */
.lp-cta { background: linear-gradient(135deg, var(--brand-dark) 0%, #7c3aed 100%); color: #fff; padding: 112px 28px; text-align: center; position: relative; overflow: hidden; }
.lp-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.lp-cta-blob { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); top: -250px; right: -100px; border-radius: 50%; animation: blobFloat 10s ease-in-out infinite; }
.lp-cta-title { font-size: clamp(32px,4.5vw,54px); font-weight: 900; margin-bottom: 18px; position: relative; letter-spacing: -1.5px; line-height: 1.1; }
.lp-cta-sub { font-size: 18px; opacity: .8; margin-bottom: 44px; position: relative; font-weight: 400; }
.lp-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
/* ═══ INNER HERO ═══ */
.lp-inner-hero { padding: 148px 28px 88px; text-align: center; background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%); border-bottom: 1px solid var(--border-subtle); }
.lp-inner-title { font-size: clamp(34px,5vw,56px); font-weight: 900; letter-spacing: -2px; margin: 14px 0 18px; line-height: 1.05; }
.lp-inner-sub { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
/* FEATURES PAGE */
.lp-feature-row{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;margin-bottom:96px;}
.lp-feature-row-reverse .lp-feature-row-visual{order:2;}
.lp-feature-row-visual{border-radius:24px;aspect-ratio:1;display:flex;align-items:center;justify-content:center;}
.lp-feature-row-icon{font-size:80px;}
.lp-bg-amber{background:linear-gradient(135deg,#fef3c7,#fde68a);}
.lp-bg-violet{background:linear-gradient(135deg,#ede9fe,#ddd6fe);}
.lp-bg-sky{background:linear-gradient(135deg,#e0f2fe,#bae6fd);}
.lp-bg-emerald{background:linear-gradient(135deg,#d1fae5,#a7f3d0);}
.lp-feature-row-content .lp-section-badge{margin-bottom:12px;}
.lp-feature-row-content h2{font-size:32px;font-weight:800;margin:8px 0 16px;}
.lp-feature-row-content p{color:var(--muted);margin-bottom:20px;}
.lp-feature-list{list-style:none;display:flex;flex-direction:column;gap:8px;}
.lp-feature-list li{font-size:15px;color:var(--text2);}
/* ═══ CONTACT ═══ */
.lp-contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.lp-contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.lp-contact-icon { width: 48px; height: 48px; background: var(--brand-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand); }
.lp-contact-label { font-size: 11px; color: var(--subtle); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .8px; }
.lp-contact-value { font-size: 15px; font-weight: 600; color: var(--text); }
a.lp-contact-value:hover { color: var(--brand); }
.lp-contact-highlight { background: var(--brand-light); border-radius: var(--radius); padding: 22px; display: flex; gap: 14px; margin-top: 36px; border: 1px solid rgba(90,95,207,.1); }
.lp-contact-highlight strong { display: block; margin-bottom: 5px; font-size: 15px; }
.lp-contact-highlight p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.lp-contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.lp-contact-form { display: flex; flex-direction: column; gap: 22px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lp-form-group { display: flex; flex-direction: column; gap: 7px; }
.lp-form-group label { font-size: 13px; font-weight: 600; color: var(--text2); letter-spacing: -.1px; }
.lp-form-group input, .lp-form-group select, .lp-form-group textarea { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 15px; font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg2); transition: all var(--transition); outline: none; }
.lp-form-group input:focus, .lp-form-group select:focus, .lp-form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(90,95,207,.1); background: #fff; }
.lp-form-group textarea { resize: vertical; min-height: 120px; }
/* ═══ FOOTER ═══ */
.lp-footer { background: #09090b; color: #52525b; padding: 80px 0 0; }
.lp-footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr auto; gap: 80px; margin-bottom: 56px; }
.lp-footer-brand .lp-logo-icon { display: none; }
.lp-footer-brand .lp-logo-text { color: #fff; font-weight: 800; font-size: 17px; letter-spacing: -.3px; }
.lp-footer-brand p { font-size: 14px; margin-top: 14px; max-width: 220px; line-height: 1.7; color: #52525b; }
.lp-footer-cols { display: flex; gap: 56px; }
.lp-footer-col { display: flex; flex-direction: column; gap: 11px; }
.lp-footer-col h4 { color: #a1a1aa; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.lp-footer-col a { font-size: 14px; color: #52525b; transition: color var(--transition); }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-bottom { border-top: 1px solid #18181b; padding: 22px 28px; text-align: center; font-size: 13px; color: #3f3f46; }
/* ═══ RESPONSIVE ═══ */
@media(max-width:900px) {
  .lp-nav-links, .lp-nav-cta { display: none; }
  .lp-hamburger { display: flex; }
  .lp-nav-links.open { display: flex; flex-direction: column; position: fixed; top: 62px; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); padding: 12px; border-bottom: 1px solid var(--border); gap: 2px; box-shadow: var(--shadow-md); }
  .lp-feature-row, .lp-pricing-card, .lp-contact-layout { grid-template-columns: 1fr; }
  .lp-feature-row-reverse .lp-feature-row-visual { order: 0; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-footer-cols { flex-wrap: wrap; gap: 32px; }
  .lp-steps { flex-direction: column; align-items: center; }
  .lp-step-arrow { transform: rotate(90deg); margin-top: 0; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-hero-stats { padding: 16px 24px; }
  .hero-stat { padding: 0 20px; }
  .lp-pricing-card { padding: 32px 24px; }
  .lp-hero-title { letter-spacing: -1.5px; }
}
@media(max-width:600px) {
  .lp-hero { padding: 110px 20px 80px; }
  .lp-hero-stats { display: none; }
  .lp-container { padding: 0 20px; }
  .lp-section { padding: 72px 0; }
}
/* ═══ ENTRANCE ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(.96); } to { opacity:1; transform:scale(1); } }
.lp-hero-badge { animation: fadeUp .6s ease both; }
.lp-hero-title { animation: fadeUp .7s .1s ease both; }
.lp-hero-sub { animation: fadeUp .7s .2s ease both; }
.lp-hero-actions { animation: fadeUp .7s .3s ease both; }
.lp-hero-stats { animation: scaleIn .8s .45s ease both; }

/* u2550u2550u2550 BLOG u2550u2550u2550 */
.lp-blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 28px; }
.lp-blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.lp-blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.lp-blog-card-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--brand-light), #ede9fe); display: flex; align-items: center; justify-content: center; font-size: 48px; overflow: hidden; position: relative; }
.lp-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.lp-blog-card:hover .lp-blog-card-img img { transform: scale(1.04); }
.lp-blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.lp-blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lp-blog-card-tag { font-size: 11px; font-weight: 700; color: var(--brand); background: var(--brand-light); padding: 4px 12px; border-radius: 50px; letter-spacing: .5px; text-transform: uppercase; }
.lp-blog-card-date { font-size: 12px; color: var(--subtle); }
.lp-blog-card-title { font-size: 18px; font-weight: 700; letter-spacing: -.4px; line-height: 1.35; margin-bottom: 10px; color: var(--text); transition: color var(--transition); }
.lp-blog-card:hover .lp-blog-card-title { color: var(--brand); }
.lp-blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.lp-blog-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; }
.lp-blog-card-author { display: flex; align-items: center; gap: 10px; }
.lp-blog-card-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }
.lp-blog-card-author-name { font-size: 13px; font-weight: 600; color: var(--text2); }
.lp-blog-read-more { font-size: 13px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.lp-blog-read-more:hover { gap: 8px; }
.lp-blog-featured { grid-column: 1/-1; display: grid; grid-template-columns: 1.2fr 1fr; }
.lp-blog-featured .lp-blog-card-img { aspect-ratio: unset; min-height: 300px; }
.lp-blog-featured .lp-blog-card-title { font-size: 24px; }
/* Blog single post */
.lp-post-header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.lp-post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.lp-post-tag { font-size: 12px; font-weight: 700; color: var(--brand); background: var(--brand-light); padding: 5px 16px; border-radius: 50px; }
.lp-post-date, .lp-post-read { font-size: 13px; color: var(--subtle); }
.lp-post-title { font-size: clamp(28px,4vw,44px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.lp-post-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.lp-post-author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--accent)); display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:16px; }
.lp-post-author-name { font-weight: 700; font-size: 15px; }
.lp-post-author-role { font-size: 13px; color: var(--muted); }
.lp-post-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 56px; aspect-ratio: 21/9; background: linear-gradient(135deg,var(--brand-light),#ede9fe); display:flex;align-items:center;justify-content:center; }
.lp-post-cover img { width:100%;height:100%;object-fit:cover; }
.lp-post-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.85; color: var(--text2); }
.lp-post-body h2 { font-size: 26px; font-weight: 800; color: var(--text); margin: 48px 0 16px; letter-spacing: -.6px; }
.lp-post-body h3 { font-size: 20px; font-weight: 700; color: var(--text); margin: 32px 0 12px; letter-spacing: -.4px; }
.lp-post-body p { margin-bottom: 24px; }
.lp-post-body ul, .lp-post-body ol { padding-left: 28px; margin-bottom: 24px; display:flex;flex-direction:column;gap:8px; }
.lp-post-body li { line-height: 1.7; }
.lp-post-body strong { color: var(--text); font-weight: 700; }
.lp-post-body blockquote { border-left: 3px solid var(--brand); margin: 32px 0; padding: 16px 24px; background: var(--brand-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text2); }
.lp-post-body code { font-family: monospace; background: var(--bg3); padding: 2px 6px; border-radius: 4px; font-size: .9em; color: var(--brand-dark); }
.lp-post-body pre { background: #09090b; color: #e4e4e7; border-radius: var(--radius-sm); padding: 24px; overflow-x: auto; margin-bottom: 28px; font-size: 14px; line-height: 1.6; }
.lp-post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 48px 0 0; }
.lp-post-share { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); text-align: center; }
.lp-post-share h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; letter-spacing: -.2px; }
.lp-related-posts { padding: 80px 0; background: var(--bg2); }
.lp-related-title { font-size: 24px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 32px; }
@media(max-width:900px) { .lp-blog-featured { grid-template-columns: 1fr; } .lp-blog-featured .lp-blog-card-img { min-height: 220px; } }
@media(max-width:600px) { .lp-blog-grid { grid-template-columns: 1fr; } }

/* u2550u2550u2550 PREMIUM ADDITIONS u2550u2550u2550 */
/* === INTERACTIVE SIMULATOR === */
.lp-simulator { background: var(--bg2); border-radius: var(--radius-lg); padding: 80px 0; overflow: hidden; }
.lp-sim-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.lp-sim-content { max-width: 440px; }
.lp-sim-controls { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.lp-sim-control-group { display: flex; flex-direction: column; gap: 10px; }
.lp-sim-label { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; }
.lp-color-grid { display: flex; gap: 12px; }
.lp-color-opt { width: 36px; height: 36px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--border); cursor: pointer; transition: transform var(--transition); }
.lp-color-opt:hover { transform: scale(1.1); }
.lp-color-opt.active { box-shadow: 0 0 0 2px var(--brand); }
.lp-sim-visual { position: relative; display: flex; justify-content: center; }
.lp-sim-phone { width: 280px; height: 560px; background: #000; border-radius: 44px; padding: 12px; box-shadow: var(--shadow-xl); position: relative; border: 8px solid #18181b; }
.lp-sim-screen { width: 100%; height: 100%; background: #fff; border-radius: 32px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.lp-sim-header { padding: 40px 20px 20px; text-align: center; background: var(--bg2); }
.lp-sim-logo { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); margin: 0 auto 10px; transition: background .3s; }
.lp-sim-menu-name { font-size: 14px; font-weight: 800; }
.lp-sim-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.lp-sim-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 14px; background: var(--bg2); border: 1px solid var(--border-subtle); }
.lp-sim-item-img { width: 44px; height: 44px; border-radius: 10px; background: #e4e4e7; flex-shrink: 0; }
.lp-sim-item-info { flex: 1; }
.lp-sim-item-title { height: 8px; width: 60%; background: #e4e4e7; border-radius: 4px; margin-bottom: 6px; }
.lp-sim-item-price { height: 6px; width: 30%; background: var(--brand); border-radius: 3px; transition: background .3s; }
/* === ROI CALCULATOR === */
.lp-roi { background: #09090b; color: #fff; border-radius: var(--radius-lg); padding: 80px 48px; position: relative; overflow: hidden; }
.lp-roi::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent); }
.lp-roi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-roi-box { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 40px; backdrop-filter: blur(10px); }
.lp-roi-slider-group { margin-bottom: 32px; }
.lp-roi-label { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; font-weight: 500; color: #a1a1aa; }
.lp-roi-val { color: #fff; font-weight: 700; font-size: 16px; }
.lp-roi-slider { width: 100%; height: 6px; background: #27272a; border-radius: 3px; outline: none; -webkit-appearance: none; }
.lp-roi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: #fff; border-radius: 50%; cursor: pointer; border: 4px solid var(--brand); transition: transform .2s; }
.lp-roi-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.lp-roi-result { text-align: center; }
.lp-roi-result-label { font-size: 14px; color: #a1a1aa; margin-bottom: 10px; }
.lp-roi-result-val { font-size: 64px; font-weight: 900; letter-spacing: -2px; color: var(--brand); text-shadow: 0 0 30px var(--brand-glow); }
/* === INTEGRATIONS === */
.lp-integrations-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 48px; opacity: .6; filter: grayscale(1); transition: all var(--transition); }
.lp-integrations-row:hover { opacity: 1; filter: grayscale(0); }
.lp-int-logo { height: 32px; width: auto; }
/* === NEWSLETTER === */
.lp-newsletter { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 64px; text-align: center; }
.lp-news-form { display: flex; gap: 12px; max-width: 500px; margin: 32px auto 0; }
.lp-news-input { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 0 24px; font-size: 15px; outline: none; transition: border-color .2s; }
.lp-news-input:focus { border-color: var(--brand); }
@media(max-width:900px) {
  .lp-sim-layout, .lp-roi-layout { grid-template-columns: 1fr; gap: 48px; }
  .lp-sim-content, .lp-sim-visual { text-align: center; margin: 0 auto; }
  .lp-sim-controls { align-items: center; }
  .lp-roi-box { padding: 32px 24px; }
  .lp-news-form { flex-direction: column; }
}

/* === SIMULATOR MODES === */
.sim-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 8px !important; }
.sim-grid .lp-sim-item { flex-direction: column; text-align: center; }
.sim-grid .lp-sim-item-img { width: 100%; height: 60px; }
.sim-sharp .lp-sim-item, .sim-sharp .lp-sim-cat, .sim-sharp .lp-sim-logo { border-radius: 0 !important; }
.sim-card { transition: all var(--transition); }


/* === ADMIN PANEL UI (Simulator) === */
.lp-sim-card { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); padding: 24px; }
.lp-sim-control-group { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.lp-sim-control-group:last-child { border-bottom: none; }
.lp-sim-control-title { font-size: 11px; font-weight: 800; color: #64748b; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.lp-sim-control-title .material-icons { font-size: 18px; color: var(--brand); }
.lp-sim-label-sm { font-size: 12px; font-weight: 600; color: #334155; margin-bottom: 8px; display: block; }
.lp-sim-select { width: 100%; padding: 8px 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 13px; color: #1e293b; outline: none; transition: border-color .2s; }
.lp-sim-select:focus { border-color: var(--brand); }
.lp-sim-view-switcher { display: flex; background: #f1f5f9; padding: 4px; border-radius: 10px; gap: 4px; margin-bottom: 20px; width: fit-content; }
.lp-sim-view-btn { border: none; background: transparent; padding: 6px 12px; border-radius: 7px; display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #64748b; cursor: pointer; transition: all .2s; }
.lp-sim-view-btn.active { background: #fff; color: var(--brand); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.lp-sim-view-btn .material-icons { font-size: 16px; }
.preview-tablet { width: 480px !important; }
.preview-desktop { width: 100% !important; border-radius: 12px !important; }


/* === BENTO GRID (Feature Powerhouse) === */
.lp-bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 20px; margin-top: 48px; }
.lp-bento-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 24px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; transition: all .3s ease; overflow: hidden; position: relative; }
.lp-bento-card:hover { border-color: var(--brand-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lp-bento-card h4 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 8px; z-index: 2; }
.lp-bento-card p { font-size: 13px; color: #64748b; line-height: 1.5; z-index: 2; }
.lp-bento-icon-bg { position: absolute; bottom: -10px; right: -10px; opacity: .05; transform: rotate(-15deg); transition: all .3s ease; z-index: 1; }
.lp-bento-card:hover .lp-bento-icon-bg { opacity: .1; transform: scale(1.1) rotate(0deg); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

@media(max-width:1100px) {
    .lp-bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}

@media(max-width:768px) {
    .lp-bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
    .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }
    .lp-bento-card { min-height: 180px; }
}


/* === TYPOGRAPHY & HEADER REFINEMENTS === */
.lp-section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 20px; }
.lp-section-sub { font-size: 1.25rem; line-height: 1.6; color: #64748b; max-width: 700px; margin-left: auto; margin-right: auto; }
.lp-section-header { margin-bottom: 80px; }
.lp-section-header[style*='text-align:left'] .lp-section-sub { margin-left: 0; }

.lp-feature-card h3 { font-size: 1.25rem; font-weight: 700; margin: 16px 0 10px; color: #0f172a; }
.lp-feature-card p { font-size: 0.95rem; line-height: 1.6; color: #64748b; }

.lp-bento-card h4 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; }
.lp-bento-card p { font-size: 1rem; line-height: 1.5; color: #475569; }


/* === DESIGN ENHANCEMENTS (qrtasarim.com) === */
@keyframes meshGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.lp-hero-bg { background: linear-gradient(-45deg, #f0f4ff, #ffffff, #f5f3ff, #ffffff); background-size: 400% 400%; animation: meshGradient 15s ease infinite; }

/* Staggered Reveal Classes */
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-stagger.active > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.6s; }

/* Magnetic Effect Simulation on Buttons */
.lp-btn-primary, .lp-btn-outline { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease; }
.lp-btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 25px -5px var(--brand-glow); }

/* Glass Floating Elements */
.lp-float { position: absolute; border-radius: 50%; filter: blur(40px); z-index: 0; pointer-events: none; opacity: 0.4; }
.float-1 { width: 300px; height: 300px; background: var(--brand); top: 10%; right: 5%; animation: float 20s infinite alternate; }
.float-2 { width: 200px; height: 200px; background: var(--accent); bottom: 10%; left: 5%; animation: float 15s infinite alternate-reverse; }
@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(40px, 40px); } }


/* === COMPARISON TABLE === */
.lp-compare { background: #fff; border-radius: 24px; border: 1px solid #f1f5f9; overflow: hidden; }
.lp-compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid #f1f5f9; }
.lp-compare-row:last-child { border-bottom: none; }
.lp-compare-head { background: #f8fafc; font-weight: 800; color: #1e293b; padding: 20px; }
.lp-compare-cell { padding: 20px; font-size: 14px; color: #64748b; display: flex; align-items: center; gap: 8px; }
.lp-compare-feature { font-weight: 700; color: #1e293b; background: #f8fafc; border-right: 1px solid #f1f5f9; }
.lp-compare-yes { color: #10b981; font-weight: 600; }
.lp-compare-no { color: #ef4444; opacity: 0.6; }

/* === PROCESS STEPS === */
.lp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.lp-step { text-align: center; position: relative; }
.lp-step-num { width: 48px; height: 48px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 20px; font-size: 18px; box-shadow: 0 8px 16px -4px var(--brand-glow); }
.lp-step:not(:last-child)::after { content: ''; position: absolute; top: 24px; left: calc(50% + 40px); width: calc(100% - 80px); height: 2px; background: #f1f5f9; }
@media(max-width:768px) { .lp-steps-grid { grid-template-columns: 1fr; } .lp-step:not(:last-child)::after { display: none; } }


/* === MOBILE FIXES (Comparison & ROI) === */
@media(max-width:768px) {
    .lp-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -20px; border-radius: 0; }
    .lp-compare-row { width: 600px; grid-template-columns: 1.2fr 1fr 1fr !important; }
    .lp-roi-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .lp-roi-card { padding: 20px !important; }
    .lp-roi-result { font-size: 2.2rem !important; }
    .lp-bento-footer { margin-top: 24px !important; }
}

