/* =============================================
   SOCIA — Landing Page Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F4EE;
  --fg: #111111;
  --accent: #D4601A;
  --accent-light: #F0D9C0;
  --muted: #7A7060;
  --border: #E0D9CE;
  --surface: #EDE9E0;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--fg); letter-spacing: -0.02em; }
.navbar-tagline { font-size: 0.8rem; color: var(--muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* --- Hero --- */
.hero {
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* --- Dashboard Mockup --- */
.dashboard-mockup {
  background: #1C1B19;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-bar {
  background: #2A2927;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: #555; }
.mockup-title { margin-left: auto; font-size: 0.7rem; color: #888; font-family: var(--font-body); }
.mockup-body { display: grid; grid-template-columns: 130px 1fr; }
.mockup-sidebar { background: #222120; padding: 1rem 0.5rem; border-right: 1px solid rgba(255,255,255,0.05); }
.sidebar-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.72rem; color: #888; border-radius: 6px; cursor: pointer; }
.sidebar-item.active { background: rgba(212,96,26,0.15); color: var(--accent); }
.sidebar-item:hover { background: rgba(255,255,255,0.05); }
.mockup-content { padding: 1rem; display: grid; grid-template-rows: auto 1fr; gap: 1rem; }

/* Calendar */
.calendar-grid { background: #1E1D1C; border-radius: 8px; padding: 0.75rem; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.cal-nav { font-size: 0.7rem; color: #666; cursor: pointer; }
.cal-month { font-size: 0.7rem; color: #ccc; font-weight: 600; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 0.25rem; }
.cal-dow span { font-size: 0.55rem; color: #555; padding: 2px 0; }
.cal-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 2px; }
.cal-day { font-size: 0.6rem; color: #666; text-align: center; padding: 4px 0; border-radius: 4px; }
.cal-day.has-posts { background: rgba(212,96,26,0.25); color: var(--accent); }
.cal-day.has-post { background: rgba(212,96,26,0.12); color: #c97e4a; }

/* Recent posts */
.recent-posts { display: flex; flex-direction: column; gap: 0.5rem; }
.post-card { background: #1E1D1C; border-radius: 8px; padding: 0.6rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.post-platform { width: 20px; height: 20px; border-radius: 4px; }
.post-platform.instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.post-platform.linkedin { background: #0A66C2; }
.post-text { font-size: 0.62rem; color: #888; line-height: 1.4; margin-bottom: 0.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.post-meta { display: flex; align-items: center; gap: 0.5rem; }
.platform-tag { font-size: 0.5rem; font-weight: 700; padding: 1px 4px; border-radius: 3px; }
.platform-tag.ig { background: rgba(233,89,80,0.2); color: #E95950; }
.platform-tag.li { background: rgba(10,102,194,0.2); color: #4A9ED8; }
.post-time { font-size: 0.58rem; color: #555; }

.ai-suggest { background: rgba(212,96,26,0.08); border: 1px solid rgba(212,96,26,0.2); border-radius: 8px; padding: 0.6rem; }
.ai-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.6rem; color: var(--accent); font-weight: 600; margin-bottom: 0.4rem; }
.ai-caption { font-size: 0.6rem; color: #999; font-style: italic; line-height: 1.5; }

/* Hero stats */
.hero-stats {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--fg); }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* --- Shared section styles --- */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 640px;
}

/* --- Problem --- */
.problem { padding: 6rem 2rem; background: var(--fg); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem .section-headline { color: var(--bg); max-width: 680px; margin-bottom: 3rem; }
.problem .section-label { color: var(--accent-light); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.problem-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 2rem; }
.problem-icon { width: 48px; height: 48px; background: rgba(212,96,26,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; }
.problem-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--bg); margin-bottom: 0.75rem; }
.problem-card p { font-size: 0.9rem; color: #999; line-height: 1.65; }

/* --- How It Works --- */
.howitworks { padding: 6rem 2rem; }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-inner .section-headline { margin-bottom: 3.5rem; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.step { padding: 2rem; background: var(--surface); border-radius: 12px; }
.step-num { font-family: var(--font-display); font-size: 3rem; color: var(--accent-light); line-height: 1; margin-bottom: 1rem; }
.step-content h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--fg); margin-bottom: 0.75rem; }
.step-content p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }

/* Platform badges */
.platform-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.plat-badge { font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.03em; }
.plat-badge.ig { background: rgba(233,89,80,0.12); color: #C24538; }
.plat-badge.fb { background: rgba(66,103,178,0.12); color: #3B5998; }
.plat-badge.tt { background: rgba(0,0,0,0.15); color: var(--fg); }
.plat-badge.li { background: rgba(10,102,194,0.12); color: #0A66C2; }

/* Caption preview */
.caption-preview { background: #1C1B19; border-radius: 8px; padding: 0.75rem; }
.cp-platform { width: 20px; height: 20px; border-radius: 4px; margin-bottom: 0.5rem; }
.cp-platform.ig { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.cp-text { font-size: 0.72rem; color: #ccc; line-height: 1.5; margin-bottom: 0.5rem; font-style: italic; }
.cp-tags { font-size: 0.62rem; color: #888; }

/* Schedule preview */
.schedule-preview { background: #1C1B19; border-radius: 8px; padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sp-row { display: flex; align-items: center; gap: 0.75rem; }
.sp-time { font-size: 0.65rem; color: #666; min-width: 60px; }
.sp-bar { height: 22px; border-radius: 4px; font-size: 0.62rem; font-weight: 600; display: flex; align-items: center; padding: 0 0.5rem; }
.ig-bar { background: rgba(233,89,80,0.25); color: #E95950; }
.fb-bar { background: rgba(66,103,178,0.25); color: #6B8EC9; }
.tt-bar { background: rgba(255,255,255,0.12); color: #ccc; }
.li-bar { background: rgba(10,102,194,0.25); color: #4A9ED8; }

.step-connector { width: 1px; align-self: center; height: 60px; background: var(--border); margin: 0 1rem; }

/* --- Who It's For --- */
.whoisfor { padding: 6rem 2rem; background: var(--surface); }
.wuf-inner { max-width: 1200px; margin: 0 auto; }
.wuf-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.persona-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.persona { display: flex; gap: 1rem; align-items: flex-start; }
.persona-icon { width: 40px; height: 40px; background: var(--accent-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.persona strong { font-size: 0.95rem; font-weight: 700; color: var(--fg); display: block; margin-bottom: 0.25rem; }
.persona p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* Comparison block */
.comparison-block { background: var(--fg); border-radius: 16px; overflow: hidden; }
.comp-header { background: var(--accent); padding: 0.75rem 1.25rem; }
.comp-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; }
.comp-row { display: grid; grid-template-columns: 1fr auto auto; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.comp-row:last-child { border-bottom: none; }
.comp-feature { padding: 0.85rem 1.25rem; font-size: 0.82rem; color: #888; border-right: 1px solid rgba(255,255,255,0.06); }
.comp-agency, .comp-socia { padding: 0.85rem 1rem; font-size: 0.78rem; font-weight: 600; text-align: center; }
.comp-agency { color: #666; min-width: 120px; border-right: 1px solid rgba(255,255,255,0.06); text-decoration: line-through; }
.comp-socia { color: var(--accent-light); min-width: 120px; }

/* --- Why Now --- */
.whynow { padding: 6rem 2rem; }
.wn-inner { max-width: 900px; margin: 0 auto; }
.wn-headline { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.2; color: var(--fg); margin-bottom: 1.5rem; }
.wn-body { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.wn-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.wn-stat {}
.wn-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.wn-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* --- Closing --- */
.closing { padding: 6rem 2rem; background: var(--fg); text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; color: var(--bg); margin-bottom: 1.25rem; }
.closing-sub { font-size: 1rem; color: #999; line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; }
.closing-features { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
.closing-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #aaa; }
.closing-feature svg { color: var(--accent); flex-shrink: 0; }

/* --- Footer --- */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 1.25rem; color: var(--fg); }
.footer-tagline { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.footer-meta { font-size: 0.75rem; color: #aaa; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { order: -1; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .wuf-split { grid-template-columns: 1fr; gap: 3rem; }
  .wn-stats { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .mockup-body { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .comp-row { grid-template-columns: 1fr; }
  .comp-agency, .comp-socia { min-width: unset; }
}

@media (max-width: 600px) {
  .hero { padding-top: 6rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .closing-features { gap: 0.75rem; }
}
