/* ============================================================
   SmartAi AutoPost — Main Stylesheet
   Professional Premium Design
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #046bd2;
  --primary-dark: #045cb4;
  --primary-light: #e8f1fd;
  --secondary: #7c3aed;
  --secondary-light: #ede9fe;
  --accent: #0ea5e9;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --white: #ffffff;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f59e0b;
  --gradient: linear-gradient(135deg, #046bd2 0%, #7c3aed 100%);
  --gradient-soft: linear-gradient(135deg, #e8f1fd 0%, #ede9fe 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-glow: 0 0 30px rgba(4,107,210,.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(4,107,210,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4,107,210,.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-download {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--dark);
  border: none;
  box-shadow: 0 4px 15px rgba(245,158,11,.4);
  font-weight: 700;
}
.btn-download:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,.5);
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.btn-lg { padding: 13px 26px; font-size: 13px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--gradient-soft);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
  overflow: visible;
}
.header.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
/* 20% chhota on scroll */
.header.scrolled .logo { font-size: 14px; }
.header.scrolled .logo-icon { width: 24px; height: 24px; font-size: 11px; }
.header.scrolled .nav-link { font-size: 11px; padding: 4px 9px; }
.header.scrolled .header-cta .btn { padding: 5px 12px; font-size: 11px; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
  transition: font-size .3s ease;
}
.logo-icon {
  width: 30px; height: 30px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: width .3s ease, height .3s ease, font-size .3s ease;
}
.logo-accent { color: #60a5fa; }
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: var(--transition), font-size .3s ease, padding .3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 7px;
  transition: var(--transition), font-size .3s ease, padding .3s ease;
}
.header-cta .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  background: transparent;
}
.header-cta .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-support:hover {
  background: rgba(16,185,129,.22);
  border-color: rgba(16,185,129,.7);
  color: #34d399;
  transform: translateY(-1px);
}
.header.scrolled .btn-support { padding: 5px 11px; font-size: 11px; }
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-login:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  transform: translateY(-1px);
}
.header.scrolled .btn-login { padding: 5px 11px; font-size: 11px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 55px 0 50px;
  background: var(--dark);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-anim { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #046bd2 0%, transparent 70%);
  top: -200px; left: -200px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: 50%; right: -150px;
  animation-delay: -3s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation-delay: -5s;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(.95); }
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-inner { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: #fbbf24; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-small {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: .5px;
  display: inline-block;
  margin-bottom: 4px;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* Dashboard Card */
.hero-visual {
  position: relative;
}
.dashboard-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dash-dots { display: flex; gap: 6px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.dash-title {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  flex: 1;
  text-align: center;
}
.dash-body { display: flex; }
.dash-sidebar {
  width: 160px;
  background: rgba(0,0,0,.2);
  padding: 16px 0;
  flex-shrink: 0;
}
.side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.side-item:hover, .side-item.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.side-item.active { border-left: 3px solid var(--primary); }
.side-item i { width: 14px; }
.dash-content { flex: 1; padding: 16px; }
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.dash-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ds-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.ds-label { font-size: 10px; color: rgba(255,255,255,.5); }
.ds-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 4px;
  width: fit-content;
}
.ds-badge.green { background: rgba(16,185,129,.2); color: #10b981; }
.ds-badge.blue { background: rgba(4,107,210,.2); color: #60a5fa; }
.ds-badge.purple { background: rgba(124,58,237,.2); color: #a78bfa; }
.dash-feed { display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
}
.feed-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.feed-icon.rss { background: rgba(245,158,11,.2); color: #f59e0b; }
.feed-icon.yt { background: rgba(239,68,68,.2); color: #ef4444; }
.feed-icon.amazon { background: rgba(245,158,11,.2); color: #f59e0b; }
.feed-icon.gn { background: rgba(4,107,210,.2); color: #60a5fa; }
.feed-info { flex: 1; min-width: 0; }
.feed-title {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-meta { font-size: 10px; color: rgba(255,255,255,.4); }
.feed-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.feed-status.published { background: rgba(16,185,129,.2); color: #10b981; }
.feed-status.scheduled { background: rgba(245,158,11,.2); color: #f59e0b; }
.feed-status.draft { background: rgba(100,116,139,.2); color: #94a3b8; }

/* Floating Badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-lg);
  animation: floatBadge 4s ease-in-out infinite;
}
.float-badge i { color: var(--primary); }
.fb1 { top: -20px; right: -10px; animation-delay: 0s; }
.fb2 { bottom: 30%; left: -30px; animation-delay: -1.5s; }
.fb3 { bottom: -15px; right: 20%; animation-delay: -3s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ============================================================
   FEATURES
   ============================================================ */
/* ── Features Keyframes ── */
@keyframes fcFadeUp {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fcShine {
  0%   { left: -80%; }
  100% { left: 130%; }
}
@keyframes fcPulse {
  0%,100% { box-shadow: 0 0 0 0 var(--fc-glow); }
  50%     { box-shadow: 0 0 0 8px transparent; }
}

.features {
  padding: 50px 0;
  background: #080e1e;
  position: relative;
  overflow: hidden;
}
.features-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.features .section-badge { color: #a78bfa; border-color: rgba(167,139,250,.3); background: rgba(167,139,250,.08); }
.features .section-title { color: var(--white); }
.features .section-desc  { color: rgba(255,255,255,.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Base Card ── */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 30px 26px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  opacity: 0;
  cursor: pointer;
}
.feature-card.fc-visible {
  animation: fcFadeUp .55s ease forwards;
}
.feature-card[data-delay="1"] { animation-delay: .08s; }
.feature-card[data-delay="2"] { animation-delay: .16s; }
.feature-card[data-delay="3"] { animation-delay: .24s; }
.feature-card[data-delay="4"] { animation-delay: .32s; }
.feature-card[data-delay="5"] { animation-delay: .40s; }
.feature-card[data-delay="6"] { animation-delay: .48s; }
.feature-card[data-delay="7"] { animation-delay: .56s; }
.feature-card[data-delay="8"] { animation-delay: .64s; }

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--fc-color);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px var(--fc-color);
}

/* Shine sweep on hover */
.fc-shine {
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}
.feature-card:hover .fc-shine { animation: fcShine .6s ease forwards; }

/* Card number */
.fc-number {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--fc-color);
  opacity: .4;
  letter-spacing: 1px;
}

/* Icon */
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: var(--fc-bg);
  color: var(--fc-color);
  transition: transform .3s ease, box-shadow .3s ease;
  --fc-glow: var(--fc-color);
}
.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(6deg);
  animation: fcPulse .6s ease;
}

/* Title & Text */
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p {
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.feature-list { display: flex; flex-direction: column; gap: 7px; }
.feature-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.feature-list li i { color: var(--fc-color); font-size: 11px; flex-shrink: 0; }

/* Arrow */
.fc-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--fc-bg);
  color: var(--fc-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.feature-card:hover .fc-arrow { opacity: 1; transform: translateX(0); }

/* ── Color Variants ── */
.fc-purple { --fc-color: #a78bfa; --fc-bg: rgba(167,139,250,.12); }
.fc-orange  { --fc-color: #fb923c; --fc-bg: rgba(251,146,60,.12); }
.fc-green   { --fc-color: #34d399; --fc-bg: rgba(52,211,153,.12); }
.fc-yellow  { --fc-color: #fbbf24; --fc-bg: rgba(251,191,36,.12); }
.fc-blue    { --fc-color: #60a5fa; --fc-bg: rgba(96,165,250,.12); }
.fc-pink    { --fc-color: #f472b6; --fc-bg: rgba(244,114,182,.12); }
.fc-cyan    { --fc-color: #22d3ee; --fc-bg: rgba(34,211,238,.12); }
.fc-indigo  { --fc-color: #818cf8; --fc-bg: rgba(129,140,248,.12); }
.fc-emerald { --fc-color: #10b981; --fc-bg: rgba(16,185,129,.12); }

.features-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 50px 0;
  background: var(--bg);
}
.steps-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow);
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step-arrow {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
  opacity: .5;
}

/* ============================================================
   SOURCES
   ============================================================ */
.sources {
  padding: 80px 0 70px;
  background: linear-gradient(180deg, #070e1d 0%, #0c1526 50%, #070e1d 100%);
  position: relative;
  overflow: hidden;
}
.sources-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, rgba(4,107,210,0.05) 50%, transparent 75%);
  pointer-events: none;
}
.sources .section-title { color: #e2e8f0; }
.sources-badge {
  background: rgba(245,158,11,0.12) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(245,158,11,0.3) !important;
}
.sources-badge i { margin-right: 5px; }
.sources-desc { color: #94a3b8 !important; }

/* ---- RSS Showcase Layout ---- */
.rss-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
}
.rss-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
}
.rss-panel-head {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rss-panel-head i { color: var(--primary); }
.rss-site-items { display: flex; flex-direction: column; gap: 13px; }
.rss-site-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
}
.rss-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}
.rss-feat-items { display: flex; flex-direction: column; gap: 13px; }
.rss-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
}
.rss-feat-item i { color: #22c55e; font-size: 15px; flex-shrink: 0; }
.rss-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}
.rss-flow-icon {
  width: 66px; height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.07));
  border: 1px solid rgba(245,158,11,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #f59e0b;
  box-shadow: 0 0 28px rgba(245,158,11,0.18);
}
.rss-flow-arrow { color: rgba(255,255,255,0.18); font-size: 13px; }
.rss-flow-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rss-flow-step i { color: #a78bfa; }
.rss-flow-wp { border-color: rgba(33,117,155,0.4); }
.rss-flow-wp i { color: #21759b; }

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison {
  padding: 50px 0;
  background: var(--bg);
}
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}
.comparison-table th {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}
.comparison-table th:first-child { text-align: left; border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table .highlight-col {
  background: linear-gradient(180deg, #046bd2 0%, #045cb4 100%);
  color: var(--white);
}
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  text-align: center;
  color: var(--text-muted);
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-2); }
.comparison-table .highlight-col {
  background: rgba(4,107,210,.06);
  color: var(--text);
  font-weight: 600;
}
.green { color: var(--green) !important; }
.red { color: var(--red) !important; }
.orange { color: var(--orange) !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
}
.testi-marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 8%, #fff 92%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 8%, #fff 92%, transparent);
}
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiScroll 40s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 340px;
  flex-shrink: 0;
}
.testi-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--text-light); }

/* ============================================================
   PRICING TEASER
   ============================================================ */
/* ============================================================
   PRICING TEASER
   ============================================================ */
.pricing-teaser {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #080e1c 0%, #0c1526 60%, #080e1c 100%);
  position: relative;
  overflow: hidden;
}
.pt-glow {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(4,107,210,0.1) 0%, rgba(124,58,237,0.07) 50%, transparent 72%);
  pointer-events: none;
}
.pt-badge {
  background: rgba(4,107,210,0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(4,107,210,0.3) !important;
}
.pt-badge i { margin-right: 5px; }
.pt-title { color: #f1f5f9; }
.pt-desc  { color: #94a3b8 !important; }

/* ---- Pack Grid ---- */
.pack-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}

/* Base Card */
.pack-home-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.pack-home-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


/* Card Header */
.pkh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pkh-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #94a3b8;
}

/* Tags */
.pkh-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pkh-tag-free {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}
.pkh-tag-save {
  background: rgba(4,107,210,0.15);
  color: #60a5fa;
  border: 1px solid rgba(4,107,210,0.3);
}

/* Price */
.pkh-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1;
  margin-bottom: 6px;
}
.pkh-price sup {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  vertical-align: super;
  margin-right: 2px;
}

.pkh-rate {
  font-size: 12px;
  color: #475569;
  margin: 0 0 20px;
}

/* Separator */
.pkh-sep {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 18px;
  margin-top: auto;
}

/* Button */
.pkh-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  font-family: var(--font-heading);
  transition: background .18s, color .18s;
}
.pkh-btn:hover { background: rgba(255,255,255,0.13); color: white; }
.pkh-btn i { font-size: 11px; }


/* Footer strip */
.pt-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #475569;
}
.pt-footer i { color: #22c55e; margin-right: 5px; }
.pt-link {
  color: #60a5fa;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.pt-link:hover { color: #93c5fd; }
.pt-link i { font-size: 11px; }

.hidden { display: none !important; }

/* ============================================================
   TUTORIAL
   ============================================================ */
.tutorial-section {
  padding: 80px 0;
  background: #f8fafc;
}
.tut-badge { background: rgba(4,107,210,.1); color: var(--primary); }
.tutorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tut-title { margin: 14px 0 16px; }
.tut-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.tut-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tut-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.tut-list li i { color: var(--primary); font-size: 16px; }
.tut-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  aspect-ratio: 16/9;
}
.tut-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.tut-video-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.tut-video-caption i { color: var(--primary); }

/* ============================================================
   SUPPORT
   ============================================================ */
.support-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #080e1c 0%, #0c1526 60%, #080e1c 100%);
  position: relative;
  overflow: hidden;
}
.support-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.sup-badge { background: rgba(124,58,237,.15); color: #a78bfa; border: 1px solid rgba(124,58,237,.3); }
.support-section .section-title { color: #f1f5f9; }
.support-section .section-desc { color: rgba(255,255,255,.5); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Card */
.sup-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  cursor: default;
}
/* animated gradient glow on hover */
.sup-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.sup-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: #0d1629;
  z-index: 1;
}
.sup-card > * { position: relative; z-index: 2; }
.sup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(4,107,210,.2);
  border-color: transparent;
}
.sup-card:hover::before { opacity: 1; }

/* Icon */
.sup-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  color: #fff;
  position: relative;
  transition: transform .3s ease;
}
.sup-card:hover .sup-icon { transform: scale(1.12) rotate(-4deg); }

/* Per-card icon colors */
.sup-card:nth-child(1) .sup-icon { background: linear-gradient(135deg, #046bd2, #0ea5e9); box-shadow: 0 8px 24px rgba(4,107,210,.35); }
.sup-card:nth-child(2) .sup-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 8px 24px rgba(124,58,237,.35); }
.sup-card:nth-child(3) .sup-icon { background: linear-gradient(135deg, #dc2626, #f97316); box-shadow: 0 8px 24px rgba(220,38,38,.35); }
.sup-card:nth-child(4) .sup-icon { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 8px 24px rgba(22,163,74,.35); }
.sup-card:nth-child(5) .sup-icon { background: linear-gradient(135deg, #ea580c, #f59e0b); box-shadow: 0 8px 24px rgba(234,88,12,.35); }

.sup-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #f1f5f9; }
.sup-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 22px; }

.sup-link {
  font-size: 13px;
  font-weight: 700;
  color: #60a5fa;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .3px;
  transition: gap .2s, color .2s;
}
.sup-link i { font-size: 11px; transition: transform .2s; }
.sup-link:hover { color: #fff; gap: 10px; }
.sup-link:hover i { transform: translateX(3px); }

/* Floating dots decoration */
.sup-card .sup-dot {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  pointer-events: none;
}
.sup-card .sup-dot1 { width: 80px; height: 80px; background: var(--gradient); top: -20px; right: -20px; }
.sup-card .sup-dot2 { width: 50px; height: 50px; background: var(--gradient); bottom: -10px; left: -10px; }


/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  padding: 90px 0;
  background: #f8fafc;
}
.blog-badge { background: rgba(4,107,210,.08); color: var(--primary); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8edf5;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(4,107,210,.12);
}

/* Thumbnail */
.blog-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.blog-thumb-1 { background: linear-gradient(135deg, rgba(4,107,210,.72) 0%, rgba(14,165,233,.72) 100%), url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=800&q=80&fit=crop') center/cover no-repeat; }
.blog-thumb-2 { background: linear-gradient(135deg, rgba(124,58,237,.72) 0%, rgba(219,39,119,.72) 100%), url('https://images.unsplash.com/photo-1432888498266-38ffec3eaf0a?w=800&q=80&fit=crop') center/cover no-repeat; }
.blog-thumb-3 { background: linear-gradient(135deg, rgba(5,150,105,.72) 0%, rgba(16,185,129,.72) 100%), url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=800&q=80&fit=crop') center/cover no-repeat; }

/* Subtle pattern overlay */
.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25) 0%, transparent 60%);
}
.blog-thumb > * { position: relative; z-index: 1; }

.blog-cat {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.3);
  text-transform: uppercase;
}
.blog-featured-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: #f59e0b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Body */
.blog-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta i { color: var(--primary); font-size: 11px; }
.blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
  margin-top: auto;
}
.blog-link i { font-size: 11px; transition: transform .2s; }
.blog-link:hover { gap: 10px; }
.blog-link:hover i { transform: translateX(3px); }

/* Featured card accent */
.blog-card-featured { border-color: rgba(124,58,237,.2); }
.blog-card-featured .blog-title { color: #5b21b6; }
.blog-card-featured:hover .blog-title { color: #7c3aed; }
.blog-card-featured .blog-link { color: #7c3aed; }

.blog-footer {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 50px 0;
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,107,210,.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform .3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-section {
  padding: 80px 0;
  background: var(--dark);
}
.download-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(4,107,210,.12), rgba(124,58,237,.12));
  border: 1px solid rgba(4,107,210,.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.download-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,.15), transparent 70%);
  pointer-events: none;
}
.download-icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--dark);
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
}
.download-content { flex: 1; }
.download-content h2 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.download-content p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.download-content strong { color: rgba(255,255,255,.9); }
.download-meta {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
}
.download-meta li {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.7); font-size: 14px;
}
.download-meta li i { color: #10b981; font-size: 13px; }
.download-action {
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
.download-action .btn { width: 100%; justify-content: center; min-width: 220px; }
.download-note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 5px;
  margin-top: 4px;
}
.download-note i { color: #10b981; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 80px 0;
  background: var(--bg);
}
.cta-box {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob1, .cta-blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  pointer-events: none;
}
.cta-blob1 {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -150px; left: -100px;
}
.cta-blob2 {
  width: 350px; height: 350px;
  background: var(--secondary);
  bottom: -100px; right: -50px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-note {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: 15px;
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.visible { opacity: 1; }

/* ============================================================
   RESPONSIVE — MOBILE FRIENDLY
   ============================================================ */

/* ── Tablet Landscape (≤1100px) ── */
@media (max-width: 1100px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { min-height: auto; padding: 60px 0 35px; }
  .hero-desc { max-width: 100%; }
  .float-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Tablet Portrait (≤900px) ── */
@media (max-width: 900px) {
  /* sections spacing */
  .features, .how-it-works, .sources, .comparison,
  .testimonials, .pricing-teaser, .faq, .final-cta { padding: 70px 0; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pack-grid-home { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tutorial-inner { grid-template-columns: 1fr; gap: 36px; }
  .support-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .steps-wrapper { flex-direction: column; align-items: stretch; gap: 12px; }
  .step-arrow { transform: rotate(90deg); text-align: center; }

  .rss-showcase { grid-template-columns: 1fr; }
  .rss-flow { flex-direction: row; padding: 8px 0; }
  .rss-flow-arrow { transform: rotate(-90deg); }

  /* comparison table scroll */
  .comparison-table-wrap { overflow-x: auto; }
}

/* ── Mobile Landscape / Large Phone (≤768px) ── */
@media (max-width: 768px) {
  /* HEADER */
  .nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .header-inner { flex-wrap: nowrap; }

  /* Nav opens as full-width panel below header (position: absolute relative to .header) */
  .nav.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: calc(100vh - 52px);
    background: #0a1122;
    padding: 28px 24px 40px;
    z-index: 999;
    overflow-y: auto;
    border-top: 2px solid rgba(4,107,210,.4);
    box-shadow: 0 20px 40px rgba(0,0,0,.7);
  }
  .nav.open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-bottom: 28px;
    flex: 0 0 auto;
  }
  .nav.open .nav-link {
    font-size: 17px;
    padding: 13px 16px;
    border-radius: 10px;
    display: block;
    color: rgba(255,255,255,.8);
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav.open .nav-link:hover,
  .nav.open .nav-link.active {
    background: rgba(255,255,255,.08);
    color: var(--white);
  }
  /* CTA buttons inside open nav */
  .nav.open .header-cta {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex: 0 0 auto;
  }
  .nav.open .header-cta .btn,
  .nav.open .header-cta .btn-support {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    padding: 13px 12px !important;
    font-size: 14px !important;
    border-radius: 10px;
  }
  .nav.open .header-cta .btn-primary {
    flex: 1 1 100%;
  }

  /* HERO */
  .hero { padding: 65px 0 30px; }
  .hero-title { font-size: 32px; line-height: 1.2; }
  .hero-desc { font-size: 15px; }
  .hero-badge { font-size: 12px; }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 15px; }

  /* hero stats */
  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
  }
  .stat-divider { display: none; }
  .stat { padding: 0 8px; }
  .stat:first-child { padding-left: 0; }
  .stat-num { font-size: 17px; }
  .stat-label { font-size: 10px; }

  /* dashboard card — simplified on mobile */
  .dashboard-card { border-radius: var(--radius); overflow: hidden; }
  .dash-sidebar { display: none; }
  .dash-content { padding: 12px; }
  .dash-stat-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ds-num { font-size: 15px; }

  /* DOWNLOAD */
  .download-section { padding: 56px 0; }
  .download-box { flex-direction: column; padding: 32px 20px; gap: 24px; text-align: center; }
  .download-meta { justify-content: center; }
  .download-action .btn { min-width: unset; width: 100%; }

  /* SECTIONS */
  .features, .how-it-works, .sources, .comparison,
  .testimonials, .pricing-teaser, .faq, .final-cta { padding: 28px 0; }
  .section-header { margin-bottom: 20px; }
  .section-desc { font-size: 15px; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 24px 20px; }
  .fc-number { top: 14px; right: 14px; }
  .fc-arrow { display: none; }

  /* HOW IT WORKS */
  .step { padding: 28px 22px; }
  .step-number { font-size: 42px; }


  /* COMPARISON TABLE */
  .comparison-table-wrap { border-radius: var(--radius); }
  .comparison-table th,
  .comparison-table td { padding: 12px 14px; font-size: 13px; }

  /* PRICING */
  .pack-grid-home { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .support-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }

  /* FAQ */
  .faq-list { gap: 8px; }
  .faq-question { padding: 16px 20px; font-size: 14px; }
  .faq-answer p { padding: 0 20px 18px; font-size: 14px; }

  /* CTA */
  .cta-box { padding: 48px 20px; border-radius: var(--radius-lg); }
  .cta-box h2 { font-size: 26px; }
  .cta-box p { font-size: 15px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-brand p { max-width: 100%; }

  /* SOURCES */
  .rss-flow { flex-direction: column; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 24px; }
  .section-badge { font-size: 11px; padding: 5px 12px; }

  .hero { padding: 60px 0 28px; }
  .hero-title { font-size: 28px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 22px; }

  .btn-lg { padding: 13px 22px; font-size: 14px; }

  /* pricing pack cards */
  .pack-grid-home { grid-template-columns: repeat(2, 1fr); }

  /* steps */
  .step { padding: 22px 16px; }

  /* features */
  .feature-card { padding: 22px 16px; }
  .feature-icon { width: 46px; height: 46px; font-size: 20px; }

  /* cta */
  .cta-box { padding: 36px 16px; }

  /* footer */
  .footer-grid { gap: 24px; }
  .social-links { gap: 8px; }

  /* comparison */
  .comparison-table th,
  .comparison-table td { padding: 10px 10px; font-size: 12px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(4,107,210,.2);
  color: var(--primary-dark);
}

/* ============================================================
   INNER PAGES (Privacy, Terms, Refund, About, Docs)
   ============================================================ */

/* Page Hero Banner */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(4,107,210,.25) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4,107,210,.15);
  border: 1px solid rgba(4,107,210,.3);
  color: #7ab8f5;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 580px;
  margin: 0 auto 20px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-top: 24px;
}
.page-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.page-breadcrumb a:hover { color: #7ab8f5; }
.page-breadcrumb i { font-size: 10px; }

/* Inner Content Area */
.inner-content {
  padding: 80px 0;
  background: #fff;
}
.inner-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sticky Sidebar TOC */
.inner-sidebar {
  position: sticky;
  top: 90px;
}
.inner-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.inner-toc h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #94a3b8;
  margin-bottom: 16px;
}
.inner-toc ul { list-style: none; padding: 0; margin: 0; }
.inner-toc ul li { margin-bottom: 4px; }
.inner-toc ul li a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  transition: all .2s;
  font-weight: 500;
}
.inner-toc ul li a:hover,
.inner-toc ul li a.active {
  background: rgba(4,107,210,.08);
  color: var(--primary);
}
.inner-toc ul li a i { margin-right: 8px; font-size: 12px; width: 14px; }

/* Prose Content */
.inner-prose { max-width: 760px; }
.inner-prose .last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 36px;
}
.inner-prose section { margin-bottom: 48px; scroll-margin-top: 100px; }
.inner-prose h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inner-prose h2 i { color: var(--primary); font-size: 1.1rem; }
.inner-prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 24px 0 10px;
}
.inner-prose p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
}
.inner-prose ul, .inner-prose ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.inner-prose ul li, .inner-prose ol li {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 6px;
}
.inner-prose a { color: var(--primary); font-weight: 500; }
.inner-prose a:hover { text-decoration: underline; }
.inner-prose strong { color: #1e293b; font-weight: 700; }
.inner-prose .highlight-box {
  background: rgba(4,107,210,.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.inner-prose .highlight-box p { margin: 0; color: #334155; }
.inner-prose .contact-box {
  background: linear-gradient(135deg, rgba(4,107,210,.07), rgba(124,58,237,.07));
  border: 1px solid rgba(4,107,210,.15);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  margin-top: 20px;
}
.inner-prose .contact-box p { margin-bottom: 14px; }
.inner-prose .contact-box a.btn { margin: 0 auto; display: inline-flex; }

/* About Page Specific */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.about-stat-card {
  background: linear-gradient(135deg, rgba(4,107,210,.07), rgba(124,58,237,.07));
  border: 1px solid rgba(4,107,210,.12);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.about-stat-card .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.about-stat-card .stat-label { font-size: 13px; color: #64748b; font-weight: 500; margin-top: 4px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.about-value-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.about-value-card i { color: var(--primary); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.about-value-card h4 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.about-value-card p { font-size: 13.5px; color: #64748b; margin: 0; line-height: 1.6; }

/* Docs Specific */
.doc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.doc-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}
.doc-card:hover {
  border-color: var(--primary);
  background: rgba(4,107,210,.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,107,210,.1);
}
.doc-card i { color: var(--primary); font-size: 1.4rem; margin-bottom: 10px; display: block; }
.doc-card h4 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.doc-card p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.5; }
.doc-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 18px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.doc-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-step-body h4 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.doc-step-body p { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }
.doc-code {
  background: #0f172a;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 14px 0;
  overflow-x: auto;
}
.doc-code code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #7dd3fc;
  white-space: pre;
}

/* Responsive Inner Pages */
@media (max-width: 900px) {
  .inner-layout { grid-template-columns: 1fr; }
  .inner-sidebar { position: static; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-values { grid-template-columns: 1fr 1fr; }
  .doc-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 80px 0 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .doc-cards { grid-template-columns: 1fr; }
}
