:root {
    --brand-dark: #0F172A;
    --brand-primary: #46e5a2; 
    --brand-accent: #10B981;
    --text-main: #334155;
    --text-muted: #64748B;
    --bg-body: #F8FAFC;
    --surface-glass: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    position: ;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* --- Navbar --- */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--brand-primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--brand-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #E0E7FF; /* Light Indigo */
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #D1FAE5; /* Light Emerald */
    bottom: -100px;
    right: -100px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
}

/* Trust Indicators */
.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 10px;
    margin-bottom: 24px;
}

.trust-pill i {
    color: var(--brand-accent);
    margin-right: 8px;
}

/* Buttons */
.btn-main {
    background-color: var(--brand-primary);
    color: white;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
    color: white;
}

.btn-outline-main {
    color: var(--brand-dark);
    border: 2px solid #E2E8F0;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-main:hover {
    border-color: var(--brand-dark);
    background: white;
}

/* --- Hero Image & Graphic --- */
.hero-visual {
    position: relative;
    z-index: 1;
}

.main-img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover;
    /* Creating a mask effect at bottom if needed, but border radius looks modern */
}

/* Floating Card Effect */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.card-1 {
    bottom: 40px;
    left: -30px;
    border-left: 4px solid var(--brand-accent);
}

.card-2 {
    top: 60px;
    right: -20px;
    border-left: 4px solid var(--brand-primary);
    animation-delay: 1.5s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Stats Bar --- */
.stats-bar {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-dark);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Feature Grid --- */
.feature-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #E2E8F0;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--brand-primary);
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* --- Footer --- */
footer {
    background: var(--brand-dark);
    color: white;
    padding: 80px 0 40px 0;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; text-align: center; }
    .hero-subtitle { text-align: center; margin: 0 auto 2.5rem auto; }
    .hero-content { text-align: center; margin-bottom: 60px; }
    .trust-pills-wrapper { justify-content: center; display: flex; }
    .hero-btns { justify-content: center; display: flex; flex-wrap: wrap; }
    .card-1, .card-2 { display: none; } /* Hide floating cards on mobile for cleaner look */
    .hero-section { padding-top: 120px; }
}