/* RevBadger Website - Revoth-Inspired Design */

:root {
    /* RevBadger Color Scheme - Teal/Emerald with Orange Accents */
    --primary-color: #FF8A3D;        /* Vibrant orange accent */
    --secondary-color: #2DD4BF;      /* Bright teal accent */
    --accent-color: #10B981;         /* Emerald highlight */
    --dark-bg: #0F1419;              /* Deep charcoal */
    --darker-bg: #080A0D;            /* Near black */
    --card-bg: rgba(15, 20, 25, 0.8); /* Semi-transparent charcoal */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.65);
    --border-color: rgba(45, 212, 191, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.nav {
    position: relative;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.footer .logo-img {
    height: 35px;
}

.nav-email {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-email:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF9D5C 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 138, 61, 0.25);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF9D5C 0%, var(--primary-color) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 138, 61, 0.35);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-subtext {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Social Proof */
.social-proof {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stars {
    color: var(--primary-color);
    font-size: 24px;
}

.social-proof-text {
    text-align: left;
}

.social-proof-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
}

.social-proof-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--darker-bg);
    text-align: center;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    font-family: 'Space Grotesk', sans-serif;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Section Styles */
.problem,
.solution,
.services,
.results,
.stats,
.cta {
    padding: 50px 0;
}

.problem {
    background: var(--dark-bg);
}

.solution {
    background: var(--darker-bg);
}

.services {
    background: var(--dark-bg);
}

.results {
    background: var(--darker-bg);
}

.stats {
    background: var(--card-bg);
}

.cta {
    background: var(--dark-bg);
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.7;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.problem-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(45, 212, 191, 0.15), 0 0 0 1px var(--secondary-color);
}

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

.problem-card h4 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.problem-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15), 0 0 0 1px var(--accent-color);
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card h4 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 138, 61, 0.15), 0 0 0 1px var(--primary-color);
}

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

.service-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: transparent;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-content {
    padding: 0;
}

.result-metric {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    letter-spacing: -2px;
}

.result-time {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA Section */
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .section-description {
        font-size: 16px;
    }

    .problem-grid,
    .features-grid,
    .services-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .social-proof {
        flex-direction: column;
    }

    .social-proof-text {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 13px;
    }

    .stat-number {
        font-size: 42px;
    }

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

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

/* Footer */
.footer {
    padding: 30px 0;
    background-color: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
