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

:root {
    --dark-bg: #0D0D0D;
    --elevated-bg: #161616;
    --card-bg: #1A1A1A;
    --orange: #E8621A;
    --green: #2ECC71;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --border: rgba(255, 255, 255, 0.06);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'DM Sans', 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--gray);
    line-height: 1.6;
}

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

h1, h2, h3 {
    color: var(--white);
    font-weight: 700;
}

/* Navigation */
.nav {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--orange);
    text-decoration: none;
    font-family: 'Arial Black', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.btn-nav {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: #d15408;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Section Labels */
.section-label {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Hero New */
.hero-new {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(232, 98, 26, 0.08), transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 32px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-new h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
    background: var(--elevated-bg);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Courier New', monospace;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-number.orange {
    color: var(--orange);
}

.stat-label {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
}

.problem-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.problem-intro {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.7;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pain-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.pain-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Platform Section */
.platform-section {
    background: var(--elevated-bg);
    padding: 100px 0;
}

.platform-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.platform-intro {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tag {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 700;
}

/* Free Tools Section */
.free-tools-section {
    padding: 100px 0;
}

.free-tools-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--gray);
}

.tool-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tool-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.tool-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.tool-badge {
    display: inline-block;
    background: rgba(232, 98, 26, 0.1);
    border: 1px solid rgba(232, 98, 26, 0.3);
    color: var(--orange);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tool-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-stat {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
}

.tool-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.tool-link:hover {
    color: var(--white);
}

/* How It Works */
.how-it-works {
    background: var(--elevated-bg);
    padding: 100px 0;
}

.how-it-works h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr 100px 1fr;
    align-items: center;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 auto 24px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
}

.step-connector {
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    opacity: 0.3;
}

/* Testimonial */
.testimonial-section {
    padding: 100px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 120px;
    line-height: 1;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -40px;
}

blockquote {
    font-size: 28px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 32px;
    font-weight: 500;
}

.testimonial-author {
    font-size: 16px;
    color: var(--gray);
}

.testimonial-author strong {
    color: var(--white);
}

/* Blog Section */
.blog-section {
    background: var(--elevated-bg);
    padding: 100px 0;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blog-section h2 {
    font-size: 42px;
    margin-top: 8px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card-new {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.blog-card-new:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-tag {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-new h3 {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--white);
}

.blog-card-new p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* Final CTA */
.final-cta-new {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(232, 98, 26, 0.12), transparent 70%);
}

.final-cta-new h2 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-new p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--elevated-bg);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--orange);
    text-decoration: none;
    font-family: 'Arial Black', sans-serif;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-new h1 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .pain-cards,
    .feature-grid,
    .tool-cards,
    .blog-cards {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-connector {
        width: 2px;
        height: 60px;
        margin: 0 auto;
    }
    
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    blockquote {
        font-size: 22px;
    }
}
