:root {
    --brand-orange: #FF6600;
    --brand-orange-dark: #E05A00;
    --brand-orange-light: #FF8533;
    --text-primary: #050505;
    --text-secondary: #333333;
    --text-tertiary: #666666;
    --text-on-dark: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9F9F9;
    --bg-tertiary: #F0F0F0;
    --bg-dark: #111111;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 5px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.3rem;
    --radius-md: 0.6rem;
    --radius-lg: 1rem;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Navigation */
nav {
    background: var(--bg-dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    color: var(--text-on-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-cta a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-cta a:hover {
    color: var(--brand-orange);
}

/* Button Styles - Style Guide Compliant */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    user-select: none;
    outline: none;
    text-align: center;
}

.btn:focus {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background-color: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1.5px solid var(--brand-orange);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Button Size Variants */
.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    min-height: 44px;
}

.btn-tool {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-on-dark);
    padding: 5rem 0 4rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-highlight {
    color: var(--brand-orange);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.placeholder-visual {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 2rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-secondary);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--bg-tertiary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-detail {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-visual {
    margin-top: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1rem;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Key Features */
.key-features {
    background: var(--bg-secondary);
    border-top: 1px solid #e5e7eb;
}

.features-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

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

.feature-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--bg-tertiary);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-visual {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e5e7eb;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

/* Tools Section */
.tools-section {
    background: white;
    border-top: 1px solid #e5e7eb;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tool-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.tool-card:hover {
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tool-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.tools-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-tertiary);
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 2rem auto 0;
}

.trust-badge {
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Proof Section */
.proof-section {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.proof-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.proof-content .subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.proof-stat {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
}

.proof-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.proof-description {
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-badges-dark {
    margin-top: 3rem;
}

.trust-badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: var(--text-on-dark);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-form h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-orange);
}

.btn-form {
    width: 100%;
    margin-top: 1rem;
}

.form-footer {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-email-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}

.form-email-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-orange-light);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand-orange);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-expertise {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features-2col {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-content {
        flex-wrap: wrap;
    }

    .nav-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
    }
}

