

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

        :root {
            --teal: #44bab4;
            --teal-dark: #03656a;
            --yellow: #ffc21e;
            --chocolate: #5c4731;
            --white: #ffffff;
            --cream: #faf9f7;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--white);
            color: var(--chocolate);
            overflow-x: hidden;
        }

        body.loading {
            overflow: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ========== LOADER STYLES ========== */
        .fullpage-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 9999;
            gap: 40px;
        }

        .loader-wrapper {
            width: 500px;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .background-circle {
            position: absolute;
            width: 70%;
            height: 70%;
            border-radius: 50%;
            background: #44bab4;
            opacity: 0;
            transform: scale(0);
        }

        .artichoc-base {
            width: 400px;
            height: 400px;
            object-fit: contain;
            filter: grayscale(1) opacity(0.3);
            position: relative;
            z-index: 2;
        }

        .artichoc-color {
            position: absolute;
            width: 400px;
            height: 400px;
            object-fit: contain;
            clip-path: inset(100% 0 0 0);
            z-index: 3;
        }

        .tagline-text {
            font-size: 38px;
            font-weight: 600;
            color: #03656a;
            font-style: italic;
            opacity: 0;
            transform: translateY(20px);
        }

        .progress-container {
            width: 450px;
            height: 6px;
            background: rgba(68, 186, 180, 0.2);
            border-radius: 3px;
            overflow: hidden;
            opacity: 0;
        }

        .progress-bar {
            width: 0%;
            height: 100%;
            background: #44bab4;
            border-radius: 3px;
            transition: width 0.1s linear;
        }

        /* Loader Animations */
        .fullpage-loader.phase1 .artichoc-color {
            animation: fillUp 1.5s ease-out forwards;
        }

        @keyframes fillUp {
            to { clip-path: inset(0 0 0 0); }
        }

        .fullpage-loader.phase2 .background-circle {
            animation: bgAppear 0.6s ease-out forwards;
        }

        .fullpage-loader.phase2 .artichoc-base,
        .fullpage-loader.phase2 .artichoc-color {
            filter: grayscale(0) opacity(1);
            animation: heartbeat 0.8s ease-in-out 2;
        }

        @keyframes bgAppear {
            to { 
                opacity: 0.15;
                transform: scale(1);
            }
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.08); }
            50% { transform: scale(1); }
        }

        .fullpage-loader.show-text .tagline-text {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        .fullpage-loader.show-progress .progress-container {
            animation: fadeIn 0.4s ease-out forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .fullpage-loader.phase3 .loader-wrapper {
            animation: rotateOut 0.8s ease-in forwards;
        }

        .fullpage-loader.phase3 .progress-container {
            animation: fadeOut 0.5s ease-out forwards;
        }
        
        .fullpage-loader.fade-text .tagline-text {
            animation: fadeOutSlow 0.8s ease-out forwards;
        }

        @keyframes rotateOut {
            to {
                transform: rotate(15deg) scale(0.5);
                opacity: 0;
            }
        }

        @keyframes fadeOut {
            to { opacity: 0; }
        }
        
        @keyframes fadeOutSlow {
            to { opacity: 0; }
        }

        .fullpage-loader.exit {
            animation: loaderExit 0.6s ease-out forwards;
        }

        @keyframes loaderExit {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* Site Content Animation */
        #root {
            opacity: 0;
            transition: opacity 1s ease-out;
        }

        body.loaded #root {
            opacity: 1;
        }

        /* Header Animation */
        #header {
            /* Pas d'animation sur le conteneur */
        }

        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            z-index: 1000;
            border-bottom: 3px solid var(--yellow);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(-100%);
        }

        body.loaded .header {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease-out 0.8s, transform 0.6s ease-out 0.8s, box-shadow 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
        }

        .logo > div {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .logo-text {
            font-weight: 800;
            font-size: 22px;
            color: var(--chocolate);
            letter-spacing: 0.05em;
            line-height: 1;
        }

        .logo-tagline {
            font-size: 10px;
            color: var(--teal);
            font-weight: 600;
            font-style: italic;
            letter-spacing: 0.02em;
        }

        .nav-desktop {
            display: none;
            gap: 8px;
            align-items: center;
            position: relative;
        }

        .nav-desktop a {
            color: var(--chocolate);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-desktop a:not(.btn)::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 40px);
            height: 3px;
            background: var(--teal);
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .nav-desktop a:not(.btn):hover::before {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-desktop a:not(.btn).active {
            background: var(--cream);
            color: var(--teal);
        }

        .nav-desktop a:not(.btn).active::before {
            transform: translateX(-50%) scaleX(1);
            background: var(--teal);
        }

        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .btn-teal {
            background: var(--teal);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(68, 186, 180, 0.3);
        }

        .btn-teal:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(68, 186, 180, 0.5);
        }

        .btn-yellow {
            background: var(--yellow);
            color: var(--chocolate);
            position: relative;
            overflow: hidden;
        }

        .btn-yellow::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.8) 50%,
                transparent 70%
            );
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .btn-yellow:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 194, 30, 0.6);
            filter: brightness(1.1);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--chocolate);
            color: var(--chocolate);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-outline:hover {
            background: var(--chocolate);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(92, 71, 49, 0.4);
        }

        .btn-large {
            padding: 18px 36px;
            font-size: 18px;
        }

        /* Burger */
        .burger {
            width: 40px;
            height: 40px;
            background: var(--teal);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .burger:hover {
            background: var(--teal-dark);
            transform: scale(1.05);
        }

        .burger span {
            width: 20px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
            display: block;
        }

        .burger.active {
            background: var(--yellow);
        }

        .burger.active span {
            background: var(--chocolate);
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 75px;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 3px solid var(--yellow);
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            pointer-events: none;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            display: block;
            padding: 20px 24px;
            color: var(--chocolate);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border-bottom: 1px solid var(--cream);
            transition: all 0.2s ease;
            position: relative;
        }

        .mobile-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--teal);
            transform: scaleY(0);
            transition: transform 0.2s ease;
        }

        .mobile-menu a:hover::before,
        .mobile-menu a.active::before {
            transform: scaleY(1);
        }

        .mobile-menu a:hover {
            background: var(--cream);
            padding-left: 32px;
        }

        .mobile-menu a.active {
            background: var(--cream);
            color: var(--teal);
            padding-left: 32px;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            padding: 120px 24px 80px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '⚡';
            position: absolute;
            font-size: 400px;
            opacity: 0.08;
            top: -80px;
            right: -80px;
            transform: rotate(-15deg);
        }

        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

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

        .hero-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
        }

        .hero-logo img {
            width: 100%;
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
            animation: float 6s ease-in-out infinite;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .hero-logo img:hover {
            filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.4)) 
                    drop-shadow(0 0 40px rgba(255, 194, 30, 0.3));
            transform: scale(1.05) rotate(-3deg);
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--yellow);
            color: var(--chocolate);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 32px;
            animation: pulse 2s infinite;
        }

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

        .hero-title {
            font-size: clamp(40px, 10vw, 90px);
            font-weight: 800;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 24px;
        }

        .hero-title .yellow {
            color: var(--yellow);
        }

        .hero-text {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Marquee */
        .marquee {
            background: var(--yellow);
            padding: 20px 0;
            overflow: hidden;
            border-top: 3px solid var(--chocolate);
            border-bottom: 3px solid var(--chocolate);
        }

        .marquee-inner {
            display: inline-flex;
            animation: marquee 25s linear infinite;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 0 32px;
            font-weight: 700;
            font-size: 16px;
            color: var(--chocolate);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .marquee-item::after {
            content: '⚡';
            font-size: 20px;
        }

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

        /* Services Section */
        .services {
            padding: 100px 24px;
            background: var(--white);
        }

        .services-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-header h2 {
            font-size: clamp(48px, 8vw, 120px);
            font-weight: 700;
            color: var(--chocolate);
            letter-spacing: -0.02em;
            line-height: 0.9;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: clamp(18px, 3vw, 24px);
            color: var(--teal);
            font-weight: 600;
        }

        /* DESKTOP VIEW */
        .services-desktop {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .service-large {
            background: var(--teal);
            border-radius: 24px;
            padding: 60px 40px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .service-large::before {
            content: '🌿';
            position: absolute;
            font-size: 240px;
            opacity: 0.1;
            right: -40px;
            bottom: -40px;
            transition: opacity 0.6s ease, transform 0.6s ease;
            filter: drop-shadow(0 0 20px rgba(68, 186, 180, 0.4));
            z-index: 2;
        }

        .service-large::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #5cd4ce 0%, #44bab4 100%);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .service-large:hover::after {
            transform: translateY(0);
        }

        .service-large:hover::before {
            opacity: 0.25;
            transform: scale(1.1);
            filter: drop-shadow(0 0 40px rgba(68, 186, 180, 0.8));
        }

        .service-large:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(68, 186, 180, 0.4);
        }

        .service-large h3 {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 700;
            margin-bottom: 32px;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 3;
            transition: all 0.4s ease;
        }

        .service-large:hover h3 {
            transform: scale(1.05);
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .service-list {
            list-style: none;
            position: relative;
            z-index: 3;
        }

        .service-large .service-list li {
            font-size: clamp(18px, 2.5vw, 26px);
            margin-bottom: 16px;
            font-weight: 600;
            padding-left: 40px;
            position: relative;
        }

        .service-large .service-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
        }

        .services-stack {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .service-small {
            background: var(--yellow);
            border-radius: 24px;
            padding: 40px;
            color: var(--chocolate);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .service-small:last-child {
            background: var(--chocolate);
            color: var(--white);
        }

        .service-small::before {
            content: attr(data-emoji);
            position: absolute;
            font-size: 160px;
            opacity: 0.08;
            right: -30px;
            bottom: -30px;
            transition: opacity 0.6s ease, transform 0.6s ease;
            z-index: 2;
        }

        .service-small::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .service-small:first-child::before {
            filter: drop-shadow(0 0 20px rgba(255, 194, 30, 0.4));
        }

        .service-small:first-child::after {
            background: linear-gradient(135deg, #ffd14d 0%, #ffc21e 100%);
        }

        .service-small:last-child::before {
            filter: drop-shadow(0 0 20px rgba(255, 194, 30, 0.5));
        }

        .service-small:last-child::after {
            background: linear-gradient(135deg, #7a5940 0%, #5c4731 100%);
        }

        .service-small:hover::after {
            transform: translateY(0);
        }

        .service-small:hover::before {
            opacity: 0.18;
            transform: scale(1.1);
        }

        .service-small:first-child:hover::before {
            filter: drop-shadow(0 0 40px rgba(255, 194, 30, 0.8));
        }

        .service-small:last-child:hover::before {
            filter: drop-shadow(0 0 40px rgba(255, 194, 30, 1));
        }

        .service-small:hover {
            transform: translateY(-8px);
        }

        .service-small:first-child:hover {
            box-shadow: 0 20px 50px rgba(255, 194, 30, 0.4);
        }

        .service-small:last-child:hover {
            box-shadow: 0 20px 50px rgba(92, 65, 48, 0.5);
        }

        .service-small h3 {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 3;
            transition: all 0.4s ease;
        }

        .service-small:hover h3 {
            transform: scale(1.05);
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .service-small .service-list {
            list-style: none;
            position: relative;
            z-index: 3;
        }

        .service-small .service-list li {
            font-size: clamp(15px, 2vw, 20px);
            margin-bottom: 12px;
            font-weight: 600;
            padding-left: 32px;
            position: relative;
        }

        .service-small .service-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 700;
        }

        .service-small:first-child .service-list li::before {
            color: var(--teal);
        }

        .service-small:last-child .service-list li::before {
            color: var(--yellow);
        }

        /* MOBILE VIEW */
        .services-mobile {
            display: none;
        }

        /* Stats */
        .stats {
            padding: 80px 24px;
            background: var(--chocolate);
        }

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

        .stat-item {
            text-align: center;
            padding: 32px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 2px solid rgba(255, 194, 30, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 194, 30, 0.1) 0%, rgba(68, 186, 180, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-item:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--yellow);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(255, 194, 30, 0.3);
        }

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

        .stat-value {
            font-size: clamp(48px, 10vw, 72px);
            font-weight: 800;
            color: var(--yellow);
            line-height: 1;
            margin-bottom: 12px;
            transition: all 0.4s ease;
            position: relative;
        }

        .stat-item:hover .stat-value {
            transform: scale(1.1);
            text-shadow: 0 4px 20px rgba(255, 194, 30, 0.5);
        }

        .stat-label {
            font-size: 14px;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            position: relative;
        }

        /* Zone */
        .zone {
            padding: 100px 24px;
            background: var(--white);
        }

        .zone-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: var(--cream);
            padding: 60px 40px;
            border-radius: 24px;
            border: 4px solid var(--yellow);
            position: relative;
            overflow: hidden;
        }

        .zone-inner::before {
            content: '📍';
            position: absolute;
            font-size: 200px;
            opacity: 0.05;
            top: -40px;
            right: -40px;
        }

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

        .zone h2 {
            font-size: clamp(32px, 6vw, 48px);
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--chocolate);
        }

        .zone p {
            font-size: 20px;
            color: var(--teal-dark);
            line-height: 1.6;
            font-weight: 600;
        }

        .zone strong {
            color: var(--teal);
            font-weight: 800;
        }

        /* Contact */
        .contact {
            padding: 100px 24px;
            background: var(--teal);
        }

        .contact-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: clamp(36px, 8vw, 64px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 60px;
        }

        .contact-grid {
            display: grid;
            gap: 20px;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 32px;
            background: var(--white);
            border-radius: 16px;
            text-decoration: none;
            color: var(--chocolate);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--yellow);
        }

        .contact-card-icon {
            width: 70px;
            height: 70px;
            background: var(--chocolate);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-card-icon {
            background: var(--yellow);
            transform: rotate(10deg) scale(1.1);
        }

        .contact-card strong {
            display: block;
            font-weight: 800;
            font-size: 20px;
            margin-bottom: 6px;
            color: var(--chocolate);
        }

        .contact-card span {
            font-size: 16px;
            color: var(--teal);
            font-weight: 600;
        }

        /* Footer */
        .footer {
            padding: 40px 24px 24px;
            text-align: center;
            background: var(--chocolate);
            border-top: 4px solid var(--yellow);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-weight: 500;
            margin: 0;
        }

        .footer-dev {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }

        .footer-dev a {
            color: var(--yellow);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-dev a:hover {
            color: var(--white);
            text-decoration: underline;
        }

        .footer-heart {
            color: #ff4757;
            font-size: 14px;
            animation: heartPulse 1.5s ease-in-out infinite;
        }

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

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 60px;
            height: 60px;
            background: var(--yellow);
            color: var(--chocolate);
            border: 3px solid var(--chocolate);
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 90;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            font-weight: 800;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-4px) rotate(-10deg);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (min-width: 768px) {
            .burger { display: none; }
            .nav-desktop { display: flex; }
            .contact-grid { grid-template-columns: repeat(3, 1fr); }
            .stats-inner { grid-template-columns: repeat(4, 1fr); }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .hero-logo img {
                max-width: 350px;
            }
        }

        @media (max-width: 768px) {
            /* Loader Responsive */
            .loader-wrapper {
                width: 350px;
                height: 350px;
            }
            
            .artichoc-base,
            .artichoc-color {
                width: 280px;
                height: 280px;
            }
            
            .tagline-text {
                font-size: 30px;
            }
            
            .progress-container {
                width: 320px;
                height: 5px;
            }

            /* Hero responsive */
            .hero {
                padding: 100px 24px 60px;
            }

            .hero::before {
                right: -40px;
                font-size: 300px;
                top: -60px;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-logo {
                /*margin-top: 20px;*/
            }

            .hero-logo img {
                max-width: 280px;
            }

            /* Services Mobile */
            .services {
                padding: 80px 20px;
            }

            .services-desktop {
                display: none;
            }

            .service-large,
            .service-small {
                cursor: default;
            }

            .service-large:hover,
            .service-small:hover {
                transform: none;
                box-shadow: none;
            }

            .service-large:hover::after,
            .service-small:hover::after {
                transform: translateY(100%);
            }

            .service-large:hover h3,
            .service-small:hover h3 {
                transform: none;
                text-shadow: none;
            }

            .services-mobile {
                display: flex;
                flex-direction: column;
                gap: 40px;
            }

            .section-header {
                text-align: center;
            }

            .service-card-mobile {
                padding: 50px 32px;
                border-radius: 24px;
                position: relative;
                display: grid;
                grid-template-columns: 1fr;
                gap: 24px;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                cursor: pointer;
            }

            .service-card-mobile:nth-child(1) {
                background: var(--teal);
                transform: rotate(-2deg);
                margin-left: -10px;
            }

            .service-card-mobile:nth-child(1):active {
                transform: rotate(-2deg) scale(0.98);
                box-shadow: 0 10px 30px rgba(68, 186, 180, 0.4);
            }

            .service-card-mobile:nth-child(2) {
                background: var(--yellow);
                transform: rotate(2deg);
                margin-right: -10px;
            }

            .service-card-mobile:nth-child(2):active {
                transform: rotate(2deg) scale(0.98);
                box-shadow: 0 10px 30px rgba(255, 194, 30, 0.4);
            }

            .service-card-mobile:nth-child(3) {
                background: var(--chocolate);
                transform: rotate(-1.5deg);
                margin-left: 10px;
            }

            .service-card-mobile:nth-child(3):active {
                transform: rotate(-1.5deg) scale(0.98);
                box-shadow: 0 10px 30px rgba(92, 71, 49, 0.5);
            }

            .service-number-mobile {
                font-size: 100px;
                font-weight: 800;
                line-height: 1;
                opacity: 0.2;
                text-align: center;
                transition: all 0.3s ease;
            }

            .service-card-mobile:active .service-number-mobile {
                opacity: 0.35;
                transform: scale(1.1);
            }

            .service-card-mobile:nth-child(1) .service-number-mobile {
                color: var(--white);
            }

            .service-card-mobile:nth-child(2) .service-number-mobile {
                color: var(--chocolate);
            }

            .service-card-mobile:nth-child(3) .service-number-mobile {
                color: var(--yellow);
            }

            .service-content-mobile h3 {
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 24px;
                letter-spacing: -0.02em;
                text-align: center;
                transition: all 0.3s ease;
            }

            .service-card-mobile:active .service-content-mobile h3 {
                transform: scale(1.05);
            }

            .service-card-mobile:nth-child(1) .service-content-mobile h3 {
                color: var(--white);
            }

            .service-card-mobile:nth-child(2) .service-content-mobile h3 {
                color: var(--chocolate);
            }

            .service-card-mobile:nth-child(3) .service-content-mobile h3 {
                color: var(--white);
            }

            .service-content-mobile .service-list {
                list-style: none;
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .service-content-mobile .service-list li {
                font-size: 16px;
                font-weight: 600;
                padding: 12px 20px;
                border-radius: 100px;
                transition: all 0.2s ease;
            }

            .service-card-mobile:active .service-content-mobile .service-list li {
                transform: scale(0.95);
            }

            .service-card-mobile:nth-child(1) .service-list li {
                background: rgba(255, 255, 255, 0.2);
                color: var(--white);
            }

            .service-card-mobile:nth-child(2) .service-list li {
                background: rgba(92, 65, 48, 0.15);
                color: var(--chocolate);
            }

            .service-card-mobile:nth-child(3) .service-list li {
                background: rgba(255, 194, 30, 0.2);
                color: var(--white);
            }

            /* Hover effects for devices that support it (tablets) */
            @media (hover: hover) {
                .service-card-mobile:hover {
                    transform: rotate(0deg) translateY(-8px) scale(1.02);
                }

                .service-card-mobile:nth-child(1):hover {
                    box-shadow: 0 15px 40px rgba(68, 186, 180, 0.5);
                }

                .service-card-mobile:nth-child(2):hover {
                    box-shadow: 0 15px 40px rgba(255, 194, 30, 0.5);
                }

                .service-card-mobile:nth-child(3):hover {
                    box-shadow: 0 15px 40px rgba(92, 71, 49, 0.6);
                }

                .service-card-mobile:hover .service-number-mobile {
                    opacity: 0.4;
                    transform: scale(1.15);
                }

                .service-card-mobile:hover .service-content-mobile h3 {
                    transform: scale(1.08);
                }
            }
        }

        @media (max-width: 480px) {
            .loader-wrapper {
                width: 300px;
                height: 300px;
            }
            
            .artichoc-base,
            .artichoc-color {
                width: 240px;
                height: 240px;
            }
            
            .tagline-text {
                font-size: 26px;
            }
            
            .progress-container {
                width: 280px;
                height: 5px;
            }
            
            .fullpage-loader {
                gap: 35px;
            }
        }
