/* ================================================
   DataDay Technology Solutions - Main Stylesheet
   Brand Colors: #046bd2 (primary blue), #1e293b (dark slate)
   ================================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #046bd2;
    --primary-dark: #0357a8;
    --primary-light: #3b8de0;

    /* Neutrals */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;

    /* Accent Colors */
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --green: #22c55e;
    --magenta: #e91e63;
    --purple: #8b5cf6;
    --gold: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #046bd2 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(4, 107, 210, 0.15) 0%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(4, 107, 210, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================================================
   SITE HEADER
   ================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 280px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 10px;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cyan);
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-sm {
    padding: 8px 16px !important;
    font-size: 0.8125rem !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 0.875rem;
    }

    .logo img {
        height: 55px;
        max-width: 220px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .logo img {
        height: 45px;
        max-width: 160px;
        padding: 6px 10px;
        border-radius: 8px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav a:last-child {
        border-bottom: none;
        margin-top: 16px;
    }

    .main-nav .btn {
        text-align: center;
        justify-content: center;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 200px 0 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(4, 107, 210, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 107, 210, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(4, 107, 210, 0.1);
    border: 1px solid rgba(4, 107, 210, 0.2);
    border-radius: 100px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    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-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-400);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.stat-divider {
    width: 1px;
    background: var(--slate-700);
}

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

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(4, 107, 210, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(4, 107, 210, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--slate-50);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(4, 107, 210, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-featured {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    border: 1px solid var(--slate-700);
}

.service-card-featured .service-title,
.service-card-featured .service-desc {
    color: var(--white);
}

.service-card-featured .service-desc {
    color: var(--slate-400);
}

.service-card-featured .service-icon {
    background: rgba(4, 107, 210, 0.2);
    color: var(--cyan);
}

.service-card-ai {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.service-card-ai .service-title,
.service-card-ai .service-desc {
    color: var(--white);
}

.service-card-ai .service-desc {
    color: var(--slate-400);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 16px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-icon-splunk {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.service-icon-ai {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-card-featured .service-link,
.service-card-ai .service-link {
    color: var(--cyan);
}

.service-link:hover {
    gap: 10px;
}

/* ================================================
   FEATURE HIGHLIGHT SECTION
   ================================================ */
.feature-highlight {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content {
    max-width: 520px;
}

.feature-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-title .gradient-text {
    display: block;
}

.feature-desc {
    font-size: 1.0625rem;
    color: var(--slate-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--slate-700);
    font-size: 1rem;
}

.feature-list svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

/* Phone Routing Demo Visual */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-routing-demo {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: var(--gradient-dark);
    border-radius: 24px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.call-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.call-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.call-incoming {
    border-color: var(--green);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.call-incoming svg {
    color: var(--green);
}

.call-ai {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.1);
}

.call-ai svg {
    color: var(--purple);
}

.flow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--green), var(--purple));
}

.flow-branch {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    height: 40px;
    width: 100%;
}

.branch-line {
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--cyan);
}

.branch-line.branch-1 {
    left: 20%;
    transform: rotate(-30deg);
    transform-origin: top center;
}

.branch-line.branch-2 {
    left: 50%;
    transform: translateX(-50%);
}

.branch-line.branch-3 {
    right: 20%;
    transform: rotate(30deg);
    transform-origin: top center;
}

.route-options {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.route-node {
    flex: 1;
    padding: 12px 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: var(--cyan);
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    padding: 80px 0;
    background: var(--slate-50);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-visual {
        order: -1;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

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

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   DEMOS PAGE - SPLUNK THEME
   ================================================ */
.demos-page {
    background: var(--slate-50);
}

.demos-hero {
    background: var(--gradient-dark);
    padding: 200px 0 60px;
    text-align: center;
}

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

/* Splunk Section - Dark Theme */
.splunk-section {
    background: #171d21;
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.splunk-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.splunk-section .section-header {
    position: relative;
    z-index: 1;
}

.splunk-section .section-tag {
    background: rgba(233, 30, 99, 0.15);
    color: var(--magenta);
}

.splunk-section .section-title {
    color: var(--white);
}

.splunk-section .section-subtitle {
    color: var(--slate-400);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(233, 30, 99, 0.1);
}

.demo-video {
    position: relative;
    aspect-ratio: 16/9;
    background: #0d1117;
    overflow: hidden;
}

.demo-video video,
.demo-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-play-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.demo-play-btn svg {
    width: 64px;
    height: 64px;
    color: var(--white);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.demo-content {
    padding: 24px;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.demo-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
}

.demo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.demo-desc {
    font-size: 0.9375rem;
    color: var(--slate-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.demo-feature {
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 500;
}

.demo-cta {
    display: flex;
    gap: 12px;
}

.btn-splunk {
    background: linear-gradient(135deg, var(--magenta), #c2185b);
    color: var(--white);
    flex: 1;
}

.btn-splunk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-outline-splunk {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline-splunk:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Other Vendors Section - Light Theme */
.vendors-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.vendor-demo-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vendor-demo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.vendor-demo-card .demo-title {
    color: var(--slate-900);
}

.vendor-demo-card .demo-desc {
    color: var(--slate-600);
}

.vendor-demo-card .demo-feature {
    background: rgba(4, 107, 210, 0.1);
    border-color: rgba(4, 107, 210, 0.2);
    color: var(--primary);
}

/* Coming Soon Card */
.demo-card-coming-soon {
    position: relative;
    overflow: hidden;
}

.demo-card-coming-soon .demo-video {
    filter: grayscale(30%) brightness(0.9);
    position: relative;
}

.demo-card-coming-soon .demo-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.demo-card-coming-soon:hover {
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Diagonal Corner Ribbon */
.coming-soon-badge {
    position: absolute;
    top: 32px;
    right: -50px;
    z-index: 20;
    width: 200px;
    padding: 8px 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Ribbon folded edge effect */
.coming-soon-badge::before,
.coming-soon-badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    border: 5px solid transparent;
    border-top-color: #b45309;
}

.coming-soon-badge::before {
    left: 0;
    border-left-color: #b45309;
}

.coming-soon-badge::after {
    right: 0;
    border-right-color: #b45309;
}

/* Small inline badge variant */
.coming-soon-badge-small {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================================
   HERO VISUAL - DYNAMIC FLOATING PANELS
   ================================================ */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 420px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 107, 210, 0.3) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Main Code Panel */
.floating-panel {
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(4, 107, 210, 0.15);
    overflow: hidden;
    z-index: 10;
}

.panel-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.panel-title {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-family: 'Monaco', 'Menlo', monospace;
}

.panel-code {
    padding: 16px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
}

.code-line {
    color: var(--slate-400);
}

.code-line.indent {
    padding-left: 20px;
}

.code-key {
    color: var(--cyan);
}

.code-string {
    color: #a5d6ff;
}

.code-success {
    color: var(--green);
    font-weight: 600;
}

.cursor-blink {
    color: var(--cyan);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 5;
}

.floating-card:hover {
    transform: scale(1.08) !important;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(4, 107, 210, 0.3);
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.card-icon-splunk {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(233, 30, 99, 0.1));
    color: var(--magenta);
}

.card-icon-api {
    background: linear-gradient(135deg, rgba(4, 107, 210, 0.2), rgba(4, 107, 210, 0.1));
    color: var(--primary);
}

.card-icon-ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    color: var(--purple);
}

.card-icon-cloud {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    color: var(--cyan);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: floatCard1 5s ease-in-out infinite;
}

.card-2 {
    top: 5%;
    right: 10%;
    animation: floatCard2 6s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    left: 0;
    animation: floatCard3 5.5s ease-in-out infinite;
}

.card-4 {
    bottom: 10%;
    right: 5%;
    animation: floatCard4 4.5s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-18px) rotate(-3deg); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-in-out infinite;
}

.path-1 { animation-delay: 0s; }
.path-2 { animation-delay: 0.5s; }
.path-3 { animation-delay: 1s; }
.path-4 { animation-delay: 1.5s; }

@keyframes drawLine {
    0%, 100% { stroke-dashoffset: 200; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 15%; animation-delay: 1s; background: var(--primary); }
.particle-3 { top: 30%; right: 20%; animation-delay: 2s; background: var(--magenta); }
.particle-4 { top: 70%; right: 25%; animation-delay: 3s; }
.particle-5 { top: 50%; left: 40%; animation-delay: 4s; background: var(--purple); }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

/* ================================================
   WHAT WE BUILD SECTION
   ================================================ */
.what-we-build {
    padding: var(--section-padding) 0;
    background: var(--slate-50);
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.build-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.build-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.build-card-large {
    grid-column: span 1;
}

.build-card-large:nth-child(1),
.build-card-large:nth-child(2) {
    grid-column: span 1;
}

.build-card-featured {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    border: 1px solid var(--slate-700);
    grid-row: span 2;
}

.build-card-featured .build-title {
    color: var(--white);
}

.build-card-featured .build-desc {
    color: var(--slate-400);
}

.build-card-featured .build-list li {
    color: var(--slate-300);
}

.build-card-featured .build-icon {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.build-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.build-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 16px;
    color: var(--primary);
    margin-bottom: 20px;
}

.build-icon-splunk {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.build-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.build-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.build-list {
    list-style: none;
    margin-bottom: 20px;
}

.build-list li {
    position: relative;
    padding-left: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: var(--slate-700);
    font-size: 0.9rem;
}

.build-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.build-card-featured .build-list li::before {
    background: var(--cyan);
}

.build-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.build-cta:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .build-grid {
        grid-template-columns: 1fr 1fr;
    }

    .build-card-featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .build-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   CAPABILITIES SECTION
   ================================================ */
.capabilities {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.capability {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--slate-50);
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
    text-align: center;
}

.capability:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.capability-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.capability span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   HOW WE WORK SECTION
   ================================================ */
.how-we-work {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
}

.how-we-work .section-title {
    color: var(--white);
}

.how-we-work .section-subtitle {
    color: var(--slate-400);
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    margin-top: 80px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--primary), var(--cyan));
        margin-top: 0;
    }

    .process-step {
        max-width: 400px;
    }
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.services-page {
    background: var(--slate-50);
}

.services-hero {
    position: relative;
    background: var(--gradient-dark);
    padding: 200px 0 100px;
    overflow: hidden;
}

.services-hero .hero-bg-grid,
.services-hero .hero-glow {
    position: absolute;
}

.services-hero-content {
    max-width: 700px;
}

.services-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.services-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Services Offerings */
.services-offerings {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.offering-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.offering-card-featured {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    border: 1px solid var(--slate-700);
    grid-row: span 1;
}

.offering-card-featured:hover {
    border-color: var(--cyan);
}

.offering-card-featured .offering-title,
.offering-card-featured .offering-desc,
.offering-card-featured .offering-features li {
    color: var(--white);
}

.offering-card-featured .offering-desc {
    color: var(--slate-400);
}

.offering-card-featured .offering-features li {
    color: var(--slate-300);
}

.offering-card-featured .offering-icon {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.offering-card-featured .offering-price {
    color: var(--slate-400);
}

.offering-card-featured .offering-cta {
    color: var(--cyan);
}

.offering-card-splunk {
    background: linear-gradient(135deg, #171d21 0%, #1a2332 100%);
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.offering-card-splunk:hover {
    border-color: var(--magenta);
}

.offering-card-splunk .offering-title,
.offering-card-splunk .offering-features li {
    color: var(--white);
}

.offering-card-splunk .offering-desc {
    color: var(--slate-400);
}

.offering-card-splunk .offering-icon {
    background: rgba(233, 30, 99, 0.15);
    color: var(--magenta);
}

.offering-card-splunk .offering-price {
    color: var(--slate-400);
}

.offering-card-splunk .offering-cta {
    color: var(--magenta);
}

.offering-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--magenta), #c2185b);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offering-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 18px;
    color: var(--primary);
    margin-bottom: 24px;
}

.offering-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 14px;
}

.offering-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.offering-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.offering-features li {
    position: relative;
    padding-left: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: var(--slate-700);
    font-size: 0.9rem;
}

.offering-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.offering-card-featured .offering-features li::before {
    background: var(--cyan);
}

.offering-card-splunk .offering-features li::before {
    background: var(--magenta);
}

.offering-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--slate-200);
    margin-top: auto;
}

.offering-card-featured .offering-footer,
.offering-card-splunk .offering-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.offering-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
}

.offering-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.offering-cta:hover {
    gap: 10px;
}

/* Industries Section */
.industries-section {
    padding: var(--section-padding) 0;
    background: var(--slate-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.industry-item svg {
    color: var(--primary);
}

.industry-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-700);
}

.industries-note {
    text-align: center;
    color: var(--slate-500);
    font-size: 0.9375rem;
}

.industries-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.industries-note a:hover {
    text-decoration: underline;
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-subtitle {
    color: var(--slate-400);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
}

.process-step .process-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-content p {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.7;
}

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

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .services-hero {
        padding: 160px 0 60px;
    }
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: var(--slate-900);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 10px;
}

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

.footer-tagline {
    color: var(--slate-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--slate-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--slate-400);
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--slate-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--slate-300);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page {
    background: var(--slate-50);
}

.contact-hero {
    background: var(--gradient-dark);
    padding: 200px 0 100px;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.contact-hero .hero-subtitle {
    color: var(--slate-400);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--slate-500);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--slate-300);
    border-radius: 12px;
    background: var(--white);
    color: var(--slate-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(4, 107, 210, 0.3);
}

.contact-info {
    padding: 20px 0;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--slate-600);
    font-size: 0.9375rem;
    text-decoration: none;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.contact-hours {
    margin-top: 40px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
}

.contact-hours h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.contact-hours ul {
    list-style: none;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--slate-600);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--slate-100);
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-hours li span:last-child {
    font-weight: 600;
    color: var(--slate-700);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 32px 24px;
    }
}

/* ================================================
   MOBILE APPS SECTION
   ================================================ */
.mobile-apps-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mobile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.mobile-app-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mobile-app-preview {
    display: flex;
    justify-content: center;
    padding: 32px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.phone-frame {
    width: 140px;
    height: 280px;
    background: #000;
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 14px;
    background: #1a1a1a;
    border-radius: 8px;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.phone-frame-placeholder {
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame-placeholder .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--slate-400);
    text-align: center;
    font-size: 0.875rem;
}

.mobile-app-content {
    padding: 24px;
}

.mobile-app-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mobile-app-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-app-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.mobile-app-category {
    font-size: 0.875rem;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: 0;
}

.mobile-app-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.mobile-app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-app-feature {
    padding: 4px 10px;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

.mobile-app-coming-soon {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .mobile-apps-section {
        padding: 60px 0;
    }

    .phone-frame {
        width: 120px;
        height: 240px;
    }
}

/* ================================================
   UTILITIES
   ================================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
