/* =========================================
   EuporIA Factory - WAHOU Landing Page
   Effets spectaculaires & animations premium
   ========================================= */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    --gold-400: #facc15;
    --gold-500: #eab308;
    --gold-600: #ca8a04;

    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--emerald-500) 0%, var(--teal-500) 100%);
    --gradient-primary-reverse: linear-gradient(135deg, var(--teal-500) 0%, var(--emerald-500) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    --gradient-dark: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
    --gradient-radial: radial-gradient(circle at center, var(--emerald-500) 0%, transparent 70%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Animations */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== Skip Navigation ===== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--emerald-500);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s ease;
}

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

/* ===== Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--emerald-500);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ===== Custom Cursor ===== */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--emerald-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s var(--ease-out-expo), opacity 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor-follower.visible {
    opacity: 1;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-500);
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.1s;
}

.cursor-dot.visible {
    opacity: 1;
}

@media (pointer: coarse) {

    .cursor-follower,
    .cursor-dot {
        display: none;
    }
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.4s;
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.4s var(--ease-out-back);
}

.logo:hover .logo-icon {
    transform: rotate(90deg) scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    transition: color 0.4s;
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

.logo-ia {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    position: relative;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    transition: all 0.3s;
}

.navbar.scrolled .nav-menu a:not(.btn) {
    color: var(--gray-600);
}

.nav-menu a:not(.btn):hover {
    color: var(--emerald-400);
    background: rgba(16, 185, 129, 0.15);
}

.navbar.scrolled .nav-menu a:not(.btn):hover {
    color: var(--emerald-600);
    background: var(--emerald-50);
}

.nav-menu .btn-nav {
    margin-left: 16px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 20px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ===== Buttons ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease-out-back);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.4);
}

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

.btn-glow {
    animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 4px 40px rgba(16, 185, 129, 0.5), 0 0 80px rgba(16, 185, 129, 0.2);
    }
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--emerald-500);
    color: var(--emerald-600);
    background: var(--emerald-50);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--gray-950);
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Hero Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    z-index: 1;
}

/* Hero Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-500);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--teal-500);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gold-500);
    top: 50%;
    left: 60%;
    opacity: 0.3;
    animation-delay: -10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: var(--emerald-400);
    bottom: 20%;
    left: 10%;
    opacity: 0.4;
    animation-delay: -15s;
}

@keyframes orb-float {

    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(40px, 20px) scale(1.05);
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fade-in-up 0.8s var(--ease-out-expo) both;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    animation: word-reveal 0.8s var(--ease-out-expo) both;
    animation-delay: calc(var(--delay, 0) * 0.1s + 0.3s);
}

.word[data-delay="0"] {
    --delay: 0;
}

.word[data-delay="1"] {
    --delay: 1;
}

.word[data-delay="2"] {
    --delay: 2;
}

.word[data-delay="3"] {
    --delay: 3;
}

.word[data-delay="4"] {
    --delay: 4;
}

.word[data-delay="5"] {
    --delay: 5;
}

.word[data-delay="6"] {
    --delay: 6;
}

.word[data-delay="7"] {
    --delay: 7;
}

@keyframes word-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-20deg);
        filter: blur(10px);
    }

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

.word.highlight {
    color: var(--gold-400);
    text-shadow: 0 0 60px rgba(250, 204, 21, 0.5);
}

.word.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 520px;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.8s both;
}

.highlight-brand {
    color: white;
    font-weight: 600;
}

.highlight-brand .ia {
    color: var(--emerald-400);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fade-in-up 0.8s var(--ease-out-expo) 1s both;
}

.hero-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-cta .btn-outline:hover {
    border-color: var(--emerald-400);
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-400);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fade-in-up 0.8s var(--ease-out-expo) 1.2s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-400);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gray-700), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in 1s var(--ease-out-expo) 0.5s both;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

/* Central Ring */
.central-ring {
    position: absolute;
    inset: 0;
}

.central-ring svg {
    width: 100%;
    height: 100%;
}

.ring {
    transform-origin: center;
}

.ring-1 {
    animation: ring-rotate 30s linear infinite;
}

.ring-2 {
    animation: ring-rotate 25s linear infinite reverse;
}

.ring-3 {
    animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ring-pulse {

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

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

/* Floating Icons */
.floating-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
}

.icon-inner {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    transition: all 0.4s var(--ease-out-back);
}

.icon-inner svg {
    width: 28px;
    height: 28px;
}

.floating-icon:hover .icon-inner {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.icon-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 5%;
    right: 10%;
    animation-delay: -1.5s;
}

.icon-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: -3s;
}

.icon-4 {
    bottom: 10%;
    left: 10%;
    animation-delay: -4.5s;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Central Icon */
.central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.central-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gradient-radial);
    filter: blur(40px);
    animation: central-glow 4s ease-in-out infinite;
}

@keyframes central-glow {

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

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

.central-inner {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 28px;
    color: white;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
    animation: central-float 4s ease-in-out infinite;
}

.central-inner svg {
    width: 44px;
    height: 44px;
}

@keyframes central-float {

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

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    inset: 0;
}

.conn-line {
    stroke: url(#ring-gradient);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    animation: dash-flow 20s linear infinite;
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -100;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    animation: fade-in-up 0.8s var(--ease-out-expo) 1.5s both;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--emerald-400);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--emerald-50);
    color: var(--emerald-600);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--emerald-400);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Problem Section ===== */
.problem-section {
    padding: var(--section-padding) 0;
    background: white;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch-1 0.3s linear;
    color: var(--emerald-500);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s linear;
    color: var(--gold-500);
    z-index: -2;
}

@keyframes glitch-1 {

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

    20% {
        opacity: 0.8;
        transform: translate(-3px, 3px);
    }

    40% {
        opacity: 0.8;
        transform: translate(3px, -3px);
    }

    60% {
        opacity: 0.8;
        transform: translate(-3px, -3px);
    }

    80% {
        opacity: 0.8;
        transform: translate(3px, 3px);
    }
}

@keyframes glitch-2 {

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

    20% {
        opacity: 0.6;
        transform: translate(3px, -3px);
    }

    40% {
        opacity: 0.6;
        transform: translate(-3px, 3px);
    }

    60% {
        opacity: 0.6;
        transform: translate(3px, 3px);
    }

    80% {
        opacity: 0.6;
        transform: translate(-3px, -3px);
    }
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pain-point {
    position: relative;
    padding: 40px 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.pain-point::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s;
}

.pain-point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.pain-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.pain-point:hover::after {
    transform: scaleX(1);
}

.pain-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: all 0.5s;
}

.pain-point:hover .pain-number {
    color: var(--emerald-100);
}

.pain-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: 16px;
    color: var(--emerald-600);
    margin-bottom: 24px;
    transition: all 0.5s var(--ease-out-back);
}

.pain-icon svg {
    width: 28px;
    height: 28px;
}

.pain-point:hover .pain-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.pain-point h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    position: relative;
}

.pain-point p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    position: relative;
}

/* ===== Services Section ===== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.services-section .section-title {
    color: white;
}

.services-section .section-subtitle {
    color: var(--gray-400);
}

.services-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-500);
    top: -200px;
    right: -200px;
}

.bg-circle-2 {
    width: 500px;
    height: 500px;
    background: var(--teal-500);
    bottom: -200px;
    left: -200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.service-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.service-card-large {
    grid-column: span 2;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(16, 185, 129, 0.2);
}

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

.service-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.service-card:hover .service-bg {
    opacity: 1;
    transform: translate(-20%, 20%);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 18px;
    margin-bottom: 24px;
    color: white;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    transition: transform 0.5s var(--ease-out-back);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-description strong {
    color: var(--emerald-400);
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 6px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Approach Section ===== */
.approach-section {
    padding: var(--section-padding) 0;
    background: white;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
}

.timeline-progress {
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: var(--gray-100);
    border-radius: 2px;
    z-index: 0;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1s var(--ease-out-expo);
}

.timeline-progress.animate::after {
    width: 100%;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.timeline-marker {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    position: relative;
}

.marker-number {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-300);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.marker-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--emerald-500);
    opacity: 0;
    animation: marker-pulse-anim 2s ease-out infinite;
}

@keyframes marker-pulse-anim {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

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

.timeline-item:hover .marker-number,
.timeline-item.active .marker-number {
    background: var(--gradient-primary);
    border-color: var(--emerald-500);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.timeline-duration {
    display: inline-block;
    padding: 6px 16px;
    background: var(--emerald-50);
    color: var(--emerald-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-checklist {
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.timeline-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.timeline-checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--emerald-100);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Quote Highlight */
.quote-highlight {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: 24px;
    border-left: 4px solid var(--gold-500);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 14px;
    color: white;
    box-shadow: 0 10px 30px rgba(202, 138, 4, 0.3);
}

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

.quote-highlight p {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

.quote-highlight strong {
    color: var(--emerald-600);
    font-weight: 600;
}

/* ===== Sectors Section ===== */
.sectors-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.sectors-showcase {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.sectors-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-align: left;
}

.sector-btn:hover {
    border-color: var(--emerald-200);
    transform: translateX(8px);
}

.sector-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.sector-btn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: 12px;
    color: var(--emerald-600);
    transition: all 0.4s;
}

.sector-btn-icon svg {
    width: 24px;
    height: 24px;
}

.sector-btn.active .sector-btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.sector-btn span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.4s;
}

.sector-btn.active span {
    color: white;
}

.sectors-content {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
}

.sector-panel {
    display: none;
    animation: sector-fade 0.5s var(--ease-out-expo);
}

.sector-panel.active {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
}

@keyframes sector-fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

.sector-illustration {
    width: 180px;
    height: 180px;
    color: var(--gray-400);
}

.sector-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.sector-challenge {
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 3px solid var(--emerald-500);
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.sector-challenge strong {
    color: var(--gray-800);
}

.sector-solutions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.solution-item:hover {
    background: var(--emerald-50);
    transform: translateX(8px);
}

.solution-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

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

.solution-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.solution-text span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Values Section ===== */
.values-section {
    padding: var(--section-padding) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.values-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.values-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}

.value-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--gray-100);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--ease-out-expo);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.2);
    border-color: transparent;
}

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

.value-card-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 40px;
    align-items: start;
}

.value-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 32px;
    border-right: 1px solid var(--gray-100);
    min-width: 160px;
    transition: border-color 0.5s;
}

.value-card:hover .value-front {
    border-color: rgba(255, 255, 255, 0.2);
}

.value-back {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: 20px;
    color: var(--emerald-600);
    margin-bottom: 20px;
    transition: all 0.5s var(--ease-out-back);
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-front h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    transition: color 0.5s;
}

.value-card:hover .value-front h3 {
    color: white;
}

.value-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: color 0.5s;
}

.value-card:hover .value-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.value-back h3 {
    display: none;
}

.value-back p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
    transition: color 0.5s;
}

.value-card:hover .value-back p {
    color: rgba(255, 255, 255, 0.95);
}

.value-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray-500);
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 3px solid var(--emerald-500);
    transition: all 0.5s;
}

.value-card:hover .value-quote {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gray-950);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-drift 30s linear infinite;
}

@keyframes grid-drift {
    0% {
        transform: translate(0, 0);
    }

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

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.cta-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--emerald-500);
    top: -200px;
    left: 20%;
}

.cta-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--teal-500);
    bottom: -150px;
    right: 20%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.cta-content {
    text-align: center;
    margin-bottom: 48px;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: var(--emerald-400);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 48px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.form-group .optional {
    font-weight: 400;
    color: var(--gray-500);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-500);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out-expo);
}

.form-group input:focus~.input-highlight,
.form-group textarea:focus~.input-highlight {
    transform: scaleX(1);
}

.contact-form .btn {
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.form-success.show {
    display: block;
    animation: success-pop 0.5s var(--ease-out-back);
}

@keyframes success-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    animation: success-pulse 1s ease-out;
}

@keyframes success-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(16, 185, 129, 0);
    }
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-400);
}

/* Honeypot */
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Error state */
.form-error {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 24px;
}

.form-error.show {
    display: block;
    animation: success-pop 0.5s var(--ease-out-back);
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ef4444;
}

.form-error h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.form-error p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.form-error p a {
    color: var(--emerald-400);
}

.btn-retry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-retry:hover {
    border-color: var(--emerald-400);
    color: var(--emerald-400);
    background: rgba(16, 185, 129, 0.1);
}

.signature {
    text-align: center;
}

.signature-logo {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.signature-logo .ia {
    color: var(--emerald-400);
}

.signature-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--gray-950);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    color: var(--emerald-400);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--emerald-400);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline .heart {
    color: var(--emerald-500);
}

/* ===== Animations ===== */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .visual-container {
        max-width: 350px;
    }

    .pain-points {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-card-large {
        grid-column: span 1;
    }

    .timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-progress {
        display: none;
    }

    .sectors-showcase {
        grid-template-columns: 1fr;
    }

    .sectors-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sector-btn {
        flex: 0 0 auto;
    }

    .sector-panel.active {
        grid-template-columns: 1fr;
    }

    .sector-visual {
        display: none;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .value-card-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-front {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--gray-100);
        padding-right: 0;
        padding-bottom: 24px;
        min-width: auto;
        gap: 20px;
    }

    .value-card:hover .value-front {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .value-icon {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out-expo);
    }

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

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .nav-menu .btn-nav {
        margin-left: 0;
        margin-top: 8px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .pain-points {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

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

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

    .sectors-nav {
        flex-direction: column;
    }

    .sector-btn {
        width: 100%;
    }

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

/* ===== Legal Page ===== */
.legal-page {
    background: var(--gray-950);
    color: var(--gray-300);
}

.navbar-solid {
    background: rgba(2, 6, 23, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-back:hover {
    border-color: var(--emerald-400);
    color: var(--emerald-400);
    background: rgba(16, 185, 129, 0.1);
}

.legal-section {
    padding: 160px 0 var(--section-padding);
    min-height: 100vh;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

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

.legal-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-top: 20px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.legal-block {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: border-color 0.3s ease;
}

.legal-block:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

.legal-block-number {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.legal-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-block p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.legal-block strong {
    color: var(--gray-200);
}

.legal-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.legal-info-item {
    display: flex;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

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

.legal-info-item dt {
    flex: 0 0 220px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-info-item dd {
    flex: 1;
    color: var(--gray-200);
    font-weight: 400;
}

.legal-info-item dd a {
    color: var(--emerald-400);
    transition: color 0.2s ease;
}

.legal-info-item dd a:hover {
    color: var(--emerald-300);
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    color: var(--gray-300);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.legal-link {
    color: var(--emerald-400);
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: var(--emerald-300);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 120px 0 80px;
    }

    .legal-header {
        margin-bottom: 48px;
    }

    .legal-block {
        padding: 28px 20px;
    }

    .legal-info-item {
        flex-direction: column;
        gap: 4px;
    }

    .legal-info-item dt {
        flex: none;
        font-size: 0.75rem;
    }

    .btn-back span {
        display: none;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 1.75rem;
    }

    .legal-subtitle {
        font-size: 0.95rem;
    }

    .legal-block {
        padding: 24px 16px;
    }

    .legal-content {
        gap: 36px;
    }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(15, 23, 42, 0.97);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 24px 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

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

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-text {
    flex: 1;
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--emerald-400);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: var(--emerald-300);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-accept:hover {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-1px);
}

.cookie-btn-refuse {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.cookie-btn-refuse:hover {
    border-color: var(--gray-400);
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {

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

    html {
        scroll-behavior: auto;
    }
}