/* ==============================================
   Gufi Website - Replica Exacta Premium
   Colores: Blanco, Negro, Azul Oscuro (estilo original)
   ============================================== */

:root {
    /* Apple-style Colors - Morado de Gufi */
    --gufi-purple: #7C3AED;
    --gufi-purple-dark: #6B21A8;
    --gufi-purple-light: #8B5CF6;
    --gufi-purple-lighter: #A78BFA;

    /* Apple Grays */
    --black: #1d1d1f;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-300: #d2d2d7;
    --gray-400: #86868b;
    --gray-500: #6e6e73;
    --gray-600: #515154;
    --gray-700: #424245;
    --gray-800: #1d1d1f;
    --gray-900: #000000;

    /* Spacing - Apple usa mucho espacio */
    --spacing-unit: 8px;
    --container-max: 1280px;
    --container-padding: max(20px, 5vw);
    --section-spacing: clamp(80px, 12vw, 180px);

    /* Typography - San Francisco style */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;

    /* Apple Shadows - muy sutiles */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px 0 rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 80px 0 rgba(0, 0, 0, 0.16);
}

/* ==============================================
   Keyframe Animations
   ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Optimize scrolling performance */
html,
body {
    scroll-padding-top: 72px;
}

@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    background: var(--white);
    line-height: 1.47059;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    scroll-snap-type: y proximity;
    transition: background-color 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Floating particles background - subtle Apple style */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.15;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gufi-purple);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--gufi-purple), var(--gufi-purple-light), var(--gufi-purple-lighter));
    z-index: 10000;
    transition: width 0.15s ease;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
    border-radius: 0 0 4px 0;
}

/* Magnetic hover effect for all interactive elements */
.magnetic-element {
    transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* Smooth scroll sections with snap */
section {
    scroll-snap-align: start;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* Ambient background gradient that changes on scroll */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(124, 58, 237, 0.08) 0%,
        rgba(139, 92, 246, 0.04) 30%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body:hover .ambient-bg {
    opacity: 1;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 1;
}

/* ==============================================
   Containers
   ============================================== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* For content that needs centering */
.container-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Wider padding on larger screens */
@media (min-width: 768px) {
    .container,
    .container-wide {
        padding: 0 30px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-wide {
        padding: 0 40px;
    }
}

@media (min-width: 1600px) {
    .container,
    .container-wide {
        padding: 0 60px;
    }
}

/* ==============================================
   Navigation
   ============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.32, 0.08, 0.24, 1);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(251, 251, 253, 0.92);
    border-bottom-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    width: 100%;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.logo:hover .logo-text {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6));
}

.logo-image {
    height: 44px;
    width: auto;
    display: block;
    transition: all 0.2s cubic-bezier(0.32, 0.08, 0.24, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Retina display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
}

.logo {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.logo:hover .logo-image {
    opacity: 0.8;
    transform: scale(0.98);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    transform: none !important;
}

.nav-link:hover {
    color: var(--gufi-purple);
    transform: none !important;
}

/* Navbar button styling */
.navbar .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 980px;
    font-weight: 500;
    box-shadow: none;
    background: var(--gufi-purple);
}

.navbar .btn-primary:hover {
    background: var(--gufi-purple-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    user-select: none;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 8px;
    min-width: 220px;
    display: none;
    box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: var(--gray-50);
    color: var(--black);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* ==============================================
   Buttons
   ============================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25), 0 0 0 0 rgba(124, 58, 237, 0);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gufi-purple-dark) 0%, var(--gufi-purple) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.35), 0 0 0 8px rgba(124, 58, 237, 0.1);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Wave effect on click - DISABLED */
/*
.wave-effect {
    position: fixed;
    border: 2px solid var(--gufi-purple);
    border-radius: 50%;
    pointer-events: none;
    animation: waveExpand 1s ease-out forwards;
    z-index: 9996;
}

@keyframes waveExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}
*/

/* Sound wave effect - DISABLED */
/*
.sound-wave {
    position: fixed;
    width: 100px;
    height: 100px;
    border: 3px solid var(--gufi-purple);
    border-radius: 50%;
    pointer-events: none;
    animation: soundWaveExpand 1.5s ease-out forwards;
    z-index: 9995;
}

@keyframes soundWaveExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
        transform: translate(-50px, -50px);
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        transform: translate(-150px, -150px);
    }
}
*/

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

/* ==============================================
   Hero Section - Modern Gradient Design
   ============================================== */
.hero {
    width: 100%;
    padding: clamp(140px, 20vh, 180px) 0 clamp(120px, 18vh, 180px);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Background image with mascotas */
.hero {
    --parallax-y: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + var(--parallax-y)));
    width: 120%;
    height: 120%;
    background-image: url('../images/mascotas-gufi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: blur(3px) saturate(80%);
    z-index: 0;
    will-change: transform;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

/* Animated gradient background */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating blobs */
.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blobFloat 25s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gufi-purple);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--gufi-purple-light);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--gufi-purple-lighter);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.hero-content {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
    color: var(--black);
    max-width: 14em;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: block;
    min-height: 1.2em;
}

/* Typing cursor */
.hero-title.typing::after {
    content: '|';
    position: absolute;
    color: var(--black);
    font-weight: 300;
    animation: blink 0.8s infinite;
}

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



/* Text reveal effect */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 0.6s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

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

.hero-subtitle {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--gray-500);
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.1s both;
    letter-spacing: -0.01em;
}

.hero-cta {
    margin-top: 48px;
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* ==============================================
   Platform Section
   ============================================== */
.platform-section {
    width: 100%;
    padding: 140px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.platform-hero {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.platform-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gufi-purple) 50%, var(--gufi-purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.platform-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.5;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Stats Row */
.platform-stats-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border: 2px solid rgba(124, 58, 237, 0.08);
    border-radius: 28px;
    padding: 40px 36px 48px;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 360px;
}

.stat-item-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stat-item-premium:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 32px 80px rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.2);
}

.stat-item-premium:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    position: relative;
    margin-bottom: 28px;
    z-index: 1;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    border-radius: 50%;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    filter: blur(20px);
}

.stat-item-premium:hover .stat-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.15;
}

.stat-number-large {
    display: block;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    min-height: 72px;
}

.stat-number-large.api-badge {
    font-size: 64px;
    letter-spacing: -0.02em;
}

.stat-item-premium:hover .stat-number-large {
    transform: scale(1.1);
}

.stat-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.stat-item-premium:hover .stat-title {
    color: var(--gufi-purple);
    transform: translateY(-2px);
}

.stat-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    max-width: 280px;
    font-weight: 500;
    min-height: 76px;
    display: flex;
    align-items: center;
}

/* Old Stats (keep for compatibility) */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border: 2px solid rgba(124, 58, 237, 0.12);
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Premium Marquee Scroll Bar */
.premium-marquee-wrapper {
    position: relative;
    width: 100%;
    margin: 100px 0 120px;
    padding: 0;
    overflow: hidden;
}

.marquee-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 300%;
    background: radial-gradient(ellipse at center,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 20%,
        rgba(124, 58, 237, 0.05) 40%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
    z-index: 0;
}

.premium-marquee {
    position: relative;
    width: 100%;
    padding: 48px 0;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 4s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-light) 50%,
        var(--gufi-purple) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.5em;
    position: relative;
    display: inline-block;
}

.marquee-separator {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--gufi-purple);
    opacity: 0.4;
    padding: 0 0.4em;
    font-weight: 300;
    display: inline-block;
}

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

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

/* Pause animation on hover */
.premium-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .premium-marquee-wrapper {
        margin: 60px 0 80px;
    }

    .premium-marquee {
        padding: 32px 0;
    }

    .marquee-item {
        font-size: clamp(36px, 8vw, 48px);
    }

    .marquee-separator {
        font-size: clamp(24px, 5vw, 32px);
    }
}

/* Features Grid */
.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

/* Platform Feature Cards - DEPRECATED - Styles moved to inline */
/* Commented out to prevent conflicts with new face swap pattern
.platform-features .feature-card {
    perspective: 1000px !important;
    -webkit-perspective: 1000px !important;
    -moz-perspective: 1000px !important;
    cursor: pointer;
    min-height: 320px;
    width: 100%;
    height: 320px;
}

.platform-features .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
    -moz-transform-style: preserve-3d !important;
}

.platform-features .feature-card:hover .card-inner {
    transform: rotateY(180deg) !important;
    -webkit-transform: rotateY(180deg) !important;
    -moz-transform: rotateY(180deg) !important;
}

.platform-features .card-front,
.platform-features .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden !important;
    -moz-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    border-radius: 32px;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.08);
}

.platform-features .card-front {
    background: white;
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
}

.platform-features .card-back {
    background: #f8f8f8;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    z-index: 1;
    border-color: rgba(124, 58, 237, 0.3);
}

.platform-features .card-back p,
.platform-features .card-back .feature-description {
    color: #000 !important;
    font-size: 19px !important;
    font-weight: 500;
    line-height: 1.5;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin: 0;
    padding: 0;
}

.feature-card:hover .card-front,
.feature-card:hover .card-back {
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.25);
}
*/

.platform-features .feature-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
    max-width: 90%;
}


/* The Gufi Way Comparison */
.gufi-way {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    text-align: center;
}

.gufi-way-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.gufi-way-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--gray-500);
    margin-bottom: 56px;
    font-weight: 500;
}

.comparison-container {
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    align-items: stretch;
}

.comparison-column {
    padding: 48px 36px;
    border-radius: 28px;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.column-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.old-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.new-badge {
    background: linear-gradient(135deg, var(--gufi-purple-light) 0%, var(--gufi-purple-lighter) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.comparison-column h4 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comparison-column li {
    font-size: 15px;
    line-height: 1.5;
    padding: 14px 18px;
    position: relative;
    border-radius: 12px;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
    transform: none;
}

/* Removed animations to prevent movement on click */
.comparison-column.active li {
    opacity: 1;
    transform: none;
}

.new-way.active li {
    opacity: 1;
    transform: none;
}

.item-icon {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
}

.item-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.item-text {
    flex: 1;
}

/* Old Way Styling */
.old-way {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 2px solid rgba(239, 68, 68, 0.25);
}

.old-way::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.old-way:hover::before {
    opacity: 1;
}

.old-way h4 {
    color: var(--gray-800);
}

.old-way li {
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.5);
}

.old-way li:hover {
    background: rgba(239, 68, 68, 0.15);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.old-way .item-icon {
    background: rgba(239, 68, 68, 0.4);
}

.old-way .item-icon::before {
    background: rgba(239, 68, 68, 0.2);
}

.old-way li:hover .item-icon {
    transform: scale(1.8);
    background: rgba(239, 68, 68, 0.8);
}

.old-way li:hover .item-icon::before {
    transform: scale(1.8);
    opacity: 0.3;
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100px;
    z-index: 5;
}

.vs-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4),
                0 0 0 6px rgba(124, 58, 237, 0.1),
                0 0 0 12px rgba(124, 58, 237, 0.05);
    position: relative;
    z-index: 2;
    animation: vsFloat 3s ease-in-out infinite;
}

@keyframes vsFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px) rotate(-1deg); }
    75% { transform: translateX(4px) rotate(1deg); }
}

.vs-circle span {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.vs-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(239, 68, 68, 0.3) 20%,
        rgba(124, 58, 237, 0.5) 50%,
        var(--gufi-purple) 80%,
        transparent 100%
    );
    z-index: 1;
}

/* New Way Styling */
.new-way {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-dark) 100%);
    border: 2px solid var(--gufi-purple-light);
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.3);
    position: relative;
}

.new-way::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--gufi-purple-lighter) 0%, var(--gufi-purple) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

/* ==============================================
   The Gufi Way - Premium Redesign
   ============================================== */
.gufi-way-premium {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.gufi-way-header {
    text-align: center;
    margin-bottom: 80px;
}

.gufi-way-heading {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.gufi-way-tagline {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.comparison-container-premium {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

/* Premium Comparison Cards */
.comparison-card-premium {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border-radius: 32px;
    padding: 56px 48px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04),
                0 1px 3px rgba(0, 0, 0, 0.02);
}

.comparison-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.comparison-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(124, 58, 237, 0.12),
                0 2px 6px rgba(0, 0, 0, 0.04);
}

.comparison-card-premium:hover::before {
    opacity: 1;
}

/* Old Way Card */
.old-way-card {
    background: rgba(255, 255, 255, 0.5);
}

.old-way-card:hover {
    box-shadow: 0 32px 80px rgba(239, 68, 68, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.04);
}

/* New Way Card - Highlighted */
.new-way-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.new-way-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.new-way-card:hover::after {
    opacity: 0.03;
}

/* Card Badges */
.card-badge-premium {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.old-badge-premium {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.new-badge-premium {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
        transform: scale(1.02);
    }
}

/* Card Titles */
.card-title-premium {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 36px 0;
    color: var(--black);
    letter-spacing: -0.03em;
}

/* Comparison Items */
.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 1;
    transform: none !important;
    border: 1px solid transparent;
}

.comparison-item-premium.visible {
    opacity: 1;
    transform: none !important;
}

.comparison-item-premium:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: none !important;
}

/* Force no movement on any state */
.comparison-item-premium:active,
.comparison-item-premium:focus,
.comparison-item-premium:visited {
    transform: none !important;
}

/* Nuclear option - prevent ALL transforms in this section */
.comparison-container-premium *,
.comparison-container-premium *:hover,
.comparison-container-premium *:active,
.comparison-container-premium *:focus {
    transform: none !important;
}

.old-way-card .comparison-item-premium:hover {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.04);
}

.new-way-card .comparison-item-premium:hover {
    border-color: rgba(124, 58, 237, 0.15);
    background: rgba(124, 58, 237, 0.04);
}

.comparison-item-premium p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Item Indicators */
.item-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.item-indicator::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.item-indicator.old {
    background: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.item-indicator.old::before {
    background: rgba(239, 68, 68, 0.3);
}

.item-indicator.new {
    background: var(--gufi-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.item-indicator.new::before {
    background: rgba(124, 58, 237, 0.3);
}

.comparison-item-premium:hover .item-indicator {
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.comparison-item-premium:hover .item-indicator::before {
    opacity: 0.5;
}

/* Premium Glowing Divider */
.premium-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

.divider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(124, 58, 237, 0.1) 15%,
        rgba(124, 58, 237, 0.3) 50%,
        rgba(124, 58, 237, 0.1) 85%,
        transparent 100%
    );
}

.divider-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 200px;
    background: radial-gradient(ellipse at center,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(124, 58, 237, 0.05) 30%,
        transparent 70%
    );
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

.divider-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4),
                0 0 0 8px rgba(124, 58, 237, 0.1),
                0 0 0 16px rgba(124, 58, 237, 0.05);
    position: relative;
    z-index: 10;
    animation: badgeFloat 4s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .comparison-container-premium {
        grid-template-columns: 1fr 100px 1fr;
        gap: 32px;
    }

    .comparison-card-premium {
        padding: 48px 36px;
    }

    .card-title-premium {
        font-size: 28px;
    }

    .comparison-item-premium p {
        font-size: 15px;
    }

    .divider-badge {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .gufi-way-header {
        margin-bottom: 56px;
    }

    .comparison-container-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-card-premium {
        padding: 40px 28px;
    }

    .card-title-premium {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .comparison-item-premium p {
        font-size: 14px;
    }

    .premium-divider {
        width: 100%;
        height: 80px;
        flex-direction: row;
    }

    .divider-line {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .divider-glow {
        width: 200px;
        height: 100px;
    }

    .divider-badge {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

.new-way::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.new-way:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 96px rgba(124, 58, 237, 0.45);
}

.new-way:hover::before {
    opacity: 1;
}

.new-way:hover::after {
    opacity: 1;
}

.new-way h4 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.new-way li {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.new-way li:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.new-way .item-icon {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.new-way .item-icon::before {
    background: rgba(255, 255, 255, 0.5);
}

.new-way li:hover .item-icon {
    transform: scale(1.8);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.8);
}

.new-way li:hover .item-icon::before {
    transform: scale(1.8);
    opacity: 0.3;
}

/* ==============================================
   Section Grid (Who We Are, How We Work)
   ============================================== */
section {
    padding: var(--section-spacing) 0;
    scroll-snap-align: start;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* Smooth reveal on scroll */
section > * {
    will-change: transform, opacity;
}

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block {
    max-width: 540px;
    padding: 56px 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 252, 0.8) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
    overflow: hidden;
}

.info-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gufi-purple), var(--gufi-purple-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.info-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    border-color: rgba(124, 58, 237, 0.25);
}

.info-block:hover::after {
    transform: scaleX(1);
}

.block-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gufi-purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.015em;
    line-height: 1.1;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.info-block:hover .block-title {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.block-text:last-child {
    margin-bottom: 0;
}

.image-column {
    width: 100%;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.placeholder-image::before {
    content: 'Image Placeholder';
    font-size: 14px;
    font-weight: 500;
}

/* ==============================================
   About Us Section
   ============================================== */
.about-us {
    padding: 120px 0;
    background: linear-gradient(180deg,
        var(--white) 0%,
        var(--gray-50) 50%,
        var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0 0 32px 0;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   Marquee Section - Continuo Perfecto
   ============================================== */
.marquee-section {
    padding: 60px 0;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}

.marquee {
    overflow: hidden;
    display: flex;
    user-select: none;
    width: 100%;
}

.marquee-wrapper {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Pausar en hover */
.marquee:hover .marquee-wrapper {
    animation-play-state: paused;
}

.marquee-content span {
    font-size: 56px;
    font-weight: 600;
    color: var(--gray-400);
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    cursor: default;
    letter-spacing: -0.015em;
}

.marquee-content span:not(.separator):hover {
    color: var(--gufi-purple);
}

.marquee-content .separator {
    opacity: 0.2;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--marquee-distance, -50%));
    }
}

/* ==============================================
   Section Headings (Shared)
   ============================================== */
.section-heading {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--black);
    letter-spacing: -0.015em;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

.section-description {
    font-size: clamp(19px, 2vw, 24px);
    text-align: center;
    color: var(--gray-500);
    margin-bottom: clamp(100px, 12vw, 160px);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: -0.009em;
    position: relative;
    z-index: 10;
}

/* ==============================================
   Why Gufi Section
   ============================================== */
.why-gufi {
    background: var(--white);
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

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

    .why-item {
        padding: 44px 36px;
    }

    .why-title {
        font-size: 26px;
    }

    .why-text {
        font-size: 16px;
    }

    .platform-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .feature-card {
        min-height: 280px;
    }

    .card-inner {
        min-height: 280px;
    }

    .card-front,
    .card-back {
        min-height: 280px;
        padding: 48px 36px;
    }

    .feature-title {
        font-size: 28px;
    }

    .card-back .feature-description {
        font-size: 19px;
        line-height: 1.5;
    }

    .platform-stats-premium {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .stat-item-premium {
        padding: 36px 28px 40px;
        min-height: 340px;
    }

    .stat-icon-wrapper {
        min-height: 75px;
        margin-bottom: 24px;
    }

    .stat-number-large {
        font-size: 64px;
        min-height: 64px;
    }

    .stat-number-large.api-badge {
        font-size: 56px;
    }

    .stat-title {
        font-size: 24px;
        min-height: 30px;
        margin-bottom: 14px;
    }

    .stat-description {
        font-size: 14px;
        max-width: 100%;
        min-height: 70px;
    }

    .stat-icon-bg {
        width: 100px;
        height: 100px;
    }

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

    .comparison-grid {
        grid-template-columns: 1fr 80px 1fr;
    }

    .comparison-column {
        padding: 40px 28px;
    }

    .comparison-column li {
        font-size: 14px;
        padding: 12px 16px;
    }

    .vs-divider {
        width: 80px;
    }

    .vs-circle {
        width: 60px;
        height: 60px;
    }

    .vs-circle span {
        font-size: 18px;
    }

    .pricing-wrapper {
        max-width: 650px;
    }

    .pricing-header {
        padding: 40px 36px 32px;
    }

    .pricing-plan-name {
        font-size: 36px;
    }

    .pricing-plan-tagline {
        font-size: 15px;
    }

    .pricing-body {
        padding: 32px 36px;
    }

    .feature-item-premium {
        padding: 18px 20px;
        gap: 16px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .pricing-footer {
        padding: 32px 36px;
    }

    .btn-premium {
        padding: 16px 36px;
        font-size: 16px;
    }

    .pricing {
        padding: 100px 0;
    }
}

.why-item {
    padding: 40px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: saturate(200%) blur(30px);
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Top accent bar */
.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--gufi-purple), var(--gufi-purple-light));
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* Glow effect */
.why-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.why-item > * {
    position: relative;
    z-index: 1;
}

.why-item:hover::before {
    transform: translateX(0);
}

.why-item:hover::after {
    opacity: 1;
}

.why-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 252, 0.95) 100%);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 32px 80px rgba(124, 58, 237, 0.22);
    border-color: rgba(124, 58, 237, 0.25);
}

.why-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--gufi-purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.why-item:hover .why-title {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(4px);
}

.why-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ==============================================
   Pricing Section
   ============================================== */
.pricing {
    width: 100%;
    padding: 120px 0;
    background: var(--gray-50);
    position: relative;
    z-index: 1;
}

.pricing-grid-single {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border: 2px solid rgba(124, 58, 237, 0.12);
    border-radius: 40px;
    padding: 72px 56px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: visible;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Gradient overlay */
.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    z-index: -1;
    border-radius: 40px;
    pointer-events: none;
}

/* Content above overlay */
.pricing-card > * {
    position: relative;
    z-index: 1;
}

/* Flip effect on hover */
.pricing-card:hover {
    transform: translateY(-16px) rotateY(3deg);
    box-shadow: 0 32px 96px rgba(124, 58, 237, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 252, 0.95) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}

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

/* Animated border gradient */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gufi-purple), var(--gufi-purple-light), var(--gufi-purple));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    animation: gradientMove 3s ease infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.pricing-card.selected {
    border-color: var(--gufi-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3), 0 35px 80px rgba(124, 58, 237, 0.4);
    transform: scale(1.05);
}

@keyframes cardSelect {
    0%, 100% {
        transform: scale(1.05);
    }
    25% {
        transform: scale(1.08) rotate(1deg);
    }
    50% {
        transform: scale(1.05) rotate(0deg);
    }
    75% {
        transform: scale(1.08) rotate(-1deg);
    }
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-dark) 100%);
    color: var(--white);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.35);
}

.pricing-card.featured::after {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(107, 33, 168, 0.2) 100%);
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(167, 139, 250, 0.5), rgba(255, 255, 255, 0.5));
    opacity: 0.3;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-20px);
    box-shadow: 0 40px 120px rgba(124, 58, 237, 0.45);
}

.pricing-card.featured:hover::before {
    opacity: 0.6;
}

.pricing-card.featured h3,
.pricing-card.featured .amount,
.pricing-card.featured .price-description,
.pricing-card.featured .features-list {
    color: var(--white);
}

.pricing-card.featured .features-list li {
    border-bottom-color: var(--gray-700);
}

.pricing-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gufi-purple-dark);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.pricing-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.price {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.price .amount {
    font-size: 42px;
    font-weight: 800;
    display: block;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.price-description {
    text-align: center;
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 40px;
    min-height: 48px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.pricing-card.featured .price-description {
    color: var(--gray-300);
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.features-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 16px;
    color: var(--gray-700);
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.pricing-card.featured .features-list li {
    color: var(--gray-100);
    border-bottom-color: var(--gray-700);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gufi-purple);
    color: var(--gufi-purple);
}

.btn-outline:hover {
    background: var(--gufi-purple);
    color: var(--white);
}

.pricing-card.featured .btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.pricing-card.featured .btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* ==============================================
   Premium Pricing Design
   ============================================== */
.pricing-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(250, 250, 252, 0.95) 100%);
    backdrop-filter: saturate(200%) blur(60px);
    -webkit-backdrop-filter: saturate(200%) blur(60px);
    border-radius: 56px;
    overflow: visible;
    box-shadow:
        0 24px 80px rgba(124, 58, 237, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: 2px solid rgba(124, 58, 237, 0.12);
    position: relative;
}

.pricing-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.2) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(124, 58, 237, 0.2) 100%);
    border-radius: 56px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.pricing-wrapper:hover {
    box-shadow:
        0 32px 100px rgba(124, 58, 237, 0.22),
        0 12px 48px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-12px) scale(1.01);
}

.pricing-wrapper:hover::before {
    opacity: 1;
}

/* Floating Promo Badge */
.promo-badge-floating {
    position: absolute;
    top: -16px;
    right: 32px;
    z-index: 10;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 14px 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow:
        0 12px 40px rgba(239, 68, 68, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: floatingBadge 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-badge-floating::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: radial-gradient(circle at center,
        rgba(239, 68, 68, 0.3) 0%,
        transparent 70%);
    border-radius: 24px;
    filter: blur(12px);
    z-index: -1;
}

.promo-badge-floating:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow:
        0 16px 56px rgba(239, 68, 68, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 20px;
    opacity: 0.6;
    pointer-events: none;
}

.badge-text {
    font-size: 18px;
    font-weight: 900;
    color: white;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.badge-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

@keyframes floatingBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

/* Header Section */
.pricing-header {
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-dark) 100%);
    padding: 56px 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 56px 56px 0 0;
}

.pricing-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0.8;
    border-radius: 56px 56px 0 0;
}

.pricing-plan-name {
    font-size: 52px;
    font-weight: 900;
    color: white;
    margin: 0 0 12px 0;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-plan-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

/* Body Section */
.pricing-body {
    padding: 48px 56px 40px;
    background: transparent;
    border-radius: 0;
}

.pricing-main-features {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: 1.5px solid rgba(124, 58, 237, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.06) 0%,
        rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item-premium:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateX(12px) scale(1.01);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
}

.feature-item-premium:hover::before {
    opacity: 1;
}

.feature-number {
    font-size: 15px;
    font-weight: 900;
    color: var(--gufi-purple);
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.12) 0%,
        rgba(139, 92, 246, 0.08) 100%);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.feature-item-premium:hover .feature-number {
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-light) 100%);
    color: white;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.pricing-divider {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.1) 20%,
        rgba(124, 58, 237, 0.15) 50%,
        rgba(124, 58, 237, 0.1) 80%,
        transparent 100%);
    margin: 40px 0;
    position: relative;
}

.pricing-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center,
        rgba(124, 58, 237, 0.08) 0%,
        transparent 70%);
    filter: blur(8px);
}

.pricing-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.benefit-pill {
    padding: 12px 24px;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(139, 92, 246, 0.08) 100%);
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gufi-purple);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-pill:hover {
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-light) 100%);
    color: white;
    border-color: var(--gufi-purple);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.benefit-pill:hover::before {
    opacity: 1;
}

/* Pricing Footer */
.pricing-footer {
    background: var(--gufi-purple);
    color: var(--white);
    border-color: var(--gufi-purple);
    transform: translateY(-2px);
}

/* Footer Section */
.pricing-footer {
    padding: 40px 48px 48px;
    background: var(--gray-50);
    text-align: center;
    border-radius: 0 0 56px 56px;
    overflow: hidden;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-dark) 100%);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.35);
}

.btn-premium svg {
    transition: transform 0.3s ease;
}

.btn-premium:hover svg {
    transform: translateX(4px);
}

.pricing-footer-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

/* ==============================================
   The Gufi Difference Section
   ============================================== */
.gufi-difference {
    width: 100%;
    padding: 140px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.gufi-difference::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.difference-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.comparison-rows {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-row {
    margin-bottom: 48px;
    opacity: 1; /* Changed from 0 to 1 for immediate visibility */
    transform: translateY(0); /* Start at normal position */
    transition: all 1s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.comparison-row:last-child {
    margin-bottom: 0;
}

.comparison-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.row-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.row-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
}

.row-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.other-icon {
    background: linear-gradient(135deg, rgba(120, 120, 130, 0.12) 0%, rgba(140, 140, 150, 0.08) 100%);
    color: #6b7280;
}

.other-icon::before {
    background: radial-gradient(circle at center, rgba(120, 120, 130, 0.2) 0%, transparent 70%);
}

.gufi-icon {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    color: white;
    box-shadow:
        0 8px 24px rgba(124, 58, 237, 0.25),
        0 0 0 1px rgba(124, 58, 237, 0.1);
}

.gufi-icon::before {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
}

.comparison-row:hover .row-icon-wrapper::before {
    opacity: 1;
}

.comparison-row:hover .row-icon-wrapper {
    transform: scale(1.05) rotate(3deg);
}

.row-text {
    flex: 1;
}

.row-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--black);
    margin: 0 0 6px 0;
    letter-spacing: -0.05em;
    line-height: 1;
}

.row-description {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.comparison-bar {
    display: flex;
    gap: 16px;
    height: 160px;
    width: 100%;
}

.bar-segment {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    overflow: visible;
    cursor: pointer;
}

.bar-segment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 28px;
}

.bar-segment:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bar-segment:hover::before {
    opacity: 1;
}

.segment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.segment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.03);
    color: var(--black);
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.segment-icon.faded {
    opacity: 0.4;
}

.bar-segment:hover .segment-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(0, 0, 0, 0.06);
}

.segment-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--gray-600);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar-segment:hover .segment-badge {
    opacity: 1;
    transform: translateY(0);
}

.large-segment {
    flex: 0 0 calc(70% - 6px);
}

.small-segment {
    flex: 0 0 calc(30% - 6px);
}

/* VS Divider */
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 56px 0;
    position: relative;
}

.vs-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.2) 50%,
        transparent 100%);
    position: relative;
}

.vs-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 70%);
    filter: blur(10px);
}

.vs-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    color: white;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
    box-shadow:
        0 8px 32px rgba(124, 58, 237, 0.3),
        0 0 0 4px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: vsPulse 3s ease-in-out infinite;
}

@keyframes vsPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 8px 32px rgba(124, 58, 237, 0.3),
            0 0 0 4px rgba(124, 58, 237, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 12px 40px rgba(124, 58, 237, 0.4),
            0 0 0 8px rgba(124, 58, 237, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Other ERPs - Platform highlighted */
.other-erp-row .platform-segment {
    background: linear-gradient(135deg,
        rgba(220, 220, 225, 0.95) 0%,
        rgba(210, 210, 218, 0.9) 100%);
    border: 2px solid rgba(100, 100, 110, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.other-erp-row .platform-segment .segment-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.other-erp-row .custom-segment.inactive {
    opacity: 0.35;
    background: linear-gradient(135deg,
        rgba(250, 250, 252, 0.5) 0%,
        rgba(245, 245, 247, 0.4) 100%);
    border: 2px solid rgba(0, 0, 0, 0.03);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.other-erp-row .custom-segment.inactive:hover {
    opacity: 0.5;
    transform: translateY(-2px) scale(1.01);
}

.other-erp-row .custom-segment.inactive .segment-label,
.other-erp-row .custom-segment.inactive .segment-percentage {
    opacity: 0.7;
}

.other-erp-row .custom-segment.inactive .segment-badge {
    background: rgba(100, 100, 110, 0.1);
}

/* Gufi - Custom-ERP highlighted with purple */
.gufi-row .platform-segment {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(250, 250, 252, 0.9) 100%);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gufi-row .platform-segment .segment-badge {
    background: rgba(124, 58, 237, 0.1);
    color: var(--gufi-purple);
}

.gufi-row .custom-segment.highlighted {
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-light) 100%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.35),
        0 0 0 1px rgba(124, 58, 237, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.gufi-row .custom-segment.highlighted::before {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 1;
}

.gufi-row .custom-segment.highlighted:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 24px 72px rgba(124, 58, 237, 0.4),
        0 0 0 1px rgba(124, 58, 237, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.gufi-row .custom-segment.highlighted .segment-label,
.gufi-row .custom-segment.highlighted .segment-percentage {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.gufi-row .custom-segment.highlighted .segment-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.gufi-row .custom-segment.highlighted:hover .segment-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2) rotate(8deg);
}

.gufi-row .custom-segment.highlighted .segment-badge {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.segment-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.segment-percentage {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.checkmark-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    filter: drop-shadow(0 4px 16px rgba(16, 185, 129, 0.5));
    animation: checkmarkPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.bar-segment:hover .checkmark-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(16, 185, 129, 0.6));
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-90deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.15) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Difference Grid (8 Cards) */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 80px auto 0;
    position: relative;
    z-index: 1;
}

.difference-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, transparent 50%, rgba(124, 58, 237, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.difference-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.difference-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
}

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

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

.difference-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--gufi-purple);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.difference-card:hover .difference-number {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.difference-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.difference-card:hover .difference-title {
    color: var(--gufi-purple);
}

.difference-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

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

    .difference-card {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .gufi-difference {
        padding: 100px 0;
    }

    .difference-header {
        margin-bottom: 56px;
    }

    .comparison-rows {
        max-width: 100%;
        padding: 0 20px;
    }

    .comparison-row {
        margin-bottom: 48px;
    }

    .row-header {
        gap: 16px;
        margin-bottom: 20px;
    }

    .row-icon-wrapper {
        width: 52px;
        height: 52px;
    }

    .row-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .row-title {
        font-size: 28px;
    }

    .row-description {
        font-size: 14px;
    }

    .vs-divider {
        margin: 40px 0;
    }

    .vs-badge {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .comparison-bar {
        height: 120px;
        gap: 10px;
    }

    .large-segment,
    .small-segment {
        flex: 1 !important;
    }

    .segment-icon {
        width: 36px;
        height: 36px;
    }

    .segment-icon svg {
        width: 20px;
        height: 20px;
    }

    .segment-label {
        font-size: 15px;
    }

    .segment-percentage {
        font-size: 13px;
    }

    .segment-badge {
        font-size: 9px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    .checkmark-icon {
        width: 24px;
        height: 24px;
        top: 12px;
        right: 12px;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 60px;
    }

    .difference-card {
        padding: 32px 24px;
    }

    .difference-number {
        width: 40px;
        height: 40px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .difference-title {
        font-size: 18px;
    }

    .difference-description {
        font-size: 14px;
    }
}

/* ==============================================
   Careers Section
   ============================================== */
.careers {
    width: 100%;
    padding: 140px 0 160px;
    scroll-margin-top: 72px;
    background: linear-gradient(180deg,
        var(--white) 0%,
        var(--gray-50) 50%,
        var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.careers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(124, 58, 237, 0.08) 0%,
        rgba(139, 92, 246, 0.05) 30%,
        transparent 70%);
    pointer-events: none;
}

.careers-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.careers-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gufi-purple);
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(139, 92, 246, 0.08) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.careers-heading {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--black);
    margin: 0 0 24px 0;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(135deg,
        var(--black) 0%,
        var(--gray-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 56px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.careers-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.05) 0%,
        rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(124, 58, 237, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 32px rgba(124, 58, 237, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.value-item span {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
}

.careers-cta {
    margin-top: 56px;
}

.btn-careers {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-purple-light) 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    box-shadow:
        0 12px 40px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-careers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-careers:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-careers:hover::before {
    opacity: 1;
}

.btn-careers:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-careers svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-careers:hover svg {
    transform: translateX(4px);
}

/* Responsive Careers */
@media (max-width: 768px) {
    .careers {
        padding: 100px 0 120px;
    }

    .careers-heading {
        font-size: clamp(36px, 8vw, 48px);
    }

    .careers-description {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .careers-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .value-item {
        padding: 24px 16px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
    }

    .value-item span {
        font-size: 14px;
    }

    .btn-careers {
        padding: 18px 32px;
        font-size: 16px;
    }
}

/* ==============================================
   Demo Section
   ============================================== */
.demo-section {
    width: 100%;
    padding: 140px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

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

.demo-content {
    position: relative;
    z-index: 2;
    padding-top: 0; /* Move content up */
}

.demo-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--black) 0%, var(--gufi-purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--gufi-purple);
}

.demo-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px; /* Add space for mascot */
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
}

/* Demo Mascot */
.demo-mascot {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mascot-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(124, 58, 237, 0.15));
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    animation: floatMascot 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
    /* Horizontal flip is handled in the animation */
}

.mascot-image:hover {
    transform: scaleX(-1.05) scaleY(1.05) rotate(-2deg); /* Keep flipped while scaling */
    filter: drop-shadow(0 12px 32px rgba(124, 58, 237, 0.25));
}

/* Floating animation for mascot - keeping horizontal flip */
@keyframes floatMascot {
    0%, 100% {
        transform: translateY(0) scaleX(-1) scaleY(1);
    }
    50% {
        transform: translateY(-10px) scaleX(-1.02) scaleY(1.02);
    }
}

/* Add subtle glow effect behind mascot */
.demo-mascot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseMascot 3s ease-in-out infinite;
}

@keyframes pulseMascot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gufi-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Form Styling */
.demo-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border: 2px solid rgba(124, 58, 237, 0.12);
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.demo-form-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 96px rgba(124, 58, 237, 0.25);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    background: var(--white);
    color: var(--gray-800);
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gufi-purple);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237C3AED' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    padding-right: 48px;
}

.form-group select:hover {
    border-color: var(--gufi-purple-light);
    background-color: rgba(124, 58, 237, 0.02);
}

.form-group select option {
    padding: 12px 16px;
    font-size: 16px;
    background: var(--white);
    color: var(--gray-800);
    border-radius: 8px;
}

.form-group select option:hover,
.form-group select option:checked {
    background: linear-gradient(135deg, var(--gufi-purple) 0%, var(--gufi-purple-light) 100%);
    color: var(--white);
}

.form-group select option:disabled {
    color: var(--gray-400);
    background: var(--gray-50);
}

/* Firefox specific styling */
@-moz-document url-prefix() {
    .form-group select option {
        padding: 8px;
    }
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
}

.form-notice {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: -8px;
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gufi-purple);
    margin-bottom: 16px;
}

.form-success p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ==============================================
   Footer
   ============================================== */
/* ==============================================
   Premium Gufi Footer
   ============================================== */
.footer {
    width: 100%;
    background: #7C3AED; /* Solid Gufi purple matching the logo */
    position: relative;
    padding: 120px 0 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}


.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 120px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    opacity: 1; /* Changed from 0 to 1 for immediate visibility */
    transform: translateY(0); /* Start at normal position */
    transition: all 1s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.footer-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-main {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Make sure it's white */
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-logo-image:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.footer-logo .logo-text {
    font-size: 52px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-logo .logo-text:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.footer-tagline {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col {
    opacity: 1; /* Changed from 0 to 1 for immediate visibility */
    transform: translateY(0); /* Start at normal position */
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.footer-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    color: white;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
    padding-left: 0;
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transition: width 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.footer-col a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-col a:hover::before {
    width: 100%;
}

.footer-bottom {
    padding: 56px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.03em;
}

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

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

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

/* Performance optimizations */
.pricing-card,
.info-block,
.why-item,
.btn,
.nav-link {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Hardware acceleration */
.custom-cursor,
.custom-cursor-follower,
.scroll-progress {
    will-change: transform;
    transform: translateZ(0);
}

/* Smooth all animations */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Disable will-change on mobile for better performance */
@media (max-width: 768px) {
    .pricing-card,
    .info-block,
    .why-item,
    .btn,
    .nav-link {
        will-change: auto;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 20px;
        height: 60px;
    }

    .logo-image {
        height: 32px;
    }

    .navbar .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        transform: translateY(-120%);
        width: 100%;
        background: rgba(251, 251, 253, 0.95);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
        flex-direction: column;
        padding: 20px;
        transition: all 0.3s cubic-bezier(0.32, 0.08, 0.24, 1);
        gap: 12px;
    }

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

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

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .content-column {
        gap: 40px;
    }

    .platform-stats-premium {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .stat-item-premium {
        padding: 32px 24px 36px;
        min-height: 320px;
    }

    .stat-icon-wrapper {
        margin-bottom: 20px;
        min-height: 65px;
    }

    .stat-icon-bg {
        width: 90px;
        height: 90px;
    }

    .stat-number-large {
        font-size: 56px;
        min-height: 56px;
    }

    .stat-number-large.api-badge {
        font-size: 48px;
    }

    .stat-title {
        font-size: 22px;
        margin-bottom: 12px;
        min-height: 28px;
    }

    .stat-description {
        font-size: 14px;
        line-height: 1.5;
        min-height: 66px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .marquee-content span {
        font-size: 32px;
    }

    .about-us {
        padding: 80px 0;
    }

    .about-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .about-text {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .footer {
        padding: 80px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 70px;
        margin-bottom: 70px;
    }

    .footer-logo-image {
        height: 50px;
    }

    .footer-logo .logo-text {
        font-size: 44px;
        font-weight: 800;
    }

    .footer-tagline {
        font-size: 17px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .footer-col a {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        padding: 44px 0;
    }

    .footer-bottom p {
        font-size: 14px;
    }

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

    .pricing-grid-single {
        max-width: 100%;
    }

    .pricing-wrapper {
        max-width: 100%;
        border-radius: 48px;
    }

    .pricing-header {
        border-radius: 48px 48px 0 0;
    }

    .pricing-header::before {
        border-radius: 48px 48px 0 0;
    }

    .pricing-body {
        border-radius: 0;
        padding: 36px 32px 32px;
    }

    .pricing-footer {
        border-radius: 0 0 48px 48px;
        padding: 32px 32px 40px;
    }

    .promo-badge-floating {
        top: -12px;
        right: 20px;
        padding: 10px 18px;
        border-radius: 16px;
    }

    .badge-text {
        font-size: 16px;
    }

    .badge-subtitle {
        font-size: 9px;
    }

    .pricing-header {
        padding: 44px 32px 36px;
    }

    .pricing-plan-name {
        font-size: 38px;
    }

    .pricing-plan-tagline {
        font-size: 16px;
    }

    .feature-item-premium {
        padding: 20px 22px;
        gap: 16px;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .feature-content h4 {
        font-size: 17px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .benefit-pill {
        padding: 10px 18px;
        font-size: 13px;
    }

    .pricing-plan-tagline {
        font-size: 14px;
    }

    .pricing-body {
        padding: 28px 24px 24px;
        border-radius: 0;
    }

    .pricing-footer {
        padding: 28px 24px 36px;
    }

    .pricing-main-features {
        gap: 16px;
        margin-bottom: 28px;
    }

    .feature-item-premium {
        padding: 16px 18px;
        gap: 14px;
        flex-direction: row;
    }

    .feature-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .feature-content h4 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .pricing-divider {
        margin: 24px 0;
    }

    .benefit-pill {
        font-size: 12px;
        padding: 8px 16px;
    }

    .pricing-footer {
        padding: 28px 24px;
    }

    .btn-premium {
        padding: 16px 32px;
        font-size: 15px;
    }

    .pricing-footer-note {
        font-size: 12px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-card-main:hover {
        transform: translateY(-4px);
    }

    .pricing {
        padding: 80px 0;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .demo-mascot {
        margin-top: 30px;
    }

    .mascot-image {
        width: 80%;
        max-width: 350px;
    }

    /* On mobile, form is below so mascot looks forward */
    @keyframes floatMascot {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-10px) scale(1.02);
        }
    }

    .mascot-image:hover {
        transform: scale(1.05) rotate(2deg);
    }

    .demo-form-wrapper {
        padding: 32px;
    }

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

    .platform-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .platform-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .feature-card {
        min-height: 260px;
    }

    .card-inner {
        min-height: 260px;
    }

    .card-front,
    .card-back {
        min-height: 260px;
        padding: 40px 28px;
    }

    .feature-title {
        font-size: 24px;
        max-width: 95%;
    }

    .card-back .feature-description {
        font-size: 17px;
        line-height: 1.5;
        max-width: 95%;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vs-divider {
        display: none;
    }

    .comparison-column {
        padding: 48px 32px;
    }

    .gufi-way-subtitle {
        margin-bottom: 48px;
    }

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

    .platform-hero {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 70px 0 0;
    }

    .footer-content {
        gap: 60px;
        margin-bottom: 60px;
    }

    .footer-logo-image {
        height: 45px;
    }

    .footer-logo .logo-text {
        font-size: 38px;
        font-weight: 800;
    }

    .footer-tagline {
        font-size: 16px;
        line-height: 1.6;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-col a {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-bottom {
        padding: 40px 0;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .section-heading {
        font-size: 32px;
    }

    .demo-mascot {
        margin-top: 25px;
    }

    .mascot-image {
        width: 90%;
        max-width: 300px;
    }

    .demo-mascot::before {
        width: 150px;
        height: 150px;
    }

    /* On mobile, form is below so mascot looks forward */
    @keyframes floatMascot {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-10px) scale(1.02);
        }
    }

    .mascot-image:hover {
        transform: scale(1.05) rotate(2deg);
    }

    .section-description {
        font-size: 16px;
    }
}

/* ==============================================
   Premium Enhancements
   ============================================== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Industries Section - Premium */
.industries-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        #FAFBFC 0%,
        rgba(250, 251, 252, 0) 100%);
}

.industries-section.premium {
    background: linear-gradient(180deg,
        #FFFFFF 0%,
        rgba(250, 251, 252, 0.6) 50%,
        rgba(124, 58, 237, 0.02) 100%);
}

/* Animated Orbs */
.industries-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.3;
}

.industries-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg,
        var(--gufi-purple) 0%,
        var(--gufi-blue) 100%);
    top: -200px;
    right: -200px;
    animation: floatOrb1 20s ease-in-out infinite;
}

.industries-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg,
        var(--gufi-blue) 0%,
        var(--gufi-indigo) 100%);
    bottom: -150px;
    left: -150px;
    animation: floatOrb2 25s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(30px, -30px) scale(0.95);
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.98);
    }
    75% {
        transform: translate(20px, 20px) scale(1.02);
    }
}

/* Industries Header */
.industries-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gufi-purple);
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(139, 92, 246, 0.08) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.industries-header h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin: 0 0 24px 0;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(135deg,
        var(--black) 0%,
        var(--gray-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-header .subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
}

/* Industry Card */
.industry-card {
    display: block;
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.03) 0%,
        rgba(139, 92, 246, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(124, 58, 237, 0.15),
        0 0 100px rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

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

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card:hover .industry-link {
    gap: 12px;
    color: var(--gufi-purple);
}

.industry-card:hover .industry-link::after {
    transform: translateX(4px);
}

/* Industry Icon */
.industry-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

/* Industry Content */
.industry-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.industry-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 20px 0;
}

/* Industry Features */
.industry-features {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.industry-feature {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--gufi-purple);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Industry Link */
.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
    position: relative;
}

.industry-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

/* Scroll Reveal Animation */
.industry-card.scroll-reveal {
    opacity: 1; /* Changed from 0 to ensure cards are visible */
    transform: translateY(0); /* Start at normal position */
    transition: all 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.industry-card.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}

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

/* Staggered Animation */
.industry-card.scroll-reveal:nth-child(1) { animation-delay: 0s; }
.industry-card.scroll-reveal:nth-child(2) { animation-delay: 0.05s; }
.industry-card.scroll-reveal:nth-child(3) { animation-delay: 0.1s; }
.industry-card.scroll-reveal:nth-child(4) { animation-delay: 0.15s; }
.industry-card.scroll-reveal:nth-child(5) { animation-delay: 0.2s; }
.industry-card.scroll-reveal:nth-child(6) { animation-delay: 0.25s; }
.industry-card.scroll-reveal:nth-child(7) { animation-delay: 0.3s; }
.industry-card.scroll-reveal:nth-child(8) { animation-delay: 0.35s; }
.industry-card.scroll-reveal:nth-child(9) { animation-delay: 0.4s; }
.industry-card.scroll-reveal:nth-child(10) { animation-delay: 0.45s; }
.industry-card.scroll-reveal:nth-child(11) { animation-delay: 0.5s; }
.industry-card.scroll-reveal:nth-child(12) { animation-delay: 0.55s; }

/* Responsive Design */
@media (max-width: 768px) {
    .industries-section {
        padding: 80px 0;
    }

    .industries-header {
        margin-bottom: 60px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .industry-card {
        padding: 24px;
    }

    .industry-icon {
        font-size: 40px;
    }

    .industry-card h3 {
        font-size: 20px;
    }

    .industries-orb {
        filter: blur(120px);
        opacity: 0.2;
    }
}
