/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --red: #ef4444;
  --orange: #f97316;
  --green: #10b981;
  --purple: #8b5cf6;
  --yellow: #f59e0b;
  --ink: #0f172a;
  --ink2: #1e293b;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#heroTyper {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-cursor {
  display: inline-block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
  color: #8b5cf6;
  -webkit-text-fill-color: #8b5cf6;
  animation: cursorBlink 0.75s step-end infinite;
  margin-left: 1px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero-section {
  min-height: calc(100vh - 64px);
  background: linear-gradient(160deg, #fafbff 0%, #f0f4ff 40%, #fdf2f8 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25; pointer-events: none;
}
.hero-blob-1 { width: 500px; height: 500px; background: #c7d7fd; top: -100px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: #fecdd3; bottom: -80px; left: -80px; }
.hero-blob-3 { width: 300px; height: 300px; background: #d1fae5; top: 50%; right: 20%; }
.hero-float-icon {
  position: absolute;
  width: 56px; height: 56px; border-radius: 14px;
  background: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; animation: floatY 4s ease-in-out infinite;
}
.fi-1 { top: 12%; left: 4%;  animation-delay: 0s; }
.fi-2 { top: 75%; left: 6%;  animation-delay: -1.3s; }
.fi-3 { top: 15%; right: 3%; animation-delay: -0.7s; }
.fi-4 { top: 65%; right: 4%; animation-delay: -2s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-announce {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.8); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 13px; font-weight: 500; color: var(--gray);
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-announce .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: var(--ink);
  margin-bottom: 8px;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ef4444 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 18px; font-weight: 400; color: var(--gray);
  max-width: 560px; margin: 20px auto 36px; line-height: 1.7;
}
.hero-sub strong { color: var(--red); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px; font-size: 16px; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(99,102,241,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.45); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 28px; border-radius: 100px; font-size: 16px; font-weight: 600;
  color: var(--ink); background: transparent; border: none; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.btn-hero-secondary:hover { color: var(--blue); }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.hero-stat strong {
  display: block; font-size: 2.4rem; font-weight: 800; letter-spacing: -1px;
}
.hero-stat:nth-child(1) strong { color: var(--blue); }
.hero-stat:nth-child(2) strong { color: var(--red); }
.hero-stat:nth-child(3) strong { color: var(--blue); }
.hero-stat span { font-size: 13px; color: var(--gray); font-weight: 500; }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
section { padding: 96px 0; }
.section-bg { background: var(--bg); }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: var(--gray);
  margin-bottom: 20px;
}
.section-tag .tag-icon { font-size: 14px; }
.section-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; color: var(--ink); }
.section-sub { font-size: 17px; color: var(--gray); font-weight: 400; line-height: 1.7; }
.text-center-block { text-align: center; margin-bottom: 60px; }
.text-center-block .section-sub { max-width: 540px; margin: 0 auto; }

/* ═══════════════════════════════════════
   CREATE ANYTHING (Content Types)
═══════════════════════════════════════ */
.content-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.ct-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 24px; position: relative; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.ct-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ct-card-blob {
  position: absolute; width: 80px; height: 80px; border-radius: 50%;
  top: -20px; right: -20px; opacity: 0.18;
}
.ct-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.ct-icon.blue { background: #eff6ff; color: var(--blue); }
.ct-icon.red  { background: #fef2f2; color: var(--red); }
.ct-icon.sky  { background: #f0f9ff; color: #0ea5e9; }
.ct-icon.pink { background: #fdf2f8; color: #ec4899; }
.ct-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.ct-card p  { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ═══════════════════════════════════════
   EDITOR SECTION
═══════════════════════════════════════ */
.editor-section { background: var(--white); }
.editor-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.editor-features { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.ef-item { display: flex; gap: 16px; align-items: flex-start; }
.ef-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ef-icon.blue { background: #eff6ff; }
.ef-icon.sky  { background: #f0f9ff; }
.ef-icon.red  { background: #fef2f2; }
.ef-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.ef-item p  { font-size: 14px; color: var(--gray); line-height: 1.65; }
.editor-mockup {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.em-topbar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.em-dots { display: flex; gap: 6px; }
.em-dot { width: 12px; height: 12px; border-radius: 50%; }
.em-dot.red { background: #ef4444; }
.em-dot.yellow { background: #f59e0b; }
.em-dot.green { background: #10b981; }
.em-tabs { font-size: 12px; color: var(--gray-light); font-weight: 500; }
.em-toolbar {
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  display: flex; gap: 6px; flex-wrap: wrap;
}
.em-btn {
  padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 700;
  border: 1px solid var(--border); background: var(--white); cursor: default; color: var(--ink);
}
.em-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.em-body { padding: 24px; }
.em-title { font-size: 22px; font-weight: 700; color: #cbd5e1; margin-bottom: 6px; }
.em-subtitle { font-size: 14px; color: #e2e8f0; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.em-text { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.em-quote {
  font-size: 13px; color: var(--gray-light); font-style: italic;
  padding: 14px 18px; background: var(--bg); border-radius: 10px;
  border-left: 3px solid var(--border);
}

/* ═══════════════════════════════════════
   WRITING ASSISTANT
═══════════════════════════════════════ */
.wa-section { background: var(--bg); }
.wa-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wa-tag { background: #fff0f0; color: var(--red); border-color: #fecaca; }
.wa-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.wa-feat { display: flex; gap: 14px; align-items: flex-start; }
.wa-feat-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: var(--white); border: 1px solid var(--border);
}
.wa-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.wa-feat p  { font-size: 13px; color: var(--gray); line-height: 1.6; }
.wa-lock-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 28px;
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 100px;
  padding: 7px 16px; font-size: 13px; font-weight: 500; color: #92400e;
}
.wa-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.05);
  border: 1px solid var(--border);
}
.wa-card-header {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.wa-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.wa-card-title { font-size: 16px; font-weight: 700; color: var(--ink); }
.wa-card-sub { font-size: 12px; color: var(--gray); }
.wa-score-box {
  margin: 16px; padding: 16px; border-radius: 14px;
  background: #fff5f5; border: 1px solid #fecaca;
}
.wa-score-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.wa-score-emoji { font-size: 36px; }
.wa-score-num { font-size: 36px; font-weight: 800; color: var(--red); line-height: 1; }
.wa-score-num span { font-size: 16px; font-weight: 400; color: var(--gray); }
.wa-score-label { font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 8px; }
.wa-progress { height: 6px; background: #fecaca; border-radius: 100px; overflow: hidden; }
.wa-progress-fill { height: 100%; background: var(--red); border-radius: 100px; width: 32%; }
.wa-tip {
  margin: 0 16px 16px; padding: 12px 14px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 13px; color: var(--ink); display: flex; gap: 8px; align-items: flex-start;
}
.wa-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); }
.wa-metric-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.wa-metric { padding: 14px 16px; background: var(--white); }
.wa-metric-label { font-size: 10px; font-weight: 700; letter-spacing: .5px; color: var(--gray-light); text-transform: uppercase; margin-bottom: 4px; display: flex; justify-content: space-between; }
.wa-metric-label span { font-size: 14px; }
.wa-metric-val { font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.wa-metric-val.green  { color: var(--green); }
.wa-metric-val.red    { color: var(--red); }
.wa-metric-val.orange { color: var(--orange); }
.wa-metric-hint { font-size: 11px; }
.wa-metric-hint.green  { color: var(--green); }
.wa-metric-hint.red    { color: var(--red); }
.wa-metric-hint.orange { color: var(--orange); }
.wa-divider { height: 1px; background: var(--border); margin: 0 16px; }

/* ═══════════════════════════════════════
   ANALYTICS
═══════════════════════════════════════ */
.analytics-section { background: var(--white); }
.analytics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.analytics-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.an-feat { display: flex; gap: 14px; align-items: flex-start; }
.an-feat-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: var(--bg); border: 1px solid var(--border);
}
.an-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.an-feat p  { font-size: 13px; color: var(--gray); line-height: 1.6; }
.an-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.05);
  border: 1px solid var(--border); overflow: hidden;
}
.an-card-head { padding: 20px 24px 0; }
.an-card-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.an-card-sub { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.an-stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding: 0 24px 16px; }
.an-stat-box {
  border-radius: 14px; padding: 16px 14px; color: #fff; position: relative; overflow: hidden;
}
.an-stat-box.purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.an-stat-box.blue   { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.an-stat-box.green  { background: linear-gradient(135deg, #10b981, #34d399); }
.an-stat-label { font-size: 9px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; opacity: .75; margin-bottom: 6px; }
.an-stat-num { font-size: 26px; font-weight: 800; }
.an-stat-icon { position: absolute; right: 10px; bottom: 10px; font-size: 28px; opacity: .2; }
.an-table { width: 100%; border-collapse: collapse; }
.an-table thead tr { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.an-table th { padding: 10px 24px; font-size: 11px; font-weight: 600; color: var(--gray-light); text-transform: uppercase; letter-spacing: .4px; text-align: left; background: var(--bg); }
.an-table td { padding: 12px 24px; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--border); }
.an-rank { width: 26px; height: 26px; border-radius: 8px; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.an-rank.r1 { background: #fef9c3; color: #854d0e; }
.an-rank.r2 { background: #f1f5f9; color: var(--gray); }
.an-rank.r3 { background: #fef3c7; color: #92400e; }
.an-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.an-badge.top { background: #f0fdf4; color: var(--green); }
.an-badge.avg { background: var(--bg2); color: var(--gray); }

/* ═══════════════════════════════════════
   MONETIZE
═══════════════════════════════════════ */
.monetize-section { background: var(--bg); }
.monetize-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mon-tag { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.mon-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.mon-feat { display: flex; gap: 14px; align-items: flex-start; }
.mon-feat-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.mon-feat-icon.blue { background: #eff6ff; }
.mon-feat-icon.red  { background: #fef2f2; }
.mon-feat-icon.purp { background: #f5f3ff; }
.mon-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.mon-feat p  { font-size: 13px; color: var(--gray); line-height: 1.6; }
.earnings-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.05);
  border: 1px solid var(--border); padding: 24px;
}
.ec-total-label { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.ec-total-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.ec-total-num { font-size: 32px; font-weight: 800; color: var(--ink); }
.ec-growth-badge { width: 36px; height: 36px; background: #f0fdf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 16px; }
.ec-stream {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px; border-radius: 12px; background: var(--bg); margin-bottom: 12px;
  border: 1px solid var(--border);
}
.ec-stream-left { display: flex; align-items: center; gap: 12px; }
.ec-stream-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.ec-stream-icon.blue  { background: #eff6ff; }
.ec-stream-icon.red   { background: #fef2f2; }
.ec-stream-icon.purp  { background: #f5f3ff; }
.ec-stream-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.ec-stream-sub  { font-size: 12px; color: var(--gray); }
.ec-stream-amount { font-size: 15px; font-weight: 700; }
.ec-stream-amount.blue { color: var(--blue); }
.ec-stream-amount.red  { color: var(--red); }
.ec-stream-amount.purp { color: var(--purple); }
.ec-payout-row { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.ec-payout-label { font-size: 13px; color: var(--gray); }
.ec-payout-date  { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ═══════════════════════════════════════
   TRENDING (Articles)
═══════════════════════════════════════ */
.trending-section { background: var(--bg); }
.trending-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.trending-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.tf-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--border); background: var(--white); cursor: pointer;
  color: var(--gray); transition: all .15s;
}
.tf-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.tf-btn:hover:not(.active) { background: var(--bg2); }
.trending-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.trend-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.trend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trend-cover {
  height: 200px; position: relative;
  display: flex; align-items: flex-end; padding: 16px;
}
.trend-cover.blue   { background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%); }
.trend-cover.orange { background: linear-gradient(135deg, #f97316 0%, #ef4444 100%); }
.trend-cover.purple { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); }
.trend-category {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; color: var(--ink);
}
.trend-body { padding: 20px; }
.trend-author { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.trend-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--bg2); }
.trend-author-name { font-size: 13px; font-weight: 500; color: var(--gray); }
.trend-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.trend-desc { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.trend-meta { display: flex; align-items: center; justify-content: space-between; }
.trend-read { font-size: 13px; color: var(--gray-light); }
.trend-likes { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.explore-link { text-align: center; margin-top: 40px; }
.btn-explore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 16px; font-weight: 600; color: var(--blue);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  background: none; border: none;
}
.btn-explore:hover { color: var(--blue-dark); }

/* ═══════════════════════════════════════
   SOCIAL / FOLLOW
═══════════════════════════════════════ */
.social-section {
  background: var(--white); padding: 96px 0;
  position: relative; overflow: hidden;
}
.social-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #fafbff 0%, #f5f3ff 50%, #fff1f2 100%);
}
.social-inner { position: relative; z-index: 1; text-align: center; }
.social-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light); margin-bottom: 20px; }
.social-icons-float {
  position: absolute; inset: 0; pointer-events: none;
}
.sif {
  position: absolute;
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; animation: floatY 5s ease-in-out infinite;
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sif:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,.18) !important;
}
.sif-1  { top: 10%; left: 8%;  animation-delay: 0s; }
.sif-2  { top: 20%; left: 25%; animation-delay: -1.5s; }
.sif-3  { top: 5%;  left: 45%; animation-delay: -0.8s; }
.sif-4  { top: 10%; right: 20%; animation-delay: -2.2s; }
.sif-5  { top: 5%;  right: 5%;  animation-delay: -1s; }
.sif-6  { bottom: 10%; left: 5%;  animation-delay: -0.3s; }
.sif-7  { bottom: 20%; left: 20%; animation-delay: -1.8s; }
.sif-8  { bottom: 5%;  right: 15%; animation-delay: -0.6s; }
.sif-9  { bottom: 12%; right: 3%;  animation-delay: -2.5s; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 28px;
  font-size: 16px; font-weight: 600; color: var(--blue);
  text-decoration: underline; text-underline-offset: 3px;
}
.social-icons-float .sif {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-icons-float .sif:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.18) !important;
  transform: translateY(-4px) scale(1.08) !important;
}

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 700; color: var(--ink);
  text-align: left; transition: color .15s;
}
.faq-question:hover { color: var(--blue); }
.faq-question .faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--gray);
  transition: background .2s, transform .3s, color .2s;
}
.faq-item.open .faq-question .faq-icon {
  background: var(--blue); color: #fff; border-color: var(--blue);
  transform: rotate(45deg);
}
.faq-item.open .faq-question { color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--gray); line-height: 1.75; margin: 0; }
.faq-answer a { color: var(--blue); font-weight: 600; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-section { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 980px; margin: 0 auto; }
.price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: 32px 28px; position: relative; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.popular { background: var(--ink); color: #fff; border-color: var(--ink); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.price-emoji { font-size: 28px; margin-bottom: 8px; }
.price-name { font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; opacity: .5; margin-bottom: 4px; }
.price-num { font-size: 44px; font-weight: 900; letter-spacing: -2px; margin-bottom: 4px; }
.price-num sup { font-size: 20px; font-weight: 600; vertical-align: super; }
.price-num small { font-size: 16px; font-weight: 400; opacity: .5; }
.price-desc { font-size: 14px; opacity: .65; line-height: 1.6; margin-bottom: 24px; }
.price-divider { border: none; border-top: 1px solid; opacity: .12; margin: 20px 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.price-features li .ck { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.price-features li .cx { color: #94a3b8; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.price-features li.off { opacity: .4; text-decoration: line-through; }
.btn-price {
  width: 100%; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: transform .15s, opacity .15s;
}
.btn-price:hover { transform: translateY(-1px); opacity: .9; }
.btn-price.dark   { background: var(--ink); color: #fff; }
.btn-price.yellow { background: linear-gradient(135deg, #f59e0b, #f97316); color: #fff; }
.btn-price.light  { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-price-sub { display: block; width: 100%; padding: 10px; margin-top: 10px; border-radius: 12px; font-size: 13px; font-weight: 600; cursor: pointer; background: transparent; border: 1px solid; opacity: .4; transition: opacity .15s; }
.btn-price-sub:hover { opacity: .7; }
.price-card:not(.popular) .btn-price-sub { border-color: var(--ink); color: var(--ink); }
.price-card.popular .btn-price-sub { border-color: rgba(255,255,255,.3); color: #fff; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e293b 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-blob-1 { width: 400px; height: 400px; background: rgba(99,102,241,.2); top: -100px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; background: rgba(239,68,68,.15); bottom: -60px; right: -60px; }
.cta-inner { position: relative; z-index: 1; }
.cta-h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  padding: 15px 36px; border-radius: 100px; font-size: 16px; font-weight: 700;
  color: var(--ink); background: #fff; border: none; cursor: pointer;
  transition: transform .2s; box-shadow: 0 4px 20px rgba(255,255,255,.2);
}
.btn-cta-primary:hover { transform: translateY(-2px); }
.btn-cta-secondary {
  padding: 15px 32px; border-radius: 100px; font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); cursor: pointer; transition: background .15s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.15); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.gc-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .5px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  color: rgba(255,255,255,.6); transition: background .15s, color .15s;
}
.footer-social-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width: 991px){
  .editor-layout, .wa-layout, .analytics-layout, .monetize-layout { grid-template-columns: 1fr; gap: 48px; }
  .editor-right, .wa-left, .analytics-right, .monetize-right { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media(max-width: 767px){
  section { padding: 64px 0; }
  .hero-section { padding: 60px 0 40px; min-height: auto; }
  .hero-float-icon { display: none; }
  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .content-types-grid { grid-template-columns: 1fr 1fr; }
  .trending-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .sif { display: none; }
  .an-stats-row { grid-template-columns: 1fr; }
}
@media(max-width: 480px){
  .content-types-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media(max-width: 767px){
  .two-col-auto { grid-template-columns: 1fr !important; gap: 40px !important; }
  .four-col-auto { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width: 480px){
  .four-col-auto { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════
   Reveal animation
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }