/* CSS Variables */
:root {
    --primary: #003366;
    --secondary: #FF6B3D;
    --accent: #1B3B6F;
    --text: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    --success: #10B981;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: white;
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 61, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: white;
    padding: 8rem 0 4rem;
    margin-top: 4rem;
    border-bottom: 1px solid #E5E7EB;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-screenshot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-screenshot-placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-screenshot-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: #EFF6FF;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid #DBEAFE;
}

.hero-badge i {
    color: var(--secondary);
    margin-right: 0.25rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.hero-stat {
    flex: 1;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-bg-light {
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card Styles */
.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

.card-accent {
    border-left: 4px solid #667eea;
}

/* Framework Cards */
.framework-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary);
}

.framework-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.framework-card h3 span {
    font-size: 2rem;
}

.framework-card h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.framework-card ul {
    list-style: none;
    padding: 0;
}

.framework-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.framework-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Tools Preview */
.tool-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.tool-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.tool-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.tool-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tool-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
}

.timeline-week {
    background: var(--gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.timeline-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline-item ul {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline-item li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-item li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
}

/* Personas */
.persona-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.persona-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.persona-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.persona-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.persona-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.persona-card .tagline {
    font-style: italic;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Workshop Connection */
.workshop-connection {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.workshop-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.workshop-box h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.workshop-box ul {
    list-style: none;
    padding: 0;
}

.workshop-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.workshop-box li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.connection-arrow {
    font-size: 3rem;
    color: var(--secondary);
}

/* Facilitators */
.facilitators {
    padding: 5rem 0;
}

.facilitators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.facilitator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.facilitator-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--bg-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.facilitator-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.facilitator-name a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.facilitator-name a:hover {
    color: var(--secondary);
}

.facilitator-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.facilitator-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.facilitator-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}

/* Benefits Checklist */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-item i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item strong {
    color: var(--primary);
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid var(--bg-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta-value {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto;
}

.final-cta-value li {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.final-cta .btn-primary {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Contact Popup - uses styles from style.css */

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .workshop-connection {
        grid-template-columns: 1fr;
    }

    .connection-arrow {
        transform: rotate(90deg);
    }

    .timeline {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-screenshot {
        order: -1;
        min-height: auto;
    }

    .hero-stats {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stat {
        min-width: 100px;
    }

    section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .final-cta-value {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
