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

:root {
    --yellow: #FFD700;
    --yellow-dark: #FFC700;
    --yellow-light: #FFE55C;
    --black: #000000;
    --gray-900: #1A1A1A;
    --gray-800: #2D2D2D;
    --gray-700: #404040;
    --gray-600: #666666;
    --gray-500: #808080;
    --gray-400: #999999;
    --gray-300: #CCCCCC;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--yellow);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--black);
    color: var(--yellow);
    padding: 12px 32px;
    border: 2px solid var(--black);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--black);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--gray-600);
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--black);
    color: var(--yellow);
    padding: 20px 48px;
    border: 3px solid var(--black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-primary.large {
    padding: 24px 56px;
    font-size: 18px;
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    padding: 20px 48px;
    border: 3px solid var(--black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -2px;
    text-shadow: 2px 2px 0 var(--black);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    text-align: center;
    font-weight: 700;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: var(--gray-300);
}

/* Mission Statement */
.mission {
    padding: 100px 0;
    background: var(--yellow);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.8;
    color: var(--black);
    font-weight: 400;
}

.mission-text strong {
    font-weight: 900;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    border: 3px solid var(--black);
    transition: all 0.4s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0 var(--yellow);
}

.service-card.featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--yellow);
}

.service-card.featured h2,
.service-card.featured p,
.service-card.featured .service-list li {
    color: var(--white);
}

.service-card.featured .service-emoji {
    background: var(--yellow);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-image {
    margin-bottom: 32px;
}

.service-emoji {
    font-size: 80px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 20px;
    border: 3px solid var(--black);
}

.service-content h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-700);
    font-weight: 500;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 900;
    font-size: 20px;
}

.service-card.featured .service-list li::before {
    color: var(--yellow);
}

.service-btn {
    width: 100%;
    padding: 16px;
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.service-btn:hover {
    background: var(--yellow);
    transform: translateY(-2px);
}

.service-btn.primary {
    background: var(--yellow);
    border-color: var(--yellow);
}

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

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--gray-100);
}

.section-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: -2px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 3px solid var(--black);
    transition: all 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 8px 8px 0 var(--yellow);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.avatar-emoji {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 3px solid var(--black);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.author span {
    font-size: 14px;
    color: var(--gray-500);
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 24px;
    border: 3px solid var(--black);
    transition: all 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--yellow);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* CTA Banner */
.cta-banner {
    padding: 120px 0;
    background: var(--black);
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 48px;
    color: var(--gray-300);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-banner .btn-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.cta-banner .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-col p {
    color: var(--gray-400);
    line-height: 1.9;
    font-size: 15px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
}

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

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 4px solid var(--yellow);
}

.close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 32px;
    cursor: pointer;
    color: var(--gray-400);
    transition: color 0.3s;
    font-weight: 300;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 48px;
}

.modal-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.modal-header p {
    color: var(--gray-600);
    font-size: 16px;
}

.join-form .form-group {
    margin-bottom: 28px;
}

.join-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.join-form input,
.join-form select,
.join-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 3px solid var(--black);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--black);
    color: var(--yellow);
    border: 3px solid var(--black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .services-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 40px 28px;
    }
}
