/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #666;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    color: #1a4d7c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-primary {
    color: #1a4d7c;
}

.bg-blue { background-color: #dbeafe; color: #1e40af; }
.bg-green { background-color: #d1fae5; color: #059669; }
.bg-purple { background-color: #e9d5ff; color: #7c3aed; }
.bg-orange { background-color: #fed7aa; color: #ea580c; }

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 50;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a4d7c;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1a4d7c;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 100;
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    text-decoration: none;
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid white;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Services */
.services {
    background-color: rgba(249, 250, 251, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-link {
    color: #1a4d7c;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Pricing */
.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.price-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.2s;
}

.price-card.popular {
    border-color: #1a4d7c;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
}

.badge-free {
    background: #6b7280;
}

.badge-popular {
    background: #1a4d7c;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #1a4d7c;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: normal;
}

.price-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.price-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Benefits */
.benefits {
    background-color: rgba(249, 250, 251, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 77, 124, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* About */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content p {
    color: #4b5563;
    line-height: 1.8;
}

.about-mission,
.about-values {
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 2px solid #1a4d7c;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1a4d7c;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.about-values ul {
    list-style: none;
}

.about-values li {
    padding: 0.25rem 0;
    color: #6b7280;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-content {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(26, 77, 124, 0.2), rgba(26, 77, 124, 0.05));
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* CTA */
.cta {
    background: #1a4d7c;
    color: white;
    text-align: center;
}

.cta h2,
.cta p {
    color: white;
}

/* Contact */
.contact {
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1a4d7c;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer li {
    padding: 0.25rem 0;
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer a {
    color: #d1d5db;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}