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

:root {
    /* Colors matching Chris Donnelly site */
    --primary-blue: #0077B5;
    --primary-dark: #005885;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f7f8fa;
    --border-light: #e5e7eb;
    --accent-green: #00a67e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 56px;
    height: 56px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

.header-cta {
    background: var(--primary-blue);
    color: white;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--primary-dark);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

/* Features with Image Layout */
.features-with-image {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.features-preview {
    flex: 1;
    text-align: left;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-screenshot {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.main-headline {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.sub-headline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-body);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Container */
.cta-container {
    margin: 48px 0;
}

.cta-button {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.cta-button.large {
    padding: 22px 56px;
    font-size: 1.25rem;
}

.cta-benefits {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-benefits span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.features-intro {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.preview-item {
    font-size: 1rem;
    color: var(--text-body);
}

@media (max-width: 768px) {
    .features-with-image {
        flex-direction: column-reverse;
        gap: 32px;
    }
    
    .features-preview {
        text-align: center;
    }
    
    .preview-list {
        align-items: center;
    }
    
    .feature-screenshot {
        max-width: 220px;
    }
}

/* About Section */
.about-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-body);
}

.features-headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* Features Section */
.features-section {
    background: var(--bg-white);
    padding: 60px 0 80px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-block {
    border-left: 4px solid var(--primary-blue);
    padding-left: 28px;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-points p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Mid-page CTA */
.mid-cta {
    margin-top: 60px;
    text-align: center;
}

/* Privacy Section */
.privacy-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.privacy-block {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 28px;
}

.privacy-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.privacy-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-points p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Benefit Section */
.benefit-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.benefit-item {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.7;
    padding-left: 8px;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.cta-box-final {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-body);
}

.cta-details {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
}

.cta-details p {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-body);
}

.cta-details p:last-child {
    margin-bottom: 0;
}

.cta-details strong {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 32px 0;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }

    .sub-headline {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 8px;
    }

    .privacy-features {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding-left: 20px;
    }

    .cta-headline {
        font-size: 1.75rem;
    }

    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 0.6s ease-out;
}

.main-headline {
    animation-delay: 0.1s;
}

.sub-headline {
    animation-delay: 0.2s;
}

.cta-container {
    animation-delay: 0.3s;
}
