:root {
  --bg: #F9F5F0;
  --fg: #1E1E1E;
  --muted: #6B6560;
  --accent: #E8624A;
  --accent-hover: #D4533A;
  --green: #6B9E7A;
  --surface: #FFFFFF;
  --border: #E8E2D9;
  --radius: 12px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(249, 245, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display);
  font-weight: 800; font-size: 13px;
}
.nav-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta-btn {
  background: var(--accent) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta-btn:hover { background: var(--accent-hover) !important; color: white !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 460px; margin-bottom: 40px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 40px; }
.btn-primary {
  display: inline-block; padding: 14px 28px;
  background: var(--accent); color: white;
  border-radius: 50px; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: 14px 20px;
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--fg); }
.btn-large { font-size: 17px; padding: 18px 36px; }
.hero-trust { display: flex; gap: 20px; align-items: center; }
.trust-item { font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  padding: 10px 0;
}
.vc-dashboard { grid-column: 1 / 2; grid-row: 1 / 3; }
.vc-clients { grid-column: 2 / 3; grid-row: 1 / 2; }
.vc-content { grid-column: 2 / 3; grid-row: 2 / 3; }
.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 2px 16px rgba(30,30,30,0.06);
}
.vc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.vc-dots { display: flex; gap: 6px; }
.vc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border);
}
.vc-dots span:nth-child(1) { background: #FF6B6B; }
.vc-dots span:nth-child(2) { background: #FFD93D; }
.vc-dots span:nth-child(3) { background: #6BCB77; }
.vc-title { font-size: 12px; font-weight: 600; color: var(--muted); font-family: var(--font-display); }
.vc-metric { padding: 10px 0; border-bottom: 1px solid var(--border); }
.vc-metric:last-of-type { border-bottom: none; }
.vm-label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.vm-value { display: block; font-size: 22px; font-weight: 700; font-family: var(--font-display); }
.vm-delta { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 20px; font-weight: 500; margin-top: 3px; }
.vm-delta.up { background: #E8F5EC; color: #3A7D44; }
.vc-bars { margin-top: 14px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.bar-label { font-size: 11px; color: var(--muted); width: 24px; font-weight: 500; }
.bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.vc-client-list { display: flex; flex-direction: column; gap: 10px; }
.client-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; background: var(--bg); }
.client-item.ci-active { border-left: 3px solid var(--green); }
.ci-avatar {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 700; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-info { flex: 1; min-width: 0; }
.ci-name { display: block; font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-plan { display: block; font-size: 10px; color: var(--muted); }
.ci-status { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.cs-ok { background: #E8F5EC; color: #3A7D44; }
.cs-pending { background: #FFF3E0; color: #C05C00; }
.vc-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cg-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px; border-radius: 8px; background: var(--bg);
  text-align: center;
}
.cg-icon { font-size: 12px; font-weight: 700; font-family: var(--font-display); margin-bottom: 4px; }
.cg-fb .cg-icon { color: #1877F2; }
.cg-ig .cg-icon { color: #E040FB; }
.cg-review .cg-icon { color: var(--accent); }
.cg-count { font-size: 18px; font-weight: 700; font-family: var(--font-display); color: var(--fg); }
.cg-label { font-size: 9px; color: var(--muted); margin-top: 2px; font-weight: 500; }

/* STATS */
.stats {
  background: var(--fg);
  color: white;
  padding: 60px;
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item { flex: 1; text-align: center; padding: 0 40px; }
.stat-number { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* WHAT */
.what { padding: 100px 60px; max-width: 1400px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; line-height: 1.65; margin-bottom: 64px; }
.what-header { margin-bottom: 64px; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.what-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.what-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(30,30,30,0.08); }
.wc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.what-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.what-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* HOW */
.how { padding: 100px 60px; background: var(--fg); color: white; }
.how-header { max-width: 1400px; margin: 0 auto 64px; }
.how .section-label { color: var(--accent); }
.how .section-title { color: white; }
.how-steps { max-width: 1400px; margin: 0 auto; display: flex; gap: 0; }
.step { flex: 1; padding: 0 40px 0 0; }
.step-num { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 20px; }
.step-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: white; }
.step-content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.step-connector { width: 60px; flex-shrink: 0; position: relative; }
.step-connector::after {
  content: '';
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(232,98,74,0.2));
}
.step-visual { margin-top: 28px; }
.sv-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px;
}
.svf-row { display: flex; gap: 12px; margin-bottom: 10px; }
.svf-field { flex: 1; }
.svf-field.wide { flex: 2; }
.svff-label { display: block; font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.svff-input { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 8px 10px; font-size: 12px; color: rgba(255,255,255,0.8); }
.svfi-accent { border-left: 3px solid var(--accent); color: var(--accent); }
.svf-status { display: flex; align-items: center; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.svfs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.svf-status span { font-size: 11px; color: var(--green); font-weight: 500; }
.sv-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.5); }
.svc-status { background: rgba(232,98,74,0.2); color: var(--accent); font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.svc-post { padding: 16px 18px; }
.svcp-platform { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.svcpp-dot { width: 6px; height: 6px; border-radius: 50%; background: #1877F2; }
.svcp-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; font-style: italic; margin-bottom: 10px; }
.svcp-tags { font-size: 10px; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.svcp-actions { display: flex; gap: 10px; }
.svcpa { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; cursor: pointer; }
.svcpa.approve { background: var(--green); color: white; }
.svcpa.edit { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.sv-portal {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px;
}
.svp-header { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 14px; }
.svph-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: white; font-size: 12px; font-weight: 700; font-family: var(--font-display); display: flex; align-items: center; justify-content: center; }
.svph-name { display: block; font-size: 14px; font-weight: 600; }
.svph-sub { display: block; font-size: 11px; color: rgba(255,255,255,0.4); }
.svp-stats { display: flex; gap: 0; margin-bottom: 14px; }
.svps-item { flex: 1; text-align: center; padding: 10px 0; }
.svps-item + .svps-item { border-left: 1px solid rgba(255,255,255,0.08); }
.svpsi-val { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; }
.svpsi-label { display: block; font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.svpsi-delta { display: block; font-size: 10px; color: var(--green); font-weight: 500; }
.svp-note { background: rgba(232,98,74,0.1); border: 1px solid rgba(232,98,74,0.2); border-radius: 8px; padding: 12px 14px; }
.svp-note span { font-style: italic; font-size: 12px; color: rgba(255,255,255,0.6); }

/* PRICING */
.pricing { padding: 100px 60px; max-width: 1400px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-sub { margin: 0 auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(30,30,30,0.08); }
.pc-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; font-weight: 600; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pc-tier { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pc-price { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--fg); line-height: 1; margin-bottom: 8px; }
.pc-per { font-size: 20px; font-weight: 600; color: var(--muted); }
.pc-tagline { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.pc-features { list-style: none; margin-bottom: 32px; }
.pc-features li { font-size: 14px; color: var(--fg); padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.check { color: var(--green); font-weight: 700; }
.pc-cta {
  display: block; text-align: center;
  padding: 14px; border-radius: 50px;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.pc-cta:hover { background: var(--fg); color: white; border-color: var(--fg); }
.pc-cta-accent { background: var(--accent); color: white; border-color: var(--accent); }
.pc-cta-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.pricing-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 32px; }

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.closing-headline { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px; }
.closing-sub { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 40px; }
.btn-large { background: white; color: var(--accent); font-size: 17px; padding: 18px 40px; }
.btn-large:hover { background: var(--bg); transform: translateY(-2px); }
.closing-fine { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 16px; }
.closing-deco { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); }
.deco-ring { border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); position: absolute; }
.dr-1 { width: 400px; height: 400px; right: -200px; top: 50%; transform: translateY(-50%); }
.dr-2 { width: 300px; height: 300px; right: -150px; top: 50%; transform: translateY(-50%); }
.dr-3 { width: 200px; height: 200px; right: -100px; top: 50%; transform: translateY(-50%); }

/* FOOTER */
.footer {
  background: var(--fg); color: white;
  padding: 56px 60px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 0; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-brand-col .social-links { display: flex; gap: 12px; }
.social-link { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: background 0.2s, color 0.2s; }
.social-link:hover { background: rgba(255,255,255,0.2); color: white; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col li a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer { padding: 40px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .step-connector { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero { padding: 80px 24px 60px; }
  .what-grid { grid-template-columns: 1fr; }
  .what, .pricing, .closing { padding: 60px 24px; }
  .how { padding: 60px 24px; }
  .stats { padding: 40px 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 40px; height: 1px; }
  .footer { padding: 40px 24px; }
  .step { padding: 0; }
  .step-visual { display: none; }
  .step-num { font-size: 40px; }
}