/* Base Reset & Variables */
:root {
    --primary: #0056b3; 
    --action: #25D366; 
    --text-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-main: system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.75)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 8rem 5% 6rem 5%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Icon Text Styling */
.subtitle-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.location-text {
    margin-bottom: 2.5rem;
    color: #94a3b8;
    font-size: 1.05rem;
}

.icon-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.icon-text svg {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #004494;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Typography & Headings */
h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Alternating Section Background */
.section-alt-bg {
    background-color: #f1f5f9;
    width: 100%;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Upgraded Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.feature p {
    color: #475569;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #edf2f7;
}

.pricing-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tr:hover {
    background-color: #f8f9fa;
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #475569;
    font-size: 1.05rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--action);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .subtitle-features { flex-direction: column; gap: 0.8rem; align-items: center; }
    .trust-badges { flex-direction: column; gap: 1rem; align-items: center; }
    .pricing-table th, .pricing-table td { 
        padding: 1rem; 
        font-size: 0.95rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}