/* =====================================================
   MyBlog Farsi Theme — Main Stylesheet
   ===================================================== */

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

body {
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  background: #f0f4fb;
  color: #111827;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  text-align: right;
}

/* ── DESIGN TOKENS ────────────────────────────────────── */
:root {
  --blue:         #3b82f6;
  --blue-dark:    #1e40af;
  --blue-mid:     #2563eb;
  --blue-light:   #eff6ff;
  --blue-border:  #dbeafe;
  --blue-hover:   #93c5fd;
  --green:        #10b981;
  --text:         #111827;
  --text-muted:   #6b7280;
  --text-body:    #4b5563;
  --bg-section:   #f9fafb;
  --border:       #e5e7eb;
  --shadow-card:  0 10px 24px rgba(148,163,184,.22);
  --shadow-hover: 0 18px 40px rgba(148,163,184,.30);
  --shadow-blue:  0 14px 30px rgba(59,130,246,.4);
  --r-card:       16px;
  --r-pill:       999px;
  --r-xl:         24px;
}

/* ── WORLD MAP BACKGROUND ──────────────────────────────── */
.world-map-background {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.world-map-background svg { width: 100%; height: 100%; opacity: .6; }

/* ── PAGE WRAPPER ─────────────────────────────────────── */
.page-wrapper {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; flex-direction: column;
}

/* ── NAV ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  animation: slideDown .5s ease both;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }

.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--blue-dark);
  font-size: 1.5rem; font-weight: 900; transition: color .2s;
}
.site-logo:hover { color: var(--blue-mid); }
.site-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: white;
  font-size: 1.1rem; font-weight: 900;
  box-shadow: 0 4px 12px rgba(59,130,246,.35); flex-shrink: 0;
}

/* WordPress nav menu */
.main-navigation ul { display: flex; gap: 36px; list-style: none; }
.main-navigation a {
  position: relative; color: var(--blue-dark);
  text-decoration: none; font-weight: 700; font-size: 1.05rem; transition: color .2s;
}
.main-navigation a::after {
  content: ''; position: absolute; bottom: -2px; right: 0;
  width: 0; height: 2px;
  background: linear-gradient(to left, var(--blue), #8b5cf6);
  transition: width .3s ease;
}
.main-navigation a:hover { color: var(--blue-mid); }
.main-navigation a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link-text {
  color: var(--blue-dark); text-decoration: none;
  font-weight: 700; font-size: .95rem; transition: color .2s;
}
.nav-link-text:hover { color: var(--blue-mid); }

.btn-primary {
  background: linear-gradient(to left, var(--blue), var(--blue-mid));
  color: white; font-weight: 700; font-size: .95rem;
  padding: 11px 26px; border-radius: 12px; border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 14px rgba(59,130,246,.35);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
}
.btn-primary:hover {
  background: linear-gradient(to left, var(--blue-mid), var(--blue-dark));
  transform: scale(1.03); box-shadow: 0 6px 20px rgba(59,130,246,.45);
}
.btn-outline {
  background: rgba(255,255,255,.8); color: var(--blue-dark);
  font-weight: 700; font-size: .95rem; padding: 11px 26px;
  border-radius: var(--r-pill); border: 1px solid var(--blue-border);
  cursor: pointer; transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); font-family: inherit;
}
.btn-outline:hover { border-color: var(--blue-hover); background: white; }

.nav-mobile-btn {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 1.4rem; color: var(--blue);
}

/* ── BADGE ────────────────────────────────────────────── */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--r-pill); padding: 5px 14px;
  font-size: .78rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 14px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* ── SHARED SECTION ───────────────────────────────────── */
.site-main section { position: relative; overflow: hidden; }
.section-overlay { pointer-events: none; position: absolute; inset: 0; }
.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(1.8rem,4vw,3rem); font-weight: 900;
  color: var(--blue-dark); line-height: 1.35; margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-body);
  max-width: 560px; margin: 0 auto; line-height: 1.9;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero-section { padding: 80px 0 96px; background: transparent; }
.hero-section .section-overlay { background: rgba(240,241,243,.4); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-text { animation: fadeUp .7s .1s both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
.hero-h1 { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; color: var(--blue-dark); line-height: 1.4; margin-top: 12px; margin-bottom: 18px; }
.hero-h1 .gradient-text {
  background: linear-gradient(to left, var(--blue-mid), var(--blue), var(--blue-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.hero-p { font-size: .97rem; color: var(--text-body); line-height: 1.9; max-width: 480px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(to left, var(--blue), var(--blue-mid));
  color: white; font-weight: 700; font-size: 1rem;
  padding: 14px 30px; border-radius: var(--r-pill); border: none; cursor: pointer;
  box-shadow: var(--shadow-blue); transition: all .2s; text-decoration: none; font-family: inherit;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(59,130,246,.5); }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--blue-dark); }
.hero-stat-label { font-size: .8rem; color: var(--text-muted); }

/* Hero card */
.hero-card-wrap { animation: fadeUp .7s .3s both; }
.dashboard-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 18px 40px rgba(148,163,184,.55);
  max-width: 480px; margin-right: auto;
}
.dashboard-titlebar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid var(--border); direction: ltr;
}
.titlebar-dots { display: flex; gap: 6px; }
.titlebar-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red{background:#f97373} .dot-yellow{background:#facc15} .dot-green{background:#4ade80}
.titlebar-label { font-size: .75rem; color: var(--text-muted); font-weight: 600; }
.dashboard-preview {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,var(--blue-border),white,#bfdbfe);
  display: flex; align-items: center; justify-content: center;
}
.fake-chart { width: 90%; padding: 16px; background: white; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.chart-header { font-size: .72rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; display: flex; justify-content: space-between; direction: rtl; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; direction: ltr; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top,var(--blue-mid),var(--blue)); opacity: .85; min-width: 12px; }
.chart-labels { display: flex; gap: 6px; margin-top: 6px; direction: ltr; }
.chart-labels span { flex: 1; font-size: .6rem; color: var(--text-muted); text-align: center; }
.dashboard-badge {
  position: relative; margin-top: 12px; display: inline-block;
  background: rgba(255,255,255,.95); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 12px 16px;
  box-shadow: 0 10px 25px rgba(148,163,184,.6); font-size: .8rem;
}
.badge-title { font-weight: 700; color: var(--blue-dark); font-size: .85rem; }
.badge-sub   { color: var(--text-muted); font-size: .75rem; margin-top: 2px; line-height: 1.6; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section { padding: 96px 0; background: transparent; }
.testimonials-section .section-overlay { background: rgba(255,255,255,.6); }
.featured-quote {
  background: var(--bg-section); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px; margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.featured-quote blockquote { font-size: 1.05rem; color: var(--text); line-height: 1.9; margin-bottom: 16px; }
.quote-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.quote-author-name { font-weight: 700; color: var(--blue-dark); font-size: .9rem; }
.quote-author-role { color: var(--text-muted); font-size: .8rem; }
.mini-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--r-pill); padding: 4px 12px;
  font-size: .75rem; font-weight: 600; color: var(--blue-dark);
}
.mini-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 22px;
  box-shadow: var(--shadow-card); transition: all .2s;
}
.testi-card:hover { box-shadow: var(--shadow-hover); border-color: var(--blue-hover); transform: translateY(-3px); }
.testi-card blockquote { font-size: .88rem; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.testi-name  { font-weight: 700; color: var(--blue-dark); font-size: .88rem; }
.testi-role  { color: var(--text-muted); font-size: .78rem; margin-top: 2px; }

/* ── STEPS & ROADMAP ──────────────────────────────────── */
.steps-section { padding: 96px 0; background: transparent; }
.steps-section .section-overlay { background: rgba(255,255,255,.7); }
.steps-connector { display: none; }
@media(min-width:768px){.steps-connector{display:block;position:absolute;top:52px;left:0;right:0;height:2px;background:linear-gradient(to right,#bfdbfe,var(--blue-border),#bfdbfe);border-radius:9999px;pointer-events:none}}
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-item { display: flex; flex-direction: column; gap: 10px; }
.step-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--blue); background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: var(--blue);
  box-shadow: 0 0 0 5px rgba(219,234,254,.9);
  flex-shrink: 0; z-index: 1; position: relative;
}
.step-phase { font-size: .7rem; font-weight: 700; color: var(--blue-dark); opacity: .85; }
.step-card {
  background: white; border: 1px solid var(--blue-border);
  border-radius: var(--r-card); padding: 18px 20px;
  box-shadow: var(--shadow-card); transition: all .2s; height: 100%;
}
.step-card:hover { box-shadow: var(--shadow-hover); border-color: var(--blue-hover); }
.step-card h3 { font-size: 1rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.step-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.75; }
.step-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--r-pill); padding: 4px 10px;
  font-size: .7rem; color: var(--blue-dark); margin-top: 10px; font-weight: 600;
}
.step-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

.roadmap-section { padding: 96px 0; background: transparent; }
.roadmap-section .section-overlay { background: rgba(255,255,255,.7); }
.roadmap-layout { display: grid; gap: 32px; grid-template-columns: 48px 1fr; align-items: start; }
.timeline-line-wrap { display: flex; justify-content: center; padding-top: 8px; }
.timeline-line { width: 3px; height: 100%; min-height: 400px; border-radius: 9999px; background: linear-gradient(to bottom,var(--blue-border),#bfdbfe,var(--blue-border)); }
.timeline-items { display: flex; flex-direction: column; gap: 24px; }
.timeline-row { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.timeline-num-wrap { display: flex; justify-content: center; }
.timeline-num { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--blue); background: white; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; color: var(--blue); box-shadow: 0 0 0 5px rgba(219,234,254,.95); flex-shrink: 0; }
.timeline-card { background: white; border: 1px solid var(--blue-border); border-radius: var(--r-card); padding: 18px 22px; box-shadow: var(--shadow-card); transition: all .2s; }
.timeline-card:hover { box-shadow: var(--shadow-hover); border-color: var(--blue-hover); }
.timeline-card-phase { font-size: .72rem; font-weight: 700; color: var(--blue-dark); opacity: .9; margin-bottom: 4px; }
.timeline-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.timeline-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.8; }

/* ── FEATURES ─────────────────────────────────────────── */
.features-section { padding: 96px 0; background: transparent; }
.features-section .section-overlay { background: rgba(255,255,255,.65); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card { background: white; border: 1px solid var(--border); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-card); transition: all .2s; }
.feature-card:hover { box-shadow: var(--shadow-hover); border-color: var(--blue-hover); transform: translateY(-3px); }
.feature-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.feature-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.75; }

/* ── BLOG ─────────────────────────────────────────────── */
.blog-section { padding: 96px 0; background: transparent; }
.blog-section .section-overlay { background: rgba(255,255,255,.6); }
.featured-post { background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; margin-bottom: 40px; box-shadow: 0 2px 8px rgba(0,0,0,.04); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.featured-post-img { aspect-ratio: 16/9; background: linear-gradient(135deg,var(--blue-border),#bfdbfe); border-radius: var(--r-card); overflow: hidden; }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-post-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); border: 1px solid var(--blue-border); border-radius: var(--r-pill); padding: 4px 12px; font-size: .75rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.featured-post h2 { font-size: 1.5rem; font-weight: 900; color: var(--blue-dark); line-height: 1.4; margin-bottom: 10px; }
.featured-post .post-excerpt { font-size: .88rem; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-muted); flex-wrap: wrap; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { background: white; border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); transition: all .2s; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: var(--shadow-hover); border-color: var(--blue-hover); transform: translateY(-3px); }
.post-card-img { aspect-ratio: 16/9; background: linear-gradient(135deg,var(--blue-border),white,#bfdbfe); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-img .no-thumb { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2rem; }
.post-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.post-category-badge { display: inline-flex; align-items: center; gap: 5px; border-radius: var(--r-pill); padding: 3px 10px; font-size: .7rem; font-weight: 700; margin-bottom: 10px; background: var(--blue-light); color: var(--blue-dark); border: 1px solid var(--blue-border); }
.post-card-body h3 { font-size: .95rem; font-weight: 800; color: var(--blue-dark); line-height: 1.5; margin-bottom: 8px; }
.post-card-body .post-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.post-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); font-size: .75rem; color: var(--text-muted); margin-top: auto; }
.read-more { color: var(--blue-mid); font-weight: 700; text-decoration: none; font-size: .78rem; transition: color .2s; }
.read-more:hover { color: var(--blue-dark); }

/* ── TRUST ────────────────────────────────────────────── */
.trust-section { padding: 96px 0; background: transparent; }
.trust-section .section-overlay { background: rgba(255,255,255,.65); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 56px; }
.stat-card { background: white; border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-card); transition: all .2s; }
.stat-card:hover { border-color: var(--blue-hover); box-shadow: var(--shadow-hover); }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--blue-dark); line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--blue); }
.stat-label { font-size: .82rem; color: var(--text-muted); }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; padding: 32px; background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--r-xl); }
.trust-logo { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; color: var(--text-muted); opacity: .6; filter: grayscale(1); transition: all .2s; }
.trust-logo:hover { opacity: 1; filter: none; color: var(--blue-dark); }
.trust-logo-icon { width: 36px; height: 36px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

/* ── CTA ──────────────────────────────────────────────── */
.cta-section { padding: 80px 0; background: transparent; }
.cta-section .section-overlay { background: rgba(255,255,255,.5); }
.cta-box { background: linear-gradient(135deg,var(--blue-dark) 0%,var(--blue-mid) 50%,var(--blue) 100%); border-radius: var(--r-xl); padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right,rgba(255,255,255,.12) 0%,transparent 60%); }
.cta-box h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; color: white; margin-bottom: 12px; position: relative; }
.cta-box p  { font-size: 1rem; color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 32px; line-height: 1.8; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.btn-cta-white { background: white; color: var(--blue-dark); font-weight: 800; font-size: 1rem; padding: 14px 32px; border-radius: var(--r-pill); border: none; cursor: pointer; text-decoration: none; transition: all .2s; box-shadow: 0 6px 20px rgba(0,0,0,.12); font-family: inherit; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-cta-outline { background: rgba(255,255,255,.12); color: white; font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.3); cursor: pointer; text-decoration: none; transition: all .2s; font-family: inherit; }
.btn-cta-outline:hover { background: rgba(255,255,255,.2); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background: rgba(255,255,255,.8); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 56px 32px 32px; }
.footer-grid { max-width: 1152px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.8; margin: 12px 0 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-light); border: 1px solid var(--blue-border); display: flex; align-items: center; justify-content: center; font-size: .9rem; text-decoration: none; color: var(--blue-dark); transition: all .2s; }
.social-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }
.footer-col h4 { font-size: .88rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--blue-dark); }
.footer-bottom { max-width: 1152px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--blue-mid); text-decoration: none; }

/* ── SECTION FOOTER NOTE ──────────────────────────────── */
.section-footer-note { margin-top: 40px; border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: .78rem; color: var(--text-muted); }
.section-footer-note strong { color: var(--blue-dark); font-weight: 700; }

/* ── SCROLL ANIM ──────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media(max-width:1024px) {
  .features-grid,.blog-grid{ grid-template-columns: repeat(2,1fr); }
  .steps-grid{ grid-template-columns: repeat(2,1fr); }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .site-header{ padding: 14px 20px; }
  .main-navigation,.nav-actions .nav-link-text{ display: none; }
  .nav-mobile-btn{ display: block; }
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hero-card-wrap{ order: -1; }
  .dashboard-card{ max-width: 100%; margin: 0; }
  .testimonials-grid,.features-grid,.blog-grid{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .featured-post{ grid-template-columns: 1fr; }
  .roadmap-layout{ grid-template-columns: 1fr; }
  .timeline-line-wrap{ display: none; }
  .timeline-row{ grid-template-columns: 40px 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-box{ padding: 40px 24px; }
  .section-title{ font-size: 1.7rem; }
}
