/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; }
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  object-fit: contain;
}
.nav-logo-icon.small { width: 24px; height: 24px; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; color: #5f6368; }
.nav-links a:hover { color: #1a73e8; }
.nav-cta {
  background: #1a73e8; color: #fff !important; padding: 8px 18px;
  border-radius: 8px; font-weight: 600; font-size: 13px; transition: background 0.2s;
}
.nav-cta:hover { background: #1558b0; }
.nav-menu-btn { display: none; background: none; border: none; color: #5f6368; cursor: pointer; padding: 4px; }

/* ── Hero ── */
.hero {
  padding: 140px 24px 80px; text-align: center;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(26,115,232,0.08); color: #1a73e8;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 20px; }
.gradient-text {
  background: linear-gradient(135deg, #1a73e8 0%, #6c5ce7 50%, #e84393 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 18px; color: #5f6368; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: #9aa0a6; margin-top: 16px; }

/* ── Hero Visual (Mockup) ── */
.hero-visual {
  position: relative; z-index: 1;
  max-width: 820px; margin: 56px auto 0; perspective: 1200px;
}
.hero-mockup {
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 80px rgba(26,115,232,0.12), 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.08);
  transform: rotateX(2deg); transition: transform 0.4s ease;
  text-align: left;
}
.hero-mockup:hover { transform: rotateX(0deg); }
.mockup-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #f8f9fa; border-bottom: 1px solid #e8eaed;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: #dadce0; }
.mockup-dots span:first-child { background: #f28b82; }
.mockup-dots span:nth-child(2) { background: #fdd663; }
.mockup-dots span:last-child { background: #81c995; }
.mockup-url { font-size: 12px; color: #5f6368; background: #fff; padding: 4px 12px; border-radius: 6px; flex: 1; text-align: center; }
.mockup-body { display: flex; min-height: 260px; text-align: left; }
.mockup-email { flex: 1; padding: 20px; text-align: left; }
.mockup-email-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mockup-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: #1a73e8; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px;
}
.mockup-sender { font-weight: 600; font-size: 13px; }
.mockup-subject { font-size: 12px; color: #5f6368; }
.mockup-line { height: 10px; background: #f1f3f4; border-radius: 4px; margin-bottom: 10px; }
.w80 { width: 80%; } .w60 { width: 60%; } .w90 { width: 90%; } .w70 { width: 70%; } .w50 { width: 50%; }
/* ── Mockup: Sidebar (faithful to actual product UI) ── */
.mockup-sidebar {
  width: 280px; border-left: 1px solid #dadce0;
  background: #fff; flex-shrink: 0;
  font-family: 'Google Sans', Roboto, -apple-system, sans-serif;
  color: #202124; display: flex; flex-direction: column;
}
.ms-header {
  display: flex; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid #dadce0;
}
.ms-title { font-size: 13px; font-weight: 500; color: #202124; }
.ms-badge {
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px;
  background: linear-gradient(135deg, #1a73e8, #4285f4); color: #fff; margin-left: 7px;
}
.ms-refresh {
  margin-left: auto; color: #5f6368; font-size: 15px;
}
.ms-section { border-bottom: 1px solid #dadce0; }
.ms-section-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
}
.ms-section-label {
  font-size: 10px; font-weight: 500; color: #5f6368;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.ms-chev { font-size: 8px; color: #5f6368; }
.ms-section-body { padding: 0 14px 10px; }
.ms-text { font-size: 11px; line-height: 1.5; color: #202124; }
/* Flow timeline */
.ms-flow { display: flex; flex-direction: column; }
.ms-flow-node { display: flex; gap: 8px; padding: 2px 0; }
.ms-flow-ind {
  display: flex; flex-direction: column; align-items: center;
  width: 14px; flex-shrink: 0;
}
.ms-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1a73e8; flex-shrink: 0; margin-top: 3px;
}
.ms-line {
  width: 1.5px; flex: 1; background: #dadce0; margin: 2px 0; min-height: 6px;
}
.ms-flow-info { flex: 1; min-width: 0; }
.ms-flow-sender { font-size: 11px; font-weight: 500; color: #202124; }
.ms-flow-date { font-size: 9px; color: #5f6368; }
.ms-flow-sum { font-size: 10px; color: #202124; line-height: 1.3; margin-top: 1px; }
/* Action items */
.ms-action {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 11px; color: #202124; line-height: 1.3; margin-bottom: 5px;
}
.ms-action-num {
  width: 16px; height: 16px; border-radius: 3px;
  background: #e8f0fe; color: #1a73e8;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; flex-shrink: 0;
}
/* Footer */
.ms-footer {
  padding: 8px 14px; font-size: 9px; color: #9aa0a6;
  margin-top: auto;
}

/* ── Mockup: Email thread view ── */
.mockup-thread-subject {
  font-size: 14px; font-weight: 700; color: #202124;
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #e8eaed;
}
.mockup-msg-collapsed {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-bottom: 1px solid #f1f3f4;
}
.mockup-avatar-sm {
  width: 24px; height: 24px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 10px; flex-shrink: 0;
}
.mockup-msg-inline {
  display: flex; gap: 6px; align-items: center; min-width: 0;
}
.mockup-msg-name { font-weight: 600; font-size: 11px; white-space: nowrap; }
.mockup-msg-snippet { font-size: 11px; color: #5f6368; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-msg-count {
  font-size: 11px; font-weight: 400; color: #5f6368; margin-left: 4px;
}
.mockup-msg-open { margin-top: 10px; position: relative; text-align: left; }
.mockup-msg-open::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 48px; background: linear-gradient(transparent, #fff);
  pointer-events: none;
}
.mockup-email-text {
  font-size: 10px; line-height: 1.7; color: #3c4043;
  max-height: 130px; overflow: hidden;
  text-align: left;
  font-family: 'Google Sans', Roboto, -apple-system, 'Helvetica Neue', sans-serif;
  letter-spacing: 0.01em;
  word-break: break-all;
}


/* ── Mockup: Sidebar Tabs ── */
.ms-tabs {
  display: flex; align-items: center;
  padding: 0; border-bottom: 1px solid #dadce0;
}
.ms-tab {
  flex: 1; text-align: center; padding: 9px 0;
  font-size: 11px; font-weight: 500; color: #5f6368;
  border-bottom: 2px solid transparent; cursor: default;
}
.ms-tab-active {
  color: #1a73e8; border-bottom-color: #1a73e8;
}
.ms-tabs .ms-badge { margin-right: auto; margin-left: 0; }
.ms-tabs .ms-refresh { margin-left: 0; padding: 0 10px; }

/* ── Dashboard Showcase ── */
.dashboard-showcase {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.dash-mockup {
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 80px rgba(26,115,232,0.12), 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.08);
  text-align: left; max-width: 960px; margin: 0 auto;
}
.dash-body { font-family: 'Google Sans', Roboto, -apple-system, sans-serif; }

/* Dashboard Header */
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-bottom: 1px solid #e8eaed;
}
.dash-header-left { display: flex; align-items: center; gap: 8px; }
.dash-logo { font-size: 13px; font-weight: 700; color: #202124; }
.dash-stats { display: flex; align-items: center; gap: 12px; }
.dash-stat { display: flex; align-items: center; gap: 4px; }
.dash-stat-val { font-size: 14px; font-weight: 700; color: #202124; }
.dash-stat-lbl { font-size: 10px; color: #5f6368; }
.dash-stat-div { width: 1px; height: 16px; background: #e8eaed; }
.dash-header-right { display: flex; align-items: center; gap: 8px; }
.dash-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: #f1f3f4; display: flex; align-items: center; justify-content: center;
}

/* Dashboard Tabs */
.dash-tabs {
  display: flex; border-bottom: 1px solid #e8eaed;
  padding: 0 16px;
}
.dash-tab {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 16px; font-size: 11px; font-weight: 500;
  color: #5f6368; border-bottom: 2px solid transparent; cursor: default;
}
.dash-tab-active {
  color: #1a73e8; border-bottom-color: #1a73e8;
}

/* Dashboard 3-column layout */
.dash-columns {
  display: grid; grid-template-columns: 200px 1fr 200px;
  min-height: 280px;
}
.dash-col {
  display: flex; flex-direction: column;
  border-right: 1px solid #e8eaed;
}
.dash-col:last-child { border-right: none; }
.dash-col-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-bottom: 1px solid #f1f3f4;
}
.dash-col-title { font-size: 11px; font-weight: 600; color: #202124; }
.dash-col-count {
  font-size: 10px; font-weight: 600; color: #1a73e8;
  background: #e8f0fe; padding: 1px 6px; border-radius: 10px;
}
.dash-col-body { flex: 1; padding: 8px; overflow: hidden; }
.dash-col-ft { padding: 8px 12px; border-top: 1px solid #f1f3f4; }

/* Queue items */
.dash-queue-item {
  padding: 8px 10px; border-radius: 6px; margin-bottom: 6px;
  border: 1px solid #f1f3f4; cursor: default;
}
.dash-queue-item:hover { border-color: #dadce0; }
.dash-queue-selected { border-color: #1a73e8; background: #e8f0fe; }
.dash-qi-priority {
  font-size: 9px; font-weight: 600; padding: 1px 6px;
  border-radius: 3px; display: inline-block; margin-bottom: 4px;
}
.dash-qi-priority.high { background: #fde8e8; color: #c5221f; }
.dash-qi-priority.medium { background: #fef3e2; color: #e8710a; }
.dash-qi-priority.low { background: #e6f4ea; color: #1e8e3e; }
.dash-qi-subject { font-size: 11px; font-weight: 600; color: #202124; margin-bottom: 2px; }
.dash-qi-meta { font-size: 9px; color: #5f6368; margin-bottom: 2px; }
.dash-qi-snippet { font-size: 9px; color: #5f6368; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Thread detail */
.dash-detail-subject { font-size: 14px; font-weight: 700; color: #202124; margin-bottom: 4px; }
.dash-detail-meta { font-size: 10px; color: #5f6368; margin-bottom: 12px; }
.dash-detail-section { margin-bottom: 12px; }
.dash-detail-label {
  font-size: 9px; font-weight: 600; color: #5f6368;
  text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px;
}
.dash-detail-text { font-size: 11px; line-height: 1.5; color: #202124; }
.dash-detail-warn { color: #e8710a; }
.dash-detail-actions { display: flex; flex-direction: column; gap: 4px; }
.dash-action {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #202124;
}
.dash-action-num {
  width: 16px; height: 16px; border-radius: 3px;
  background: #e8f0fe; color: #1a73e8;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; flex-shrink: 0;
}

/* Activity feed */
.dash-activity-item {
  display: flex; gap: 8px; padding: 6px 4px;
  border-bottom: 1px solid #f1f3f4;
}
.dash-activity-item:last-child { border-bottom: none; }
.dash-act-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 4px; flex-shrink: 0;
}
.dash-act-dot.green { background: #1e8e3e; }
.dash-act-dot.blue { background: #1a73e8; }
.dash-act-info { flex: 1; }
.dash-act-text { font-size: 10px; color: #202124; }
.dash-act-text strong { font-weight: 600; }
.dash-act-time { font-size: 9px; color: #9aa0a6; }

/* Mini stats */
.dash-mini-stats { display: flex; gap: 16px; }
.dash-ms-item { display: flex; flex-direction: column; }
.dash-ms-label { font-size: 9px; color: #5f6368; }
.dash-ms-value { font-size: 13px; font-weight: 700; color: #202124; }

/* Ghost button */
.dash-btn-ghost {
  font-size: 10px; color: #1a73e8; font-weight: 500;
  padding: 4px 10px; border: 1px solid #dadce0; border-radius: 4px;
  display: inline-block; background: #fff;
}

/* Dashboard Mockup Pair */
.dash-mockup-pair { display: flex; flex-direction: column; gap: 40px; max-width: 960px; margin: 0 auto; }
.dash-mockup-label {
  font-size: 11px; font-weight: 600; color: #5f6368;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}

/* ── Overview Mockup ── */
.dash-ov-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 12px 16px;
}
.dash-ov-card {
  background: #f8f9fa; border: 1px solid #e8eaed; border-radius: 8px;
  padding: 10px 12px; text-align: center;
}
.dash-ov-card-value { font-size: 20px; font-weight: 700; color: #202124; }
.dash-ov-card-label { font-size: 9px; color: #5f6368; margin-top: 2px; }
.dash-ov-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 16px 12px;
}
.dash-ov-section {
  border: 1px solid #e8eaed; border-radius: 8px; overflow: hidden;
}
.dash-ov-section-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-bottom: 1px solid #f1f3f4;
}
.dash-ov-section-title { font-size: 11px; font-weight: 600; color: #202124; }
.dash-ov-link { font-size: 9px; color: #1a73e8; font-weight: 500; }
.dash-ov-section-body { padding: 6px 8px; }
.dash-ov-sched-section { margin: 0 16px 12px; }

/* ── Tracking Mockup ── */
.dash-trk-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 12px 16px;
}
.dash-trk-card {
  background: #f8f9fa; border: 1px solid #e8eaed; border-radius: 8px;
  padding: 10px 12px; text-align: center;
}
.dash-trk-card-label { font-size: 9px; color: #5f6368; margin-bottom: 2px; }
.dash-trk-card-value { font-size: 20px; font-weight: 700; color: #202124; }
.dash-trk-controls {
  display: flex; gap: 4px; padding: 0 16px 8px;
}
.dash-trk-btn {
  font-size: 10px; padding: 3px 10px; border-radius: 4px;
  border: 1px solid #dadce0; background: #fff; color: #5f6368; cursor: default;
}
.dash-trk-btn.active { background: #e8f0fe; color: #1a73e8; border-color: #1a73e8; }
.dash-trk-charts {
  display: grid; grid-template-columns: 1fr 160px; gap: 12px;
  padding: 0 16px 12px; align-items: end;
}
.dash-trk-chart-card {
  background: #f8f9fa; border: 1px solid #e8eaed; border-radius: 8px;
  padding: 10px 12px;
}
.dash-trk-chart-title { font-size: 9px; font-weight: 600; color: #5f6368; margin-bottom: 8px; }
.dash-trk-bar-group {
  display: flex; align-items: flex-end; gap: 6px; height: 80px;
}
.dash-trk-bar {
  flex: 1; border-radius: 3px 3px 0 0; min-width: 0;
}
.dash-trk-bar.sent { background: #dadce0; }
.dash-trk-bar.opened { background: #1a73e8; }
.dash-trk-bar-labels {
  display: flex; justify-content: space-between;
  font-size: 8px; color: #9aa0a6; padding-top: 4px;
}
.dash-trk-donut-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.dash-trk-donut {
  width: 80px; height: 80px; border-radius: 50%;
  background: conic-gradient(#1a73e8 0% 78%, #e8eaed 78% 100%);
  display: flex; align-items: center; justify-content: center;
}
.dash-trk-donut-inner {
  width: 52px; height: 52px; border-radius: 50%; background: #f8f9fa;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #202124;
}
.dash-trk-donut-label { font-size: 9px; color: #5f6368; margin-top: 4px; }
.dash-trk-table-wrap { padding: 0 16px 12px; }
.dash-trk-table {
  width: 100%; border-collapse: collapse; font-size: 10px;
}
.dash-trk-table th {
  text-align: left; padding: 6px 8px; font-weight: 600; color: #5f6368;
  border-bottom: 1px solid #e8eaed; font-size: 9px;
}
.dash-trk-table td {
  padding: 6px 8px; border-bottom: 1px solid #f1f3f4; color: #202124;
}
.dash-trk-badge {
  font-size: 9px; padding: 1px 6px; border-radius: 3px;
  display: inline-block; font-weight: 500;
}
.dash-trk-badge.opened { background: #e6f4ea; color: #1e8e3e; }
.dash-trk-badge.unopened { background: #f1f3f4; color: #5f6368; }

/* Dashboard responsive */
@media (max-width: 768px) {
  .dash-columns { grid-template-columns: 1fr; }
  .dash-col { border-right: none; border-bottom: 1px solid #e8eaed; }
  .dash-col:last-child { border-bottom: none; }
  .dash-col-queue .dash-col-body { display: flex; gap: 8px; overflow-x: auto; }
  .dash-col-queue .dash-queue-item { min-width: 160px; flex-shrink: 0; }
  .dash-stats { display: none; }
  .dash-col-activity { display: none; }
  .dash-ov-cards { grid-template-columns: repeat(2, 1fr); }
  .dash-ov-two-col { grid-template-columns: 1fr; }
  .dash-trk-charts { grid-template-columns: 1fr; }
  .dash-trk-donut-wrap { padding-top: 8px; }
}

/* ── Pain Points ── */
.pain-points { padding: 80px 24px 0; text-align: center; }
.pain-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 36px; text-align: left;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.pain-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: #3c4043; padding: 16px 20px;
  background: #fef8f8; border-radius: 10px; border: 1px solid #fde8e8;
  line-height: 1.5;
}
.pain-x {
  color: #ea4335; font-size: 20px; font-weight: 700;
  flex-shrink: 0; width: 24px; text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-weight: 600;
  font-size: 15px; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-icon { flex-shrink: 0; }
.btn-primary { background: #1a73e8; color: #fff; }
.btn-primary:hover { background: #1558b0; box-shadow: 0 4px 16px rgba(26,115,232,0.3); }
.btn-outline { background: #fff; color: #1a73e8; border: 2px solid #1a73e8; }
.btn-outline:hover { background: #e8f0fe; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Common ── */
.section-label {
  display: inline-block; font-size: 13px; font-weight: 600; color: #1a73e8;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-title { font-size: 36px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: #5f6368; margin-bottom: 48px; }

/* ── Features ── */
.features { padding: 100px 24px; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: left; }
.feature-card {
  padding: 32px; border-radius: 16px; background: #fafbfc;
  border: 1px solid #f1f3f4; transition: all 0.3s;
}
.feature-card:hover { border-color: #dadce0; box-shadow: 0 8px 30px rgba(0,0,0,0.04); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon.blue { background: #e8f0fe; color: #1a73e8; }
.feature-icon.purple { background: #f0e6fd; color: #6c5ce7; }
.feature-icon.green { background: #e6f4ea; color: #1e8e3e; }
.feature-icon.orange { background: #fef3e2; color: #e8710a; }
.feature-card { position: relative; }
.feature-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: 0.3px; text-transform: uppercase;
}
.feature-badge.free { background: #e6f4ea; color: #1e8e3e; }
.feature-badge.pro {
  background: linear-gradient(135deg, #1a73e8, #4285f4); color: #fff;
}
.feature-badge.new {
  background: linear-gradient(135deg, #e84393, #6c5ce7); color: #fff;
}
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: #5f6368; line-height: 1.6; }
.feature-pro-note {
  display: inline-block; font-size: 10px; font-weight: 600;
  color: #1a73e8; background: #e8f0fe;
  padding: 1px 6px; border-radius: 3px; margin-left: 2px;
}

/* ── Numbers ── */
.numbers { padding: 80px 24px; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.number-card {
  padding: 28px 16px; border-radius: 16px;
  background: #f8faff; border: 1px solid #e8f0fe;
}
.number-value {
  font-size: 48px; font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(135deg, #1a73e8, #6c5ce7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.number-unit { font-size: 24px; letter-spacing: 0; }
.number-label { font-size: 13px; color: #5f6368; margin-top: 8px; line-height: 1.4; }

/* ── How it Works ── */
.how-it-works { padding: 100px 24px; background: #f8faff; text-align: center; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 12px; margin-top: 48px; }
.step { flex: 1; max-width: 240px; text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8, #6c5ce7);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; margin: 0 auto 16px;
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: #5f6368; }
.step-arrow { color: #dadce0; margin-top: 12px; flex-shrink: 0; }

/* ── Pricing ── */
.pricing { padding: 100px 24px; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 720px; margin: 0 auto; }
.pricing-card {
  padding: 36px 28px; border-radius: 16px; text-align: left;
  border: 2px solid #f1f3f4; background: #fff; position: relative; transition: all 0.3s;
}
.pricing-card:hover { border-color: #dadce0; }
.pricing-card.featured { border-color: #1a73e8; box-shadow: 0 8px 30px rgba(26,115,232,0.12); }
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #1a73e8, #6c5ce7); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 16px;
  border-radius: 100px; letter-spacing: 0.3px;
}
.pricing-header { margin-bottom: 28px; }
.pricing-plan { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; }
.pricing-amount { font-size: 42px; font-weight: 800; letter-spacing: -1px; }
.pricing-unit { font-size: 16px; color: #5f6368; }
.pricing-period { font-size: 13px; color: #9aa0a6; margin-top: 4px; }
.pricing-save {
  display: inline-block; background: #e6f4ea; color: #1e8e3e;
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 4px; margin-left: 6px;
}
.pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #3c4043; }
.pricing-features .check { flex-shrink: 0; }

/* ── FAQ ── */
.faq { padding: 100px 24px; background: #f8faff; text-align: center; }
.faq-list { text-align: left; display: flex; flex-direction: column; gap: 8px; margin-top: 48px; }
.faq-item {
  background: #fff; border-radius: 12px; border: 1px solid #f1f3f4;
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: #dadce0; }
.faq-q {
  padding: 18px 20px; font-size: 15px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 20px; color: #9aa0a6; font-weight: 400;
  transition: transform 0.2s; flex-shrink: 0; margin-left: 12px;
}
.faq-item[open] .faq-q::after { content: '-'; }
.faq-a { padding: 0 20px 18px; font-size: 14px; color: #5f6368; line-height: 1.7; }

/* ── CTA ── */
.cta {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.cta-title { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: #5f6368; margin-bottom: 36px; }

/* ── Footer ── */
.footer { padding: 40px 24px; border-top: 1px solid #f1f3f4; }
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.footer-links { display: flex; gap: 24px; font-size: 13px; color: #5f6368; }
.footer-links a:hover { color: #1a73e8; }
.footer-copy { font-size: 12px; color: #9aa0a6; }

/* ── Solution Blocks ── */
.solution-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 80px; text-align: left;
}
.solution-block.reverse { direction: rtl; }
.solution-block.reverse > * { direction: ltr; }
.solution-content { position: relative; }
.solution-content .feature-badge {
  position: static; display: inline-block; margin-bottom: 12px;
}
.solution-label {
  font-size: 13px; font-weight: 700; color: #1a73e8;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.solution-title {
  font-size: 26px; font-weight: 800; line-height: 1.3;
  letter-spacing: -0.5px; margin-bottom: 24px;
}
.solution-features { display: flex; flex-direction: column; gap: 16px; }
.solution-feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.solution-feature .feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  flex-shrink: 0; margin-bottom: 0;
}
.solution-feature strong { font-size: 14px; display: block; margin-bottom: 2px; }
.solution-feature p { font-size: 13px; color: #5f6368; line-height: 1.5; margin: 0; }
.solution-visual { display: flex; justify-content: center; }
.solution-mockup {
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e8eaed; width: 100%; max-width: 380px;
  overflow: hidden;
}

/* ── Comparison Table ── */
.comparison { padding: 100px 24px; text-align: center; }
.compare-table-wrap {
  max-width: 720px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  border: 1px solid #e8eaed;
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; text-align: center;
}
.compare-table thead { background: #f8faff; }
.compare-table th {
  padding: 16px 20px; font-weight: 700; font-size: 15px;
  border-bottom: 2px solid #e8eaed;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid #f1f3f4;
}
.compare-table td:first-child {
  text-align: left; font-weight: 500; color: #3c4043;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: #f8faff; }
.compare-pro-col { background: rgba(26,115,232,0.03); }
.compare-table thead .compare-pro-col {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #fff;
}
.compare-dash { color: #dadce0; font-size: 18px; }
.check-icon { vertical-align: middle; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px 24px; gap: 16px;
    border-bottom: 1px solid #f1f3f4; box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-menu-btn { display: block; }
  .hero { padding: 120px 24px 60px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .mockup-sidebar { display: none; }
  .pain-points { padding: 60px 24px 0; }
  .pain-list { margin-top: 24px; }
  .pain-item { font-size: 14px; padding: 14px 16px; }
  .solution-block { grid-template-columns: 1fr; gap: 32px; }
  .solution-block.reverse { direction: ltr; }
  .solution-title { font-size: 22px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .number-value { font-size: 36px; }
  .number-unit { font-size: 18px; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .section-title { font-size: 28px; }
  .cta-title { font-size: 30px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-visual { margin-top: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
}
