@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  /* Brand Colors */
  --accent: #a855f7; /* Purple */
  --accent-light: #d8b4fe;
  --accent-dark: #7e22ce;
  --pink: #ec4899;
  --orange: #f97316;
  --cyan: #06b6d4;
  --green: #10b981;
  
  /* Deep Dark Theme */
  --bg-color: #09090b;
  --bg-card: rgba(24, 24, 27, 0.55);
  --bg-card-hover: rgba(39, 39, 42, 0.75);
  --border: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(168, 85, 247, 0.5);
  
  /* Text */
  --text: #f8fafc;
  --text-muted: #94a3b8;
  
  /* Geometry */
  --radius: 20px;
  --radius-sm: 12px;
  
  /* Glows */
  --glow-accent: 0 0 20px rgba(168, 85, 247, 0.4);
  --glow-pink: 0 0 20px rgba(236, 72, 153, 0.4);
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body { 
  font-family: 'Inter', -apple-system, sans-serif; 
  color: var(--text); 
  background-color: var(--bg-color); 
  font-size: 15px; 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, .nav-logo {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.03em;
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-anim {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1; overflow: hidden; pointer-events: none;
  background: radial-gradient(circle at 15% 50%, rgba(168, 85, 247, 0.15), transparent 25%),
              radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15), transparent 25%);
}

.bg-anim .orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5;
  animation: float 20s ease-in-out infinite alternate;
}
.bg-anim .orb:nth-child(1) { width: 50vw; height: 50vw; background: #a855f7; top: -10%; left: -10%; animation-delay: 0s; }
.bg-anim .orb:nth-child(2) { width: 40vw; height: 40vw; background: #ec4899; top: 40%; right: -10%; animation-delay: -5s; animation-duration: 25s; }
.bg-anim .orb:nth-child(3) { width: 35vw; height: 35vw; background: #06b6d4; bottom: -10%; left: 30%; animation-delay: -10s; animation-duration: 22s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 50px) scale(1.05); }
  100% { transform: translate(40px, -40px) scale(0.95); }
}

.sparkle {
  position: fixed; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0; z-index: -1; pointer-events: none;
  animation: sparkle-float linear infinite;
}
@keyframes sparkle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; box-shadow: 0 0 10px var(--accent); }
  80% { opacity: 0.4; box-shadow: 0 0 10px var(--accent); }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Gradient Text Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Glassmorphism Classes */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 9, 11, 0.7); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
  width: 100%;
}
.nav-logo { font-size: clamp(18px, 5vw, 24px); font-weight: 800; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a:not(.nav-cta) { font-size: 14px; color: var(--text-muted); text-decoration: none; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.3s ease; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { background: linear-gradient(135deg, var(--accent), var(--pink)) !important; color: #fff !important; padding: 10px 20px !important; font-size: 13px !important; font-weight: 700 !important; border-radius: 12px; box-shadow: var(--glow-accent); transition: transform 0.2s, box-shadow 0.2s !important; border:none; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(236,72,153,0.6); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-sm); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none;
  position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(255,255,255,0.1), transparent); opacity: 0; transition: opacity 0.3s; z-index: -1;
}
.btn:hover::before { opacity: 1; }

.btn-primary { background: linear-gradient(135deg, var(--accent), var(--pink)); color: #fff; box-shadow: var(--glow-accent); border: 1px solid rgba(255,255,255,0.1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(236,72,153,0.5); border-color: rgba(255,255,255,0.3); }
.btn-outline { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--text); background: rgba(255,255,255,0.05); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.btn-green { background: linear-gradient(135deg, var(--green), #059669); color: #fff; box-shadow: 0 0 20px rgba(16,185,129,0.3); border: 1px solid rgba(255,255,255,0.1); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(16,185,129,0.5); }
.btn-orange { background: linear-gradient(135deg, var(--orange), #ea580c); color: #fff; box-shadow: 0 0 20px rgba(249,115,22,0.3); border: 1px solid rgba(255,255,255,0.1); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(249,115,22,0.5); }
.btn-pink { background: linear-gradient(135deg, var(--pink), #be185d); color: #fff; box-shadow: var(--glow-pink); border: 1px solid rgba(255,255,255,0.1); }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(236,72,153,0.6); }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 14px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── FORMS ─── */
input, textarea, select {
  width: 100%; padding: 14px 18px; font-size: 15px; font-family: inherit; color: var(--text);
  background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  outline: none; transition: all 0.3s; backdrop-filter: blur(10px);
}
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,85,247,0.2); background: rgba(0,0,0,0.5); }
input::placeholder { color: var(--text-muted); }

/* Animation Utils */
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ─── HERO ─── */
.hero {
  text-align: center; padding: 80px 28px 60px;
  max-width: 760px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168, 85, 247, 0.1); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 30px;
  font-size: 13px; font-weight: 600; color: var(--accent-light); margin-bottom: 24px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; box-shadow: 0 0 10px var(--cyan); }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero h1 { font-size: clamp(32px, 10vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero p { font-size: clamp(15px, 4vw, 18px); color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; font-weight: 400; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 24px; justify-content: center; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-row .g { color: var(--green); font-weight: 700; text-shadow: 0 0 10px rgba(16,185,129,0.5); }

/* ─── APP CARD ─── */
.app-card { max-width: 860px; margin: 0 auto 80px; padding: 0 28px; position: relative; z-index: 10; }
.app-inner { border-radius: var(--radius); }

/* Theme tabs */
.tab-bar { 
  display: flex; 
  border-bottom: 1px solid var(--border); 
  background: rgba(0,0,0,0.2); 
  border-top-left-radius: var(--radius); 
  border-top-right-radius: var(--radius);
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.tab-bar::-webkit-scrollbar { display: none; } /* Safari/Chrome */

.tab-btn {
  flex: 1; padding: 18px; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text-muted);
  transition: all 0.3s; position: relative;
  white-space: nowrap;
}
.tab-btn.active { color: #fff; background: rgba(255,255,255,0.03); }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent), var(--pink)); box-shadow: var(--glow-accent);
}
.tab-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,0.02); }

/* Theme grid */
.theme-panel { display: none; padding: 24px; }
.theme-panel.active { display: block; animation: fadeUp 0.4s ease; }
.tgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 16px; }
.tc {
  border: 1px solid var(--border); border-radius: 14px; cursor: pointer;
  text-align: center; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); background: rgba(0,0,0,0.3); position: relative;
  overflow: hidden; padding-bottom: 6px;
}
.tc::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent); z-index: 0; pointer-events: none;
}
.tc > * { position: relative; z-index: 1; }
.tc:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); background: rgba(255,255,255,0.05); }
.tc.selected { border-color: var(--accent); background: rgba(168,85,247,0.1); box-shadow: 0 0 0 2px var(--accent), var(--glow-accent); transform: translateY(-3px); }
.tc-icon { 
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; 
  font-size: 36px; transition: transform 0.3s; background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border); margin-bottom: 8px; overflow: hidden;
}
.tc-img { width: 100%; height: 100%; object-fit: cover; }
.tc:hover .tc-icon { transform: scale(1.1) rotate(2deg); }
.tc-name { font-size: 12px; font-weight: 600; padding: 2px 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
.tc-price { font-size: 11px; font-weight: 700; padding-bottom: 4px; color: var(--green); text-shadow: 0 0 8px rgba(16,185,129,0.3); }
.tc-price.paid { color: var(--text-muted); text-shadow: none; }
.tc-hot {
  position: absolute; top: 8px; right: 8px;
  background: linear-gradient(135deg, var(--orange), #ef4444);
  color: #fff; font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: 8px; letter-spacing: 0.05em; z-index: 2; box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
}

/* Upload & Form */
.form-area { padding: 24px; border-top: 1px solid var(--border); background: rgba(0,0,0,0.2); border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius); }
.selected-badge { font-size: 14px; color: var(--accent-light); font-weight: 600; margin-bottom: 16px; min-height: 22px; text-shadow: 0 0 10px rgba(168,85,247,0.3); }
.upload-box {
  border: 2px dashed rgba(255,255,255,0.2); border-radius: 16px;
  padding: 32px 24px; text-align: center; cursor: pointer; transition: all 0.3s;
  background: rgba(0,0,0,0.3); margin-bottom: 20px;
}
.upload-box:hover { border-color: var(--accent); background: rgba(168,85,247,0.05); }
.upload-box.done { border-color: var(--green); background: rgba(16,185,129,0.05); border-style: solid; box-shadow: 0 0 20px rgba(16,185,129,0.1); }
.upload-box .icon { font-size: 32px; margin-bottom: 8px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }
.upload-box .label { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: #fff; }
.upload-box .hint { font-size: 12px; color: var(--text-muted); }

.email-row { display: flex; gap: 12px; }
.email-input { flex: 1; }
.custom-select { position: relative; width: 140px; flex-shrink: 0; cursor: pointer; user-select: none; z-index: 50;}
.cs-value {
  width: 100%; height: 100%; padding: 14px 18px; font-size: 15px; color: var(--text-muted);
  background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  backdrop-filter: blur(10px); transition: all 0.3s;
  display: flex; justify-content: space-between; align-items: center; white-space: nowrap;
}
.cs-value::after { content: '▾'; margin-left: 8px; font-size: 12px; }
.custom-select.open .cs-value { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,85,247,0.2); background: rgba(0,0,0,0.5); color: #fff;}
.cs-options {
  position: absolute; top: calc(100% + 8px); left: 0; width: 100%; min-width: 140px; text-align: left;
  background: rgba(24, 24, 27, 0.95); border: 1px solid rgba(168,85,247,0.3); border-radius: var(--radius-sm);
  backdrop-filter: blur(24px); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none; z-index: 100; overflow: hidden;
}
.custom-select.open .cs-options { display: block; animation: fadeUp 0.2s ease; }
.cs-opt { padding: 12px 18px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.2s, color 0.2s; }
.cs-opt:last-child { border-bottom: none; }
.cs-opt:hover { background: rgba(168,85,247,0.2); color: #fff; }

/* Loader */
.loading-overlay { display: none; padding: 60px 24px; text-align: center; }
.loading-overlay.active { display: block; }
.loading-overlay .spinner { font-size: 56px; animation: pulse 1.5s ease-in-out infinite; margin-bottom: 20px; display: inline-block; filter: drop-shadow(var(--glow-accent)); }
@keyframes pulse { 0%,100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.15) rotate(5deg); } }
.loading-overlay h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.loading-overlay .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.lsteps { display: inline-flex; flex-direction: column; gap: 12px; text-align: left; }
.lstep { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
.lstep.active { color: #fff; font-weight: 600; text-shadow: 0 0 8px rgba(255,255,255,0.3); }
.lstep.done { color: var(--green); }
.lstep .d { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; transition: all 0.3s; }
.lstep.active .d { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.lstep.done .d { background: var(--green); box-shadow: 0 0 10px var(--green); }

/* Result */
.result-section { display: none; padding: 32px; text-align: center; }
.result-section.active { display: block; animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.result-card { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border); max-width: 440px; margin: 0 auto 24px; background:#000; }
.result-card img { width: 100%; display: block; }
.result-meta { padding: 16px; font-size: 15px; color: var(--text-muted); font-weight: 500; background: rgba(255,255,255,0.05); }
.result-actions { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 16px; }
.result-actions .btn { flex: 1; }
.result-credits { font-size: 13px; color: var(--text-muted); }

.notif { display: none; margin-top: 12px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; text-align: center; font-weight: 600; border: 1px solid transparent; }
.notif.success { background: rgba(16,185,129,0.1); color: #34d399; border-color: rgba(16,185,129,0.3); display: block; }
.notif.error { background: rgba(239,68,68,0.1); color: #f87171; border-color: rgba(239,68,68,0.3); display: block; }

/* ─── PRICING ─── */
.pricing { padding: 80px 28px; max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 10;}
.pricing h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.pricing .sub { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.price-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 20px; 
  max-width: 1200px;
  margin: 0 auto;
}
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all 0.3s; background: var(--bg-card); backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
}
.price-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent); pointer-events: none;}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.2); background: var(--bg-card-hover); }
.price-card.pop { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--glow-accent); background: rgba(24, 24, 27, 0.7); }
.price-card .pname { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.price-card.pop .pname { color: var(--accent-light); }
.price-card .pprice { font-size: clamp(32px, 8vw, 40px); font-weight: 800; margin-bottom: 4px; letter-spacing: -0.04em; color: #fff; }
.price-card .pprice.colored { background: linear-gradient(135deg, var(--accent), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-card .pcycle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-card .pfeats { list-style: none; font-size: 14px; color: var(--text-muted); text-align: left; margin-bottom: 28px; flex-grow: 1; }
.price-card .pfeats li { padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; }
.price-card .pfeats li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 15px; text-shadow: 0 0 8px rgba(16,185,129,0.5); }
.pop-tag { background: linear-gradient(135deg, var(--accent), var(--pink)); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; display: inline-block; box-shadow: var(--glow-pink); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── FAQ ─── */
.faq { padding: 40px 28px 80px; max-width: 720px; margin: 0 auto; position: relative; z-index: 10; }
.faq h2 { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 20px 0; font-size: 16px; font-weight: 600; cursor: pointer; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--accent-light); }
.faq-arr { color: var(--text-muted); transition: transform 0.3s, color 0.3s; font-size: 20px; }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-a.open { display: block; animation: fadeUp 0.4s ease; }
.faq-arr.open { transform: rotate(45deg); color: var(--accent); text-shadow: var(--glow-accent); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border); padding: 32px 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); position: relative; z-index: 10;
}
footer a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.3s; }
footer a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ─── HOW IT WORKS ─── */
.how-it-works { max-width: 860px; margin: 0 auto 60px; padding: 0 28px; text-align: center; position: relative; z-index: 10; }
.how-it-works h2 { font-size: 32px; font-weight: 800; margin-bottom: 32px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 24px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.3); backdrop-filter: blur(10px); }
.step-icon { font-size: 40px; margin-bottom: 16px; display: inline-block; filter: drop-shadow(0 0 10px rgba(168,85,247,0.3)); }
.step-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── GALLERY ─── */
.gallery { max-width: 1000px; margin: 0 auto 80px; padding: 0 28px; text-align: center; position: relative; z-index: 10; }
.gallery h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.gallery .sub { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.5); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-lbl { position: absolute; bottom: 8px; left: 8px; right: 8px; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); padding: 6px; font-size: 11px; font-weight: 600; color: #fff; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 60px 20px 40px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .price-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card { padding: 0 12px; }
  .theme-panel { padding: 16px; }
}

@media (max-width: 480px) {
  .nav-logo b { display: none; }
  .hero h1 { font-size: 28px; }
  .trust-row { gap: 12px; font-size: 12px; }
  .tgrid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 12px; }
  .email-row { flex-direction: column; }
  .custom-select { width: 100%; }
  .result-actions { flex-direction: column; }
  .upload-box { padding: 24px 16px; }
  .price-card { padding: 24px 16px; }
}
