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

/* Conversion-focused homepage additions */
.hero-kicker {
    display: block;
    width: min(18rem, 100%);
    margin: 0 auto 1rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(10, 123, 132, 0.18);
    color: #24414a;
    font-family: var(--font-vintage);
    font-size: var(--fs-label-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.hero-cta .btn-outline {
    padding: 0.58rem 0.9rem;
    border-radius: 0;
    border-color: rgba(0, 0, 0, 0.28);
    box-shadow: none;
    font-size: var(--fs-label-md);
    letter-spacing: 0.05em;
    background: transparent;
}

.hero-cta .btn-outline:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.52);
}

.hero-secondary-cta {
    color: #13444a;
}

.hero-secondary-cta:hover {
    background: rgba(10, 123, 132, 0.03);
    border-color: rgba(10, 123, 132, 0.42);
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 720px) {
    .hero-kicker {
        width: 100%;
        line-height: 1.45;
    }

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

    .hero-cta .btn-outline {
        width: auto;
        max-width: 100%;
    }
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-light: #fafafa;
    --gray: #e5e5e5;
    --gray-dark: #737373;
    --border: 1px solid rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --radius-sm: 4px;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 1s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-meta: 'Space Mono', monospace;
    --font-display: 'VT323', monospace;
    --font-vintage: 'IBM Plex Mono', monospace;
    --brand-teal: #0a7b84;
    --hero-ink: #111111;
    --hero-muted: #56616d;
    --fw-extra-light: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fs-label-xs: 0.68rem;
    --fs-label-sm: 0.75rem;
    --fs-label-md: 0.82rem;
    --fs-body-sm: 0.9rem;
    --fs-body-md: 0.96rem;
    --fs-body-base: 1rem;
    --fs-body-lg: 1.05rem;
    --fs-title-sm: 1.16rem;
    --fs-title-md: 1.32rem;
    --fs-title-lg: 1.5rem;
    --fs-title-xl: clamp(1.95rem, 4vw, 2.5rem);
    --fs-display-xl: clamp(3rem, 8vw, 5rem);
    --fs-nav-brand: 0.88rem;
    --fs-nav-tag: 0.68rem;
    --fs-nav-link: 0.78rem;
    --fs-button: 0.8rem;
    --fs-hero-tagline: 1.18rem;
    --fs-hero-subtitle: 0.98rem;
    --fs-usecase-menu: 1.42rem;
    --fs-usecase-title: clamp(1.35rem, 2.1vw, 2.25rem);
    --fs-kpi: 1.65rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    :root {
        --fs-nav-brand: 0.84rem;
        --fs-nav-tag: 0.58rem;
        --fs-nav-link: 0.74rem;
        --fs-display-xl: clamp(2rem, 10vw, 3.45rem);
        --fs-title-xl: 1.8rem;
        --fs-title-md: 1.2rem;
        --fs-body-lg: 1rem;
        --fs-body-md: 0.92rem;
        --fs-body-sm: 0.86rem;
        --fs-hero-tagline: 1.08rem;
        --fs-hero-subtitle: 0.92rem;
        --fs-usecase-menu: 1.14rem;
        --fs-usecase-title: clamp(1.18rem, 7vw, 1.72rem);
    }
}

@media (max-width: 480px) {
    :root {
        --fs-nav-brand: 0.8rem;
        --fs-nav-tag: 0.56rem;
        --fs-nav-link: 0.72rem;
        --fs-display-xl: clamp(1.9rem, 11vw, 2.85rem);
        --fs-title-xl: 1.68rem;
        --fs-hero-tagline: 1rem;
        --fs-hero-subtitle: 0.88rem;
        --fs-usecase-menu: 1.06rem;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background-color var(--transition-fast), backdrop-filter var(--transition-fast), border-color var(--transition-fast);
}

.nav.scrolled,
.nav.menu-open {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4.5rem;
    min-height: 84px;
    width: min(1360px, calc(100vw - 2rem));
    padding: 0.9rem 3rem;
}

.nav-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    color: var(--black);
    min-width: 0;
    justify-self: start;
    transition: opacity var(--transition-fast);
}

.nav-brand:hover {
    opacity: 0.82;
}

.nav-logo-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: none;
    flex-shrink: 0;
}

.nav-home-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0;
    color: var(--black);
    font-family: var(--font-sans);
    font-size: clamp(0.82rem, 1.4vw, 0.94rem);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    line-height: 1;
}

.nav-brand-copy {
    display: grid;
    gap: 0.14rem;
    min-width: 0;
}

.nav-brand-name {
    font-size: var(--fs-nav-brand);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--black);
}

.nav-brand-tag {
    font-size: var(--fs-nav-tag);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.58);
    line-height: 1.15;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    display: inline-flex;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: var(--fs-nav-link);
    font-weight: var(--fw-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.28rem 0;
    transition: opacity var(--transition-fast);
    font-family: var(--font-sans);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(2, 136, 156, 0.9);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
}

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

.nav-brand:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible {
    outline: 2px solid rgba(2, 136, 156, 0.7);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
    margin-left: auto;
}

.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    position: relative;
    transition: background var(--transition-fast);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: transform var(--transition-fast), top var(--transition-fast);
    left: 0;
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-container {
        justify-content: center;
        position: relative;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 1.5rem;
    }

    .nav-brand {
        margin: 0 auto;
    }

    .nav-logo-img {
        height: 52px;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0.95rem;
        transform: translateY(-0.85rem);
        transform-origin: top center;
        transition: transform var(--transition-fast), opacity var(--transition-fast), visibility var(--transition-fast);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
        z-index: 101;
        max-height: calc(100dvh - 5.5rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li + li {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-menu .nav-link,
    .nav-menu .btn-outline.btn-sm {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        padding: 0.95rem 0.35rem;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu .nav-link {
        text-align: center;
    }

    .nav-menu .btn-outline.btn-sm {
        font-size: 0.78rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

body.nav-open {
    overflow: hidden;
}


section[id] {
    scroll-margin-top: 6.8rem;
}

/* FAQ Accordion */
.faq-accordion {
    position: relative;
}

.faq-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    color: var(--black);
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 0.35rem 0;
    transition: opacity var(--transition-fast);
    font-family: var(--font-sans);
}

.faq-toggle:hover {
    opacity: 0.85;
}

.faq-toggle .faq-arrow {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}

.faq-toggle[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-panel {
    position: absolute;
    top: 1.75rem;
    right: 0;
    width: 180px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.faq-panel.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.faq-link {
    color: var(--black);
    text-decoration: none;
    font-size: var(--fs-label-md);
    font-weight: 400;
    padding: 0.6rem 1rem;
    transition: background var(--transition-fast);
    font-family: var(--font-sans);
}

.faq-link:hover {
    background: var(--gray-light);
}

.faq-link::after {
    display: none;
}



/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 3rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f6f3ec 0%, #fbfaf7 46%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 16%, rgba(10, 123, 132, 0.13) 0%, rgba(10, 123, 132, 0.05) 28%, rgba(255, 255, 255, 0) 62%);
    background-size: 72px 72px, 72px 72px, cover;
    background-position: center center, center center, center;
    opacity: 0.5;
}

/* Contenuto centrato */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1360px;
    padding: 2rem 0;
    width: 100%;
}

.hero-title {
    width: min(780px, 100%);
    margin: 0 auto 1.35rem;
    position: relative;
    display: block;
    /* Ottimizzazione: transizione smooth per animazione JS */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

.hero-logo {
    display: block;
    width: clamp(320px, 58vw, 820px);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 18px 34px rgba(10, 123, 132, 0.06));
}

/* Visually hidden ma accessibile per SEO e screen reader */
.title-line-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-tagline {
    font-size: var(--fs-hero-tagline);
    font-family: var(--font-vintage);
    font-weight: 400;
    color: #24313d;
    letter-spacing: -0.015em;
    line-height: 1.48;
    margin: 0 auto 0.8rem;
    max-width: 44rem;
    min-height: 1.7em;
    /* Ottimizzazione performance */
    will-change: contents;
    contain: layout style;
}

.js .hero-tagline[data-typewriter="pending"] {
    visibility: hidden;
}

/* Struttura: span testo + span cursore */
.hero-tagline .typing-text {
    display: inline;
}

.hero-tagline .typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--brand-teal);
    margin-left: 2px;
    animation: cursorBlink 1s infinite;
    vertical-align: middle;
    /* Ottimizzazione: il cursore è isolato, non causa reflow */
    will-change: opacity;
}

/* Quando l'animazione è completata, mantieni solo il cursore che lampeggia */
.hero-tagline.typing-complete .typing-cursor {
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: var(--fs-hero-subtitle);
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--hero-muted);
    letter-spacing: 0.015em;
    line-height: 1.5;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Bottone scuro per sfondo chiaro */
.btn-light {
    background: transparent;
    color: var(--hero-ink);
    border: 1px solid rgba(10, 123, 132, 0.24);
    box-shadow: none;
}

.btn-light:hover {
    background: rgba(10, 123, 132, 0.03);
    border-color: rgba(10, 123, 132, 0.5);
}

.terminal-window {
    width: 100%;
    max-width: 580px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.terminal-window.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Terminal come sfondo - sfondo bianco puro con testo scuro */
.hero-background .terminal-window {
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: #ffffff;
}

.hero-background .terminal-window.animate {
    opacity: 1;
    transform: none;
}

/* Stili per terminale su sfondo bianco */
.hero-background .terminal-header {
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.hero-background .terminal-title {
    color: #555555;
}

.hero-background .terminal-body {
    background: #ffffff;
}

.hero-background .terminal-prompt {
    color: #2e7d32;
}

.hero-background .terminal-command {
    color: #1a1a1a;
}

.hero-background .terminal-cursor {
    background: #1a1a1a;
}

/* Syntax highlighting per sfondo chiaro */
.hero-background .code-comment {
    color: #008000;
}

.hero-background .code-keyword {
    color: #0000ff;
}

.hero-background .code-string {
    color: #a31515;
}

.hero-background .code-function {
    color: #795e26;
}

.hero-background .code-line {
    color: #1a1a1a !important;
}

.hero-background .terminal-output {
    color: #1a1a1a;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #2d2d2d;
    border-bottom: 1px solid #404040;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close {
    background: #ff5f56;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-maximize {
    background: #27ca40;
}

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #a0a0a0;
    font-weight: 300;
}

.terminal-body {
    padding: 1.5rem;
    min-height: 320px;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-prompt {
    color: #27ca40;
    font-size: 0.875rem;
}

.terminal-command {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 300;
}

.terminal-cursor {
    width: 8px;
    height: 18px;
    background: #ffffff;
    animation: cursorBlink 1s infinite;
}

.terminal-output {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Code syntax highlighting */
.code-output {
    padding-top: 0.5rem;
}

.code-line {
    color: #e0e0e0 !important;
    white-space: pre !important;
}

.code-comment {
    color: #6a9955;
}

.code-keyword {
    color: #569cd6;
    font-weight: 400;
}

.code-string {
    color: #ce9178;
}

/* Terminal a tutto schermo - testo ingrandito per riempire l'hero */
.hero-background .terminal-output {
    font-size: clamp(0.65rem, 1vw, 0.9rem);
    line-height: 1.6;
}

.hero-background .code-line {
    font-size: clamp(0.65rem, 1vw, 0.9rem);
    line-height: 1.7;
    margin-bottom: 0.15rem;
}

.hero-background .terminal-body {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero-background .terminal-line {
    margin-bottom: 1rem;
}

.hero-background .terminal-prompt,
.hero-background .terminal-command {
    font-size: clamp(0.65rem, 1vw, 0.9rem);
}

/* Righe codice inizialmente nascoste per animazione */
.hero-background .output-line {
    opacity: 0;
}

.code-function {
    color: #dcdcaa;
}

.output-line {
    color: #a0a0a0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin: 0;
    white-space: pre;
}

.output-line.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    color: var(--black);
    text-decoration: none;
    font-size: var(--fs-button);
    font-weight: var(--fw-regular);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-outline.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-label-sm);
    border-radius: var(--radius-sm);
}

/* Sections - Unified Alignment */
.section {
    padding: 4rem 3rem;
}

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

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

.section-number {
    font-family: var(--font-meta);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 0.375rem;
}

.section-title {
    font-weight: 400;
    font-size: var(--fs-title-xl);
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-wrap: balance;
}

.section-desc {
    font-size: var(--fs-body-lg);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    margin-top: 0.5rem;
    max-width: 46ch;
}

/* Services Grid - Clean Lines Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-item {
    border-top: var(--border);
    padding: 2rem 0 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-fast);
}

.service-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-number {
    font-family: var(--font-meta);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--gray-dark);
    transition: all var(--transition-fast);
}

.service-item:hover .service-number {
    color: var(--black);
    transform: translateX(8px);
}

.service-header h3 {
    font-weight: var(--fw-light);
    font-size: var(--fs-title-lg);
    letter-spacing: 0.01em;
    line-height: 1.12;
    text-wrap: balance;
}

.service-viz {
    height: 160px;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1rem;
}

.viz-svg-large {
    width: 100%;
    height: 100%;
    display: block;
}

/* WORKFLOW - Large Auto-Playing Animation */
.workflow-viz-large {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
}

.workflow-viz-large .pipeline {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: pipelineFlow 3s ease-in-out infinite;
}

.workflow-viz-large .pipeline-alt {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: pipelineFlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes pipelineFlow {
    0% {
        stroke-dashoffset: 300;
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
}

.node-pulse {
    animation: nodeBreathe 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes nodeBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.data-packet {
    animation: packetMove 2s linear infinite;
}

.data-packet-alt {
    animation: packetMoveAlt 2s linear infinite;
}

@keyframes packetMove {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        transform: translate(80px, 0);
    }

    50% {
        transform: translate(120px, 20px);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(280px, 20px);
        opacity: 0;
    }
}

@keyframes packetMoveAlt {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        transform: translate(60px, 0);
    }

    50% {
        transform: translate(100px, -20px);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(280px, -20px);
        opacity: 0;
    }
}

.processing-block {
    animation: processBlink 1s ease-in-out infinite;
}

@keyframes processBlink {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* AI - Large Neural Network Animation */
.ai-viz-large {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
}

.ai-assistant-svg {
    overflow: visible;
}

.ai-assistant-svg circle,
.ai-assistant-svg path,
.ai-assistant-svg polygon,
.ai-assistant-svg rect {
    vector-effect: non-scaling-stroke;
}

.orbit-ring {
    animation: orbitExpand 3s ease-out infinite;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

@keyframes orbitExpand {
    0% {
        stroke-dashoffset: 200;
        opacity: 0;
        transform: rotate(0deg);
    }

    30% {
        opacity: 0.8;
    }

    70% {
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
        transform: rotate(360deg);
    }
}

.ai-core {
    animation: corePulse 1.5s ease-in-out infinite;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.orbit-particle {
    animation: orbitRotate 4s linear infinite;
    transform-origin: 200px 60px;
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
        opacity: 0;
    }
}

.wave-bar {
    animation: waveDance 1.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes waveDance {

    0%,
    100% {
        transform: scaleY(0.3);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.input-pulse {
    animation: inputWave 1.5s ease-in-out infinite;
}

@keyframes inputWave {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1);
        opacity: 0.8;
    }
}

/* WEBSITE - Large Building Animation */
.website-viz-large {
    position: relative;
}

.browser-frame {
    animation: frameGlow 3s ease-in-out infinite;
}

@keyframes frameGlow {

    0%,
    100% {
        stroke-opacity: 0.4;
    }

    50% {
        stroke-opacity: 1;
    }
}

.content-block {
    animation: blockBuild 2s ease-out infinite;
    transform-origin: center;
}

@keyframes blockBuild {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }

    30% {
        transform: scale(1.05) translateY(-2px);
        opacity: 0.9;
    }

    50% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.float-element {
    animation: floatAround 4s ease-in-out infinite;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5px, -8px) rotate(2deg);
    }

    50% {
        transform: translate(-3px, -12px) rotate(-1deg);
    }

    75% {
        transform: translate(-8px, -5px) rotate(1deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track {
        animation: none !important;
        transform: translateX(0) !important;
    }

    .ai-assistant-svg animate,
    .ai-assistant-svg animateTransform {
        display: none;
    }
}

.service-item p {
    font-size: var(--fs-body-base);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.7;
}

.service-item p strong {
    color: var(--black);
    font-weight: 600;
}

/* Benefits */
.benefits {
    background: var(--gray-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.benefit-item {
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-smooth);
}

.benefit-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition-fast);
}

.benefit-item:hover .benefit-border {
    border-color: var(--black);
}

.benefit-label {
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.benefit-title {
    font-weight: var(--fw-light);
    font-size: var(--fs-title-lg);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.12;
    text-wrap: balance;
}

.benefit-text {
    font-size: var(--fs-body-sm);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.6;
}

/* Use Case Section */
.usecase {
    background: var(--white);
}

.usecase .section-container {
    max-width: 1360px;
    margin: 0 auto;
}

/* Use Case Docs Layout */
.usecase-workspace {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: minmax(286px, 340px) minmax(0, 1fr);
    background: transparent;
    align-items: start;
}

.usecase-menu-wrap {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0.9rem 1rem 1rem;
    background: transparent;
    position: sticky;
    top: 90px;
    /* Offset to account for fixed header */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.usecase-menu-head {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    padding-right: 0.5rem;
}

.usecase-menu-eyebrow {
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #02889c;
}

.usecase-menu-head p {
    margin: 0;
    font-size: var(--fs-body-sm);
    line-height: 1.5;
    color: var(--gray-dark);
}

.usecase-menu {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.45);
}

.usecase-menu-item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    color: var(--black);
    display: flex;
    align-items: center;
    text-align: left;
    min-height: 7.1rem;
    padding: 1.7rem 0.82rem 1.62rem 0.7rem;
    cursor: pointer;
    transition: color var(--transition-fast), background-color var(--transition-fast), padding-left var(--transition-fast);
}

.usecase-menu-item.is-active {
    padding-left: 0.94rem;
}

/* Category Color Variations: Sidebar Menu */
.usecase-menu-item[data-color="green"].is-active,
.usecase-menu-item[data-color="green"]:hover {
    color: #2e7d32;
    background: transparent;
    /* 8% of #2E7D32 */
    box-shadow: inset 2px 0 0 #2e7d32;
}

.usecase-menu-item[data-color="yellow"].is-active,
.usecase-menu-item[data-color="yellow"]:hover {
    color: #f57f17;
    background: transparent;
    /* 12% of a slightly darker yellow for visibility */
    box-shadow: inset 2px 0 0 #f57f17;
}

.usecase-menu-item[data-color="blue"].is-active,
.usecase-menu-item[data-color="blue"]:hover {
    color: #02889c;
    background: transparent;
    /* 8% of #02889c */
    box-shadow: inset 2px 0 0 #02889c;
}

.usecase-menu-index {
    font-family: var(--font-meta);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.55);
}

.usecase-menu-item.is-active .usecase-menu-index {
    color: #02889c;
}

.usecase-menu-label {
    font-family: var(--font-sans);
    font-size: var(--fs-usecase-menu);
    line-height: 1.12;
    letter-spacing: -0.012em;
    font-weight: var(--fw-light);
    text-wrap: balance;
}

.usecase-content {
    padding: 0.45rem 1rem;
}

.usecase-detail {
    position: relative;
    padding: 1.05rem 0.7rem 1.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    scroll-margin-top: 1rem;
    border-left: 2px solid transparent;
    transition: border-color 0.35s ease, background-color 0.35s ease;
}

.usecase-detail.is-current {
    border-left-color: #02889c;
    background: linear-gradient(90deg, rgba(2, 136, 156, 0.06) 0%, rgba(2, 136, 156, 0) 78%);
}

.usecase-detail:last-child {
    border-bottom: 0;
}

.usecase-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.usecase-reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

.usecase-detail-head {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.usecase-detail-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    font-size: var(--fs-label-sm);
    font-family: var(--font-meta);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #02889c;
    background: rgba(255, 255, 255, 0.88);
}

.usecase-detail h3 {
    margin: 0;
    font-weight: var(--fw-light);
    letter-spacing: 0.01em;
    font-size: var(--fs-usecase-title);
    line-height: 1.1;
    text-wrap: balance;
}

.usecase-compact-copy {
    margin: 0;
    font-size: var(--fs-body-sm);
    line-height: 1.5;
    color: #374151;
    max-width: 62ch;
}

.usecase-schema {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.schema-flow {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 0.6rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 247, 250, 0.95) 100%);
    overflow: hidden;
}

.usecase-detail.is-current .schema-flow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 36%, rgba(2, 136, 156, 0.16) 50%, transparent 64%);
    animation: flowScan 2.3s ease-in-out infinite;
    pointer-events: none;
}

.flow-node {
    border: 1px solid rgba(2, 136, 156, 0.3);
    border-radius: 10px;
    padding: 0.43rem 0.5rem;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.015em;
    color: #0f172a;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.usecase-detail.is-current .flow-node {
    border-color: rgba(2, 136, 156, 0.55);
    box-shadow: 0 10px 18px -16px rgba(2, 136, 156, 0.75);
}

.flow-arrow {
    font-size: 0.95rem;
    color: rgba(2, 136, 156, 0.9);
    opacity: 0.88;
}

.usecase-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.usecase-pill {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 0.25rem 0.52rem;
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #334155;
    background: rgba(255, 255, 255, 0.88);
}

.usecase-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.metric-card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.58rem 0.6rem 0.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 250, 0.96) 100%);
    display: grid;
    gap: 0.24rem;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.metric-value {
    font-family: var(--font-sans);
    font-size: calc(var(--fs-kpi) - 0.1rem);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.03em;
    color: #02889c;
    line-height: 1;
}

.metric-label {
    font-size: var(--fs-label-md);
    line-height: 1.35;
    color: #0f172a;
}

.usecase-detail.is-current .metric-card {
    transform: translateY(-2px);
    border-color: rgba(2, 136, 156, 0.26);
}

.schema-flow .flow-node,
.usecase-pill-row .usecase-pill,
.usecase-metrics .metric-card {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.usecase-reveal.animate .schema-flow .flow-node,
.usecase-reveal.animate .usecase-pill-row .usecase-pill,
.usecase-reveal.animate .usecase-metrics .metric-card {
    opacity: 1;
    transform: translateY(0);
}

.usecase-reveal.animate .schema-flow .flow-node:nth-child(1),
.usecase-reveal.animate .usecase-pill-row .usecase-pill:nth-child(1),
.usecase-reveal.animate .usecase-metrics .metric-card:nth-child(1) {
    transition-delay: 70ms;
}

.usecase-reveal.animate .schema-flow .flow-node:nth-child(3),
.usecase-reveal.animate .usecase-pill-row .usecase-pill:nth-child(2),
.usecase-reveal.animate .usecase-metrics .metric-card:nth-child(2) {
    transition-delay: 140ms;
}

.usecase-reveal.animate .schema-flow .flow-node:nth-child(5),
.usecase-reveal.animate .usecase-pill-row .usecase-pill:nth-child(3),
.usecase-reveal.animate .usecase-metrics .metric-card:nth-child(3) {
    transition-delay: 220ms;
}

.usecase-reveal.animate .schema-flow .flow-node:nth-child(7) {
    transition-delay: 290ms;
}

@keyframes flowScan {
    0% {
        transform: translateX(-118%);
    }

    100% {
        transform: translateX(118%);
    }
}

/* More Cases Section */
.more-cases {
    --outcome-yellow: #FFEB3B;
    --outcome-blue: #02889c;
    --outcome-green: #2E7D32;
}

.outcome-kpi-value {
    font-family: var(--font-sans);
    font-size: calc(var(--fs-kpi) - 0.02rem);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--black);
}

.outcome-kpi-note {
    font-size: var(--fs-label-md);
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.case-card {
    padding: 1.125rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: var(--white);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    opacity: 0;
    transform: translateY(24px);
}

.case-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.outcome-card {
    --outcome-accent: #02889c;
    box-shadow:
        inset 0 3px 0 var(--outcome-accent),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.outcome-card-yellow {
    --outcome-accent: #FFEB3B;
}

.outcome-card-blue {
    --outcome-accent: #02889c;
}

.outcome-card-green {
    --outcome-accent: #2E7D32;
}

.outcome-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.outcome-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--outcome-accent);
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.outcome-card-yellow .outcome-icon-wrap {
    background: rgba(255, 235, 59, 0.2);
}

.outcome-card-blue .outcome-icon-wrap {
    background: rgba(2, 136, 156, 0.12);
}

.outcome-card-green .outcome-icon-wrap {
    background: rgba(46, 125, 50, 0.12);
}

.outcome-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.outcome-head-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.outcome-insight {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.outcome-card-yellow .outcome-insight {
    border-color: rgba(255, 235, 59, 0.5);
    background: rgba(255, 235, 59, 0.12);
}

.outcome-card-blue .outcome-insight {
    border-color: rgba(2, 136, 156, 0.35);
    background: rgba(2, 136, 156, 0.08);
}

.outcome-card-green .outcome-insight {
    border-color: rgba(46, 125, 50, 0.35);
    background: rgba(46, 125, 50, 0.08);
}

.outcome-card h3 {
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    margin: 0;
}

.outcome-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.625rem;
    align-items: stretch;
    flex: 1;
}

.outcome-state {
    border: 1px dashed rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    padding: 0.75rem;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.outcome-state.after {
    border-style: solid;
    border-color: var(--outcome-accent);
}

.outcome-card-yellow .outcome-state.after {
    background: rgba(255, 235, 59, 0.12);
}

.outcome-card-blue .outcome-state.after {
    background: rgba(2, 136, 156, 0.1);
}

.outcome-card-green .outcome-state.after {
    background: rgba(46, 125, 50, 0.1);
}

.outcome-state-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--outcome-accent);
}

.outcome-card p {
    font-size: 0.8125rem;
    color: var(--gray-dark);
    font-weight: 200;
    line-height: 1.55;
    margin: 0;
}

.outcome-state ul {
    margin: 0;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.outcome-state li {
    font-size: 0.8rem;
    color: var(--gray-dark);
    line-height: 1.4;
}

.outcome-state li::marker {
    color: var(--outcome-accent);
}

.outcome-state strong {
    color: var(--black);
    font-weight: 500;
}

.outcome-arrow {
    align-self: center;
    justify-self: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--outcome-accent);
    font-size: 1rem;
    font-weight: 600;
}

.case-saving {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    width: fit-content;
}

.outcome-card-yellow .case-saving {
    background: rgba(255, 235, 59, 0.22);
}

.outcome-card-blue .case-saving {
    background: rgba(2, 136, 156, 0.16);
    color: #02889c;
}

.outcome-card-green .case-saving {
    background: rgba(46, 125, 50, 0.16);
    color: #2E7D32;
}

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

@media (max-width: 768px) {
    .outcome-kpi-value {
        font-size: 1.5rem;
    }

    .outcome-flow {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .outcome-arrow {
        transform: rotate(90deg);
    }
}

/* Process Steps */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gray);
}

.timeline-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #02889c 0%, #2E7D32 70%, #FFEB3B 100%);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(2, 136, 156, 0.16);
}

.process-timeline.animate .timeline-progress {
    transform: scaleY(1);
}

.process-steps-new {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-new {
    display: flex;
    gap: 1.75rem;
    padding: 1.7rem 0;
    position: relative;
    --step-accent: var(--black);
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
    filter: blur(1px);
    transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.process-step-new:nth-child(1) {
    --step-accent: #FFEB3B;
}

.process-step-new:nth-child(2) {
    --step-accent: #02889c;
}

.process-step-new:nth-child(3) {
    --step-accent: #2E7D32;
}

.process-step-new:nth-child(4) {
    --step-accent: #02889c;
}

.process-step-new:first-child {
    padding-top: 0;
}

.process-step-new:last-child {
    padding-bottom: 0;
}

.process-step-new.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.step-dot {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: var(--gray-dark);
    transition: border-color 0.5s ease,
        color 0.5s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step-new.animate .step-dot {
    border-color: var(--step-accent);
    color: var(--step-accent);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dot-number {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: var(--fw-semibold);
    color: var(--gray-dark);
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
}

.process-step-new.animate .dot-number {
    color: var(--black);
    font-weight: 400;
}

.step-dot::before,
.step-dot::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.step-dot::before {
    width: 22px;
    height: 22px;
    background: currentColor;
    transform: scale(0.42);
    z-index: 1;
}

.step-dot::after {
    inset: -6px;
    border: 1px solid currentColor;
    transform: scale(0.6);
    z-index: 0;
}

.process-step-new.animate .step-dot::before {
    animation: dotCorePulse 0.95s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.process-step-new.animate .step-dot::after {
    animation: dotRingPulse 1.15s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

@keyframes dotCorePulse {
    0% {
        opacity: 0;
        transform: scale(0.35);
    }

    40% {
        opacity: 0.52;
        transform: scale(0.86);
    }

    72% {
        opacity: 0.36;
        transform: scale(1);
    }

    100% {
        opacity: 0.26;
        transform: scale(1);
    }
}

@keyframes dotRingPulse {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    35% {
        opacity: 0.55;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

.step-content-new {
    flex: 1;
    padding-top: 0.5rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-content-new h3 {
    font-weight: var(--fw-light);
    font-size: var(--fs-title-lg);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    transition: letter-spacing 0.35s ease;
    line-height: 1.12;
    text-wrap: balance;
}

.step-content-new p {
    font-size: var(--fs-body-base);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.6;
    max-width: 400px;
}

@media (hover: hover) and (pointer: fine) {
    .process-step-new:hover .step-dot {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    }

    .process-step-new:hover .step-content-new {
        transform: translateY(-2px);
    }

    .process-step-new:hover .step-content-new h3 {
        letter-spacing: 0.015em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-progress {
        transform: scaleY(1);
        transition: none !important;
        box-shadow: none;
    }

    .process-step-new {
        opacity: 0;
        transform: none;
        filter: none;
        transition: opacity 0.24s ease !important;
        will-change: auto;
    }

    .process-step-new.animate {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .step-dot,
    .step-content-new,
    .step-content-new h3 {
        transition: none !important;
    }

    .step-dot::before,
    .step-dot::after {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* Contact - Split Layout */
.contact {
    background: var(--white);
    border-top: var(--border);
}

.contact .section-container {
    max-width: 1360px;
    margin: 0 auto;
}

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

.contact-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    margin-top: 0.75rem;
    max-width: 900px;
    line-height: 1.6;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-col-title {
    font-weight: var(--fw-light);
    font-size: var(--fs-title-md);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-wrap: balance;
}

.contact-intro {
    font-size: var(--fs-body-sm);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-form-col-primary {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0 0;
    background: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-meta);
    font-size: var(--fs-label-sm);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: inherit;
    font-size: var(--fs-body-md);
    font-weight: var(--fw-light);
    border: none;
    border-bottom: 1px solid var(--gray);
    background: transparent;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7c858f;
    font-weight: var(--fw-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.btn-submit:focus-visible,
.whatsapp-link:focus-visible,
.contact-ai-shortcut:focus-visible,
.ai-widget-toggle:focus-visible,
.ai-widget-close:focus-visible,
.ai-submit-btn:focus-visible,
.ai-assistant-form textarea:focus-visible,
.faq-question:focus-visible {
    outline: 2px solid rgba(2, 136, 156, 0.7);
    outline-offset: 3px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width var(--transition-fast);
}

.form-group input:focus~.input-line,
.form-group textarea:focus~.input-line {
    width: 100%;
}

.contact-hints {
    margin: -0.1rem 0 0.2rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.contact-hints li {
    position: relative;
    padding-left: 0.95rem;
    font-size: var(--fs-label-md);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    letter-spacing: 0.01em;
}

.contact-hints li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #02889c;
}

.btn-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    background: transparent;
    color: var(--black);
    font-family: inherit;
    font-size: var(--fs-body-md);
    font-weight: var(--fw-regular);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left var(--transition-fast);
    z-index: -1;
}

.btn-submit:hover {
    color: var(--white);
}

.btn-submit:hover::before {
    left: 0;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* WhatsApp Column */
.contact-whatsapp-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-channel-card {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.52rem;
}

.contact-channel-card-ai {
    background: none;
}

.whatsapp-desc {
    font-size: var(--fs-body-sm);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.6;
    margin: 0;
}

.contact-channel-summary {
    margin: 0;
    font-size: var(--fs-body-sm);
    color: var(--gray-dark);
    line-height: 1.55;
}

.contact-channel-note {
    margin: 0;
    font-size: var(--fs-label-sm);
    color: var(--gray-dark);
    line-height: 1.45;
}

.whatsapp-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.88rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    color: var(--black);
    text-decoration: none;
    transition: all var(--transition-fast);
    background: transparent;
    text-align: left;
}

.contact-channel-card .whatsapp-link:first-child,
.contact-channel-card .contact-ai-shortcut:first-child {
    border-top: none;
    padding-top: 0;
}

.whatsapp-link:hover {
    opacity: 0.82;
}

.contact-ai-shortcut {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    width: 100%;
    padding: 0.88rem 0;
    border: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.18);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.contact-ai-shortcut:hover {
    opacity: 0.86;
    transform: translateY(-1px);
}

.contact-ai-shortcut-text {
    font-size: var(--fs-body-sm);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.55;
}

.contact-ai-shortcut-cta {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: var(--radius-sm);
    padding: 0.32rem 0.6rem;
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--black);
    transition: all var(--transition-fast);
}

.contact-ai-shortcut:hover .contact-ai-shortcut-cta {
    background: #f7f7f7;
}

.channel-badge {
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.ai-badge {
    color: var(--gray-dark);
}

.whatsapp-text-large {
    font-size: var(--fs-body-base);
    font-weight: var(--fw-regular);
    letter-spacing: 0.005em;
    color: var(--black);
}

.whatsapp-number-large {
    font-family: var(--font-meta);
    font-size: var(--fs-label-md);
    letter-spacing: 0.03em;
    color: var(--gray-dark);
}

.whatsapp-response-time {
    font-size: var(--fs-label-sm);
    font-weight: var(--fw-regular);
    color: var(--gray-dark);
}

.usecase-detail-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(2, 136, 156, 0.1);
    color: var(--outcome-blue);
    /* Default fallback */
    border-radius: 999px;
    font-size: var(--fs-label-sm);
    font-family: var(--font-meta);
    font-weight: var(--fw-regular);
    letter-spacing: 0.08em;
    margin-bottom: 1.15rem;
}

/* Category Color Variations: Content Tag */
.usecase-detail[data-color="green"] .usecase-detail-tag {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.usecase-detail[data-color="yellow"] .usecase-detail-tag {
    background: rgba(255, 179, 0, 0.15);
    /* Slightly darker yellow for readability */
    color: #f57f17;
    /* Darker text for yellow tag */
}

.usecase-detail[data-color="blue"] .usecase-detail-tag {
    background: rgba(2, 136, 156, 0.1);
    color: #02889c;
}

/* --- Usecase Graphic Layout --- */
.usecase-graphic-wrap {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 340px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

/* 1. Workflow Graphic (Green): Multi-source report composer */
.graphic-workflow-report {
    --gwr-green: #1f8d54;
    --gwr-green-soft: rgba(31, 141, 84, 0.14);
    position: relative;
    width: min(100%, 900px);
    min-height: 340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) minmax(165px, 0.55fr) minmax(320px, 1.2fr);
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.gwr-sources {
    display: grid;
    gap: 0.55rem;
    z-index: 2;
}

.gwr-source-card {
    position: relative;
    border: 1px solid rgba(31, 141, 84, 0.24);
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f4fbf6 100%);
    padding: 0.58rem 0.72rem;
    box-shadow: 0 10px 20px rgba(31, 141, 84, 0.08);
    display: grid;
    gap: 0.26rem;
    overflow: hidden;
    animation: gwrSourceBreathe 3.8s ease-in-out infinite;
}

.gwr-source-card:nth-child(2) {
    animation-delay: 0.35s;
}

.gwr-source-card:nth-child(3) {
    animation-delay: 0.7s;
}

.gwr-source-card:nth-child(4) {
    animation-delay: 1.05s;
}

.gwr-source-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, 0.74) 50%, transparent 66%);
    transform: translateX(-125%);
    animation: gwrSourceSweep 4.8s ease-in-out infinite;
}

.gwr-source-card:nth-child(2)::after {
    animation-delay: 0.3s;
}

.gwr-source-card:nth-child(3)::after {
    animation-delay: 0.6s;
}

.gwr-source-card:nth-child(4)::after {
    animation-delay: 0.9s;
}

.gwr-source-name {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.85);
}

.gwr-source-meta {
    font-size: 0.72rem;
    color: #1f2937;
    line-height: 1.35;
    font-weight: var(--fw-regular);
}

.gwr-source-spark {
    display: block;
    width: 58%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31, 141, 84, 0.2) 0%, rgba(31, 141, 84, 0.9) 58%, rgba(31, 141, 84, 0.2) 100%);
    animation: gwrSpark 2.2s ease-in-out infinite;
}

.gwr-source-card:nth-child(2) .gwr-source-spark {
    width: 63%;
    animation-delay: 0.25s;
}

.gwr-source-card:nth-child(3) .gwr-source-spark {
    width: 47%;
    animation-delay: 0.45s;
}

.gwr-source-card:nth-child(4) .gwr-source-spark {
    width: 54%;
    animation-delay: 0.65s;
}

.gwr-engine-zone {
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    z-index: 2;
}

.gwr-engine-hub {
    position: relative;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: 1px solid rgba(31, 141, 84, 0.3);
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.98) 0%, rgba(214, 245, 224, 0.96) 64%, rgba(194, 236, 208, 0.97) 100%);
    box-shadow: 0 14px 32px rgba(31, 141, 84, 0.18);
    display: grid;
    place-content: center;
    gap: 0.12rem;
    text-align: center;
    overflow: hidden;
}

.gwr-engine-hub::before {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px dashed rgba(31, 141, 84, 0.45);
    border-radius: 50%;
    animation: gwrOrbit 5.6s linear infinite;
}

.gwr-engine-hub::after {
    content: '';
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(31, 141, 84, 0.28);
    border-radius: 50%;
    animation: gwrPulseRing 2.8s ease-out infinite;
}

.gwr-engine-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.66);
    position: relative;
    z-index: 1;
}

.gwr-engine-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.1;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.gwr-engine-status {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.14rem 0.42rem;
    border-radius: 999px;
    background: rgba(31, 141, 84, 0.12);
    color: #166534;
    font-family: 'Space Mono', monospace;
    font-size: 0.53rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}



.gwr-report-card {
    position: relative;
    border: 1px solid rgba(31, 141, 84, 0.2);
    border-radius: 14px;
    background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
    padding: 0.75rem 0.78rem;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.58rem;
    min-height: 250px;
    z-index: 2;
    overflow: hidden;
}

.gwr-report-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 36%, rgba(31, 141, 84, 0.13) 50%, transparent 64%);
    transform: translateX(-120%);
    animation: gwrReportScan 4.4s ease-in-out infinite;
    pointer-events: none;
}

.gwr-report-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.gwr-report-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
}

.gwr-report-badge {
    border-radius: 999px;
    padding: 0.14rem 0.44rem;
    border: 1px solid rgba(31, 141, 84, 0.26);
    background: rgba(31, 141, 84, 0.12);
    color: #166534;
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.gwr-report-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
}

.gwr-kpi {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    padding: 0.48rem 0.48rem 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    gap: 0.18rem;
    animation: gwrReportBuild 5.6s ease-in-out infinite;
}

.gwr-kpi:nth-child(2) {
    animation-delay: 0.2s;
}

.gwr-kpi:nth-child(3) {
    animation-delay: 0.38s;
}

.gwr-kpi small {
    font-family: 'Space Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    color: #475569;
}

.gwr-kpi strong {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: var(--fw-semibold);
    line-height: 1;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.gwr-report-list {
    display: grid;
    gap: 0.34rem;
}

.gwr-report-row {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 0.35rem 0.48rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.67rem;
    line-height: 1.35;
    color: #1f2937;
    animation: gwrReportBuild 5.6s ease-in-out infinite;
}

.gwr-report-row:nth-child(1) {
    animation-delay: 0.3s;
}

.gwr-report-row:nth-child(2) {
    animation-delay: 0.5s;
}

.gwr-report-row:nth-child(3) {
    animation-delay: 0.7s;
}

.gwr-report-row b {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #0f172a;
}

.gwr-report-footer {
    border-top: 1px dashed rgba(15, 23, 42, 0.2);
    padding-top: 0.38rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.57rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1f8d54;
    animation: gwrReportBuild 5.6s ease-in-out infinite;
    animation-delay: 0.86s;
}

.gwr-streams {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.gwr-stream {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31, 141, 84, 0) 0%, rgba(31, 141, 84, 0.42) 22%, rgba(31, 141, 84, 0.08) 100%);
}

.gwr-stream::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-2px, -50%);
    background: var(--gwr-green);
    box-shadow: 0 0 0 4px var(--gwr-green-soft), 0 0 12px rgba(31, 141, 84, 0.7);
    animation: gwrPacket 2.4s linear infinite;
    animation-delay: var(--packet-delay, 0s);
}

.gwr-stream-in-1 {
    top: 16.7%;
    left: 27.5%;
    width: 13.5%;
    transform-origin: 0 50%;
    transform: rotate(26deg);
    --packet-delay: 0s;
}

.gwr-stream-in-2 {
    top: 38.5%;
    left: 27.5%;
    width: 12.5%;
    transform-origin: 0 50%;
    transform: rotate(4deg);
    --packet-delay: 0.42s;
}

.gwr-stream-in-3 {
    top: 60.4%;
    left: 27.5%;
    width: 12.5%;
    transform-origin: 0 50%;
    transform: rotate(-4deg);
    --packet-delay: 0.84s;
}

.gwr-stream-in-4 {
    top: 82.4%;
    left: 27.5%;
    width: 13.5%;
    transform-origin: 0 50%;
    transform: rotate(-26deg);
    --packet-delay: 1.26s;
}

.gwr-stream-out {
    top: 50%;
    left: 57%;
    width: 17%;
    --packet-delay: 0.5s;
    background: linear-gradient(90deg, rgba(31, 141, 84, 0.08) 0%, rgba(15, 23, 42, 0.28) 52%, rgba(15, 23, 42, 0.08) 100%);
}

.gwr-stream-out::after {
    background: #0f172a;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.12), 0 0 12px rgba(15, 23, 42, 0.35);
}

.gwr-stream-stack {
    display: none;
}

@keyframes gwrSourceBreathe {

    0%,
    100% {
        transform: translateY(0);
        border-color: rgba(31, 141, 84, 0.24);
    }

    50% {
        transform: translateY(-2px);
        border-color: rgba(31, 141, 84, 0.4);
    }
}

@keyframes gwrSourceSweep {
    0% {
        transform: translateX(-125%);
    }

    60%,
    100% {
        transform: translateX(130%);
    }
}

@keyframes gwrSpark {

    0%,
    100% {
        transform: scaleX(0.45);
        transform-origin: left center;
        opacity: 0.35;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left center;
        opacity: 0.9;
    }
}

@keyframes gwrOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gwrPulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    40% {
        opacity: 0.45;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

@keyframes gwrReportScan {
    0% {
        transform: translateX(-120%);
    }

    45%,
    55% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@keyframes gwrPacket {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 10px);
        opacity: 0;
    }
}

@keyframes gwrReportBuild {

    0%,
    12% {
        opacity: 0.5;
        transform: translateY(4px);
    }

    20%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .graphic-workflow-report {
        grid-template-columns: minmax(186px, 0.84fr) minmax(142px, 0.52fr) minmax(258px, 1fr);
        gap: 0.78rem;
        min-height: 322px;
    }

    .gwr-source-card {
        padding: 0.5rem 0.58rem;
    }

    .gwr-source-name {
        font-size: 0.63rem;
    }

    .gwr-source-meta {
        font-size: 0.66rem;
    }

    .gwr-engine-hub {
        width: 116px;
        height: 116px;
    }

    .gwr-report-card {
        min-height: 234px;
        padding: 0.64rem;
    }

    .gwr-kpi strong {
        font-size: 1.05rem;
    }
}

/* 2. AI Assistenti Graphic (Yellow) */
.graphic-ai {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    position: relative;
    width: 100%;
    justify-content: center;
    padding: 0 1rem;
}

.gai-doc {
    width: 220px;
    background: white;
    border: 2px solid rgba(255, 179, 0, 0.3);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gai-doc-header {
    background: rgba(255, 179, 0, 0.1);
    padding: 12px 14px;
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    color: #d84315;
    text-align: center;
    border-bottom: 2px solid rgba(255, 179, 0, 0.2);
    letter-spacing: 0.5px;
}

.gai-doc-text {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.gai-doc-text p {
    margin: 0;
    font-size: 0.65rem;
    color: #444;
    line-height: 1.4;
    font-family: 'Space Mono', monospace;
}

.gai-doc-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

.gai-doc-total {
    font-weight: var(--fw-bold);
    color: #111 !important;
    font-size: 0.75rem !important;
}

.gai-scan {
    position: absolute;
    left: 0;
    width: 220px;
    height: 3px;
    background: #ffb300;
    box-shadow: 0 0 15px #ffb300;
    animation: scanDoc 3.5s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.gai-scan-glow {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 179, 0, 0.25), transparent);
}

@keyframes scanDoc {

    0%,
    100% {
        top: -10px;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        top: 95%;
        opacity: 1;
    }

    95% {
        opacity: 0;
    }
}

.gai-chat {
    flex: 1;
    max-width: 380px;
    background: #fff;
    border: 2px solid rgba(255, 179, 0, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.08);
    overflow: hidden;
}

.gai-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 179, 0, 0.1);
    border-bottom: 1px solid rgba(255, 179, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 700;
    color: #d84315;
}

.gai-bot-avatar {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.gai-bot-avatar svg {
    width: 18px;
    height: 18px;
    color: #d84315;
}

.gai-chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.gai-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    max-width: 85%;
    line-height: 1.4;
}

.user-bubble {
    background: #f0f0f0;
    color: #333;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.bot-bubble {
    background: rgba(255, 179, 0, 0.15);
    color: #d84315;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    font-weight: 500;
}

.gai-type-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #d84315;
    animation: typingBot 3.5s steps(30, end) infinite;
}

@keyframes typingBot {

    0%,
    20% {
        width: 0;
        opacity: 0;
    }

    22% {
        opacity: 1;
    }

    60%,
    85% {
        width: 100%;
        opacity: 1;
    }

    95%,
    100% {
        width: 100%;
        opacity: 0;
    }
}

/* 3. Website Graphic (Blue) */
.graphic-website {
    width: 100%;
    max-width: 600px;
    height: 320px;
    position: relative;
    perspective: 1200px;
    margin: 0 auto;
}

.gweb-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(2, 136, 156, 0.15);
    display: flex;
    flex-direction: column;
}

/* Messy Website */
.gweb-messy {
    border: 3px solid #e0e0e0;
    z-index: 1;
    animation: fadeOutMessy 7s infinite;
}

.gweb-header-messy {
    height: 40px;
    background: #d32f2f;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
}

.m-logo {
    color: yellow;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.96rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.01em;
}

.m-nav-items {
    display: flex;
    gap: 8px;
}

.m-nav {
    width: 30px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.gweb-body-messy {
    display: flex;
    flex: 1;
    background: #fff9c4;
}

.m-sidebar {
    width: 90px;
    background: #ffcc80;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m-widget {
    height: 40px;
    background: #ef5350;
    border: 2px dashed #b71c1c;
}

.m-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m-title {
    color: blue;
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    text-decoration: underline;
    text-align: center;
}

.m-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.m-post-img {
    width: 60px;
    height: 60px;
    background: #4caf50;
    border-radius: 5px;
}

.m-post-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-line {
    height: 6px;
    background: #9e9e9e;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.m-ads {
    width: 50px;
    background: #2196f3;
    color: white;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Clean Website */
.gweb-clean {
    border: 3px solid rgba(2, 136, 156, 0.4);
    z-index: 2;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: revealClean 7s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

.gweb-header-clean {
    height: 36px;
    background: #f8fcfc;
    border-bottom: 2px solid rgba(2, 136, 156, 0.1);
    display: flex;
    align-items: center;
    padding: 0 16px;
    justify-content: space-between;
}

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

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

.c-dot.r {
    background: #ff5f56;
}

.c-dot.y {
    background: #ffbd2e;
}

.c-dot.g {
    background: #27ca40;
}

.c-nav-links {
    display: flex;
    gap: 15px;
    font-size: 0.55rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gweb-body-clean {
    display: flex;
    flex: 1;
    background: #fafdfd;
}

.c-sidebar {
    width: 110px;
    background: white;
    border-right: 2px solid rgba(2, 136, 156, 0.1);
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    gap: 8px;
}

.c-logo-box {
    height: 24px;
    width: 60%;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #02889c, #00ced1);
    border-radius: 4px;
}

.c-menu-item {
    font-size: 0.55rem;
    font-weight: 500;
    color: #666;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.c-menu-item.active {
    background: rgba(2, 136, 156, 0.1);
    color: #02889c;
    font-weight: 700;
}

.c-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-hero {
    background: linear-gradient(135deg, rgba(2, 136, 156, 0.1), rgba(0, 206, 209, 0.05));
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(2, 136, 156, 0.05);
}

.c-real-title {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: #111;
    margin: 0;
}

.c-real-sub {
    font-size: 0.6rem;
    color: #555;
    margin: 0;
    width: 80%;
    line-height: 1.4;
}

.c-btn {
    margin-top: 5px;
    background: #02889c;
    color: white;
    font-size: 0.55rem;
    font-weight: var(--fw-bold);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.c-grid {
    display: flex;
    gap: 15px;
    flex: 1;
}

.c-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(2, 136, 156, 0.15);
    box-shadow: 0 4px 12px rgba(2, 136, 156, 0.05);
}

@keyframes revealClean {

    0%,
    20% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }

    40%,
    80% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8) inset;
    }

    85%,
    100% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        text-shadow: none;
    }
}

@keyframes fadeOutMessy {

    0%,
    40% {
        opacity: 1;
        filter: sepia(0);
    }

    45%,
    90% {
        opacity: 0.3;
        filter: sepia(0.5);
    }

    95%,
    100% {
        opacity: 1;
        filter: sepia(0);
    }
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: var(--radius-sm);
    padding: 0.34rem 0.62rem;
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--black);
    margin-top: 0.25rem;
    transition: all var(--transition-fast);
}

.whatsapp-link:hover .whatsapp-cta {
    background: var(--black);
    color: var(--white);
}

.ai-widget {
    position: fixed;
    right: clamp(0.75rem, 2vw, 1.25rem);
    bottom: clamp(0.75rem, 2vw, 1.25rem);
    z-index: 1400;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
}

.ai-widget-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    border: 1px solid var(--black);
    border-radius: 11px;
    background: var(--white);
    color: var(--black);
    padding: 0.74rem 1.14rem;
    font-family: inherit;
    font-size: var(--fs-body-md);
    font-weight: var(--fw-regular);
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.ai-widget-toggle:hover {
    transform: translateY(-1px);
    background: #f7f7f7;
}

.ai-widget-toggle-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: aiWidgetPulse 1.7s infinite;
}

@keyframes aiWidgetPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.ai-widget-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.55rem);
    width: clamp(360px, 34vw, 500px);
    height: clamp(500px, 70vh, 620px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    border: 1px solid var(--gray);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    padding: 1rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(10px) scale(0.985);
    transform-origin: bottom right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
}

.ai-widget[data-open="true"] .ai-widget-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ai-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ai-assistant-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
}

.ai-widget-close {
    border: none;
    background: transparent;
    color: var(--gray-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.ai-widget-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--black);
}

.ai-availability {
    font-size: var(--fs-label-sm);
    color: var(--gray-dark);
    font-weight: var(--fw-regular);
}

.ai-assistant-desc {
    font-size: var(--fs-body-sm);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.45;
    margin: 0;
}

.ai-chat-thread {
    border: none;
    border-radius: 0;
    padding: 0.22rem 0 0.08rem 0;
    min-height: 0;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.62rem;
    background: transparent;
}

.ai-chat-bubble {
    max-width: 88%;
    padding: 0.62rem 0.75rem;
    border-radius: 12px;
    font-size: var(--fs-body-sm);
    line-height: 1.52;
    animation: aiBubbleIn 220ms ease-out;
    white-space: pre-line;
    text-align: left;
}

.ai-chat-bubble-assistant {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    border: none;
    color: var(--black);
    background: #f4f5f6;
}

.ai-chat-bubble-user {
    align-self: flex-end;
    margin-left: auto;
    border: none;
    color: var(--white);
    background: var(--black);
}

.ai-chat-bubble-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-width: 96px;
}

.ai-typing-indicator {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.16rem;
    height: 12px;
}

.ai-typing-bar {
    width: 3px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, #111827 0%, #6b7280 100%);
    animation: aiTypingWave 1s infinite ease-in-out;
    transform-origin: center bottom;
}

.ai-typing-bar:nth-child(2) {
    animation-delay: 0.16s;
}

.ai-typing-bar:nth-child(3) {
    animation-delay: 0.32s;
}

.ai-typing-text {
    font-size: var(--fs-label-xs);
    color: var(--gray-dark);
    letter-spacing: 0.03em;
    text-transform: lowercase;
}

@keyframes aiTypingWave {

    0%,
    100% {
        transform: scaleY(0.45);
        opacity: 0.45;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes aiBubbleIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-assistant-form {
    display: grid;
    gap: 0.55rem;
    border-top: 1px solid var(--gray);
    padding-top: 0.75rem;
}

.ai-assistant-form label {
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.ai-assistant-form textarea {
    width: 100%;
    height: 96px;
    min-height: 96px;
    max-height: 96px;
    resize: none;
    padding: 0.65rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--black);
    font-family: inherit;
    font-size: var(--fs-body-sm);
    line-height: 1.45;
}

.ai-assistant-form textarea::placeholder {
    color: #64748b;
}

.ai-assistant-form textarea:focus {
    border-color: var(--black);
    outline: none;
}

.ai-assistant-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.ai-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    background: transparent;
    color: var(--black);
    padding: 0.42rem 0.9rem;
    font-size: var(--fs-label-sm);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.ai-submit-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.ai-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ai-btn-arrow {
    transition: transform var(--transition-fast);
}

.ai-submit-btn:hover .ai-btn-arrow {
    transform: translateX(3px);
}

.ai-assistant-note {
    font-size: var(--fs-label-xs);
    color: var(--gray-dark);
    line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {

    .ai-widget-toggle-dot,
    .ai-chat-bubble,
    .ai-typing-bar {
        animation: none !important;
    }

    .ai-widget-panel {
        transition: none !important;
    }
}

/* FAQ Section */
.faq {
    border-top: var(--border);
}

.faq .section-container {
    max-width: 1360px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: var(--border);
}

.faq-item:first-child {
    border-top: var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    cursor: pointer;
    text-align: left;
    transition: opacity var(--transition-fast);
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-question span:first-child {
    font-weight: var(--fw-light);
    font-size: var(--fs-title-sm);
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-wrap: balance;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition-fast);
    color: var(--gray-dark);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--black);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
}

.faq-answer-list {
    margin: 0;
    padding: 0.125rem 0 0 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.faq-answer-list li {
    position: relative;
    padding-left: 1rem;
    font-size: var(--fs-body-md);
    color: var(--gray-dark);
    font-weight: var(--fw-light);
    line-height: 1.6;
    text-align: left;
}

.faq-answer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: #02889c;
    font-size: 1rem;
    line-height: 1;
}

/* Tech Stack Marquee Section */
.tech-stack {
    padding: 3rem 0;
    background: var(--gray-light);
    border-top: var(--border);
    border-bottom: var(--border);
    overflow: hidden;
}

.tech-stack-header {
    text-align: center;
    max-width: 1360px;
    margin: 0 auto 2rem auto;
    padding: 0 3rem;
}

.tech-label {
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.tech-stack-header h3 {
    font-weight: var(--fw-light);
    font-size: var(--fs-title-lg);
    letter-spacing: -0.01em;
    color: var(--black);
    line-height: 1.12;
    text-wrap: balance;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-light), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-light), transparent);
}

.marquee-track {
    display: flex;
    gap: 3.25rem;
    animation: marquee 30s linear infinite;
    width: max-content;
    padding: 1rem 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.marquee-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.marquee-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter var(--transition-fast);
}

.marquee-item:hover img {
    filter: grayscale(0%);
}

.marquee-item span {
    font-family: var(--font-meta);
    font-size: var(--fs-label-xs);
    color: var(--gray-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Footer */
.footer {
    padding: 4rem 3rem;
    border-top: var(--border);
    background: var(--gray-light);
}

.footer-content {
    max-width: 1360px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
}

.footer-brand {
    text-align: left;
}

.footer-name {
    font-size: var(--fs-title-md);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.footer-role {
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-light);
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.footer-vat {
    font-size: var(--fs-label-sm);
    font-weight: var(--fw-light);
    color: var(--gray-dark);
    font-family: var(--font-meta);
}

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

.footer-link {
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-light);
    color: var(--gray-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

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

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

.footer-copyright {
    font-size: var(--fs-label-sm);
    font-weight: var(--fw-extra-light);
    color: var(--gray-dark);
}

.footer-email {
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-light);
    color: var(--gray-dark);
    text-decoration: none;
}

.footer-email:hover,
.footer-email:focus-visible {
    color: var(--black);
}

/* Cookie Consent */
.cookie-consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cookie-consent-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.1rem 1.2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.cookie-close {
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    border: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem;
    opacity: 0.75;
}

.cookie-close:hover,
.cookie-close:focus-visible {
    opacity: 1;
}

.cookie-consent-content h3 {
    font-family: var(--font-sans);
    font-size: var(--fs-body-base);
    font-weight: var(--fw-medium);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
}

.cookie-consent-content p {
    font-size: var(--fs-body-sm);
    line-height: 1.55;
    color: #2f2f2f;
}

.cookie-consent-content a {
    color: var(--black);
}

.cookie-consent-actions {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.9rem;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 1px solid var(--black);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: var(--fs-button);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-btn-primary,
.cookie-btn-ghost {
    min-width: 180px;
}

.cookie-btn-primary {
    background: var(--black);
    color: var(--white);
    border-width: 1.5px;
}

.cookie-btn-primary:hover {
    opacity: 0.9;
}

.cookie-btn-secondary,
.cookie-btn-ghost {
    background: #ffffff;
    color: var(--black);
}

.cookie-btn-ghost {
    border-width: 1.5px;
}

.cookie-btn-secondary:hover,
.cookie-btn-ghost:hover {
    background: rgba(0, 0, 0, 0.06);
}

.cookie-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    padding: 1rem;
}

.cookie-consent-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal-panel {
    width: min(520px, 100%);
    background: #ffffff;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.cookie-modal-panel h3 {
    font-family: var(--font-mono);
    font-size: var(--fs-body-base);
    font-weight: var(--fw-medium);
    margin-bottom: 0.5rem;
}

.cookie-modal-panel p {
    font-size: var(--fs-body-sm);
    color: #333333;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.cookie-pref-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
}

.cookie-pref-row-locked {
    opacity: 0.65;
}

.cookie-pref-row input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .usecase-workspace {
        grid-template-columns: 1fr;
    }

    .usecase-menu-wrap {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0.85rem 0.75rem 0.75rem;
        position: static;
        top: auto;
        max-height: none;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .usecase-menu {
        width: 100%;
        max-width: 100%;
        border-top: 0;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.7rem;
        padding-bottom: 0.2rem;
    }

    .usecase-menu-item {
        width: auto;
        flex: 0 0 auto;
        min-width: 248px;
        min-height: 6.2rem;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        border-bottom-width: 1px;
        padding: 1rem 0.92rem;
    }

    .usecase-menu-item.is-active {
        box-shadow:
            inset 2px 0 0 #02889c,
            0 6px 14px -12px rgba(0, 0, 0, 0.4);
    }

    .usecase-content {
        max-height: 620px;
        padding: 0.5rem 0.85rem;
    }

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

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        width: calc(100vw - 1.25rem);
        min-height: 56px;
        padding: 0.72rem 0.85rem;
        gap: 0.7rem;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .nav-brand {
        gap: 0.72rem;
    }

    .nav-brand-name {
        font-size: var(--fs-nav-brand);
    }

    .nav-brand-tag {
        font-size: var(--fs-nav-tag);
        letter-spacing: 0.1em;
    }

    .nav-link {
        font-size: var(--fs-nav-link);
        letter-spacing: 0.08em;
        padding: 0.28rem 0;
    }

    .hero::before {
        background-size: 52px 52px, 52px 52px, cover;
        opacity: 0.42;
    }

    .nav-menu {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0.7rem;
        padding: 0.9rem;
    }

    .hero {
        padding: max(5.75rem, calc(env(safe-area-inset-top) + 4.5rem)) 1.5rem 3rem;
        min-height: 90svh;
    }

    .hero-content {
        margin-right: 0;
        padding: 1rem;
    }

    .hero-title {
        width: min(620px, 100%);
    }

    .terminal-window {
        max-width: 100%;
    }

    .terminal-body {
        min-height: 260px;
        padding: 1.25rem;
    }

    .hero-background .terminal-body {
        padding: 1rem 0.75rem;
        justify-content: flex-start;
    }

    .hero-background .terminal-line {
        flex-wrap: wrap;
        row-gap: 0.25rem;
    }

    .terminal-output {
        font-size: 0.625rem;
    }

    .hero-background .terminal-output,
    .hero-background .code-line {
        white-space: pre-wrap !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: var(--fs-title-xl);
    }

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

    .benefit-item {
        padding: 1.5rem;
    }

    .usecase-menu-item {
        min-width: 210px;
        min-height: 5.45rem;
        grid-template-columns: 1fr;
        gap: 0.15rem;
        padding: 0.8rem 0.76rem;
    }

    .usecase-menu-index {
        font-size: 0.86rem;
    }

    .usecase-menu-label {
        font-family: var(--font-sans);
        font-size: var(--fs-usecase-menu);
    }

    .usecase-content {
        max-height: 560px;
    }

    .usecase-detail {
        padding: 0.95rem 0.2rem 1rem;
    }

    .usecase-detail h3 {
        font-size: var(--fs-usecase-title);
    }

    .usecase-detail p,
    .usecase-detail-list li {
        font-size: var(--fs-body-sm);
    }

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

    .process-step-new {
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .step-dot {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .timeline-line {
        left: 18px;
    }

    .step-content-new {
        padding-top: 0.375rem;
    }

    .step-content-new h3 {
        font-size: var(--fs-title-sm);
    }

    .step-content-new p {
        font-size: var(--fs-body-sm);
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 1rem 0;
    }

    .faq-question span:first-child {
        font-size: var(--fs-title-sm);
    }

    .faq-arrow {
        width: 18px;
        height: 18px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1rem;
    }

    /* Contact Split Mobile */
    .contact-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-intro {
        font-size: var(--fs-body-sm);
    }

    .contact-form-col-primary {
        padding: 1rem 0.9rem;
    }

    .contact-channel-card {
        padding: 0.84rem 0.78rem;
        gap: 0.46rem;
    }

    .contact-channel-note {
        font-size: var(--fs-label-sm);
    }

    .whatsapp-link {
        padding: 0.74rem 0;
    }

    .whatsapp-text-large {
        font-size: var(--fs-body-base);
    }

    .whatsapp-number-large {
        font-size: var(--fs-label-md);
    }

    .contact-ai-shortcut {
        padding: 0.74rem 0;
    }

    .contact-ai-shortcut-text {
        font-size: var(--fs-body-sm);
    }

    .ai-widget {
        right: 0.7rem;
        bottom: 0.7rem;
    }

    .ai-widget-toggle {
        font-size: var(--fs-body-sm);
        padding: 0.62rem 0.96rem;
    }

    .ai-widget-panel {
        width: min(94vw, 390px);
        height: min(68vh, 490px);
        padding: 0.68rem;
        right: 0;
        bottom: calc(100% + 0.45rem);
    }

    .ai-chat-thread {
        min-height: 0;
        height: 100%;
        padding: 0.55rem;
    }

    .ai-chat-bubble {
        font-size: var(--fs-body-sm);
    }

    .ai-assistant-form textarea {
        min-height: 82px;
        max-height: 82px;
        height: 82px;
        font-size: var(--fs-body-sm);
    }

    /* Tech Stack Mobile */
    .tech-stack {
        padding: 2rem 0;
    }

    .tech-stack-header h3 {
        font-size: var(--fs-title-md);
    }

    .marquee-item img {
        width: 32px;
        height: 32px;
    }

    .marquee-track {
        gap: 2.2rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem 0;
    }

    .service-header h3 {
        font-size: var(--fs-title-md);
    }

    .service-viz {
        height: 100px;
    }

    .ai-viz-large {
        height: 118px;
    }

    /* Footer Mobile */
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        text-align: center;
    }

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

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

/* Mobile Optimizations for Simulator */
@media (max-width: 768px) {

    /* Excel table scrollabile su mobile */
    .excel-large {
        max-width: 100%;
    }

    .excel-table-large {
        --excel-grid-columns: minmax(64px, 0.55fr) minmax(118px, 0.95fr) minmax(170px, 1.3fr) minmax(170px, 1.35fr) minmax(80px, 0.55fr);
        padding: 0.5rem;
    }

    .excel-row-large {
        min-width: 610px;
        gap: 0.5rem;
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
    }

    .excel-row-header {
        font-size: 0.625rem;
    }
}

/* Responsive Navbar */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        width: min(1240px, calc(100vw - 1.5rem));
        grid-template-columns: minmax(210px, 1fr) minmax(360px, 460px) minmax(210px, 1fr);
        padding: 0.82rem 2rem;
    }

    .nav-brand {
        gap: 0.75rem;
    }

    .nav-brand-name {
        font-size: 0.86rem;
    }

    .nav-brand-tag {
        font-size: 0.58rem;
    }

    .nav-menu {
        gap: 0.55rem;
    }
}

@media (max-width: 768px) {
    .faq-panel {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Mobile hardening: isolated overrides for phone layouts */
@media (max-width: 768px) {
    .cookie-consent-banner {
        z-index: 1501;
    }

    section[id] {
        scroll-margin-top: 6.2rem;
    }

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

    .usecase-content {
        max-height: none;
    }

    .usecase-graphic-wrap {
        padding: 1.1rem 0.7rem;
        min-height: auto;
        margin-bottom: 1.1rem;
    }

    .graphic-workflow-report {
        width: min(100%, 420px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0.72rem;
        padding: 0.35rem;
    }

    .gwr-sources {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .gwr-source-card {
        min-height: 64px;
        padding: 0.46rem 0.54rem;
    }

    .gwr-source-name {
        font-size: 0.56rem;
    }

    .gwr-source-meta {
        font-size: 0.62rem;
    }

    .gwr-engine-zone {
        order: 2;
        gap: 0.42rem;
    }

    .gwr-engine-hub {
        width: 96px;
        height: 96px;
    }

    .gwr-engine-name {
        font-size: 0.74rem;
    }

    .gwr-engine-tags {
        max-width: 100%;
    }

    .gwr-report-card {
        order: 3;
        min-height: auto;
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .gwr-report-title {
        font-size: 0.66rem;
    }

    .gwr-report-kpis {
        gap: 0.32rem;
    }

    .gwr-kpi {
        padding: 0.4rem 0.42rem;
    }

    .gwr-kpi small {
        font-size: 0.48rem;
    }

    .gwr-kpi strong {
        font-size: 0.92rem;
    }

    .gwr-report-row {
        font-size: 0.61rem;
        padding: 0.31rem 0.42rem;
    }

    .gwr-report-row b {
        font-size: 0.66rem;
    }

    .gwr-report-footer {
        font-size: 0.5rem;
    }

    .gwr-stream-in-1,
    .gwr-stream-in-2,
    .gwr-stream-in-3,
    .gwr-stream-in-4 {
        display: none;
    }

    .gwr-stream-stack,
    .gwr-stream-out {
        display: block;
        width: 2px;
        height: 14%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(31, 141, 84, 0.18) 0%, rgba(31, 141, 84, 0.52) 45%, rgba(31, 141, 84, 0.14) 100%);
    }

    .gwr-stream-stack {
        top: 37%;
    }

    .gwr-stream-out {
        top: 59%;
        background: linear-gradient(180deg, rgba(31, 141, 84, 0.12) 0%, rgba(15, 23, 42, 0.38) 52%, rgba(15, 23, 42, 0.12) 100%);
    }

    .gwr-stream-stack::after,
    .gwr-stream-out::after {
        top: 0;
        left: 50%;
        width: 8px;
        height: 8px;
        transform: translate(-50%, -2px);
        animation-name: gwrPacketVertical;
    }

    .graphic-ai {
        flex-direction: column;
        gap: 0.85rem;
        width: 100%;
        padding: 0;
        align-items: center;
    }

    .gai-doc,
    .gai-chat {
        width: min(100%, 320px);
        max-width: 100%;
    }

    .gai-scan {
        width: 100%;
    }

    .gai-chat-body {
        padding: 12px;
        gap: 10px;
    }

    .gai-bubble {
        max-width: 100%;
        font-size: 0.78rem;
        padding: 10px 12px;
    }

    .gai-type-text {
        white-space: normal;
        border-right: 0;
        animation: none;
    }

    .graphic-website {
        max-width: 100%;
        height: 240px;
    }

    .gweb-header-messy,
    .gweb-header-clean {
        height: 32px;
        padding: 0 10px;
    }

    .m-logo {
        font-size: 0.78rem;
    }

    .m-sidebar {
        width: 62px;
        padding: 8px;
        gap: 8px;
    }

    .m-widget {
        height: 26px;
    }

    .m-content {
        padding: 8px;
        gap: 10px;
    }

    .m-title {
        font-size: 0.86rem;
    }

    .m-post {
        gap: 8px;
    }

    .m-post-img {
        width: 36px;
        height: 36px;
    }

    .m-line {
        height: 4px;
    }

    .m-ads {
        width: 34px;
        font-size: 0.56rem;
    }

    .c-nav-links {
        display: none;
    }

    .c-sidebar {
        width: 74px;
        padding: 8px 6px;
        gap: 6px;
    }

    .c-menu-item {
        font-size: 0.48rem;
        padding: 4px 5px;
    }

    .c-content {
        padding: 10px;
        gap: 8px;
    }

    .c-hero {
        padding: 10px;
        gap: 5px;
    }

    .c-real-title {
        font-size: 0.88rem;
    }

    .c-real-sub {
        width: 100%;
        font-size: 0.5rem;
    }

    .c-btn {
        padding: 5px 10px;
        font-size: 0.5rem;
    }

    .c-grid {
        gap: 8px;
    }
}

@keyframes gwrPacketVertical {
    0% {
        top: -12px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 8px);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        width: calc(100vw - 0.9rem);
        padding: 0.62rem 0.72rem 0.68rem;
        gap: 0.62rem;
    }

    .nav-brand {
        gap: 0.6rem;
    }

    .nav-logo-img {
        width: clamp(106px, 28vw, 122px);
        height: auto;
        max-width: none;
    }

    .nav-brand-name {
        font-size: var(--fs-nav-brand);
    }

    .nav-brand-tag {
        font-size: var(--fs-nav-tag);
        letter-spacing: 0.08em;
    }

    .nav-menu {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0.62rem;
        align-items: stretch;
    }

    .nav-link {
        font-size: var(--fs-nav-link);
        letter-spacing: 0.08em;
        justify-content: center;
        padding: 0.78rem 0.9rem;
    }

    section[id] {
        scroll-margin-top: 8.4rem;
    }

    .hero {
        padding: max(7.6rem, calc(env(safe-area-inset-top) + 6.35rem)) 1rem 2.25rem;
        min-height: 92svh;
    }

    .hero-title {
        font-size: var(--fs-display-xl);
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .usecase-menu-item {
        min-width: 188px;
    }

    .gwr-source-meta {
        font-size: 0.56rem;
    }

    .gwr-report-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gwr-kpi:nth-child(3) {
        grid-column: 1 / -1;
    }

    .gwr-report-row {
        font-size: 0.58rem;
    }

    .gwr-stream-stack {
        top: 39%;
    }

    .gwr-stream-out {
        top: 61%;
    }

    .cookie-consent-content {
        padding: 0.95rem 0.85rem;
    }

    .cookie-btn {
        font-size: var(--fs-label-sm);
        padding: 0.52rem 0.65rem;
    }
}
