:root {
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --card-border: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;

    /* Brand Colors */
    --brand-cyan: #00e5ff;
    --brand-orange: #ff6b00;

    --accent-primary: var(--brand-cyan);
    --accent-secondary: var(--brand-orange);

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-cyan) 100%);
    --text-gradient: linear-gradient(to right, var(--brand-orange), var(--brand-cyan));

    --btn-primary-bg: #ffffff;
    --btn-primary-text: #000000;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.glow-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05) 0%, rgba(255, 107, 0, 0.02) 40%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    margin-left: 16px;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-cta {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    transition: all 0.2s;
}

.nav-cta:hover {
    border-color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(255, 107, 0, 0.08) 0%, rgba(0, 229, 255, 0.05) 30%, transparent 60%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.subheadline {
    margin-bottom: 40px;
    font-size: 1.25rem;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 32px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Services / Value Prop */
.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    padding: 30px 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.category-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.category-header p {
    font-size: 1rem;
    margin: 0;
}

.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

/* AI Automation Category - Orange Theme */
.category-ai {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.category-ai h3 {
    color: var(--brand-orange);
}

/* Marketing Automation Category - Cyan Theme */
.category-marketing {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0.05) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.category-marketing h3 {
    color: var(--brand-cyan);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* AI Cards - Orange Accent */
.service-card.card-ai {
    border-left: 3px solid var(--brand-orange);
}

.service-card.card-ai:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.service-card.card-ai .price {
    color: var(--brand-orange);
}

.service-card.card-ai .service-list li::before {
    color: var(--brand-orange);
}

/* Marketing Cards - Cyan Accent */
.service-card.card-marketing {
    border-left: 3px solid var(--brand-cyan);
}

.service-card.card-marketing:hover {
    border-color: var(--brand-cyan);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
}

.service-card.card-marketing .price {
    color: var(--brand-cyan);
}

.service-card.card-marketing .service-list li::before {
    color: var(--brand-cyan);
}

.service-card.highlight {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, rgba(0, 229, 255, 0.02) 100%);
    border-color: rgba(255, 107, 0, 0.3);
}

.card-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 24px;
}

.service-card .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-cyan);
    margin-top: 8px;
}

.service-card .price .period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '✓';
    color: var(--accent-primary);
    margin-right: 10px;
    font-weight: bold;
}

/* Social Proof */
.social-proof-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}

.testimonial p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 600;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--brand-orange);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.audit-form {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-cyan);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Footer */
.main-footer {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    margin-top: 60px;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.75rem;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .cta-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 64px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .navbar {
        padding: 20px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial {
        padding: 30px;
    }
}

/* Process Section Styles */
.process-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(255, 107, 0, 0.05) 50%, var(--bg-color) 100%);
    position: relative;
    padding: 100px 0;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 30px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.05);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    line-height: 1;
}

.process-step h3 {
    margin-top: 15px;
    color: var(--brand-cyan);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--text-secondary);
    align-self: center;
    font-weight: 300;
}

@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -20px 0;
    }
}