/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937; /* Dark Gray */
    background-color: #f9fafb; /* Very Light Gray */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
    color: #111827; /* Near Black */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #4b5563; /* Medium Gray */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #2563eb; /* Royal Blue */
    color: white;
}

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

.btn-block {
    display: block;
    width: 100%;
}

.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: #4b5563;
}

.main-nav a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.trust-badge {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Features */
.features-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 0.5rem;
}

.period {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.stripe-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1rem;
}

/* Trust & Contact */
.trust-section {
    padding: 4rem 0;
    background-color: #f3f4f6;
    text-align: center;
}

.contact-link {
    color: #2563eb;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
    }

    .main-nav ul {
        margin-top: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-card {
        width: 100%;
    }
}
