:root {
    --bg-color: #050510;
    /* Dark Space Blue */
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --accent-primary: #6366f1;
    /* Indigo */
    --accent-secondary: #ec4899;
    /* Pink */
    --glass-bg: rgba(20, 20, 35, 0.7);
    /* Dark Glass */
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --font-heading: 'Outfit', 'Outfit Fallback', sans-serif;
    --font-body: 'Space Grotesk', 'Space Grotesk Fallback', sans-serif;
}

.rc-anchor-invisible {
    display: none !important;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: var(--card-shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
    /* Fallback */
}

.logo img {
    height: 32px;
    width: auto;
}

.logo span {
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger {
    display: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Buttons */
.cta-button {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

#cta-button-menu {
    background-color: #6366f1;
}

.cta-button.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}



/* To-Do List Animation */
.todo-animation {
    position: relative;
    z-index: 2;
    /* Ensure it's above the particles */
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

/* Readability Overlay for Hero */
.hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
    background: radial-gradient(circle, rgba(5, 5, 16, 0.8) 0%, rgba(5, 5, 16, 0) 70%);
    padding: 3rem;
    border-radius: 50%;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Solutions / Services */
.solutions {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Background Glow Effect */
.solutions::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
    /* Ensure text is above particles */
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    /* Reduced from 8rem */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.solution-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.7;
}

.solution-block.reverse {
    flex-direction: row-reverse;
}

.solution-text {
    flex: 1;
}

.solution-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    /* Removed padding/border from old style */
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.feature-list li strong {
    color: var(--text-main);
}

.feature-list li::before {
    content: "•";
    color: var(--accent-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

/* Icon Row */
.icon-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-3d-small {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #2a2a40, #1a1a2e);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

.solution-block:hover .icon-3d-small {
    transform: translateY(-5px);
}

.icon-3d {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2a2a40, #1a1a2e);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -5px -5px 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-block:hover .icon-3d {
    transform: scale(1.1) rotate(5deg);
}

.solution-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Process */
.process {
    padding: 4rem 2rem;
    background: transparent;
    /* Transparent to show body gradient */
    position: relative;
}

.process::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.2);
    font-family: var(--font-heading);
    margin-bottom: -1rem;
    position: relative;
    z-index: 0;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Desire Section */
.desire-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.desire-content {
    display: flex;
    align-items: center;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.desire-text {
    flex: 1;
    z-index: 2;
}

.desire-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.desire-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.desire-visual {
    flex: 1;
    height: 400px;
    position: relative;
}

#rocket-container {
    width: 100%;
    height: 100%;
}

/* Tech Stack */
.stack {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.stack-item {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.stack-item:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

/* Benefits Grid (Non-Tech) - Dynamic Redesign */
.benefits {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-top: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    flex: 1.2;
}

/* Staggered Layout Effect */
.benefits-grid .benefit-card:nth-child(2) {
    transform: translateY(30px);
}

.benefits-grid .benefit-card:nth-child(4) {
    transform: translateY(30px);
}

.benefits-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
    /* Ensure height for the art */
}

.benefits-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.benefits-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-10deg);
}

.benefit-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

/* Dynamic Hover Effect */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    /* Override stagger on hover */
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-secondary);
    box-shadow: 0 0 10px var(--accent-secondary);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.fa-check:before {
    display: none;
}



/* Comparison */
.comparison {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-container {
    padding: 3rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.side h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.side ul {
    list-style: none;
}

.side li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cost {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.side.bad .cost {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.side.good .cost {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Contact */
.contact {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    align-self: center;
}

.contact-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

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

input,
select {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-text {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-sub {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.cta-group {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    /* Enforce 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 24px;
    padding: 0;
    /* Remove padding to let image fill */
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
    z-index: 2;
}

.solution-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensure container respects aspect ratio */
    aspect-ratio: 16 / 9;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Tech Wave Section */
.tech-wave {
    width: 100%;
    overflow: hidden;
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.tech-wave-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: slide 20s linear infinite;
}

.wave-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: wave 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
    flex-shrink: 0;
}

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

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

@keyframes wave {

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

    50% {
        transform: translateY(-20px);
        background: rgba(99, 102, 241, 0.2);
        border-color: var(--accent-primary);
        box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    }
}

/* Chat Simulation Section */
.chat-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.chat-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.chat-text {
    flex: 1.2;
    /* Takes more space */
    z-index: 2;
}

.chat-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.chat-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.chat-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.chat-box {
    width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 35, 0.95);
    /* Darker, more opaque for window feel */
    border-radius: 12px;
    /* Tighter radius */
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    padding: 0px !important;
}

.chat-header {
    background: linear-gradient(to bottom, #3a3a45, #2b2b36);
    /* Window bar gradient */
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.chat-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
    /* Bevel effect */
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.chat-header span {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateX(-24px);
    /* Offset for the dots to center the text visually */
}

.chat-messages {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 250px;
}

.message {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s forwards;
}

.message.client {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.message.team {
    flex-direction: row;
    align-self: flex-start;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.client-avatar {
    background: var(--accent-primary);
    color: #fff;
}

.team-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bubble {
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 90%;
    position: relative;
}

.client-bubble {
    background: var(--accent-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.team-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

.dynamic-word {
    color: #ffbd2e;
    font-weight: 700;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    /* Prevent breaking */
}

/* Typing Effect */
.typing-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

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

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Roll Effect for Dynamic Word - Faster */
@keyframes rollIn {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

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

.roll-anim {
    animation: rollIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Faster animation */
}

/* Improved Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Hide reCAPTCHA Badge */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none;
}

.recaptcha-legal {
    font-size: 0.5rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.3;
    opacity: 0.5;
}

.recaptcha-legal a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.loading-content {
    text-align: center;
}

.loading-spinner-3d {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
    transform-style: preserve-3d;
    animation: spin3d 2s infinite linear;
}

.cube1,
.cube2 {
    background-color: var(--accent-primary);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    animation: cubemove 1.8s infinite ease-in-out;
}

.cube2 {
    animation-delay: -0.9s;
}

@keyframes spin3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
    }

    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Discovery Page Styles */
body.discovery-page {
    height: 100vh;
    overflow: hidden;
    background: #050510;
}

body.discovery-page #canvas-container {
    display: none;
}

.discovery-container {
    display: flex;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Close Button */
.close-chat-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.2);
    text-decoration: none;
}

.close-chat-btn:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #ff6b6b;
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(231, 76, 60, 0.4);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.todo-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.todo-card {
    background: rgba(20, 20, 35, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    width: 320px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.todo-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

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

.todo-header .dot.red {
    background: #ff5f56;
}

.todo-header .dot.yellow {
    background: #ffbd2e;
}

.todo-header .dot.green {
    background: #27c93f;
}

.todo-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.todo-item:last-child {
    border-bottom: none;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    transition: all 0.3s ease;
}

/* Workflow Animation */
.workflow-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
}

.workflow-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

svg.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Let clicks pass through to nodes if needed */
}

.node {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 35, 0.8);
    /* Darker background to hide line behind */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.node:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.2);
}

.ai-node {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    font-size: 1.8rem;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    opacity: 0;
    animation: pulseNode 2s infinite;
}

@keyframes pulseNode {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

.flow-light {
    filter: drop-shadow(0 0 5px currentColor);
}

/* BI Parallax Container */
.bi-parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
}

.bi-graph-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 0;
}

.graph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.floating-stat .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-stat .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

/* Stat Positions */
.stat-1 {
    top: 20%;
    right: 10%;
}

.stat-2 {
    bottom: 25%;
    left: 10%;
}

.stat-3 {
    top: 40%;
    left: 40%;
}

.stat-1 .value {
    color: #10b981;
}

/* Green */
.stat-2 .value {
    color: #6366f1;
}

/* Indigo */
.stat-3 .value {
    color: #ec4899;
}

/* Pink */
.todo-item.checked .checkbox {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.todo-item.checked .text {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Checkmark Icon */
.todo-item.checked .checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.discovery-sidebar {
    width: 280px;
    min-width: 280px;
    background: rgba(20, 20, 35, 0.7);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.client-info {
    margin-bottom: 2rem;
}

.client-info h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.5rem;
}

.client-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.discovery-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(5, 5, 16, 0.95);
    width: 100%;
}

.chat-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-input-wrapper {
    padding: 2rem;
    background: rgba(20, 20, 35, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
}

.chat-input-wrapper input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
}

.chat-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.send-btn {
    background: var(--accent-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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


/* Success Overlay */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.success-overlay.active .success-content {
    transform: translateY(0);
}

.success-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.success-content .sub-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* 3D Success Icon */
.success-icon-3d {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.success-icon-3d i {
    font-size: 3rem;
    color: #fff;
    z-index: 10;
    text-shadow: 0 0 20px var(--accent-primary);
}

.ring {
    position: absolute;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-primary);
    border-left: 2px solid var(--accent-secondary);
    border-radius: 50%;
    animation: rotateRing 3s linear infinite;
}

.ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 3s;
}

.ring:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-duration: 5s;
    animation-direction: reverse;
}

.ring:nth-child(3) {
    width: 130%;
    height: 130%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation-duration: 10s;
}

@keyframes rotateRing {
    0% {
        transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateY(360deg) rotateZ(360deg);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

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



    .solutions::before,
    .process::after {
        display: none;
    }

    .desire-content {
        flex-direction: column-reverse;
        padding: 3rem 2rem;
        text-align: center;
        gap: 2rem;
    }

    .desire-text p {
        margin: 0 auto 1.5rem;
    }

    .desire-visual {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    .desire-img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .chat-container {
        flex-direction: column-reverse;
        padding: 3rem 2rem;
        text-align: center;
        gap: 2rem;
    }

    .chat-text p {
        margin: 0 auto 1.5rem;
    }

    .chat-visual {
        width: 100%;
    }

    .chat-section {
        padding: 1rem;
    }

    .chat-container {
        padding: 2rem 1rem;
    }

    /* Chat Close Button - mobile */
    .close-chat-btn {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }


    .message {
        gap: 0.3rem;
    }


    .discovery-container {
        flex-direction: column;
    }

    .discovery-sidebar {
        width: 100%;
        height: auto;
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(20, 20, 35, 0.95);
    }

    .discovery-sidebar .logo {
        margin-bottom: 0 !important;
        font-size: 1.2rem;
    }

    .client-info,
    .status-box {
        display: none;
    }

    .discovery-chat {
        height: calc(100vh - 70px);
        /* Adjusted for smaller header */
    }

    .chat-main {
        padding: 1rem;
        padding-bottom: 100px;
        /* Space for fixed input */
    }

    .chat-input-wrapper {
        padding: 1rem;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background: rgba(20, 20, 35, 0.95);
        backdrop-filter: blur(10px);
    }

    .message {
        max-width: 100%;
    }

    .bubble {
        max-width: 90%;
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    /* Remove hero animations on mobile to improve LCP */
    .animate-text {
        animation: none;
        opacity: 1;
    }

    .hero-sub {
        animation: none;
        opacity: 1;
    }

    .cta-group {
        animation: none;
        opacity: 1;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* General Font Reduction */
    p {
        font-size: 0.95rem !important;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .solution-block {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
        text-align: left;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 1.5rem;
        overflow: hidden;
        position: relative;
    }

    .solution-block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    }

    .solution-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-top: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .carousel-container {
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: auto;
    }

    .solution-block.reverse {
        flex-direction: column;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .icon-row {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .icon-3d-small {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .solution-text h3 {
        font-size: 1.5rem;
        background: linear-gradient(135deg, #fff, var(--accent-primary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }

    .feature-list {
        background: rgba(0, 0, 0, 0.2);
        padding: 1rem;
        border-radius: 16px;
        margin-top: 1rem;
    }

    .feature-list li {
        text-align: left;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-content {
        flex-direction: column-reverse;
        gap: 2rem;
        margin-top: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Reset staggered effect on mobile */
    .benefits-grid .benefit-card:nth-child(2),
    .benefits-grid .benefit-card:nth-child(4) {
        transform: none;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefits-visual {
        height: 300px;
    }

    .minimalist-art {
        transform: scale(0.8);
    }

    .wave-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(20, 20, 35, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 2rem;
        border-radius: 0 0 16px 16px;
        border: 1px solid var(--glass-border);
        border-top: none;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-main);
        margin: 5px auto;
        transition: all 0.3s ease;
    }

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

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

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

    .glass-nav {
        padding: 0.8rem 1.5rem;
        width: 95%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8rem 1rem 2rem;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    /* Further Text Reduction */
    p {
        font-size: 0.9rem;
    }

    .solutions,
    .process,
    .desire-section,
    .benefits,
    .comparison,
    .contact {
        padding: 2rem 1rem;
    }

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

    .section-header h2 {
        font-size: 1.4rem;
    }

    .desire-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .desire-text h2 {
        font-size: 1.5rem;
    }

    .process-grid {
        gap: 0.8rem;
    }

    .process-step {
        padding: 1rem;
    }

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

    .comparison-container {
        padding: 1rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .solution-block {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .solution-text h3 {
        font-size: 1.3rem;
    }
}

/* Reduce motion for users who prefer it and improve mobile perf */
@media (prefers-reduced-motion: reduce) {

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