@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-rgb: 37, 99, 235;
      --primary-soft: rgba(37, 99, 235, 0.07);
      --secondary: #db2777;
      --secondary-rgb: 219, 39, 119;
      --bg: #f1f5f9;
      --bg-surface: #ffffff;
      --bg-alt: #f8fafc;
      --text: #0f172a;
      --text-muted: #475569;
      --border: rgba(15, 23, 42, 0.1);
      --border-strong: rgba(15, 23, 42, 0.16);
      --success: #16a34a;
      --warning: #ca8a04;
      --accent: #0891b2;
      --purple: #9333ea;
      --danger: #dc2626;
      --radius: 16px;
      --shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 6px 20px rgba(15, 23, 42, 0.07);
      --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.06), 0 20px 48px rgba(15, 23, 42, 0.1);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', -apple-system, system-ui, sans-serif; background: radial-gradient(circle at 10% 14%, rgba(var(--primary-rgb), 0.07), transparent 30%), radial-gradient(circle at 85% 8%, rgba(var(--secondary-rgb), 0.04), transparent 25%), linear-gradient(180deg, #eef2ff 0%, var(--bg) 40%, var(--bg-alt) 100%); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    section { padding: 5rem 0; }
    .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 12px; background: var(--primary); color: #fff; font: inherit; font-size: 1rem; font-weight: 600; border: 0; cursor: pointer; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25); }
    .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 12px; border: 1px solid var(--border-strong); background: var(--bg-surface); color: var(--text); font: inherit; font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s, border-color 0.2s, box-shadow 0.2s; }
    .btn-secondary:hover { border-color: rgba(var(--primary-rgb), 0.3); box-shadow: var(--shadow); }
    .section-label { text-align: center; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.75rem; }
    .section-title { text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
    .section-desc { text-align: center; font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3.5rem; }
    .hero { padding: 5rem 0 3rem; }
    .hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr); gap: 3rem; align-items: center; }
    .hero-copy { display: flex; flex-direction: column; gap: 1.2rem; }
    .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; width: fit-content; padding: 0.4rem 1rem; border-radius: 999px; border: 1px solid rgba(var(--primary-rgb), 0.2); background: var(--primary-soft); color: var(--primary); font-size: 0.8rem; font-weight: 600; }
    .hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
    .hero h1 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero p.lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; max-width: 520px; }
    .hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .social-proof { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
    .pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.8rem; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-surface); color: var(--text-muted); font-size: 0.78rem; font-weight: 600; box-shadow: var(--shadow); }
    .pill b { color: var(--primary); }
    .hero-visual { position: relative; padding: 1.25rem; border-radius: 20px; border: 1px solid var(--border-strong); background: linear-gradient(160deg, var(--bg-surface), var(--bg-alt)); box-shadow: var(--shadow-lg); }
    .hero-visual .stack { display: grid; gap: 0.75rem; }
    .vis-card { padding: 1rem 1.1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--bg-surface); box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04); }
    .vis-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.5rem; }
    .vis-badge { padding: 3px 8px; border-radius: 999px; border: 1px solid rgba(var(--primary-rgb), 0.2); background: var(--primary-soft); color: var(--primary); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
    .vis-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4); }
    .vis-card strong { font-size: 0.92rem; display: block; margin-bottom: 0.25rem; }
    .vis-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }
    .vis-chips { display: flex; gap: 0.4rem; margin-top: 0.5rem; }
    .vis-chips span { padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
    .vis-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .vis-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: 0.85rem; font-weight: 800; margin-bottom: 0.5rem; }
    .vis-icon.blue { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
    .vis-icon.cyan { background: rgba(8, 145, 178, 0.1); color: var(--accent); }
    .vis-live { padding: 3px 8px; border-radius: 999px; border: 1px solid rgba(8, 145, 178, 0.2); background: rgba(8, 145, 178, 0.08); color: var(--accent); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
    .vis-avatars { display: flex; margin-top: 0.4rem; }
    .vis-avatars span { width: 34px; height: 34px; margin-right: -5px; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--bg-surface); background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.1)); color: var(--text-muted); font-size: 0.7rem; font-weight: 800; }
    .metrics-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
    .metric-value { font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; }
    .metric-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.25rem; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .feature-card { padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-surface); box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .feature-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; }
    .feature-icon.maps { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
    .feature-icon.tasks { background: rgba(22, 163, 74, 0.1); color: var(--success); }
    .feature-icon.notes { background: rgba(202, 138, 4, 0.1); color: var(--warning); }
    .feature-icon.collab { background: rgba(147, 51, 234, 0.1); color: var(--purple); }
    .feature-icon.import { background: rgba(8, 145, 178, 0.1); color: var(--accent); }
    .feature-icon.themes { background: rgba(220, 38, 38, 0.1); color: var(--danger); }
    .feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .feature-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
    .usecases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .usecase-panel { padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-surface); box-shadow: var(--shadow); }
    .usecase-panel h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
    .usecase-panel h3 i { color: var(--primary); }
    .usecase-panel ul { list-style: none; display: grid; gap: 0.65rem; }
    .usecase-panel li { display: flex; gap: 0.6rem; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
    .usecase-panel li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--primary); font-size: 0.72rem; flex-shrink: 0; margin-top: 0.25rem; }
    .steps-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .step { text-align: center; }
    .step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25); }
    .step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; max-width: 300px; margin: 0 auto; }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .faq-item { padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-surface); box-shadow: var(--shadow); }
    .faq-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.4rem; }
    .faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
    .cta-section { text-align: center; }
    .cta-card { padding: 4rem 2rem; border-radius: 24px; background: radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.05), transparent 50%), radial-gradient(circle at bottom right, rgba(var(--secondary-rgb), 0.03), transparent 50%), var(--bg-surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
    .cta-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.8rem; }
    .cta-card p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; }
    footer { padding: 2.5rem 0; border-top: 1px solid var(--border); text-align: center; }
    footer p { font-size: 0.85rem; color: var(--text-muted); }
    footer a { color: var(--primary); }
    @media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding-top: 5rem; } .hero-visual { max-width: 520px; margin: 0 auto; } .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 900px) { .features-grid, .steps, .usecases-grid, .faq-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
    @media (max-width: 640px) { section { padding: 3.5rem 0; } .hero-actions { flex-direction: column; width: 100%; } .btn-primary, .btn-secondary { width: 100%; justify-content: center; } .metrics-grid { grid-template-columns: 1fr 1fr; } .vis-row { grid-template-columns: 1fr; } }