/* === RESET & BASE === */
:root {
  --bg: #FEFBF7;
  --bg-alt: #F5EFE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6660;
  --accent: #0D6E6E;
  --accent-mid: #0A5656;
  --accent-light: #E8F4F4;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --green: #059669;
  --green-light: #D1FAE5;
  --red: #DC2626;
  --border: #E5DDD4;
  --shadow: rgba(26, 26, 26, 0.08);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* === HERO === */
.hero {
  padding: 80px 24px 100px;
  background: var(--bg);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.cta-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  font-style: italic;
}

.hero-trust {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 12px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* === DASHBOARD MOCK === */
.dashboard-mock {
  background: #1A2030;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(13, 110, 110, 0.18), 0 8px 24px rgba(0,0,0,0.2);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mock-topbar {
  background: #111827;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-logo {
  width: 24px;
  height: 24px;
  background: #0D6E6E;
  border-radius: 6px;
}

.mock-tabs {
  display: flex;
  gap: 4px;
}

.mock-tab {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.mock-tab.active {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.mock-avatar {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0D6E6E, #0A9E9E);
  border-radius: 50%;
  margin-left: auto;
}

.mock-body {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 260px;
}

.mock-sidebar {
  background: #0F1922;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.mock-nav-item {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-nav-item.active { background: rgba(13, 110, 110, 0.3); }

.mock-icon {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}

.mock-main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.mock-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mock-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.mock-subtitle {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.mock-add-btn {
  font-size: 10px;
  background: #0D6E6E;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-stat {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 12px;
}

.stat-val {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.stat-chip {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
  display: inline-block;
}

.stat-chip.green { background: rgba(5, 150, 105, 0.2); color: #34D399; }
.stat-chip.amber { background: rgba(217, 119, 6, 0.2); color: #FCD34D; }

.mock-alerts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

.mock-alert.success { background: rgba(5, 150, 105, 0.12); }

.alert-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #FCD34D;
  flex-shrink: 0;
}

.mock-alert.success .alert-icon { background: rgba(5, 150, 105, 0.3); color: #34D399; }

.mock-paybar {
  background: #111827;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 12px;
}

.paybar-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.paybar-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.paybar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0D6E6E, #0A9E9E);
  border-radius: 2px;
}

.paybar-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

/* === FEATURES === */
.features {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.features .section-headline,
.features .section-sub {
  max-width: 600px;
}

.features-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.feature-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px rgba(13, 110, 110, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* === PROOF === */
.proof {
  padding: 80px 24px;
  background: var(--bg);
}

.proof-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.proof-card {
  padding: 0;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}

.proof-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.proof-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.proof-stats {
  max-width: 1200px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.pstat-val {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.pstat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === DIFFERENTIATORS === */
.differentiators {
  padding: 80px 24px;
  background: var(--accent);
}

.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-text {
  color: white;
}

.diff-text .section-label { color: rgba(255,255,255,0.6); }

.diff-headline {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.diff-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.diff-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dpill {
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* === PHONE MOCK === */
.diff-visual {
  display: flex;
  justify-content: center;
}

.diff-phone {
  width: 240px;
  height: 460px;
  background: #1A2030;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.08);
}

.phone-screen {
  background: #0F1922;
  border-radius: 28px;
  height: 100%;
  padding: 20px 16px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0D6E6E, #0A9E9E);
}

.phone-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.phone-role {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.phone-welcome {
  font-size: 13px;
  font-weight: 600;
  color: #0D6E6E;
  margin-bottom: 16px;
}

.phone-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.phone-item.done { color: rgba(255,255,255,0.7); }

.phone-item.active {
  color: white;
  background: rgba(13, 110, 110, 0.3);
}

.phone-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.3);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* === CLOSING === */
.closing {
  padding: 100px 24px;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.closing-ring {
  border-radius: 50%;
  border: 1px solid rgba(13, 110, 110, 0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 { width: 600px; height: 600px; }
.ring2 { width: 800px; height: 800px; }
.ring3 { width: 1000px; height: 1000px; }

.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: white;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-logo .logo-mark {
  background: var(--accent);
}

.footer-logo .logo-text {
  color: white;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero { padding: 48px 24px 64px; }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .diff-visual {
    order: -1;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-legal p {
    text-align: left;
  }
  
  .mock-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links { display: none; }
}