/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.how-it-works-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: rgba(148, 69, 255, 0.05);
    border: 2px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(148, 69, 255, 0.5);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #14F195;
}

.step-card p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-detail {
    color: #9945FF;
    font-weight: 600;
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 69, 255, 0.5);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #14F195;
}

.benefit-card > p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #64748b;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #14F195;
    font-weight: 700;
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.guides-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.guide-card {
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 69, 255, 0.5);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.guide-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.guide-info {
    flex: 1;
}

.guide-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: white;
}

.guide-badge {
    display: inline-block;
    background: rgba(20, 241, 149, 0.2);
    color: #14F195;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.guide-score {
    text-align: center;
}

.score-label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
}

.score-value {
    font-size: 20px;
    font-weight: 700;
    color: #14F195;
}

.guide-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
}

.stat-item .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: block;
}

.stat-item .stat-value.positive {
    color: #14F195;
}

.guide-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.guide-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(148, 69, 255, 0.2);
    color: #9945FF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.guides-cta {
    text-align: center;
    margin-top: 48px;
}

.guides-cta p {
    color: #94a3b8;
    margin-bottom: 16px;
    font-size: 18px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: rgba(148, 69, 255, 0.05);
    border: 2px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 69, 255, 0.5);
}

.pricing-card.featured {
    border-color: #14F195;
    background: rgba(20, 241, 149, 0.05);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #14F195;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.price-detail {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    color: #94a3b8;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 69, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-example {
    max-width: 700px;
    margin: 60px auto 0;
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.pricing-example h4 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #14F195;
    text-align: center;
}

.example-breakdown {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.example-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #94a3b8;
    border-bottom: 1px solid rgba(148, 69, 255, 0.1);
}

.example-item:last-child {
    border-bottom: none;
}

.example-cost {
    font-weight: 600;
    color: white;
}

.example-total {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    margin-top: 16px;
    background: rgba(20, 241, 149, 0.1);
    border-radius: 8px;
}

.example-profit {
    font-size: 24px;
    font-weight: 700;
    color: #14F195;
}

.example-note {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-style: italic;
}

.early-bird {
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, rgba(20, 241, 149, 0.1) 100%);
    border: 2px solid #14F195;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.early-bird-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.early-bird h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #14F195;
}

.early-bird p {
    color: #94a3b8;
    margin-bottom: 24px;
    font-size: 16px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.comparison-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    max-width: 1000px;
    margin: 48px auto 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(148, 69, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(148, 69, 255, 0.1);
}

.comparison-table th {
    background: rgba(148, 69, 255, 0.2);
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
}

.comparison-table td {
    color: #94a3b8;
}

.comparison-table td.highlight {
    background: rgba(20, 241, 149, 0.05);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-cta {
    text-align: center;
    margin-top: 48px;
}

.comparison-cta h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #14F195;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 69, 255, 0.5);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #94a3b8;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.author-detail {
    font-size: 12px;
    color: #64748b;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .steps-grid,
    .benefits-grid,
    .guides-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .guide-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .example-breakdown {
        font-size: 14px;
    }

    .early-bird {
        padding: 24px;
    }

    .early-bird h3 {
        font-size: 22px;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grant Banner */
.grant-banner {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.grant-banner p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 44px;
    z-index: 999;
    border-bottom: 1px solid rgba(148, 69, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #14F195;
}

.cta-button {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    color: white;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #14F195;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
}

.secondary-button {
    background: rgba(148, 69, 255, 0.1);
    color: #9945FF;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(148, 69, 255, 0.3);
    transition: background 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(148, 69, 255, 0.2);
}

/* Contract Section */
.contract-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.contract-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
}

.contract-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contract-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contract-stat {
    background: rgba(148, 69, 255, 0.1);
    border: 1px solid rgba(148, 69, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contract-stat .stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 600;
}

.contract-stat .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #14F195;
    margin-bottom: 8px;
}

.contract-stat .stat-detail {
    font-size: 14px;
    color: #64748b;
}

.contract-id-box {
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contract-id-label {
    font-size: 14px;
    color: #14F195;
    margin-bottom: 16px;
    font-weight: 600;
}

.contract-id {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    word-break: break-all;
}

.contract-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 69, 255, 0.5);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #14F195;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-item.completed .roadmap-marker {
    background: #14F195;
    border-color: #14F195;
}

.roadmap-item.active .roadmap-marker {
    background: #9945FF;
    border-color: #9945FF;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(153, 69, 255, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(153, 69, 255, 0); }
}

.roadmap-content {
    flex: 1;
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.roadmap-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #14F195;
}

.roadmap-content p {
    color: #94a3b8;
    margin-bottom: 12px;
}

.roadmap-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.roadmap-item.completed .roadmap-status {
    background: rgba(20, 241, 149, 0.2);
    color: #14F195;
}

.roadmap-item.active .roadmap-status {
    background: rgba(153, 69, 255, 0.2);
    color: #9945FF;
}

.roadmap-item .roadmap-status {
    background: rgba(100, 116, 139, 0.2);
    color: #94a3b8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: rgba(148, 69, 255, 0.05);
    border: 1px solid rgba(148, 69, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(148, 69, 255, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(148, 69, 255, 0.1);
}

.faq-arrow {
    color: #14F195;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.8;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.waitlist-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-form {
    max-width: 600px;
    margin: 48px auto;
}

.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(148, 69, 255, 0.3);
    background: rgba(15, 23, 42, 0.8);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #9945FF;
}

.form-group input[type="email"]::placeholder {
    color: #64748b;
}

.form-note {
    margin-top: 16px;
    color: #14F195;
    font-size: 14px;
    font-weight: 600;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.benefit-icon {
    font-size: 24px;
}

/* Footer */
footer {
    background: #0f172a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(148, 69, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 16px;
    color: #14F195;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #14F195;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(148, 69, 255, 0.1);
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.program-id {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-value {
        font-size: 28px;
    }

    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contract-stats {
        grid-template-columns: 1fr;
    }

    .contract-actions {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input[type="email"] {
        width: 100%;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-marker {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .waitlist-benefits {
        flex-direction: column;
        gap: 24px;
    }

    h2 {
        font-size: 32px !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.roadmap-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #14F195 0%, #9945FF 100%);
}

.roadmap-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(148, 69, 255, 0.2);
    border: 3px solid #9945FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    z-index: 1;
}

.roadmap-
