/* =============================================
   STORELINK LANDING PAGE STYLES
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Satoshi:wght@400;500;700&display=swap');

:root {
  --green: #00C853;
  --green-dark: #00A843;
  --green-light: #E8F5E9;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --text: #E8E8E8;
  --text-muted: #888;
  --white: #FFFFFF;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 16px;
  --radius-sm: 10px;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.25rem; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-family: 'Clash Display', sans-serif; color: var(--white); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-ghost { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.btn-ghost:hover { color: var(--white); background: var(--card-bg); }
.btn-primary {
  background: var(--green); color: var(--dark) !important;
  padding: 8px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 700;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  padding: 0 24px 16px; background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.nav-mobile a { padding: 12px 0; color: var(--text-muted); font-size: 1rem; border-bottom: 1px solid var(--border); }
.nav-mobile .btn-primary { margin-top: 12px; text-align: center; }
.nav-mobile.open { display: flex; }

@media(max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh; padding: 120px 24px 80px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  max-width: 100%;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.blob-1 {
  width: 500px; height: 500px; background: var(--green);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px; background: #00897B;
  bottom: 0; left: -150px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3);
  color: var(--green); padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 24px;
  animation: fadeSlideDown 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.05; color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideDown 0.6s ease 0.1s both;
}
.hero-accent {
  background: linear-gradient(135deg, var(--green), #00E676);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--text-muted);
  max-width: 560px; margin-bottom: 32px; line-height: 1.7;
  animation: fadeSlideDown 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: fadeSlideDown 0.6s ease 0.3s both;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--dark);
  padding: 16px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 800;
  transition: all 0.2s; box-shadow: 0 0 40px rgba(0,200,83,0.35);
}
.btn-hero:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 0 60px rgba(0,200,83,0.5); }
.btn-arrow { transition: transform 0.2s; }
.btn-hero:hover .btn-arrow { transform: translateX(4px); }
.hero-social-proof {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.85rem;
}
.avatars { display: flex; }
.avatars img {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--dark); margin-left: -6px;
}
.avatars img:first-child { margin-left: 0; }

.hero-url-demo {
  margin-top: 32px; width: 100%; max-width: 420px;
  animation: fadeSlideDown 0.6s ease 0.4s both;
}
.url-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 10px 16px;
}
.url-lock { font-size: 0.9rem; opacity: 0.5; }
.url-text { flex: 1; font-family: 'Courier New', monospace; font-size: 0.9rem; color: var(--text); }
.url-blink { color: var(--green); border-right: 2px solid var(--green); padding-right: 2px; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { border-color: transparent; } 50% { border-color: var(--green); } }
.url-copy {
  background: var(--green); color: var(--dark); border: none;
  padding: 5px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.url-copy:hover { background: var(--green-dark); }

/* HERO MOCKUP */
.hero-mockup {
  position: relative; margin-top: 60px; z-index: 2;
  animation: floatUp 0.8s ease 0.5s both;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.phone-frame {
  width: 280px; background: #1C1C1E; border-radius: 44px;
  padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: relative; border: 1px solid rgba(255,255,255,0.1);
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.phone-notch {
  width: 100px; height: 24px; background: #0A0A0A; border-radius: 0 0 20px 20px;
  margin: 0 auto 8px; position: relative; z-index: 2;
}
.phone-screen { background: #fff; border-radius: 36px; overflow: hidden; min-height: 520px; }
.phone-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 40px; background: var(--green);
  filter: blur(30px); opacity: 0.4; border-radius: 50%;
}

/* MINI STORE PREVIEW */
.store-preview { background: #fff; }
.store-banner {
  height: 80px; display: flex; align-items: flex-end; padding: 12px;
  position: relative;
}
.store-avatar {
  width: 50px; height: 50px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 3px solid #fff; margin-bottom: -25px;
}
.store-info { padding: 32px 12px 12px; }
.store-info h3 { font-size: 0.95rem; font-weight: 700; color: #111; }
.store-info p { font-size: 0.72rem; color: #666; margin: 2px 0; }
.store-badge { font-size: 0.65rem; color: #999; }
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 12px; }
.store-product { background: #f8f8f8; border-radius: 8px; overflow: hidden; }
.sp-img { height: 64px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: #f0f0f0; }
.sp-name { font-size: 0.65rem; font-weight: 600; color: #333; padding: 4px 6px 0; }
.sp-price { font-size: 0.7rem; color: #00C853; font-weight: 700; padding: 2px 6px 6px; }
.order-wa-btn {
  width: calc(100% - 24px); margin: 0 12px 12px;
  background: #25D366; color: #fff; border: none;
  padding: 12px; border-radius: 10px; font-size: 0.8rem; font-weight: 700; cursor: pointer;
}

/* ---- TRUST ---- */
.trust { padding: 32px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.platform-pill {
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
}

/* ---- SECTIONS ---- */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.section-tag {
  display: inline-block; color: var(--green); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,200,83,0.1); padding: 6px 14px; border-radius: 6px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; }
.accent { color: var(--green); }

/* ---- HOW IT WORKS ---- */
.how { background: var(--dark-2); }
.steps {
  display: flex; align-items: center; gap: 24px; margin-top: 48px;
  flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 220px; max-width: 280px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: all 0.3s;
}
.step:hover { border-color: var(--green); transform: translateY(-4px); }
.step-num { font-size: 0.75rem; font-weight: 800; color: var(--green); letter-spacing: 0.1em; margin-bottom: 12px; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--text-muted); }

/* ---- FEATURES ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px; margin-top: 40px;
}
.feature-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: relative;
  transition: all 0.3s; overflow: hidden;
}
.feature-card:hover { border-color: rgba(0,200,83,0.4); background: rgba(0,200,83,0.05); }
.feature-card--large { grid-column: span 2; }
@media(max-width: 600px) { .feature-card--large { grid-column: span 1; } }
.fc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.fc-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.fc-tag--pro { background: rgba(124,58,237,0.2); color: #A78BFA; }

/* ---- DEMO ---- */
.demo { background: var(--dark-2); }
.demo-container {
  display: flex; align-items: center; gap: 60px; margin-top: 48px;
  flex-wrap: wrap; justify-content: center;
}
.demo-phone { flex-shrink: 0; }
.phone-frame--demo { width: 260px; }
.demo-themes { flex: 1; min-width: 260px; }
.theme-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.theme-swatches { display: flex; gap: 12px; margin-bottom: 32px; }
.swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid transparent; cursor: pointer;
  transition: all 0.2s;
}
.swatch.active, .swatch:hover { border-color: var(--white); transform: scale(1.1); }
.demo-cta p { color: var(--text-muted); margin-bottom: 16px; }
.btn-plan {
  display: block; border: 1px solid var(--border);
  background: var(--card-bg); color: var(--white);
  padding: 14px 24px; border-radius: 10px; font-weight: 600;
  text-align: center; transition: all 0.2s; margin-top: 16px;
}
.btn-plan:hover { border-color: var(--green); color: var(--green); }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px; align-items: start;
}
.plan {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
}
.plan--pro {
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,137,123,0.1));
  border-color: rgba(0,200,83,0.4);
}
.plan-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted); background: var(--card-bg);
  border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.plan-badge--pro { color: var(--green); border-color: rgba(0,200,83,0.4); background: rgba(0,200,83,0.1); }
.plan-price { font-family: 'Clash Display', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--white); }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-family: 'Satoshi', sans-serif; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 8px 0 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 0.875rem; color: var(--text-muted); }
.btn-plan--pro { background: var(--green); color: var(--dark); border-color: var(--green); font-weight: 800; }
.btn-plan--pro:hover { background: var(--green-dark); color: var(--dark); }

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.testi {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testi--featured {
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(0,137,123,0.08));
  border-color: rgba(0,200,83,0.3);
}
.testi-stars { font-size: 0.9rem; margin-bottom: 12px; }
.testi p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- FINAL CTA ---- */
.final-cta { padding: 0 24px 80px; }
.cta-card {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(0,137,123,0.1));
  border: 1px solid rgba(0,200,83,0.35); border-radius: 24px;
  padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,200,83,0.2), transparent 70%);
  pointer-events: none;
}
.cta-card h2 { font-family: 'Clash Display', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-card p { color: var(--text-muted); margin-bottom: 28px; }
.btn-cta-final {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--dark);
  padding: 16px 36px; border-radius: 12px; font-size: 1rem; font-weight: 800;
  transition: all 0.2s;
}
.btn-cta-final:hover { background: var(--green-dark); transform: translateY(-2px); }
.cta-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 16px; }

/* ---- FOOTER ---- */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 60px 24px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; padding-bottom: 40px; }
.footer-brand { max-width: 260px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin-top: 12px; }
.footer-socials { display: flex; gap: 16px; margin-top: 16px; }
.footer-socials a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-socials a:hover { color: var(--green); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
