/* ============================= */
/* CSS VARIABLES - EASY CUSTOMIZATION */
/* ============================= */
:root {
    /* Brand Colors */
    --template-primary: #6366f1;
    --template-primary-dark: #4f46e5;
    --template-primary-light: #818cf8;
    --template-accent: #f59e0b;
    
    /* Neutral Colors */
    --template-bg-body: #f8fafc;
    --template-bg-white: #ffffff;
    --template-bg-light: #f1f5f9;
    --template-text-primary: #1e293b;
    --template-text-secondary: #64748b;
    --template-text-muted: #94a3b8;
    --template-border: #e2e8f0;
    
    /* Spacing */
    --template-container-max-width: 1000px;
    --template-section-padding: 80px 20px;
    --template-section-padding-sm: 60px 20px;
    
    /* Typography */
    --template-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --template-heading-size: 2.25rem;
    --template-heading-size-lg: 2.75rem;
    --template-heading-size-sm: 1.75rem;
    --template-text-size: 1rem;
    --template-text-size-lg: 1.125rem;
    
    /* Border Radius */
    --template-radius-sm: 6px;
    --template-radius-md: 12px;
    --template-radius-lg: 16px;
    
    /* Shadows */
    --template-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --template-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --template-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --template-transition: 0.3s ease;
}

/* ============================= */
/* BASE STYLES */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--template-font-family);
    background: var(--template-bg-body);
    color: var(--template-text-primary);
    line-height: 1.6;
    font-size: var(--template-text-size);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--template-transition);
}

ul {
    list-style: none;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.container {
    max-width: var(--template-container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================= */
/* ANNOUNCEMENT BAR */
/* ============================= */
.announcement-bar {
    background: var(--template-primary);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.announcement-bar p {
    margin: 0;
}

/* ============================= */
/* HEADER / NAV */
/* ============================= */
.header {
    background: var(--template-bg-white);
    box-shadow: var(--template-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--template-container-max-width);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--template-text-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--template-text-secondary);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--template-primary);
}

/* ============================= */
/* BUTTONS */
/* ============================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--template-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--template-transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--template-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--template-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--template-shadow-md);
}

.btn-secondary {
    background: var(--template-bg-white);
    color: var(--template-text-primary);
    border: 2px solid var(--template-border);
}

.btn-secondary:hover {
    border-color: var(--template-primary);
    color: var(--template-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ============================= */
/* CENTERED HERO SECTION */
/* ============================= */
.hero {
    background: var(--template-bg-white);
    padding: var(--template-section-padding);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--template-bg-light);
    color: var(--template-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: var(--template-heading-size-lg);
    font-weight: 800;
    color: var(--template-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--template-text-size-lg);
    color: var(--template-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================= */
/* SECTION HEADERS */
/* ============================= */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: var(--template-heading-size);
    font-weight: 700;
    color: var(--template-text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: var(--template-text-size-lg);
    color: var(--template-text-secondary);
}

/* ============================= */
/* WHAT'S INCLUDED SECTION */
/* ============================= */
.included {
    background: var(--template-bg-body);
    padding: var(--template-section-padding);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--template-bg-white);
    padding: 20px;
    border-radius: var(--template-radius-md);
    box-shadow: var(--template-shadow-sm);
}

.included-icon {
    color: var(--template-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.included-item p {
    color: var(--template-text-primary);
    font-weight: 500;
    margin: 0;
}

/* ============================= */
/* WHO IT'S FOR SECTION */
/* ============================= */
.for-who {
    background: var(--template-bg-white);
    padding: var(--template-section-padding);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.for-who-card {
    background: var(--template-bg-light);
    padding: 32px;
    border-radius: var(--template-radius-md);
    transition: var(--template-transition);
}

.for-who-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--template-shadow-md);
}

.for-who-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--template-text-primary);
    margin-bottom: 12px;
}

.for-who-card p {
    color: var(--template-text-secondary);
    line-height: 1.6;
}

/* ============================= */
/* HOW IT WORKS SECTION */
/* ============================= */
.how-it-works {
    background: var(--template-bg-body);
    padding: var(--template-section-padding);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step-card {
    background: var(--template-bg-white);
    padding: 32px;
    border-radius: var(--template-radius-md);
    text-align: center;
    box-shadow: var(--template-shadow-sm);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--template-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--template-text-primary);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--template-text-secondary);
    line-height: 1.6;
}

/* ============================= */
/* PRODUCT / OFFER SECTION */
/* ============================= */
.offer {
    background: var(--template-bg-white);
    padding: var(--template-section-padding);
}

.offer-card {
    background: var(--template-bg-white);
    border: 2px solid var(--template-border);
    border-radius: var(--template-radius-lg);
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--template-shadow-lg);
}

.offer-header {
    text-align: center;
    margin-bottom: 32px;
}

.offer-header h2 {
    font-size: var(--template-heading-size);
    font-weight: 700;
    color: var(--template-text-primary);
    margin-bottom: 12px;
}

.offer-subtitle {
    font-size: var(--template-text-size-lg);
    color: var(--template-text-secondary);
}

.offer-body {
    margin-bottom: 32px;
}

.offer-features {
    margin-bottom: 0;
}

.offer-features li {
    padding: 12px 0;
    color: var(--template-text-primary);
    border-bottom: 1px solid var(--template-border);
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-footer {
    text-align: center;
}

.offer-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--template-text-secondary);
}

/* ============================= */
/* SIMPLE FINAL CTA SECTION */
/* ============================= */
.final-cta {
    background: var(--template-bg-light);
    color: var(--template-text-primary);
    padding: var(--template-section-padding);
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: var(--template-heading-size);
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: var(--template-text-size-lg);
    color: var(--template-text-secondary);
    margin-bottom: 32px;
}

/* ============================= */
/* SIMPLE FOOTER */
/* ============================= */
.footer {
    background: var(--template-text-primary);
    color: white;
    padding: var(--template-section-padding-sm);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--template-text-muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--template-text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--template-text-muted);
    font-size: 0.9rem;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    :root {
        --template-heading-size-lg: 2.25rem;
        --template-heading-size: 1.75rem;
        --template-section-padding: 60px 20px;
    }

    .header {
        position: static;
    }

    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }

    .btn-secondary:hover {
        border-color: var(--template-border);
        color: var(--template-text-primary);
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu a,
    .nav-menu a:visited,
    .nav-menu a:hover,
    .nav-menu a:focus,
    .nav-menu a:active {
        color: var(--template-text-secondary);
        background: transparent;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .included-grid,
    .for-who-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}
