/* Design Token System */
:root {
    --bg-deep: #030303;
    --bg-glass: rgba(10, 10, 12, 0.7);
    --bg-glass-heavy: rgba(15, 15, 20, 0.9);
    --border-glow: rgba(255, 255, 255, 0.05);
    --border-glow-active: rgba(6, 182, 212, 0.4);
    
    /* Brand Accents */
    --accent-cyan: #06b6d4;      /* AI / Automation */
    --accent-purple: #a855f7;    /* APIs / Connections */
    --accent-rose: #f43f5e;      /* Apps / Scalability */
    --accent-cyan-rgb: 6, 182, 212;
    --accent-purple-rgb: 168, 85, 247;
    --accent-rose-rgb: 244, 63, 94;

    /* Typographic Colors */
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;

    /* Spacing & Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
}

/* Base resets & typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* Grid Pattern */
    background-image: 
        radial-gradient(circle at 50% 0px, rgba(168, 85, 247, 0.1) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

canvas#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Gradient effects */
.gradient-text {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, rgba(var(--accent-cyan-rgb), 0.8) 100%);
    color: #030303;
    box-shadow: 0 4px 20px rgba(var(--accent-cyan-rgb), 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-cyan-rgb), 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    background: rgba(var(--accent-cyan-rgb), 0.1);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.3);
    color: var(--accent-cyan);
}

.btn-nav:hover {
    background: rgba(var(--accent-cyan-rgb), 0.2);
    box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.2);
    transform: translateY(-1px);
}

/* Glassmorphism Common Style */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Main Header */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(12px);
    border-color: var(--border-glow);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-bar {
    display: flex;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem;
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.language-btn {
    padding: 0.3rem 0.45rem;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.language-btn:hover,
.language-btn.active {
    color: var(--accent-cyan);
    background: rgba(var(--accent-cyan-rgb), 0.12);
}

/* Cookie consent */
.cookie-banner {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.2rem 1.4rem;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(10, 10, 14, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 60px rgba(0, 0, 0, 0.55);
}

.cookie-banner[hidden],
.cookie-modal-overlay[hidden] {
    display: none;
}

.cookie-banner-copy {
    max-width: 680px;
}

.cookie-banner-copy h2,
.cookie-modal h2 {
    margin-bottom: 0.45rem;
    font-size: 1.15rem;
}

.cookie-banner-copy p,
.cookie-modal > p,
.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.cookie-banner-actions,
.cookie-modal-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.65rem;
}

.cookie-banner-actions .btn,
.cookie-modal-actions .btn {
    padding: 0.65rem 1rem;
    white-space: nowrap;
}

.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 310;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.cookie-modal {
    position: relative;
    width: min(100%, 620px);
    padding: 2rem;
    background: rgba(10, 10, 14, 0.98);
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.cookie-category h3 {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.cookie-required {
    flex-shrink: 0;
    color: var(--accent-cyan);
    font-size: 0.72rem;
    font-weight: 700;
}

.cookie-toggle {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 24px;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
}

.cookie-toggle span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-toggle span::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    transition: transform 0.2s ease;
}

.cookie-toggle input:checked + span {
    background: var(--accent-cyan);
}

.cookie-toggle input:checked + span::after {
    transform: translateX(20px);
}

.cookie-modal-actions {
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-deep);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-glowing-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    top: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background-color: var(--accent-cyan);
}

.blob-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background-color: var(--accent-purple);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse-glow 2s infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

/* Terminal Widget inside Hero */
.terminal-widget {
    background: var(--bg-glass-heavy);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    width: 100%;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glow);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.terminal-buttons {
    display: flex;
    gap: 6px;
}

.term-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.term-btn.close { background-color: #ef4444; }
.term-btn.minimize { background-color: #f59e0b; }
.term-btn.maximize { background-color: #10b981; }

.terminal-title {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-left: auto;
}

.terminal-body {
    padding: 1.2rem;
    height: 340px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.terminal-lines {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.log-line {
    word-break: break-all;
}

.log-line.cmd::before {
    content: "$ ";
    color: var(--accent-cyan);
}

.log-line.success {
    color: #10b981;
}

.log-line.info {
    color: var(--accent-purple);
}

/* Services Grid Section */
.services-section {
    padding: 8rem 0;
    position: relative;
}

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

.eyebrow {
    color: var(--accent-cyan);
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(var(--accent-cyan-rgb), 0.08), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    color: #fff;
    background: rgba(var(--accent-cyan-rgb), 0.15);
    border-color: rgba(var(--accent-cyan-rgb), 0.4);
    box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.2);
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '→';
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Service CTA Card styling */
.service-cta-card {
    background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.15) 0%, rgba(var(--accent-cyan-rgb), 0.05) 100%);
    border: 1px solid rgba(var(--accent-purple-rgb), 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-card-content {
    text-align: center;
    max-width: 280px;
}

.cta-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cta-card-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Product Showcase */
.products-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.005), rgba(var(--accent-purple-rgb), 0.035));
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    right: -220px;
    top: 5%;
    border-radius: 50%;
    background: rgba(var(--accent-purple-rgb), 0.08);
    filter: blur(100px);
    pointer-events: none;
}

.products-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.products-heading-row .section-header { margin-bottom: 0; }
.products-heading-row .section-subtitle { margin: 0; }

.product-controls { display: flex; gap: 0.75rem; }

.product-nav {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.25s ease;
}

.product-nav:not(:disabled):hover {
    color: var(--accent-cyan);
    border-color: rgba(var(--accent-cyan-rgb), 0.45);
    transform: translateY(-2px);
}

.product-nav:disabled { opacity: 0.3; cursor: default; }
.product-slider { overflow: hidden; }

.product-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.product-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-height: 490px;
    display: grid;
    grid-template-rows: 1fr 190px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(11, 11, 15, 0.92);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.17); }
.product-card-copy { padding: 2.25rem 2.25rem 1.75rem; }

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}

.product-brand { height: 48px; margin-bottom: 1rem; display: flex; align-items: center; }
.product-brand-dexpat img { width: 142px; height: auto; filter: brightness(0) invert(1); }
.product-brand-lid { gap: 0.8rem; font-family: 'Sora', sans-serif; }
.product-brand-lid > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: #f59e0b; color: #17120a; font-weight: 800; }
.product-brand-lid strong { font-size: 1.45rem; }
.product-description { color: var(--text-secondary); font-size: 0.94rem; min-height: 4.6em; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 1.4rem 0; }
.product-tags li { padding: 0.35rem 0.65rem; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 999px; color: #c7c7ce; font-size: 0.72rem; }
.product-link { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--text-primary); font-family: 'Sora', sans-serif; font-size: 0.84rem; font-weight: 600; }
.product-link span:last-child { color: var(--accent-cyan); transition: transform 0.2s ease; }
.product-link:hover span:last-child { transform: translate(2px, -2px); }

.product-visual { position: relative; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.product-visual-dexpat { background: radial-gradient(circle at 50% 55%, rgba(129, 92, 246, 0.38), transparent 45%), linear-gradient(135deg, #171226, #09090c); }
.dexpat-orbit { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 230px; height: 110px; transform: translate(-50%, -50%) rotate(-8deg); }
.orbit-two { width: 340px; height: 155px; transform: translate(-50%, -50%) rotate(12deg); }
.dexpat-avatar { position: absolute; display: grid; place-items: center; width: 42px; height: 42px; border: 3px solid rgba(255,255,255,.75); border-radius: 50%; color: #fff; font-weight: 800; box-shadow: 0 10px 25px rgba(0,0,0,.35); }
.avatar-one { left: 13%; top: 25%; background: #7c3aed; }
.avatar-two { right: 13%; top: 19%; background: #db2777; }
.avatar-three { right: 24%; bottom: 14%; background: #0891b2; }
.dexpat-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; padding: .75rem 1rem; border-radius: 14px 14px 14px 3px; background: rgba(255,255,255,.94); color: #18181b; font-size: .8rem; font-weight: 700; box-shadow: 0 15px 35px rgba(0,0,0,.35); }

.product-visual-lid { background: radial-gradient(circle at 85% 0, rgba(245, 158, 11, .24), transparent 42%), linear-gradient(135deg, #16140e, #09090c); }
.lid-score { position: absolute; right: 2rem; top: 1.5rem; width: 72px; height: 72px; display: grid; place-content: center; text-align: center; border: 5px solid rgba(245, 158, 11, .8); border-radius: 50%; background: #13120e; }
.lid-score strong { font-family: 'Sora', sans-serif; font-size: 1rem; }
.lid-score span { color: var(--text-secondary); font-size: .58rem; text-transform: uppercase; }
.lid-question { position: absolute; left: 2rem; top: 1.6rem; width: 58%; display: flex; flex-direction: column; gap: .55rem; }
.lid-question small { color: #f59e0b; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.lid-question span { font-family: 'Sora', sans-serif; font-size: .8rem; line-height: 1.45; }
.lid-answer { position: absolute; left: 2rem; right: 2rem; bottom: 1.4rem; padding: .65rem .8rem; border: 1px solid rgba(52, 211, 153, .35); border-radius: 9px; background: rgba(52, 211, 153, .08); color: #d1fae5; font-size: .72rem; }
.lid-answer span { float: right; color: #34d399; }

.product-pagination { display: flex; justify-content: center; gap: .45rem; margin-top: 1.6rem; }
.product-dot { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 999px; background: #3f3f46; transition: width .25s ease, background .25s ease; }
.product-dot.active { width: 24px; background: var(--accent-cyan); }

/* Interactive Workflow Section */
.workflow-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.005);
}

.workflow-playground-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.workflow-builder-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-group-title {
    display: flex;
    align-items: flex-end;
    min-height: 2.7em;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

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

.workflow-node-btn {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.workflow-node-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.workflow-node-btn.active {
    background: rgba(6, 182, 212, 0.03);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.08);
}

.workflow-node-btn[data-type="process"].active {
    background: rgba(168, 85, 247, 0.03);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.08);
}

.btn-icon {
    font-size: 1.4rem;
}

.btn-meta {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.workflow-node-btn.active .btn-desc {
    color: var(--text-secondary);
}

/* Simulation Visualizer Panel */
.workflow-visualizer-panel {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.visualizer-canvas-wrapper {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}

.workflow-svg-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.visualizer-nodes-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-node {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 0.8rem 1.2rem;
    position: relative;
    flex: 0 1 30%;
    min-width: 0;
    max-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

.viz-node-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    filter: blur(8px);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.viz-node-content {
    display: flex;
    flex-direction: column;
}

.viz-node-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: bold;
    letter-spacing: 0.05em;
}

.viz-node-name {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
}

#node-trigger-display {
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
}
#node-trigger-display .viz-node-glow {
    background: rgba(var(--accent-cyan-rgb), 0.3);
}

#node-process-display {
    border-color: rgba(var(--accent-purple-rgb), 0.3);
}
#node-process-display .viz-node-glow {
    background: rgba(var(--accent-purple-rgb), 0.3);
}

#node-action-display {
    border-color: rgba(var(--accent-rose-rgb), 0.3);
}
#node-action-display .viz-node-glow {
    background: rgba(var(--accent-rose-rgb), 0.3);
}

.viz-connector-space {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    margin: 0 10px;
}

.pulse-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transition: width 0s ease;
}

/* Simulator Console inside Lab */
.visualizer-console {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-glow);
    display: flex;
    flex-direction: column;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
}

.console-header {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-glow);
}

.console-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.console-dot.green {
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.console-dot.yellow {
    background-color: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}

.console-status-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.btn-simulate {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    background: var(--accent-cyan);
    color: #030303;
    margin-left: auto;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-simulate:hover {
    box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.4);
    transform: scale(1.02);
}

.console-output {
    padding: 1rem;
    height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.console-log-line {
    word-break: break-all;
}

/* Tech Section */
.tech-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.tech-ecosystem-display {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 3rem;
}

.tech-node-network {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-hub-center {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #030303;
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
}

.tech-hub-center .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    font-family: 'Sora', sans-serif;
    font-weight: bold;
    color: var(--text-primary);
}

.tech-hub-center .pulse-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(var(--accent-cyan-rgb), 0.15);
    filter: blur(10px);
    z-index: -1;
    animation: pulse-ring 2.5s infinite;
}

.orbiting-tech-item {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.tech-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(15, 15, 20, 0.85);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tech-circle:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(var(--accent-purple-rgb), 0.3);
    transform: scale(1.1);
}

.tech-description-box {
    padding: 2.5rem;
}

.tech-description-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.tech-description-box p {
    color: var(--text-secondary);
}

/* Metrics and Case Studies Section */
.metrics-section {
    padding: 8rem 0;
}

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

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-num-wrapper {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-number {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-value {
    max-width: 100%;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.stat-card:nth-child(2) .stat-number {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-unit {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-left: 2px;
}

.stat-card:nth-child(1) .stat-unit {
    color: var(--accent-cyan);
}

.stat-label {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.case-study-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    border-radius: 16px;
}

/* Browser Mockup */
.mockup-frame {
    background: rgba(10, 10, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mockup-browser-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-browser-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-browser-header .dot.red { background-color: #ef4444; }
.mockup-browser-header .dot.yellow { background-color: #f59e0b; }
.mockup-browser-header .dot.green { background-color: #10b981; }

.mockup-url {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
    margin-left: 2rem;
    background: rgba(255,255,255,0.02);
    padding: 2px 10px;
    border-radius: 4px;
}

.mockup-browser-body {
    padding: 1.2rem;
    height: 220px;
}

.mockup-dashboard-layout {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    height: 100%;
}

.mockup-dashboard-layout .sidebar {
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
    height: 100%;
}

.mockup-dashboard-layout .main-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-dashboard-layout .top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-dashboard-layout .card {
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.03);
}

.mockup-dashboard-layout .card.short {
    height: 40px;
}

.mockup-dashboard-layout .card.short.glow {
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
    box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.1);
}

.mockup-dashboard-layout .card.tall {
    height: 120px;
}

.chart-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 10px;
}

.chart-bar-container .bar {
    width: 15px;
    height: var(--h);
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    transition: height 1s ease-in-out;
}

.chart-bar-container .bar.glow {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.5);
}

.case-study-details {
    display: flex;
    flex-direction: column;
}

.case-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-purple);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.case-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.case-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.case-metrics {
    display: flex;
    gap: 3rem;
}

.metric-mini {
    display: flex;
    flex-direction: column;
}

.metric-mini .val {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.metric-mini .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact / Proposal RFP Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.90fr 1.10fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-method-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method-item .details {
    display: flex;
    flex-direction: column;
}

.contact-method-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-method-item .value {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form-panel {
    padding: 3rem;
    border-radius: 16px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

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

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

.proposal-option-card {
    cursor: pointer;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-inner {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    height: 100%;
    transition: all 0.3s ease;
}

.proposal-option-card:hover .option-card-inner {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-glow);
    border-radius: 4px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.hidden-checkbox:checked + .option-card-inner {
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
    background: rgba(var(--accent-cyan-rgb), 0.02);
}

.hidden-checkbox:checked + .option-card-inner .checkbox-custom {
    border-color: var(--accent-cyan);
    background-color: var(--accent-cyan);
}

.hidden-checkbox:checked + .option-card-inner .checkbox-custom::after {
    content: '✓';
    color: #030303;
    font-size: 0.65rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.option-card-inner .title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.option-card-inner .desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-field-group {
    margin-bottom: 2.5rem;
}

.field-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Range Slider styling */
.range-slider-container {
    position: relative;
    padding-top: 10px;
}

.form-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    outline: none;
}

.form-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.form-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

/* Radio Pill styles */
.radio-options-row {
    display: flex;
    gap: 1rem;
}

.radio-pill {
    cursor: pointer;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-pill span {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.01);
    transition: all 0.3s ease;
}

.radio-pill:hover span {
    border-color: rgba(255, 255, 255, 0.15);
}

.radio-pill input:checked + span {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    background: rgba(var(--accent-purple-rgb), 0.05);
    box-shadow: 0 0 15px rgba(var(--accent-purple-rgb), 0.1);
}

/* Inputs grid step 3 */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-grid .full-width {
    grid-column: span 2;
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper input,
.form-input-wrapper textarea {
    width: 100%;
    padding: 1rem 0.8rem 0.6rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input-wrapper textarea {
    resize: none;
}

.form-input-wrapper input:focus,
.form-input-wrapper textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(255,255,255,0.03);
}

.form-input-wrapper label {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input-wrapper textarea ~ label {
    top: 1.2rem;
    transform: none;
}

.form-input-wrapper input:focus ~ label,
.form-input-wrapper input:not(:placeholder-shown) ~ label {
    top: 0.4rem;
    transform: none;
    font-size: 0.65rem;
    color: var(--accent-cyan);
}

.form-input-wrapper textarea:focus ~ label,
.form-input-wrapper textarea:not(:placeholder-shown) ~ label {
    top: 0.4rem;
    transform: none;
    font-size: 0.65rem;
    color: var(--accent-cyan);
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Success Form message */
.proposal-success-message {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    margin-bottom: 1.5rem;
}

.proposal-success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.proposal-success-message p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none !important;
}

/* Footer styling */
.main-footer {
    border-top: 1px solid var(--border-glow);
    background: rgba(3, 3, 3, 0.9);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.brand-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 250px;
}

.links-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border-glow);
    padding-top: 2rem;
}

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

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.status-lbl {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Animations declarations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent-cyan); }
    50% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 18px rgba(var(--accent-cyan-rgb), 0.6); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent-cyan); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Scroll Trigger utilities */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--delay, 0ms);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--delay, 0ms);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--delay, 0ms);
}

.scroll-reveal.active,
.scroll-reveal-left.active,
.scroll-reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-graphic {
        order: -1;
        max-width: 580px;
        width: 100%;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .workflow-playground-container {
        grid-template-columns: 1fr;
    }
    .tech-ecosystem-display {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .case-study-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-bar, .header-actions .btn {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }

    .cookie-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-banner-actions .btn:last-child {
        grid-column: 1 / -1;
    }

    .cookie-modal {
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
        padding: 1.5rem;
    }

    .cookie-modal-actions {
        flex-direction: column-reverse;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-content {
        order: -1;
    }
    .hero-graphic {
        order: 0;
    }
    .tech-ecosystem-display {
        gap: 1.5rem;
        padding: 0.75rem;
    }
    .tech-description-box {
        width: 100%;
        max-width: none;
        padding: 1rem 0.75rem;
    }
    .tech-description-box h4 {
        font-size: clamp(1.2rem, 5.5vw, 1.5rem);
        overflow-wrap: anywhere;
    }
    .tech-description-box p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .products-section { padding: 6rem 0; }
    .products-heading-row { align-items: flex-start; }
    .product-controls { margin-top: .25rem; }
    .product-card { flex-basis: 100%; min-height: 500px; }
    .product-card-copy { padding: 1.75rem; }
    .workflow-builder-controls {
        grid-template-columns: 1fr;
    }
    .control-group-title {
        min-height: auto;
    }
    .visualizer-canvas-wrapper {
        height: auto;
        min-height: 420px;
        padding: 1.25rem;
    }
    .visualizer-nodes-row {
        flex-direction: column;
        gap: 0;
    }
    .viz-node {
        flex: none;
        width: 100%;
        max-width: none;
        padding: 1rem;
    }
    .viz-node-name {
        overflow-wrap: normal;
        word-break: normal;
    }
    .viz-connector-space {
        flex: none;
        width: 2px;
        height: 28px;
        margin: 0;
    }
    .console-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .btn-simulate {
        margin-left: auto;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .proposal-options-grid {
        grid-template-columns: 1fr;
    }
    .input-grid {
        grid-template-columns: 1fr;
    }
    .input-grid .full-width {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
