/* ================================================
   SStiK – Complete Stylesheet v2
   Dark glassmorphism + TikTok brand colors
================================================ */

:root {
  --bg:        #08080f;
  --bg2:       #0d0d18;
  --bg3:       #111122;
  --glass:     rgba(255,255,255,0.04);
  --glass-b:   rgba(255,255,255,0.07);
  --border:    rgba(255,255,255,0.07);
  --border-h:  rgba(255,255,255,0.14);
  --pink:      #fe2c55;
  --pink-d:    #c8002e;
  --cyan:      #69c9d0;
  --cyan2:     #25f4ee;
  --text:      #eeeef5;
  --muted:     #7777aa;
  --muted2:    #555580;
  --radius:    20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow:    0 24px 64px rgba(0,0,0,0.55);
  --font-h:    'Syne', sans-serif;
  --font-b:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); min-height: 100vh; overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── AMBIENT ── */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.15; animation: floatOrb 14s ease-in-out infinite alternate; }
.orb1 { width: 600px; height: 600px; background: var(--pink);  top: -200px; right: -150px; animation-delay: 0s; }
.orb2 { width: 450px; height: 450px; background: var(--cyan);  bottom: 5%;  left: -120px; animation-delay: -5s; }
.orb3 { width: 350px; height: 350px; background: #7744ff; top: 45%; right: 15%; opacity: 0.08; animation-delay: -9s; }
@keyframes floatOrb { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,60px) scale(1.12); } }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem,5vw,3rem); height: 66px;
  background: rgba(8,8,15,0.75); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 9px; letter-spacing: -0.5px; }
.logo span { color: var(--pink); }
.logo-icon { display: flex; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: clamp(2.5rem,7vw,5rem) clamp(1rem,5vw,2rem) 3.5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(105,201,208,0.08); border: 1px solid rgba(105,201,208,0.2); border-radius: 50px; padding: 6px 20px; font-size: 0.78rem; font-weight: 600; color: var(--cyan); letter-spacing: 0.5px; margin-bottom: 1.5rem; animation: fadeUp .5s ease both; }
.pulse-dot { width: 7px; height: 7px; background: var(--cyan2); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero h1 { font-family: var(--font-h); font-size: clamp(2rem,6vw,3.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; max-width: 680px; margin-bottom: 1.1rem; animation: fadeUp .5s .08s ease both; }
.hero h1 em { font-style: normal; background: linear-gradient(130deg, var(--cyan2) 0%, var(--pink) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { color: var(--muted); font-size: 1rem; max-width: 500px; margin-bottom: 1.8rem; animation: fadeUp .5s .15s ease both; line-height: 1.7; }

/* ── DOWNLOADER CARD ── */
.downloader-card { width: 100%; max-width: 780px; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.2rem,3vw,1.8rem); backdrop-filter: blur(20px); box-shadow: var(--shadow); animation: fadeUp .5s .22s ease both; }
.input-row { display: flex; gap: 10px; flex-wrap: wrap; }
.input-wrap { flex: 1; min-width: 200px; position: relative; display: flex; align-items: center; }
.input-icon { position: absolute; left: 15px; color: var(--muted); pointer-events: none; flex-shrink: 0; }
.input-wrap input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 95px 13px 44px; color: var(--text); font-family: var(--font-b); font-size: 0.92rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.input-wrap input::placeholder { color: var(--muted2); }
.input-wrap input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(105,201,208,0.1); }
.paste-btn { position: absolute; right: 8px; display: flex; align-items: center; gap: 5px; background: rgba(105,201,208,0.1); border: 1px solid rgba(105,201,208,0.2); border-radius: 7px; color: var(--cyan); font-size: 0.78rem; font-weight: 600; padding: 5px 11px; cursor: pointer; transition: background .2s; white-space: nowrap; }
.paste-btn:hover { background: rgba(105,201,208,0.18); }
.download-btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(135deg, var(--pink), var(--pink-d)); border: none; border-radius: var(--radius-sm); color: #fff; font-family: var(--font-h); font-size: .95rem; font-weight: 700; padding: 13px 26px; cursor: pointer; min-width: 145px; position: relative; overflow: hidden; transition: transform .15s, box-shadow .2s; box-shadow: 0 5px 22px rgba(254,44,85,.4); }
.download-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,44,85,.5); }
.download-btn:active { transform: translateY(0); }
.btn-text, .btn-loader { display: flex; align-items: center; gap: 7px; }
.spinner { width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-msg { margin-top: 10px; background: rgba(254,44,85,.08); border: 1px solid rgba(254,44,85,.2); border-radius: var(--radius-xs); padding: 11px 15px; color: #ff6b8a; font-size: .88rem; display: flex; align-items: center; gap: 7px; }
.error-msg::before { content: '⚠️'; flex-shrink: 0; }

/* ── RESULT CARD ── */
.result-card { width: 100%; max-width: 780px; margin-top: 1.4rem; background: var(--glass); border: 1px solid rgba(105,201,208,0.2); border-radius: var(--radius); backdrop-filter: blur(20px); box-shadow: var(--shadow), 0 0 60px rgba(105,201,208,.08); animation: scaleIn .4s ease; overflow: hidden; }
@keyframes scaleIn { from{opacity:0;transform:scale(.95) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }
.result-inner { display: flex; flex-wrap: wrap; }
.result-thumb { width: 190px; flex-shrink: 0; position: relative; background: #111; overflow: hidden; min-height: 160px; }
.result-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.thumb-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.3); }
.result-info { flex: 1; padding: 1.4rem; display: flex; flex-direction: column; gap: 9px; }
.result-info h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.result-meta { display: flex; gap: .9rem; font-size: .82rem; color: var(--muted); }
.quality-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(37,244,238,.08); border: 1px solid rgba(37,244,238,.2); border-radius: 50px; padding: 3px 12px; font-size: .75rem; font-weight: 700; color: var(--cyan2); letter-spacing: .5px; width: fit-content; }
.result-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }
.action-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: var(--radius-xs); font-size: .82rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all .2s; font-family: var(--font-b); border: none; }
.action-btn.primary { background: linear-gradient(135deg,var(--pink),var(--pink-d)); color: #fff; box-shadow: 0 4px 16px rgba(254,44,85,.3); }
.action-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 7px 22px rgba(254,44,85,.4); }
.action-btn.secondary { background: rgba(105,201,208,.1); border: 1px solid rgba(105,201,208,.25); color: var(--cyan); }
.action-btn.secondary:hover { background: rgba(105,201,208,.18); }
.action-btn.ghost { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--muted); }
.action-btn.ghost:hover { background: rgba(255,255,255,.1); color: var(--text); }

/* ── STATS ── */
.stats-row { display: flex; gap: clamp(1.5rem,4vw,3rem); margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; animation: fadeUp .5s .4s ease both; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat strong { font-family: var(--font-h); font-size: 1.55rem; font-weight: 800; background: linear-gradient(135deg,var(--cyan2),#fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat span { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── AD SPACES ── */
.ad-leaderboard { width: 100%; max-width: 780px; min-height: 90px; background: rgba(255,255,255,.02); border: 1px dashed rgba(255,255,255,.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.ad-space-full { position: relative; z-index: 1; width: 100%; background: rgba(255,255,255,.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ad-inner { max-width: 1100px; margin: 0 auto; min-height: 100px; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.ad-label { color: rgba(255,255,255,.1); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,2.5rem); }

/* ── SECTION SHARED ── */
section { position: relative; z-index: 1; padding: clamp(3rem,7vw,5.5rem) 0; }
.section-label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: .6rem; }
section h2 { font-family: var(--font-h); font-size: clamp(1.7rem,4vw,2.6rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: .97rem; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg2); }
.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step-card { flex: 1; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.6rem; backdrop-filter: blur(10px); transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.step-num { font-family: var(--font-h); font-size: 2.8rem; font-weight: 800; color: rgba(254,44,85,.18); line-height: 1; margin-bottom: .5rem; }
.step-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.step-card h3 { font-family: var(--font-h); font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.step-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.step-connector { display: flex; align-items: center; justify-content: center; padding: 0 .8rem; color: var(--muted2); flex-shrink: 0; margin-top: 3rem; }

/* ── FEATURES ── */
.features-section { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.1rem; }
.feature-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(10px); transition: border-color .2s, transform .2s, box-shadow .2s; }
.feature-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.3); }
.feature-icon-wrap { font-size: 1.8rem; margin-bottom: .9rem; }
.feature-card h3 { font-family: var(--font-h); font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .87rem; line-height: 1.72; }

/* ── USE CASES ── */
.usecase-section { background: var(--bg2); }
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; }
.usecase-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; backdrop-filter: blur(10px); text-align: center; transition: border-color .2s, transform .2s; }
.usecase-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.uc-emoji { font-size: 2.2rem; display: block; margin-bottom: .7rem; }
.usecase-card h3 { font-family: var(--font-h); font-weight: 700; font-size: .97rem; margin-bottom: .5rem; }
.usecase-card p { color: var(--muted); font-size: .85rem; line-height: 1.68; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 1.5rem; }
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; backdrop-filter: blur(10px); transition: border-color .2s; }
.faq-item:hover { border-color: var(--border-h); }
.faq-item[open] { border-color: rgba(105,201,208,.28); }
.faq-item summary { padding: 1.1rem 1.4rem; font-weight: 600; font-size: .93rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--cyan); transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.1rem; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.text-link { color: var(--cyan); text-decoration: none; font-weight: 600; font-size: .92rem; display: inline-block; margin-top: .5rem; }
.text-link:hover { text-decoration: underline; }

/* ── SEO SECTION ── */
.seo-section { background: var(--bg2); }
.seo-content { max-width: 820px; }
.seo-content h2 { font-family: var(--font-h); font-size: clamp(1.3rem,3vw,1.9rem); font-weight: 700; letter-spacing: -.5px; margin-bottom: 1rem; }
.seo-content h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 .6rem; color: var(--cyan); }
.seo-content p { color: var(--muted); font-size: .93rem; line-height: 1.8; margin-bottom: .8rem; }

/* ── FOOTER ── */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); background: rgba(5,5,12,.85); backdrop-filter: blur(10px); }
.footer-top { display: flex; gap: 3rem; padding: clamp(2.5rem,5vw,4rem) clamp(1.2rem,5vw,3rem); flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.footer-brand { flex: 2; min-width: 200px; }
.footer-brand p { color: var(--muted); font-size: .87rem; margin: .9rem 0 1.4rem; max-width: 270px; line-height: 1.7; }
.social-links { display: flex; gap: 9px; }
.social-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--glass-b); border: 1px solid var(--border); border-radius: var(--radius-xs); color: var(--muted); text-decoration: none; transition: all .2s; }
.social-btn:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h4 { font-family: var(--font-h); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted2); margin-bottom: 3px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.1rem clamp(1.2rem,5vw,3rem); max-width: 1100px; margin: 0 auto; }
.footer-bottom p { color: var(--muted2); font-size: .8rem; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: #1a1a2e; border: 1px solid var(--border-h); border-radius: 50px; padding: 11px 22px; font-size: .88rem; font-weight: 500; color: var(--text); opacity: 0; transition: all .3s; z-index: 999; white-space: nowrap; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── PAGE INNER ── */
.page-hero { position: relative; z-index: 1; background: var(--bg2); border-bottom: 1px solid var(--border); padding: clamp(2.5rem,6vw,4.5rem) clamp(1.2rem,5vw,2.5rem) clamp(2rem,5vw,3.5rem); text-align: center; }
.page-hero .section-label { display: block; margin-bottom: .6rem; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(1.8rem,5vw,3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: .8rem; }
.page-hero p { color: var(--muted); max-width: 500px; margin: 0 auto; font-size: .97rem; line-height: 1.75; }
.page-body { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: clamp(2rem,5vw,4rem) clamp(1.2rem,4vw,2rem); }
.page-body h2 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; margin: 2.2rem 0 .8rem; color: var(--text); }
.page-body h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--cyan); }
.page-body p { color: var(--muted); font-size: .93rem; line-height: 1.82; margin-bottom: .8rem; }
.page-body ul, .page-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.page-body li { color: var(--muted); font-size: .93rem; line-height: 1.75; margin-bottom: .4rem; }
.page-body a { color: var(--cyan); text-decoration: none; }
.page-body a:hover { text-decoration: underline; }
.page-date { color: var(--muted2); font-size: .82rem; margin-bottom: 1.5rem; display: block; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-top: 1rem; }
.contact-info h3 { font-family: var(--font-h); font-weight: 700; font-size: 1.15rem; margin-bottom: .8rem; }
.contact-info p { color: var(--muted); font-size: .9rem; line-height: 1.75; margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 10px; padding: .9rem 1.1rem; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .7rem; font-size: .88rem; color: var(--muted); }
.contact-form-wrap { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(12px); }
.contact-form-wrap h3 { font-family: var(--font-h); font-weight: 700; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 11px 14px; color: var(--text); font-family: var(--font-b); font-size: .92rem; outline: none; transition: border-color .2s; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--cyan); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted2); }
.form-group select option { background: var(--bg2); }
.submit-btn { width: 100%; background: linear-gradient(135deg,var(--pink),var(--pink-d)); border: none; border-radius: var(--radius-xs); color: #fff; font-family: var(--font-h); font-size: .95rem; font-weight: 700; padding: 13px; cursor: pointer; transition: transform .15s, box-shadow .2s; box-shadow: 0 4px 20px rgba(254,44,85,.35); margin-top: .4rem; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(254,44,85,.45); }
.success-box { background: rgba(105,201,208,.08); border: 1px solid rgba(105,201,208,.25); border-radius: var(--radius-sm); padding: 1.2rem 1.5rem; color: var(--cyan); font-size: .92rem; display: flex; align-items: center; gap: 10px; margin-top: 1rem; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.2rem; margin-top: 2rem; }
.blog-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(10px); transition: border-color .2s, transform .2s; text-decoration: none; display: block; }
.blog-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.blog-card-img { height: 180px; background: linear-gradient(135deg,var(--bg3),var(--bg2)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 1px solid var(--border); }
.blog-card-body { padding: 1.4rem; }
.blog-tag { display: inline-block; background: rgba(254,44,85,.1); border: 1px solid rgba(254,44,85,.2); border-radius: 50px; padding: 3px 12px; font-size: .72rem; font-weight: 700; color: var(--pink); letter-spacing: .5px; margin-bottom: .7rem; }
.blog-card h3 { font-family: var(--font-h); font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--text); line-height: 1.4; }
.blog-card p { color: var(--muted); font-size: .85rem; line-height: 1.7; }
.blog-meta { display: flex; gap: .8rem; font-size: .78rem; color: var(--muted2); margin-top: .8rem; }

/* ── HOW IT WORKS PAGE ── */
.hiw-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.hiw-step { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(10px); }
.hiw-num { font-family: var(--font-h); font-size: 3rem; font-weight: 800; color: var(--pink); opacity: .25; line-height: 1; flex-shrink: 0; width: 60px; }
.hiw-content h3 { font-family: var(--font-h); font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.hiw-content p { color: var(--muted); font-size: .9rem; line-height: 1.75; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ── MOBILE ── */
@media (max-width: 720px) {
  .nav-links { display: none; position: fixed; top: 66px; left: 0; right: 0; background: rgba(8,8,15,.97); flex-direction: column; padding: 1.4rem; gap: .9rem; border-bottom: 1px solid var(--border); z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .input-row { flex-direction: column; }
  .download-btn { width: 100%; }
  .result-inner { flex-direction: column; }
  .result-thumb { width: 100%; height: 200px; }
  .steps-grid { flex-direction: column; }
  .step-connector { display: none; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .result-actions { flex-direction: column; }
  .action-btn { justify-content: center; }
  .stats-row { gap: 1.2rem; }
}
