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

:root {
    --orange: #FF6B35;
    --deep-orange: #E8501D;
    --dark: #0A0A0A;
    --darker: #050505;
    --gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --accent: #00F0FF;
    --white: #FFFFFF;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--darker);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, var(--dark) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(255, 107, 53, 0.03) 49px,
            rgba(255, 107, 53, 0.03) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(255, 107, 53, 0.03) 49px,
            rgba(255, 107, 53, 0.03) 50px
        );
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--deep-orange));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 2px;
    animation: slideDown 0.8s ease-out;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--orange);
}

.btn-secondary:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    margin: 4rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--orange);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    line-height: 1.8;
}

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

.capability-card {
    background: var(--gray);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.capability-card:hover {
    background: var(--light-gray);
    border-color: var(--orange);
    transform: translateY(-5px);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--deep-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.capability-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.capability-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-size: 0.75rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(255, 107, 53, 0.2);
    line-height: 1;
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Use Cases */
.use-cases {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: linear-gradient(135deg, var(--gray) 0%, var(--dark) 100%);
    border-left: 4px solid var(--orange);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    border-left-color: var(--accent);
    transform: translateX(10px);
}

.use-case-industry {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--orange);
    letter-spacing: 1px;
}

.use-case-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.use-case-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.use-case-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.metric {
    font-size: 0.85rem;
}

.metric-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    display: block;
}

/* Tech Stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    background: var(--gray);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.tech-item:hover {
    border-color: var(--orange);
    background: var(--light-gray);
    transform: translateY(-3px);
}

.tech-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--orange);
    font-size: 1.1rem;
    line-height: 1.2;
}

.tech-item-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    hyphens: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--orange);
}

/* Footer */
footer {
    background: var(--darker);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--orange);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-link:hover {
    color: var(--orange);
}

.footer-contact-link span {
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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


/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-bar {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 2rem 0;
    }

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

    section {
        padding: 4rem 0;
    }

    .use-case {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .use-case-industry {
        font-size: 2rem;
    }

    .use-case-content h3 {
        font-size: 1.5rem;
    }

    .use-case-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .capabilities-grid,
    .process-steps,
    .tech-stack {
        grid-template-columns: 1fr;
    }

    .capability-card {
        padding: 2rem;
    }

    .process-step {
        padding-left: 3rem;
    }

    .step-number {
        font-size: 4rem;
    }

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

    .footer-info {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }


    .cta-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .capability-card {
        padding: 1.5rem;
    }

    .capability-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .capability-title {
        font-size: 1.5rem;
    }

    .process-step {
        padding-left: 2.5rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .use-case {
        padding: 1.5rem;
    }

    .use-case-industry {
        font-size: 1.5rem;
    }

    .use-case-content h3 {
        font-size: 1.3rem;
    }

    .tech-item {
        padding: 1.5rem;
        min-height: 100px;
    }

    .tech-item-name {
        font-size: 1rem;
    }

    .tech-item-type {
        font-size: 0.7rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    footer {
        padding: 2rem 0;
    }

}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Floating Dock Styles */
.simple-dock {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0 !important;
    box-shadow: none !important;
    z-index: 999999 !important;
    border: none !important;
    position: relative;
    overflow: visible;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: auto;
    min-height: auto;
}

.simple-btn {
    width: 60px !important;
    height: 60px !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 24px;
    z-index: 1;
    background: transparent !important;
    box-shadow: none;
    overflow: visible;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-btn:hover {
    transform: scale(1.15) translateY(-3px);
}

.simple-btn:active {
    transform: scale(1.05) translateY(0);
}

.chat-btn {
    background: transparent !important;
    color: #FF6B35 !important;
}

.chat-btn:hover {
    color: #FF6B35 !important;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 1));
}

.call-btn {
    background: transparent !important;
    color: #FF6B35 !important;
}

.call-btn:hover {
    color: #FF6B35 !important;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 1));
}

.call-btn.calling {
    animation: pulseGlow 2s ease-in-out infinite;
    color: #FF6B35 !important;
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 1));
}

.call-btn.connected {
    color: #22c55e !important;
    animation: connectedPulse 2s ease-in-out infinite;
}

.call-btn.connected:hover {
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.8));
}

.toc-chat-button,
.vapi-web-call-widget,
[class*="vapi"] {
    display: none !important;
}

/* Futuristic call status overlay */
.call-status {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    z-index: 1000000;
    display: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 53, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.call-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: scan 2s infinite;
}

.call-status.show {
    display: block;
    animation: slideInRight 0.3s ease-out;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 1));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px rgba(255, 107, 53, 1));
    }
}

@keyframes connectedPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.8));
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .simple-dock {
        right: 15px;
        bottom: 15px;
        gap: 14px;
    }
    
    .simple-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .call-status {
        top: 15px;
        right: 15px;
        font-size: 11px;
        padding: 12px 18px;
    }
}
