@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #10b981;
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --text: #020617;
  --text-soft: #64748b;
  --border: #f1f5f9;
  --radius: 32px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Background Dots */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#cbd5e1 0.4px, transparent 0.4px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
header { padding: 40px 0; }
.nav-pill {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid #f1f5f9;
    border-radius: 99px;
    padding: 8px 10px 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}

.logo { font-size: 1.25rem; font-weight: 900; text-decoration: none; color: var(--text); letter-spacing: -0.04em; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 4px; }
.nav-link {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.2s;
}

.nav-link:hover { color: var(--text); }
.nav-link.active { background: rgba(16, 185, 129, 0.08); color: var(--primary); }

/* Hero */
.hero-header { text-align: center; padding: 80px 0 60px; }
.hero-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    max-width: 800px;
    margin-inline: auto;
}
.hero-header h1 span { color: var(--primary); }
.hero-header p { font-size: 1.15rem; color: var(--text-soft); max-width: 550px; margin: 0 auto; }

/* Main Card */
.main-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 60px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    position: relative;
}

.hidden { display: none !important; }

/* Solutions Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 50px; }
.s-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: 0.3s;
}
.s-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05); }
.s-card i { color: var(--primary); margin: 0 auto 20px; display: block; }
.s-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
.s-card p { font-size: 0.8rem; color: var(--text-soft); }

/* Value Props Row */
.icon-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 100px; text-align: center; padding-bottom: 80px; }
.icon-box i { width: 48px; height: 48px; color: var(--primary); background: #f1f5f9; padding: 12px; border-radius: 12px; margin-bottom: 20px; transition: 0.3s; }
.icon-box:hover i { background: var(--primary); color: #fff; transform: scale(1.1); }
.icon-box h4 { font-weight: 800; margin-bottom: 10px; font-size: 1rem; }
.icon-box p { font-size: 0.85rem; color: var(--text-soft); }

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3); }

.btn-soft { background: #f1f5f9; color: var(--text); }
.btn-soft:hover { background: #e2e8f0; }

/* Pricing Fix */
.price-tag { 
    font-size: 1.6rem; 
    font-weight: 950; 
    color: var(--primary); 
    margin: 10px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-tag span { 
    font-size: 0.85rem; 
    color: var(--text-soft); 
    font-weight: 600; 
    display: inline-block;
}
.feat-list { list-style: none; margin-bottom: 40px; text-align: left; }
.feat-list li { padding: 10px 0; border-bottom: 1px solid #f8fafc; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }

footer { padding: 80px 0 40px; text-align: center; opacity: 0.6; font-size: 0.85rem; }

@media (max-width: 640px) {
    .hero-header h1 { font-size: 2.2rem; }
    .icon-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .main-card { padding: 30px; }
}
