* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hexagonal background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(30deg, rgba(255, 107, 0, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 107, 0, 0.03) 87.5%, rgba(255, 107, 0, 0.03)),
        linear-gradient(150deg, rgba(255, 107, 0, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 107, 0, 0.03) 87.5%, rgba(255, 107, 0, 0.03));
    background-size: 80px 140px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    border-bottom: 2px solid #ff6b00;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.trust-badge {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #00d4ff;
    align-items: center;
}

.trust-badge span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a1a"/><path fill="%23ff6b00" opacity="0.1" d="M0,300 L300,0 L600,300 L300,600 Z M600,300 L900,0 L1200,300 L900,600 Z"/></svg>');
    background-size: cover;
    border-bottom: 3px solid #ff6b00;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 107, 0, 0.03) 2px,
        rgba(255, 107, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.issue-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 8px 20px;
    border: 2px solid #00d4ff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.highlight {
    color: #ff6b00;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.subheadline {
    font-size: 22px;
    margin-bottom: 35px;
    color: #c8c8c8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #ff6b00;
    display: block;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #000;
    border: none;
    padding: 22px 55px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(255, 107, 0, 0.7);
}

.cta-button::before {
    content: '⬇';
    margin-right: 10px;
    font-size: 16px;
}

.trust-line {
    margin-top: 25px;
    font-size: 14px;
    color: #00d4ff;
}

/* Problem Section */
.problem {
    padding: 90px 0;
    background: rgba(26, 26, 26, 0.5);
}

.problem h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #e8e8e8;
}

.problem-subtitle {
    text-align: center;
    color: #999;
    font-size: 18px;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #2d5c3f;
    padding: 35px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.problem-card h3 {
    color: #ff6b00;
    margin-bottom: 15px;
    font-size: 20px;
}

.problem-card p {
    color: #b8b8b8;
    line-height: 1.7;
}

.problem-highlight {
    text-align: center;
    font-size: 18px;
    color: #00d4ff;
    font-weight: 600;
    margin-top: 40px;
}

/* Solution Section */
.solution {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.8));
}

.solution h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.solution-intro {
    text-align: center;
    font-size: 19px;
    color: #c8c8c8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid #2d5c3f;
    padding: 35px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff6b00;
}

.feature-card h3 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 90px 0;
    background: rgba(26, 26, 26, 0.5);
}

.how-it-works h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #e8e8e8;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.5);
}

.step h3 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 20px;
}

.step p {
    color: #b8b8b8;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    padding: 90px 0;
    background: rgba(10, 10, 10, 0.9);
}

.social-proof h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

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

.testimonial {
    background: rgba(26, 26, 26, 0.8);
    border-left: 4px solid #ff6b00;
    padding: 30px;
    border-radius: 8px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #c8c8c8;
}

.testimonial-author {
    color: #00d4ff;
    font-weight: bold;
    font-size: 15px;
}

        .testimonial-platform {
            color: #888;
            font-size: 13px;
            margin-top: 5px;
        }

        .rating {
            color: #ff6b00;
            margin-top: 8px;
            font-size: 14px;
        }

/* Tech Details */
.tech-details {
    padding: 90px 0;
    background: rgba(26, 26, 26, 0.5);
}

.tech-details h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #e8e8e8;
}

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

.tech-item {
    background: rgba(10, 10, 10, 0.5);
    border: 2px solid #2d5c3f;
    padding: 25px;
    border-radius: 8px;
}

.tech-label {
    color: #00d4ff;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-value {
    color: #b8b8b8;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 90px 0;
    background: rgba(10, 10, 10, 0.9);
}

.faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #e8e8e8;
}

.faq-item {
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid #2d5c3f;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #ff6b00;
}

.faq-question {
    color: #00d4ff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.faq-answer {
    color: #b8b8b8;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(255, 107, 0, 0.1));
    text-align: center;
    border-top: 3px solid #ff6b00;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #c8c8c8;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 50px 0;
    border-top: 2px solid #ff6b00;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
}

.copyright {
    color: #666;
    font-size: 13px;
    margin-top: 20px;
}

.disclaimer {
    color: #666;
    font-size: 12px;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Custom Popup Styles */
.swal2-popup {
    background: #1a1a1a !important;
    border: 2px solid #ff6b00 !important;
}

.swal2-title {
    color: #ff6b00 !important;
    font-size: 26px !important;
}

.swal2-html-container {
    color: #e8e8e8 !important;
    text-align: left !important;
}

.membership-steps {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.membership-steps li {
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.membership-steps li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #ff6b00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.signup-button {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #000;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    margin: 20px 0;
    width: 100%;
    transition: all 0.3s;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

.reference-input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background: #0a0a0a;
    border: 2px solid #2d5c3f;
    color: #e8e8e8;
    border-radius: 4px;
    font-size: 16px;
}

.reference-input:focus {
    outline: none;
    border-color: #ff6b00;
}

.validation-error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.validation-error.show {
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .stats {
        gap: 30px;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 16px;
    }

    .trust-badge {
        flex-direction: column;
        gap: 10px;
        font-size: 11px;
    }
}
