/*
 * Marketing Site Styles - Inspired by Defiant Digital
 * Bold, Modern, High-Impact Design
 */

:root {
    --primary-yellow: #F7FF00;
    --dark-bg: #0A0A0A;
    --dark-navy: #0F1419;
    --card-dark: #1A1D23;
    --text-primary: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-green: #00FF85;
    --accent-purple: #9D4EDD;
}

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

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

/* Navigation */
.marketing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

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

.nav-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-yellow);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-yellow);
}

.nav-cta {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 255, 0, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 255, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

/* New 2-Column Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    text-align: left;
}

.hero-title-new {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title-new .highlight-simple {
    color: var(--primary-yellow);
    position: relative;
    display: inline-block;
}

.hero-subtitle-new {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta-group-new {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-new {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary-yellow);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 255, 0, 0.4);
}

.btn-secondary-new {
    background: transparent;
    color: var(--primary-yellow);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-yellow);
    display: inline-flex;
    align-items: center;
}

.btn-secondary-new:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

.hero-image-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(247, 255, 0, 0.15) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(247, 255, 0, 0.3);
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.4), 0 0 80px rgba(247, 255, 0, 0.2);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(157, 78, 221, 0.5), 0 0 100px rgba(247, 255, 0, 0.3);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(247, 255, 0, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-software-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

/* Fallback for missing image */
.hero-image-placeholder:not(:has(img[src])),
.hero-image-placeholder:has(img[alt]) {
    background: linear-gradient(135deg, #9D4EDD 0%, #F7FF00 100%);
    position: relative;
}

.hero-image-placeholder:not(:has(img[src]))::after,
.hero-image-placeholder:has(img[alt])::after {
    content: 'Software Screenshot';
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    text-align: center;
    z-index: 3;
}

/* Legacy Hero Styles (kept for backwards compatibility) */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(247, 255, 0, 0.2);
}

.hero-badge .badge-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--primary-yellow);
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--primary-yellow) 0%,
        #FFFFFF 50%,
        var(--primary-yellow) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(247, 255, 0, 0.5));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-yellow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card-dark);
    border-radius: 24px;
    padding: 3rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 1rem;
}

/* Comparison Table */
.comparison-section {
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-dark);
    border-radius: 24px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 2rem;
    background: rgba(247, 255, 0, 0.05);
    border-bottom: 2px solid var(--primary-yellow);
    font-weight: 700;
    text-align: center;
}

.comparison-header > div:first-child {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    text-align: center;
}

.comparison-row > div:first-child {
    text-align: left;
    font-weight: 600;
}

.check-icon {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.cross-icon {
    color: #FF4444;
    font-size: 1.5rem;
}

/* Testimonial */
.testimonial-card {
    background: var(--card-dark);
    border-radius: 24px;
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-quote .highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Footer */
.marketing-footer {
    background: var(--dark-navy);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .nav-cta {
        padding: 0.6rem 1.5rem;
    }

    .hero-section {
        padding-top: 150px;
    }

    /* New Hero Grid Responsive */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content-left {
        text-align: center;
    }

    .hero-title-new {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle-new {
        max-width: 100%;
    }

    .hero-cta-group-new {
        justify-content: center;
    }

    .btn-primary-new,
    .btn-secondary-new {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hero-image-right {
        order: -1;
    }

    .hero-image-placeholder {
        max-width: 100%;
    }

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-row > div:first-child {
        text-align: center;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

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

    section {
        padding: 4rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-yellow {
    color: var(--primary-yellow);
}

.text-green {
    color: var(--accent-green);
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}
