/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
img, video, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 0.75rem;
}
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ─── CSS VARIABLES ────────────────────────────────────────────────────────── */
:root {
  --brand-pink: #e1306c;
  --brand-purple: #833ab4;
  --brand-orange: #f77737;
  --brand-blue: #405de6;
  --brand-cyan: #00c6ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --glow-pink: 0 0 30px rgba(225, 29, 72, 0.4);
}

/* ─── DARK MODE ────────────────────────────────────────────────────────────── */
.dark body, html.dark body {
  color: #e2e8f0;
  background: #020617;
}
.dark .site-header, html.dark .site-header {
  background: rgba(2, 6, 23, 0.85);
  border-bottom-color: #1e293b;
}
.dark .content-section, html.dark .content-section,
.dark .feature-card, html.dark .feature-card,
.dark .faq-item, html.dark .faq-item,
.dark .step-card, html.dark .step-card,
.dark .legal-card, html.dark .legal-card,
.dark .result-card, html.dark .result-card {
  background: #0f172a;
  border-color: #1e293b;
  color: #e2e8f0;
}
.dark .muted, html.dark .muted { color: #94a3b8; }
.dark .site-footer, html.dark .site-footer { background: #020617; border-top-color: #1e293b; }
.dark .nav-tabs, html.dark .nav-tabs { background: rgba(255,255,255,0.12); }
.dark .url-box, html.dark .url-box { background: #fff; }

/* ─── KEYFRAME ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes spin         { to { transform: rotate(360deg); } }
@keyframes fadeInUp     { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown   { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn       { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn      { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(219, 39, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
@keyframes ripple {
  0%   { width: 0; height: 0; opacity: 0.5; }
  100% { width: 300px; height: 300px; opacity: 0; }
}
@keyframes borderPulse {
  0%, 100% { border-color: rgba(219, 39, 119, 0.5); }
  50%       { border-color: rgba(124, 58, 237, 0.8); }
}
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%            { transform: scale(1); opacity: 1; }
}
@keyframes logoSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-6px) rotate(0.5deg); }
  66%       { transform: translateY(-3px) rotate(-0.3deg); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(219,39,119,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(219,39,119,0.25); }
}

/* ─── PAGE LOAD ANIMATION ────────────────────────────────────────────────── */
body {
  animation: fadeIn 0.4s ease both;
}

/* ─── HEADER ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  animation: fadeInDown 0.5s ease both;
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.logo:hover .logo-mark {
  animation: logoSpin 0.6s ease;
  box-shadow: 0 12px 28px rgba(220, 39, 67, 0.5);
}
.logo span.accent {
  background: linear-gradient(90deg, #dc2743, #833ab4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}
.header-nav a {
  position: relative;
  transition: color 0.2s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #dc2743, #833ab4);
  transition: width 0.25s ease;
  border-radius: 999px;
}
.header-nav a:hover { color: var(--brand-pink); }
.header-nav a:hover::after { width: 100%; }
.menu-btn {
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.menu-btn:hover { background: #f8fafc; transform: scale(1.04); }
.dark .menu-btn { background: #0f172a; border-color: #334155; color: #e2e8f0; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(115deg, #c026d3 0%, #7c3aed 35%, #2563eb 70%, #06b6d4 100%);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  padding: 2.2rem 1rem 3.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.12), transparent 25%),
    radial-gradient(circle at 70% 90%, rgba(0,0,0,0.12), transparent 30%);
  pointer-events: none;
}
/* Floating particles canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.7s ease both;
}
.nav-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  margin-bottom: 1.8rem;
  border: 1px solid rgba(255,255,255,0.22);
  animation: fadeInDown 0.6s 0.2s ease both;
}
.nav-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: background 0.2s, transform 0.15s;
}
.nav-tabs a:hover, .nav-tabs a.active { background: rgba(255,255,255,0.22); }
.nav-tabs a:hover { transform: translateY(-1px); }
.hero h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 30px rgba(0,0,0,0.15);
  animation: fadeInUp 0.6s 0.1s ease both;
}

/* ─── DOWNLOAD BAR ────────────────────────────────────────────────────────── */
.download-bar {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 760px;
  margin: 0 auto;
  animation: fadeInUp 0.6s 0.25s ease both;
}
.url-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  border-radius: 12px;
  padding: 0.35rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.url-box:focus-within {
  border-color: rgba(219, 39, 119, 0.6);
  box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.15), var(--shadow);
  animation: borderPulse 2s infinite;
}
.url-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0.85rem 0.9rem;
  color: #0f172a;
  background: transparent;
  transition: all 0.2s;
}
input.shake { animation: shake 0.4s ease both; }
input.pasted { background: rgba(219, 39, 119, 0.04); }

.paste-btn, .download-btn {
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  position: relative;
  overflow: hidden;
}
.paste-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f1f5f9;
  color: #334155;
  padding: 0.7rem 0.9rem;
  white-space: nowrap;
}
.paste-btn:hover { transform: translateY(-1px); background: #e2e8f0; }
.download-btn {
  background: linear-gradient(135deg, #e11d48, #db2777, #9333ea);
  background-size: 200% auto;
  color: white;
  padding: 0.95rem 1.4rem;
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.35);
  animation: glowPulse 2.5s ease infinite;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(225, 29, 72, 0.5);
  background-position: right center;
}
.download-btn:active { transform: translateY(0); }
.download-btn.processing {
  background: linear-gradient(135deg, #9ca3af, #6b7280);
  animation: none;
  cursor: wait;
}
.download-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; animation: none; }

/* Ripple effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.helper-text {
  margin-top: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  animation: fadeIn 0.8s 0.4s ease both;
}
.status-msg {
  margin-top: 1rem;
  min-height: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.status-msg.error { color: #fecaca; }
.status-msg.ok { color: #bbf7d0; }

/* ─── SECTIONS ────────────────────────────────────────────────────────────── */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e3a8a;
}
.dark .section-title { color: #93c5fd; }
.muted { color: var(--muted); }

/* ─── SCROLL-REVEAL ANIMATIONS ───────────────────────────────────────────── */
.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children within grids */
.feature-grid .reveal-ready:nth-child(1) { transition-delay: 0.05s; }
.feature-grid .reveal-ready:nth-child(2) { transition-delay: 0.12s; }
.feature-grid .reveal-ready:nth-child(3) { transition-delay: 0.19s; }
.feature-grid .reveal-ready:nth-child(4) { transition-delay: 0.05s; }
.feature-grid .reveal-ready:nth-child(5) { transition-delay: 0.12s; }
.feature-grid .reveal-ready:nth-child(6) { transition-delay: 0.19s; }
.steps-grid .reveal-ready:nth-child(1) { transition-delay: 0.05s; }
.steps-grid .reveal-ready:nth-child(2) { transition-delay: 0.12s; }
.steps-grid .reveal-ready:nth-child(3) { transition-delay: 0.19s; }
.steps-grid .reveal-ready:nth-child(4) { transition-delay: 0.26s; }
.faq-grid .reveal-ready:nth-child(odd)  { transition-delay: 0.05s; }
.faq-grid .reveal-ready:nth-child(even) { transition-delay: 0.15s; }

/* ─── TWO-COL ─────────────────────────────────────────────────────────────── */
.two-col { display: grid; gap: 2rem; align-items: center; }

/* ─── IG BADGE ────────────────────────────────────────────────────────────── */
.ig-badge {
  width: min(100%, 280px);
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 28%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: grid;
  place-items: center;
  box-shadow: 0 24px 50px rgba(188, 24, 136, 0.28);
  position: relative;
  animation: floatY 4s ease-in-out infinite, cardFloat 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.ig-badge:hover { animation-play-state: paused; transform: scale(1.05) rotate(2deg); }
.ig-badge::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 10px solid white;
  border-radius: 24%;
}
.ig-badge .dot {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 14%;
  height: 14%;
  background: white;
  border-radius: 50%;
  animation: pulseRing 2s ease infinite;
}
.ig-badge .lens {
  width: 38%;
  height: 38%;
  border: 10px solid white;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* ─── CARDS ───────────────────────────────────────────────────────────────── */
.feature-grid, .steps-grid, .faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.feature-card, .step-card, .faq-item, .legal-card, .result-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover, .step-card:hover, .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(219, 39, 119, 0.2);
}
.dark .feature-card:hover, .dark .step-card:hover, .dark .faq-item:hover {
  border-color: rgba(219, 39, 119, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: white;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-size: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}
.feature-card h3, .step-card h3, .faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

/* ─── STEP NUMBERS ────────────────────────────────────────────────────────── */
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #db2777, #7c3aed);
  margin-bottom: 0.8rem;
  animation: pulseRing 2.5s ease infinite;
  position: relative;
}
.step-card:nth-child(1) .step-num { animation-delay: 0s; }
.step-card:nth-child(2) .step-num { animation-delay: 0.6s; }
.step-card:nth-child(3) .step-num { animation-delay: 1.2s; }
.step-card:nth-child(4) .step-num { animation-delay: 1.8s; }

/* ─── RESULT SECTION ──────────────────────────────────────────────────────── */
#resultArea { display: none; }
#resultArea.show { display: block; }
#resultArea.animated .result-card { animation: scaleIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.result-card {
  display: grid;
  gap: 1rem;
  overflow: hidden;
}
.result-media {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border-radius: 14px;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
/* Shimmer loading state */
.result-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  pointer-events: none;
}
.result-media video, .result-media img { width: 100%; height: 100%; object-fit: cover; max-height: 360px; }
.result-meta h3 { margin: 0 0 0.35rem; }

/* Preview styles */
.preview-thumb-wrap { position: relative; width: 100%; max-height: 360px; background: #000; border-radius: 14px; overflow: hidden; }
.preview-thumb-img  { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 360px; transition: transform 0.4s ease; }
.preview-thumb-wrap:hover .preview-thumb-img { transform: scale(1.03); }
.preview-play-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,0.25); transition: background 0.2s;
}
.preview-thumb-wrap:hover .preview-play-overlay { background: rgba(0,0,0,0.1); }
.preview-play-btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatY 3s ease-in-out infinite;
}
.preview-play-btn:hover { transform: scale(1.12); box-shadow: 0 14px 32px rgba(0,0,0,0.4); }
.preview-icon-block   { padding: 2.2rem; text-align: center; color: #fff; }
.preview-icon         { font-size: 3.5rem; margin-bottom: 0.75rem; animation: floatY 3s ease-in-out infinite; }
.preview-label        { font-weight: 700; font-size: 1.1rem; }
.preview-sub          { opacity: 0.75; font-size: 0.88rem; margin-top: 0.35rem; }
.preview-loader-block { padding: 2.2rem; text-align: center; color: #fff; }

/* ─── QUALITY BUTTONS ─────────────────────────────────────────────────────── */
.quality-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.quality-btn {
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  font-weight: 700;
  cursor: pointer;
  color: #0f172a;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.quality-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15,23,42,0.1); }
.quality-btn.primary {
  border: 0;
  color: white;
  background: linear-gradient(135deg, #e11d48, #db2777);
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.3);
  animation: glowPulse 2s ease infinite;
}
.quality-btn.primary:hover {
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.5);
}
.quality-btn.another {
  border: 1px solid #c4b5fd;
  color: #5b21b6;
  background: #f5f3ff;
}
.quality-btn.another:hover { background: #ede9fe; }
.dark .quality-btn.another { border-color: #6d28d9; color: #ddd6fe; background: #1e1b4b; }
.quality-btn:disabled { opacity: 0.65; cursor: wait; }
.quality-btn.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

/* ─── LOADER ──────────────────────────────────────────────────────────────── */
.loader {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.25);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 0.9rem;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* ─── AD SLOTS ────────────────────────────────────────────────────────────── */
.ad-slot { margin: 1.5rem auto; max-width: 1120px; padding: 0 1rem; }
.ad-box {
  border: 1px dashed #cbd5e1;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  color: #94a3b8;
  border-radius: 12px;
  min-height: 90px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.dark .ad-box { background: linear-gradient(135deg, #0f172a, #0f172a); border-color: #334155; color: #64748b; }

/* ─── LEGAL PAGES ─────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(115deg, #7c3aed, #2563eb);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: white;
  padding: 2.5rem 1rem;
}
.page-hero h1 { max-width: 1120px; margin: 0 auto; font-size: clamp(1.6rem, 4vw, 2.3rem); }
.legal-content { max-width: 820px; margin: 0 auto; padding: 2.5rem 1rem 4rem; }
.legal-content h2 { margin-top: 2rem; font-size: 1.2rem; color: #1e3a8a; }
.dark .legal-content h2 { color: #93c5fd; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 1.2rem; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: #0b1220;
  color: #cbd5e1;
  padding: 2.5rem 1rem 1.5rem;
}
.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.footer-col h4 { margin: 0 0 0.8rem; color: white; font-size: 0.95rem; }
.footer-col a { display: block; color: #94a3b8; margin-bottom: 0.45rem; font-size: 0.92rem; transition: color 0.2s, transform 0.15s; }
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-bottom {
  max-width: 1120px;
  margin: 1.8rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.disclaimer-banner {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.dark .disclaimer-banner { background: #431407; color: #fdba74; border-color: #9a3412; }

/* ─── COOKIE CONSENT ──────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: none;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #1e293b;
}
.cookie-banner.show {
  display: flex;
  animation: fadeInUp 0.5s ease both;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 220px; font-size: 0.9rem; color: #cbd5e1; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-actions button {
  border: 0; border-radius: 10px; padding: 0.65rem 0.95rem;
  font-weight: 700; cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.cookie-actions button:hover { transform: translateY(-1px); opacity: 0.9; }
.cookie-accept { background: linear-gradient(135deg, #e11d48, #db2777); color: white; }
.cookie-decline { background: #1e293b; color: #e2e8f0; }

/* ─── CONTACT FORM ────────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: 0.9rem; }
.form-grid label { display: grid; gap: 0.35rem; font-weight: 600; }
.form-grid input, .form-grid textarea, .form-grid select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: white;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: none;
  border-color: #db2777;
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.12);
}
.dark .form-grid input, .dark .form-grid textarea, .dark .form-grid select {
  background: #0f172a; border-color: #334155; color: #e2e8f0;
}

/* ─── MOBILE MENU ─────────────────────────────────────────────────────────── */
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 0.75rem 1rem 1rem; background: white; }
.mobile-menu.open { display: grid; gap: 0.55rem; animation: fadeInDown 0.25s ease both; }
.mobile-menu a { padding: 0.55rem 0.2rem; color: #334155; font-weight: 600; transition: color 0.2s, transform 0.15s; }
.mobile-menu a:hover { color: var(--brand-pink); transform: translateX(4px); }
.dark .mobile-menu { background: #020617; border-color: #1e293b; }
.dark .mobile-menu a { color: #cbd5e1; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .download-bar { flex-direction: row; align-items: stretch; }
  .url-box { flex: 1; }
  .download-btn { min-width: 140px; }
  .feature-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .result-card { grid-template-columns: 1.1fr 1fr; }
  .two-col { grid-template-columns: 1.2fr 0.8fr; }
}
@media (min-width: 900px) {
  .header-nav { display: flex; }
  .menu-btn { display: none; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── REDUCED MOTION ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-ready { opacity: 1; transform: none; }
}

/* ─── UTILITIES ───────────────────────────────────────────────────────────── */
.badge-soft {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: #eff6ff; color: #1d4ed8; border-radius: 999px;
  padding: 0.35rem 0.75rem; font-weight: 700; font-size: 0.8rem; margin-bottom: 0.8rem;
}
.dark .badge-soft { background: #1e3a8a; color: #bfdbfe; }
.center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.prose p { margin: 0 0 1rem; }
.prose h3 { margin: 1.5rem 0 0.6rem; }
.list-check { list-style: none; padding: 0; margin: 1rem 0 0; }
.list-check li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; color: var(--muted);
}
.list-check li::before {
  content: "✓"; position: absolute; left: 0; color: #db2777; font-weight: 800;
}
