/*
Theme Name: SaveInstaNow
Theme URI: https://saveinstanow.com
Author: SaveInstaNow
Author URI: https://saveinstanow.com
Description: A modern, SEO-optimized WordPress theme for SaveInstaNow — Free Instagram & Facebook Video Downloader. Dark theme with animated backgrounds, ad zones, and full compliance pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saveinstanow
Tags: dark, one-column, custom-menu, translation-ready
*/

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-input: #1c1c28;
  --accent: #e8364e;
  --accent-glow: rgba(232, 54, 78, 0.4);
  --accent-soft: rgba(232, 54, 78, 0.1);
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #5a5a6a;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --gradient-1: linear-gradient(135deg, #e8364e 0%, #f97316 50%, #e8364e 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-primary); }
img { max-width: 100%; height: auto; }

/* ===== ANIMATED BG ===== */
.bg-mesh {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.bg-mesh::before {
  content: ''; position: absolute;
  width: 800px; height: 800px; top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(232,54,78,0.08) 0%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
}
.bg-mesh::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(102,126,234,0.06) 0%, transparent 70%);
  animation: float2 25s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(100px,50px) scale(1.1); }
  66% { transform: translate(-50px,100px) scale(0.95); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-80px,-60px) scale(1.15); }
}
.noise-overlay {
  position: fixed; inset: 0; z-index: 1;
  opacity: 0.03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== LAYOUT ===== */
.wrapper { position: relative; z-index: 2; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.site-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.8);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.logo-text { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; color: var(--text-primary); }
.logo-text span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--text-primary); }
.nav-badge {
  background: var(--accent-soft); color: var(--accent);
  padding: 6px 14px; border-radius: 20px; font-size: 12px;
  font-weight: 600; letter-spacing: 0.5px;
  border: 1px solid rgba(232,54,78,0.2);
}
.menu-toggle {
  display: none; background: none; border: none; color: var(--text-primary);
  font-size: 26px; cursor: pointer; padding: 4px;
}

/* ===== AD ZONES ===== */
.ad-zone {
  background: var(--bg-card);
  border: 1px dashed var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 16px; text-align: center;
  color: var(--text-muted); font-size: 12px;
  font-family: 'Space Mono', monospace; letter-spacing: 1px;
  margin: 24px auto; max-width: 728px; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== HERO ===== */
.hero { padding: 36px 0 24px; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px; font-size: 13px;
  color: var(--text-secondary); margin-bottom: 32px;
  animation: fadeUp 0.6s ease-out;
}
.hero-badge .dot {
  width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
h1.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 14px; animation: fadeUp 0.6s ease-out 0.1s both;
}
.gradient-text {
  background: var(--gradient-1); background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}
.hero-sub {
  font-size: 16px; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto 24px; line-height: 1.6;
  font-weight: 400; animation: fadeUp 0.6s ease-out 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PLATFORM TABS ===== */
.platform-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 20px; animation: fadeUp 0.6s ease-out 0.25s both;
}
.platform-tab {
  padding: 10px 24px; border-radius: 50px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-secondary); font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.platform-tab.active {
  background: var(--accent-soft); border-color: rgba(232,54,78,0.3); color: var(--accent);
}
.platform-tab:hover:not(.active) { border-color: var(--border-hover); color: var(--text-primary); }

/* ===== DOWNLOAD BOX ===== */
.dl-box { max-width: 680px; margin: 0 auto; animation: fadeUp 0.6s ease-out 0.3s both; }
.dl-input-wrap {
  display: flex; gap: 0; background: var(--bg-input);
  border: 2px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.dl-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 8px 40px rgba(232,54,78,0.15);
}
.dl-input-wrap input {
  flex: 1; background: none; border: none; padding: 20px 24px;
  color: var(--text-primary); font-family: 'Outfit', sans-serif;
  font-size: 16px; outline: none;
}
.dl-input-wrap input::placeholder { color: var(--text-muted); }
.dl-btn {
  background: var(--gradient-1); background-size: 200% auto;
  color: #fff; border: none; padding: 20px 36px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background-position 0.4s, transform 0.15s;
  white-space: nowrap;
}
.dl-btn:hover { background-position: right center; }
.dl-btn:active { transform: scale(0.97); }
.dl-formats {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 18px; flex-wrap: wrap;
}
.dl-formats span {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.dl-formats .check { color: #22c55e; font-size: 14px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding: 40px 0; margin-top: 20px;
}
.trust-item { text-align: center; }
.trust-num {
  font-size: 28px; font-weight: 800; color: var(--text-primary);
  font-family: 'Space Mono', monospace;
}
.trust-num .accent { color: var(--accent); }
.trust-label {
  font-size: 12px; color: var(--text-muted); margin-top: 4px;
  letter-spacing: 0.5px; text-transform: uppercase;
}

/* ===== RESULT AREA ===== */
.result-area { max-width: 680px; margin: 24px auto 0; display: none; }
.result-area.active { display: block; }
.result-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.result-preview { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.result-thumb {
  width: 100px; height: 100px; border-radius: var(--radius-sm);
  background: var(--bg-input); display: flex; align-items: center;
  justify-content: center; font-size: 36px; flex-shrink: 0;
}
.result-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.result-info p { font-size: 13px; color: var(--text-muted); }
.result-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.result-dl-btn {
  flex: 1; min-width: 140px; padding: 14px 20px;
  border-radius: var(--radius-sm); border: none;
  font-family: 'Outfit', sans-serif; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.result-dl-btn.primary { background: var(--accent); color: #fff; }
.result-dl-btn.primary:hover { background: #d42e44; }
.result-dl-btn.secondary { background: var(--bg-input); color: var(--text-primary); border: 1px solid var(--border); }
.result-dl-btn.secondary:hover { border-color: var(--border-hover); }

.loader { display: none; max-width: 680px; margin: 24px auto 0; text-align: center; padding: 40px; }
.loader.active { display: block; }
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader p { color: var(--text-muted); font-size: 14px; }

/* ===== TYPE CARDS ===== */
.types { padding: 60px 0; }
.types-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px;
}
.type-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.type-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 22px;
}
.type-card:nth-child(1) .type-icon { background: rgba(232,54,78,0.12); }
.type-card:nth-child(2) .type-icon { background: rgba(139,92,246,0.12); }
.type-card:nth-child(3) .type-icon { background: rgba(59,130,246,0.12); }
.type-card:nth-child(4) .type-icon { background: rgba(249,115,22,0.12); }
.type-card:nth-child(5) .type-icon { background: rgba(34,197,94,0.12); }
.type-card:nth-child(6) .type-icon { background: rgba(236,72,153,0.12); }
.type-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.type-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block; font-family: 'Space Mono', monospace;
  font-size: 12px; color: var(--accent); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 14px;
}
.section-desc {
  color: var(--text-secondary); font-size: 16px;
  max-width: 520px; line-height: 1.7; margin-bottom: 44px;
}

/* ===== HOW IT WORKS ===== */
.how { padding: 80px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--accent), var(--border), var(--accent));
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Space Mono', monospace;
  font-size: 20px; font-weight: 700; color: var(--accent);
  position: relative; z-index: 2;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 240px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; transition: border-color 0.3s;
}
.feat-card:hover { border-color: var(--border-hover); }
.feat-icon { font-size: 26px; margin-bottom: 14px; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--text-primary); user-select: none; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .arrow { font-size: 18px; color: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { max-height: 250px; padding-bottom: 22px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== BLOG PREVIEW ===== */
.blog-preview { padding: 80px 0; border-top: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-3px); color: inherit; }
.blog-card-img {
  height: 160px; background: var(--bg-input);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 24px; }
.blog-tag {
  font-size: 11px; font-family: 'Space Mono', monospace;
  color: var(--accent); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.blog-date { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===== SEO CONTENT ===== */
.seo-content { padding: 80px 0; border-top: 1px solid var(--border); }
.seo-content h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.seo-content h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
.seo-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; max-width: 780px; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header { padding: 60px 0 40px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.page-header p { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 600px; }

/* ===== LEGAL CONTENT ===== */
.legal-content { padding: 48px 0 80px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; }
.legal-content h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: var(--text-secondary); }
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 8px 0 16px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
.legal-content li { margin-bottom: 6px; }
.notice-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; margin: 24px 0;
}
.notice-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--accent); }

/* ===== ABOUT PAGE ===== */
.about-content { padding: 48px 0 80px; }
.about-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 14px; }
.about-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 32px 0; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: border-color 0.3s; }
.value-card:hover { border-color: var(--border-hover); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.stats-bar {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; margin: 32px 0;
}
.stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 900; font-family: 'Space Mono', monospace; }
.stat-num .red { color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 0 80px; }
.contact-info h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.contact-info > p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-detail h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-detail p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; color: var(--text-primary);
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  width: 100%; padding: 16px; background: var(--gradient-1); background-size: 200% auto;
  color: #fff; border: none; border-radius: 10px; font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: background-position 0.4s;
}
.submit-btn:hover { background-position: right center; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; }
.success-msg { display: none; text-align: center; padding: 40px; }
.success-msg.show { display: block; }
.success-msg .check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,0.15); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; font-size: 28px;
}
.success-msg h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.success-msg p { font-size: 14px; color: var(--text-muted); }

/* ===== BLOG ARTICLE ===== */
.article { padding: 56px 0; border-bottom: 1px solid var(--border); }
.article:last-of-type { border-bottom: none; }
.article-tag { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.article-date { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.article h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.article h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.article h4 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; color: var(--text-secondary); }
.article p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; }
.article ul, .article ol { margin: 10px 0 18px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.85; }
.article li { margin-bottom: 8px; }
.step-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin: 20px 0; }
.step-box h4 { margin-top: 0; color: var(--accent); }
.cta-box {
  background: var(--accent-soft); border: 1px solid rgba(232,54,78,0.2);
  border-radius: 14px; padding: 24px; margin: 24px 0; text-align: center;
}
.cta-box p { color: var(--text-primary); font-weight: 500; margin-bottom: 12px; }
.cta-link {
  display: inline-block; background: var(--gradient-1); background-size: 200% auto;
  color: #fff; padding: 12px 28px; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: 14px; transition: background-position 0.4s;
}
.cta-link:hover { background-position: right center; color: #fff; }
.toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin: 20px 0; }
.toc h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: 8px; }
.toc a { font-size: 14px; }

/* ===== COOKIE TABLE ===== */
.cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.cookie-table th { text-align: left; padding: 12px 16px; background: var(--bg-card); color: var(--text-primary); font-weight: 600; border-bottom: 1px solid var(--border); font-size: 13px; }
.cookie-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: top; }

/* ===== FOOTER ===== */
.site-footer { padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-secondary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 18px 24px; z-index: 999;
  display: flex; justify-content: center; align-items: center;
  gap: 20px; flex-wrap: wrap; backdrop-filter: blur(20px);
  animation: slideUp 0.5s ease-out;
}
.cookie-banner.hidden { display: none; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner p { font-size: 13px; color: var(--text-secondary); max-width: 600px; line-height: 1.5; }
.cookie-btn {
  padding: 10px 24px; border-radius: 8px; border: none;
  font-family: 'Outfit', sans-serif; font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: #d42e44; }
.cookie-decline { background: var(--bg-input); color: var(--text-secondary); border: 1px solid var(--border); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== WP SPECIFIC RESETS ===== */
.wp-block-post-content p { color: var(--text-secondary); line-height: 1.8; }
#wpadminbar { opacity: 0.3; transition: opacity 0.3s; }
#wpadminbar:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-primary); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 16px;
  }
  .menu-toggle { display: block; }
  .hero { padding: 24px 0 16px; }
  .dl-input-wrap { flex-direction: column; }
  .dl-btn { padding: 18px; text-align: center; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-bar { gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .types-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .platform-tabs { flex-direction: column; align-items: center; }
}
