:root {
    --primary-black: #1b1c1d;
    --deep-black: #0a0a0b;
    --accent-gold: #ffd900;
    --dark-green: #183a13;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #e5e7eb;
    --cream: #f5f0d6;
    --soft-pink: #f8e4e2;
    --gradient-green: linear-gradient(135deg, #ffd900 0%, #183a13 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(27, 28, 29, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(92, 204, 124, 0.1);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 11, 0.95);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(92, 204, 124, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(24, 58, 19, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(92, 204, 124, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 204, 124, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(92, 204, 124, 0.1);
    border: 1px solid rgba(92, 204, 124, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(92, 204, 124, 0.4);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(92, 204, 124, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(92, 204, 124, 0.1);
    border-color: var(--accent-gold);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Problem/Solution Section */
.problem-section {
    padding: 8rem 5%;
    background: var(--cream);
    position: relative;
}

.problem-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

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

.comparison-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.problem-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-black);
}

.solution-card {
    background: var(--primary-black);
    color: var(--text-white);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.problem-card .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.solution-card .card-icon {
    background: rgba(92, 204, 124, 0.2);
    color: var(--accent-gold);
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-card .card-title {
    color: var(--primary-black);
}

.solution-card .card-title {
    color: var(--accent-gold);
}

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

.card-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.solution-card .card-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.card-list li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-card .card-list li::before {
    content: '✓';
    color: var(--accent-gold);
}

/* Features Section */
.challenge-header {
    text-align: center;
}

.features-section {
    padding: 8rem 5%;
    background: var(--primary-black);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 204, 124, 0.3), transparent);
}

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

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

.features-header .section-label {
    color: var(--accent-gold);
}

.features-header .section-title {
    color: var(--text-white);
}

.features-header .section-subtitle {
    color: var(--text-gray);
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(92, 204, 124, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 204, 124, 0.3);
    background: rgba(92, 204, 124, 0.05);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(92, 204, 124, 0.2), rgba(24, 58, 19, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* How It Works Section */
.how-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--deep-black) 100%);
    position: relative;
}

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

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

.how-header .section-label {
    color: var(--accent-gold);
}

.how-header .section-title {
    color: var(--text-white);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--dark-green));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-black);
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: scale(1.1);
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 250px;
    margin: 0 auto;
}

/* Revenue Section */
.revenue-section {
    padding: 8rem 5%;
    background: var(--soft-pink);
    position: relative;
}

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

.revenue-header {
    text-align: center;
    margin-bottom: 4rem;
}

.revenue-header .section-label {
    color: var(--dark-green);
}

.revenue-header .section-title {
    color: var(--primary-black);
}

.revenue-header .section-subtitle {
    color: #4b5563;
    margin-left: auto;
    margin-right: auto;
}

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

.revenue-card {
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}

.traditional-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.ego-card {
    background: var(--primary-black);
    color: var(--text-white);
}

.revenue-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.traditional-card .revenue-card-title {
    color: var(--primary-black);
}

.ego-card .revenue-card-title {
    color: var(--accent-gold);
    border-bottom-color: rgba(92, 204, 124, 0.3);
}

.revenue-stats {
    margin-bottom: 2rem;
}

.revenue-stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.ego-card .revenue-stat {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.revenue-stat-label {
    color: #6b7280;
}

.revenue-stat-value {
    font-weight: 700;
}

.traditional-card .revenue-stat-value {
    color: var(--primary-black);
}

.ego-card .revenue-stat-value {
    color: var(--accent-gold);
}

.revenue-highlight {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.traditional-card .revenue-highlight {
    background: rgba(239, 68, 68, 0.1);
}

.ego-card .revenue-highlight {
    background: rgba(92, 204, 124, 0.1);
}

.highlight-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.traditional-card .highlight-number {
    color: #ef4444;
}

.ego-card .highlight-number {
    color: var(--accent-gold);
}

.highlight-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.ego-card .highlight-label {
    color: var(--text-gray);
}

/* Integration Section */
.integration-section {
    padding: 8rem 5%;
    background: var(--primary-black);
    position: relative;
}

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

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integration-content .section-label {
    color: var(--accent-gold);
}

.integration-content .section-title {
    color: var(--text-white);
}

.integration-content .section-subtitle {
    color: var(--text-gray);
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.integration-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(92, 204, 124, 0.2), rgba(24, 58, 19, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.integration-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.integration-feature-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.integration-visual {
    position: relative;
}

.integration-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(92, 204, 124, 0.2);
    border-radius: 24px;
    padding: 3rem;
}

.integration-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: center;
}

.integration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.integration-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(92, 204, 124, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.integration-step:hover {
    background: rgba(92, 204, 124, 0.1);
    transform: translateX(10px);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-gold);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Scalability Section */
.scale-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--primary-black) 100%);
}

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

.scale-header {
    text-align: center;
    margin-bottom: 4rem;
}

.scale-header .section-label {
    color: var(--accent-gold);
}

.scale-header .section-title {
    color: var(--text-white);
}

.scale-header .section-subtitle {
    color: var(--text-gray);
    margin-left: auto;
    margin-right: auto;
}

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

.market-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(92, 204, 124, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.market-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    background: rgba(92, 204, 124, 0.05);
}

.market-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(92, 204, 124, 0.2), rgba(24, 58, 19, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.market-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.market-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: var(--gradient-green);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(24, 58, 19, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-black);
}

/* Footer */
.footer {
    padding: 4rem 5%;
    background: var(--deep-black);
    border-top: 1px solid rgba(92, 204, 124, 0.1);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom .logo {
    text-decoration: none;
    font-size: 1.5rem;
}

/* Floating Elements */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(92, 204, 124, 0.1);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(24, 58, 19, 0.15);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(92, 204, 124, 0.08);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(5deg); }
    50% { transform: translate(0, 100px) rotate(0deg); }
    75% { transform: translate(-50px, 50px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        flex-direction: column;
        gap: 3rem;
    }

    .process-line {
        display: none;
    }

    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .step-desc {
        max-width: none;
        margin: 0;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-stats {
        gap: 2rem;
    }

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

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

    .revenue-comparison {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 5% 3rem;
    }

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

    .btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .revenue-card {
        padding: 2rem;
    }

    .highlight-number {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
.reveal {
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    will-change: transform, opacity;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    will-change: transform, opacity;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    will-change: transform, opacity;
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Mobile Menu Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 11, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent-gold);
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    font-size: 2rem;
    color: var(--text-white);
    cursor: pointer;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(92, 204, 124, 0.5);
    border-radius: 12px;
    background: transparent;
    color: rgba(92, 204, 124, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top.hidden {
    opacity: 0;
    pointer-events: none;
}

.back-to-top:hover {
    background: rgba(92, 204, 124, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    color: var(--accent-gold);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
    }
}