/* v1.0.0 */
/*
Theme Name: Infinity Rebrand
Theme URI: https://infinityapps.es/
Description: Light SaaS-style theme for Infinityapps, built on the new brand identity.
Author: Infinityapps
Author URI: https://infinityapps.es/
Version: 1.0.0
Text Domain: infinity-rebrand
*/

:root {
    /* Colors */
    --bg-primary: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-hero: #1A006A;
    --bg-footer: #110046;
    --accent-cyan: #1EB8DC;
    --accent-cyan-deep: #1691AD;
    --accent-purple: #382873;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-inverse: #F8FAFC;
    --text-inverse-secondary: rgba(248, 250, 252, 0.72);
    --border-color: #E2E8F0;
    --pale-blue: #E2F5FB;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: #E2E8F0;

    /* Gradients */
    --grad-tech: linear-gradient(135deg, var(--accent-cyan), var(--bg-hero));

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 185px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-purple);
}

/* ── Skip Link (Accessibility) ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-tech);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 700;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ── Scroll Progress Bar ────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad-tech);
    z-index: 10001;
    transition: width 0.05s linear;
}

/* ── Glassmorphism Utility ──────────────────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

/* ── Navigation ─────────────────────────────────────────────────────── */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 0, 106, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(17, 0, 70, 0.97);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 0;
}

.main-logo img,
.main-logo .custom-logo-link img,
.custom-logo-link img,
img.custom-logo {
    height: 42px !important;
    max-height: 42px !important;
    width: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.glass-nav.scrolled .main-logo img,
.glass-nav.scrolled .main-logo .custom-logo-link img,
.glass-nav.scrolled .custom-logo-link img,
.glass-nav.scrolled img.custom-logo {
    height: 32px !important;
    max-height: 32px !important;
}

.main-logo:hover img,
.custom-logo-link:hover img {
    transform: scale(1.05);
}

.text-logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-accent {
    background: var(--grad-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
    margin: 0;
    padding: 0;
}

.glass-nav li,
.nav-right-group li {
    list-style: none;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-inverse);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.2rem;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--grad-tech);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    background: transparent;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: none;
    color: var(--accent-cyan);
}

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

.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    background: transparent;
    color: var(--accent-cyan);
    border-color: transparent;
    box-shadow: none;
}

.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 100%;
}

/* Nav right group (language switch + CTA) */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile language switch (shown only on mobile, inside hamburger area) */
.mobile-lang-switch {
    display: none !important;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 2px;
    gap: 0;
}

.lang-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.lang-btn:hover {
    color: var(--text-inverse);
}

.lang-btn.active {
    background: var(--grad-tech);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 184, 220, 0.3);
}

/* Nav CTA button */
.nav-cta-btn {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-nav-cta {
    display: none !important;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn-tech {
    position: relative;
    background: var(--grad-tech);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 4px 25px rgba(30, 184, 220, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-tech:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(30, 184, 220, 0.6);
    color: white;
}

.btn-tech:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

.btn-tech::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.btn-tech:hover::after {
    transform: scale(1);
}

/* Outline / secondary button */
.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-cyan-deep);
    border: 2px solid var(--accent-cyan);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline:hover {
    background: var(--accent-cyan);
    transform: scale(1.05);
    color: white;
    border-color: var(--accent-cyan);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

/* ── Hamburger Menu Toggle ──────────────────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    border-color: var(--accent-cyan);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-inverse);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Section Title ──────────────────────────────────────────────────── */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.2rem;
    background: var(--grad-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    width: 100%;
}

.section-title:has(+ .section-subtitle) {
    margin-bottom: 0.6rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto var(--spacing-lg);
}

/* ── 3D Solution Matrix ─────────────────────────────────────────────── */
.matrix-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    cursor: pointer;
    perspective: 1000px;
}

.matrix-card h3 {
    margin-top: var(--spacing-sm);
    background: var(--grad-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(30, 184, 220, 0.1) 0%, transparent 60%);
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Card icon */
.card-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    filter: grayscale(0.2);
}

/* Card link / CTA hint */
.card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-8px);
}

.glass-card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

/* ── Animations ─────────────────────────────────────────────────────── */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

.fade-up-delay {
    animation: fadeUp 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-up-delay-2 {
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
}

.reveal-text {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ── Trust Bar (Odoo Partner Showcase) ─────────────────────────────────── */
.trust-bar {
    background: var(--bg-surface);
    padding: 1.75rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.odoo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.odoo-showcase:hover {
    opacity: 0.85;
}

.odoo-showcase-logo {
    height: 80px;
    width: auto;
    max-width: 220px;
    display: block;
}

.odoo-showcase-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.odoo-showcase-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.odoo-showcase-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ── Clients Showcase (Improved) ───────────────────────────────────── */
.client-universe {
    overflow: hidden;
    padding: var(--spacing-lg) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.clients-showcase {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 1.5rem;
    animation: clientsScroll 35s linear infinite;
    width: max-content;
}

.client-card {
    flex-shrink: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.client-card:hover {
    background: rgba(30, 184, 220, 0.08);
    border-color: rgba(30, 184, 220, 0.3);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(30, 184, 220, 0.15);
}

.client-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.client-card:hover .client-name {
    color: var(--text-primary);
}

@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ── Solution Matrix (Interactive Cards) ────────────────────────────── */
.solution-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

/* Center last card when grid has an odd card */
.solution-matrix .glass-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.matrix-card {
    position: relative;
    overflow: hidden;
}

.matrix-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 184, 220, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.matrix-card:hover::before {
    opacity: 1;
}

/* ── Methodology (process timeline) ───────────────────────────────────── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md) 1.5rem;
    position: relative;
}

@media (min-width: 900px) {
    .process-timeline {
        grid-template-columns: repeat(5, 1fr);
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 22px;
        left: calc(100% / 10);
        right: calc(100% / 10);
        height: 2px;
        background: var(--border-color);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--grad-tech);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(30, 184, 220, 0.3);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Team ──────────────────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-md) 1.5rem;
    justify-items: center;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-surface);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover .team-photo {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.team-name {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.team-role {
    display: block;
    font-size: 0.82rem;
    color: var(--accent-cyan-deep);
    font-weight: 600;
}

/* ── Hero Section ───────────────────────────────────────────────────── */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #FFFFFF, var(--pale-blue));
    padding-top: 185px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(30, 184, 220, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Slowly drifting aurora glow, so the hero background feels alive rather than static */
.hero-section::after {
    content: '';
    position: absolute;
    inset: -15%;
    background:
        radial-gradient(circle, rgba(30, 184, 220, 0.22), transparent 45%),
        radial-gradient(circle, rgba(56, 40, 115, 0.16), transparent 50%);
    background-repeat: no-repeat;
    background-size: 55% 55%, 60% 60%;
    background-position: 10% 20%, 90% 80%;
    filter: blur(40px);
    animation: heroAuroraShift 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroAuroraShift {
    0%   { background-position: 10% 20%, 90% 80%; }
    50%  { background-position: 55% 60%, 35% 30%; }
    100% { background-position: 20% 70%, 80% 15%; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 3.3vw, 2.6rem);
    max-width: 100%;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    white-space: nowrap;
}

.lead {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(15, 23, 42, 0.25);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ── Service Modal ──────────────────────────────────────────────────── */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.service-modal-box {
    background: var(--bg-surface);
    border: 1px solid rgba(30, 184, 220, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.88) translateY(24px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 60px rgba(30, 184, 220, 0.12), 0 24px 80px rgba(0,0,0,0.6);
}

.service-modal-overlay.is-open .service-modal-box {
    transform: scale(1) translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.service-modal-close:hover {
    background: rgba(30, 184, 220, 0.15);
    color: var(--text-primary);
    border-color: var(--accent-cyan);
}

.service-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

.service-modal-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.service-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--grad-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.service-modal-body { color: var(--text-secondary); line-height: 1.7; }

.modal-section { margin-bottom: 1.6rem; }

.modal-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 0.6rem;
}

.modal-section p { color: var(--text-secondary); margin: 0; }

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.modal-tag {
    background: rgba(30, 184, 220, 0.08);
    border: 1px solid rgba(30, 184, 220, 0.2);
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    white-space: nowrap;
}

.modal-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.modal-steps li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-tech);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

@media (max-width: 600px) {
    .service-modal-box { padding: 1.8rem 1.2rem; }
    .service-modal-title { font-size: 1.3rem; }
}

/* ── Contact Section ────────────────────────────────────────────────── */
.contact-section {
    margin-bottom: 14rem;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card:hover {
    transform: none;
    border-color: var(--glass-border);
    box-shadow: none;
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form label .required {
    color: var(--accent-cyan);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(30, 184, 220, 0.1);
}

.contact-form input.field-invalid,
.contact-form textarea.field-invalid {
    border-color: #ff6060;
    box-shadow: 0 0 0 3px rgba(255, 60, 60, 0.1);
}

.contact-form input.field-valid,
.contact-form textarea.field-valid {
    border-color: #00d264;
}

.contact-form textarea {
    resize: vertical;
    text-align: left;
}

.contact-form .form-submit {
    margin-top: 1.5rem;
}

.contact-form .btn-tech {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* Field error messages */
.field-error {
    display: block;
    font-size: 0.78rem;
    color: #ff6060;
    margin-top: 0.3rem;
    min-height: 1.1rem;
}

/* Honeypot field */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-notice {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
}

.contact-notice a {
    color: var(--accent-cyan);
}

/* Button loading state */
.btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-tech.is-loading .btn-text {
    display: none;
}

.btn-tech.is-loading .btn-loading {
    display: flex;
}

/* Form feedback messages */
.form-success,
.form-error {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-success {
    background: rgba(0, 210, 100, 0.1);
    border: 1px solid rgba(0, 210, 100, 0.3);
    color: #00d264;
}

.form-error {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    color: #ff6060;
}

.form-feedback-dynamic {
    animation: fadeIn 0.4s ease;
}

/* ── Back to Top Button ─────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-tech);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 184, 220, 0.3);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(30, 184, 220, 0.5);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

/* ── Cookie Consent Banner ──────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 30px rgba(15, 23, 42, 0.08);
    padding: 1.25rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content p a {
    color: var(--accent-cyan);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--grad-tech);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(30, 184, 220, 0.4);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-reject:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 140px;
}

/* Footer logo block */
.footer-logo .custom-logo-link img,
.footer-logo img.custom-logo {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    object-fit: contain;
}

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

.infinity-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--text-inverse);
    text-decoration: none;
}

.infinity-text .apps {
    color: var(--accent-cyan);
}

/* Main row */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
    padding: 4rem 0 6rem !important;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 440px;
}

/* Logo image in footer */
.footer-logo-wrap .custom-logo-link img,
.footer-logo-wrap img.custom-logo,
.footer-logo-wrap .footer-logo-img {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

/* Text wordmark fallback */
.footer-wordmark {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--text-inverse);
    text-decoration: none;
}

.footer-wordmark span {
    background: var(--grad-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-inverse-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* Odoo badge in footer - improved */
.footer-odoo-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.footer-odoo-wrap:hover {
    border-color: rgba(30, 184, 220, 0.3);
    background: rgba(30, 184, 220, 0.05);
}

.footer-odoo-badge {
    height: 36px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-odoo-wrap:hover .footer-odoo-badge {
    opacity: 1;
}

/* Services column */
.footer-services-col {
    min-width: 180px;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.footer-services-list a {
    color: var(--text-inverse-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-services-list a:hover {
    color: var(--accent-cyan);
}

/* Contact column */
.footer-contact-col {
    min-width: 200px;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1.25rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fc-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-inverse-secondary);
}

.footer-contact-list a {
    color: var(--text-inverse);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: var(--accent-cyan);
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-inverse-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(30, 184, 220, 0.1);
    transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.75rem 0;
    color: var(--text-inverse-secondary);
    font-size: 0.78rem;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-inverse-secondary);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

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

/* ── Layout ─────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

.section-separated {
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

#servicios {
    padding-top: var(--spacing-lg);
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99,102,241,0.06) 0%, transparent 70%);
}

/* ── Static Pages (page.php) ───────────────────────────────────────── */
.page-content-wrap {
    padding: 160px 0 var(--spacing-xl);
    min-height: 70vh;
}

.page-article .page-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: var(--grad-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-body {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
}

.page-body h2 { font-size: 1.4rem; color: var(--text-primary); margin: 2rem 0 0.75rem; }
.page-body h3 { font-size: 1.15rem; color: var(--text-primary); margin: 1.5rem 0 0.5rem; }
.page-body p  { margin-bottom: 1rem; }
.page-body ul, .page-body ol { margin: 0.75rem 0 1rem 1.5rem; }
.page-body li { margin-bottom: 0.4rem; }
.page-body a  { color: var(--accent-cyan); text-decoration: underline; }
.page-body strong { color: var(--text-primary); }

/* ── Focus Visible (global) ─────────────────────────────────────────── */
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.4rem;
        white-space: normal;
    }

    .footer-inner {
        gap: var(--spacing-lg);
    }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2.5rem;
    }

    /* Show hamburger, hide desktop nav */
    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-right-group {
        display: none;
    }

    /* Logo smaller on mobile so nav doesn't overflow */
    .main-logo img,
    .main-logo .custom-logo-link img,
    .custom-logo-link img,
    img.custom-logo {
        height: 34px !important;
        max-height: 34px !important;
    }

    /* ── Mobile nav overlay ── */
    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(17, 0, 70, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        padding: 5rem 2rem 2.5rem;
        overflow-y: auto;
    }

    .main-navigation.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 1rem 0.5rem;
        color: var(--text-inverse-secondary);
        transition: color 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu .current-menu-item a {
        color: var(--accent-cyan);
    }

    .mobile-lang-switch {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 320px;
    }

    .mobile-nav-cta {
        display: inline-block !important;
        margin-top: 1.25rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Hero */
    .hero-section {
        min-height: 70vh;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        white-space: normal;
    }

    .lead {
        font-size: 1.1rem;
    }

    /* Trust bar */
    .odoo-showcase {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .odoo-showcase-text {
        align-items: center;
        text-align: center;
    }

    /* Cards grid */
    .solution-matrix {
        grid-template-columns: 1fr;
    }

    .solution-matrix .glass-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    /* Contact form row */
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3.5rem 0 2.5rem;
    }

    .footer-brand { max-width: 100%; }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Section padding */
    section {
        padding: var(--spacing-lg) 0;
    }

    /* Clients track speed for smaller screens */
    .clients-track {
        animation-duration: 25s;
        gap: 1rem;
    }

    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    /* Contact section — reduce bottom gap */
    .contact-section {
        margin-bottom: 4rem;
    }

    /* Odoo showcase — smaller on mobile */
    .odoo-showcase-logo {
        height: 56px;
        max-width: 150px;
    }

    /* ── Footer mobile redesign ── */
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2.5rem 1.5rem;
        padding: 3rem 0 2.5rem;
        align-items: start;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0;
        gap: 0.75rem;
    }

    .footer-logo-wrap .custom-logo-link img,
    .footer-logo-wrap img.custom-logo,
    .footer-logo-wrap .footer-logo-img {
        height: 36px !important;
        max-height: 36px !important;
        margin: 0 auto;
    }

    .footer-tagline {
        text-align: center;
        font-size: 0.82rem;
    }

    .footer-services-col,
    .footer-contact-col {
        min-width: 0;
    }

    .footer-col-title {
        margin-bottom: 1rem;
        font-size: 0.65rem;
    }

    .footer-services-list {
        gap: 0.8rem;
    }

    .footer-contact-list {
        gap: 1.1rem;
    }

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

    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    :root {
        --spacing-md: 1.25rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        white-space: normal;
    }

    .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .btn-tech {
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
    }

    .btn-outline {
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
    }

    .client-card {
        padding: 0.7rem 1.2rem;
    }

    .client-name {
        font-size: 0.85rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .footer-legal {
        gap: 1rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ── Hero layout (centered, text-only) ────────────────────────────────── */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 2;
}

/* ── Card icon (SVG) ─────────────────────────────────────────────────── */
.card-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
}

.card-icon svg {
    filter: drop-shadow(0 0 6px rgba(30, 184, 220, 0.35));
}

/* ── Glass-card border (more visible) ───────────────────────────────── */
.glass-card {
    border-color: rgba(15, 23, 42, 0.1);
}

/* ── Client card alternating accent ─────────────────────────────────── */
.clients-track .client-card:nth-child(3n+2) {
    border-color: rgba(56, 40, 115, 0.18);
}
.clients-track .client-card:nth-child(3n+2):hover {
    background: rgba(56, 40, 115, 0.06);
    border-color: rgba(56, 40, 115, 0.35);
    box-shadow: 0 8px 24px rgba(56, 40, 115, 0.12);
}
.clients-track .client-card:nth-child(3n+2):hover .client-name {
    color: var(--accent-purple);
}

/* ── Optional field label ────────────────────────────────────────────── */
.optional-label {
    font-size: 0.72rem;
    color: rgba(15, 23, 42, 0.4);
    font-weight: 400;
    margin-left: 0.2rem;
}

/* ── RGPD consent checkbox ───────────────────────────────────────────── */
.form-rgpd {
    margin-bottom: 0.25rem;
}

.rgpd-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.rgpd-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 0.15rem;
    accent-color: var(--accent-cyan);
    cursor: pointer;
}

.rgpd-label a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rgpd-label .required {
    color: #ff6060;
}


/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-text,
    .fade-up,
    .fade-up-delay,
    .fade-up-delay-2 {
        opacity: 1;
        animation: none;
    }

    .clients-track {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}
