/* Root Variables */
:root {
    --color-purple: #5300E6;
    --color-purple-dark: #4200B8;
    --color-purple-light: #D9B8FF;
    --color-yellow: #FFF601;
    --color-yellow-dark: #E6DD00;
    --color-black: #1F2937;
    --color-white: #FFFFFF;
    --font-bold: 'Arial Black', 'Arial', sans-serif;
    --font-body: 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-bold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-symbol {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-bold);
    font-size: 1.2rem;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-black);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-purple);
}

.btn-signup {
    background-color: var(--color-purple);
    color: var(--color-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-signup:hover {
    background-color: var(--color-purple-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFF601 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 20px;
}

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

.hero-symbol {
    margin-bottom: 1rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--color-purple);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--color-black);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: var(--color-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.cta-button.large {
    padding: 1.2rem 4rem;
    font-size: 1.4rem;
}

/* Section Styles */
section {
    padding: 3rem 20px;
}

.section-alt {
    background-color: var(--color-yellow);
    padding-top: 2rem;
}

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

.section-symbol {
    margin-bottom: 1.5rem;
}

.section-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-purple);
    line-height: 1.3;
}

/* Three Ways Grid */
.three-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.way-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.way-card h3 {
    font-size: 1.8rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.way-card p {
    font-size: 1.1rem;
    color: var(--color-black);
    line-height: 1.8;
}

/* Pillars Section */
.section-pillars {
    background-color: var(--color-purple);
    color: var(--color-white);
    text-align: center;
}

.pillars-content {
    max-width: 600px;
    margin: 0 auto;
}

.pillar-symbol {
    margin-bottom: 2rem;
}

.pillar-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.pillars-list {
    margin: 2rem 0;
}

.pillars-list h3 {
    font-size: 3rem;
    color: var(--color-yellow);
    margin: 1rem 0;
    text-transform: uppercase;
}

.pillars-description {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-top: 2rem;
    font-weight: 600;
}

/* Exercises Section */
.section-exercises {
    background-color: var(--color-white);
}

.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.exercise-card {
    background-color: var(--color-purple-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid var(--color-purple);
}

.exercise-card h3 {
    font-size: 2rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.exercise-card p {
    font-size: 1.1rem;
    color: var(--color-black);
    line-height: 1.8;
}

/* Stronger Longer Section */
.section-stronger {
    background-color: var(--color-purple-light);
    text-align: center;
}

.stronger-content {
    max-width: 600px;
    margin: 0 auto;
}

.stronger-symbol {
    margin-bottom: 2rem;
}

.stronger-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.stronger-content h2 {
    font-size: 4rem;
    color: var(--color-purple);
    margin: 0.5rem 0;
}

.stronger-description {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-top: 2rem;
    font-weight: 600;
}

/* Benefits Section */
.section-benefits {
    background-color: var(--color-white);
}

.section-benefits h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--color-purple);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    font-size: 1.8rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--color-black);
    line-height: 1.8;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem 20px 1rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--color-white);
    transition: color 0.3s;
}

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-white);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-black);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--color-purple);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-symbol {
    margin-bottom: 1rem;
}

.modal-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--color-purple);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-black);
    font-size: 1.1rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#emailInput {
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid var(--color-purple);
    border-radius: 5px;
    font-family: var(--font-body);
}

#emailInput:focus {
    outline: none;
    border-color: var(--color-purple-dark);
}

.btn-submit {
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--color-purple-dark);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    color: var(--color-white);
    padding: 4rem 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 4rem 20px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--color-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    background-color: var(--color-purple-light);
    padding: 2.5rem;
    border-radius: 10px;
    border: 3px solid var(--color-purple);
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--color-purple);
    font-weight: 700;
}

.faq-list {
    list-style: none;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 1.5rem;
    border: 2px solid var(--color-purple);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-black);
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

.terms-content {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--color-purple);
}

.terms-content h3 {
    color: var(--color-purple);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

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

    .pillars-list h3 {
        font-size: 2rem;
    }

    .stronger-content h2 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 20% auto;
        padding: 2rem;
    }
}

