/* FLOW AXIS - AWARD-WINNING DESIGN V3.0 */

:root {
    --ink: #0a0a0a;
    --paper: #fafaf9;
    --accent: #2563eb;
    --sage: #84cc16;
    --amber: #f59e0b;
    --slate: #64748b;
    --border: #e7e5e4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--accent);
}

/* NAVIGATION */
.premium-nav {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(250,250,249,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    animation: navSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navSlideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-logo img {
    height: 28px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

.nav-item {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover {
    color: var(--accent);
}

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

.nav-cta-btn {
    background: var(--ink);
    color: var(--paper);
    padding: 8px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}

.nav-cta-btn:hover {
    transform: scale(0.98);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.2);
}

/* HERO EXPERIMENTAL */
.hero-experimental {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: grayscale(0.3) contrast(1.1);
}

.hero-layout {
    position: relative;
    z-index: 1;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 160px;
    align-items: center;
}

.hero-logo-zone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: -80px;
}

.hero-logo-massive {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: logoFloat 1.2s cubic-bezier(0.16, 1, 0.3, 1), breathe 4s ease-in-out infinite;
}

.hero-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 70px);
    font-weight: 700;
    color: var(--ink);
    margin-top: -0.5rem;
    letter-spacing: -0.06em;
    line-height: 0.85;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes logoFloat {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

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

.hero-text-zone {
    display: flex;
    align-items: center;
}

.hero-statement {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(56px, 8vw, 140px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.06em;
    margin-bottom: 32px;
}

.hero-statement .line {
    display: block;
    opacity: 0;
    animation: lineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-statement .line:nth-child(1) { animation-delay: 0.2s; }
.hero-statement .line:nth-child(2) { animation-delay: 0.4s; }
.hero-statement .line:nth-child(3) { animation-delay: 0.6s; }

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

.hero-statement .accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-manifesto {
    font-size: 20px;
    color: var(--slate);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

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

.hero-metrics {
    position: absolute;
    bottom: 80px;
    left: 40px;
    right: 40px;
    display: flex;
    gap: 80px;
    z-index: 1;
}

.metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.metric:nth-child(1) { animation-delay: 1s; }
.metric:nth-child(2) { animation-delay: 1.1s; }
.metric:nth-child(3) { animation-delay: 1.2s; }

.metric .num {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.metric .label {
    font-size: 13px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* SERVICES BENTO */
.services-bento {
    padding: 200px 40px;
    background: linear-gradient(180deg, var(--ink) 0%, #0f1419 100%);
    position: relative;
}

.services-bento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.services-bento .services-header {
    max-width: 1800px;
    margin: 0 auto 120px;
    text-align: center;
}

.services-header .label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
}

.services-header .title-massive {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(64px, 10vw, 180px);
    font-weight: 700;
    color: var(--paper);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.services-bento .services-intro {
    font-size: 20px;
    color: rgba(250,250,249,0.7);
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.bento-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.bento-card {
    position: relative;
    min-height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.bento-card[data-service="01"] { grid-column: span 2; }
.bento-card[data-service="02"] { grid-column: span 4; }
.bento-card[data-service="03"] { grid-column: span 2; }
.bento-card[data-service="04"] { grid-column: span 2; }
.bento-card[data-service="05"] { grid-column: span 4; }
.bento-card[data-service="06"] { grid-column: span 2; }

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 16px;
    padding: 32px;
}

.card-front {
    background: rgba(250,250,249,0.03);
    border: 1px solid rgba(250,250,249,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-back {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.3);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card:hover .card-front {
    transform: rotateY(-180deg);
}

.bento-card:hover .card-back {
    transform: rotateY(0);
}

.card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.card-front h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 16px 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .card-front h3 {
    color: var(--accent);
    transform: scale(1.05);
}

.card-icon {
    color: rgba(250,250,249,0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .card-icon {
    color: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.card-back h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: rgba(250,250,249,0.85);
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    transition: all 0.2s;
}

.service-features li:hover {
    color: var(--paper);
    transform: translateX(4px);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

/* PLATFORMS ASYMMETRIC */
.platforms-asymmetric {
    padding: 0;
    background: var(--paper);
}

.platforms-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.platform-block {
    padding: 120px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.platform-block.primary {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
    color: var(--paper);
}

.platform-block.secondary {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1a 100%);
    color: var(--paper);
}

.platform-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-block:hover {
    transform: scale(1.02);
}

.platform-block:hover::before {
    opacity: 1;
}

.platform-block:hover .block-arrow {
    transform: translateX(16px) scale(1.2);
}

.block-content {
    max-width: 500px;
}

.block-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    display: block;
    margin-bottom: 24px;
}

.block-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.block-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.85;
    font-weight: 500;
}

.block-arrow {
    font-size: 48px;
    font-weight: 300;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ABOUT DECONSTRUCTED */
.about-deconstructed {
    padding: 200px 40px;
    background: var(--paper);
}

.about-container {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 120px;
    align-items: start;
}

.about-text-block .label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 32px;
}

.title-deconstructed {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.title-deconstructed .line {
    display: block;
}

.title-deconstructed .accent {
    color: var(--accent);
}

.about-content-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--slate);
    font-weight: 500;
    transition: all 0.3s;
}

.about-paragraph:hover {
    color: var(--ink);
}

.about-features-block {
    grid-column: 1 / -1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.feature-pill {
    background: var(--ink);
    color: var(--paper);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.feature-pill:hover {
    background: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* CLIENTS SHOWCASE */
.clients-showcase {
    padding: 200px 40px;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    position: relative;
    overflow: hidden;
}

.clients-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.1), transparent);
}

.clients-container {
    max-width: 1800px;
    margin: 0 auto;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 120px;
}

.clients-header .label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.clients-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    color: var(--ink);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.client-card {
    background: white;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 20px;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(13, 148, 136, 0.03));
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card:hover {
    transform: translateY(-12px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 24px 48px rgba(10, 10, 10, 0.1);
}

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

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.client-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card:hover .client-logo img {
    transform: scale(1.08);
}

.client-info {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card:hover .client-info {
    opacity: 1;
    transform: translateY(0);
}

.client-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.client-info p {
    font-size: 13px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.clients-subtitle {
    font-size: 18px;
    color: var(--slate);
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

.clients-marquee {
    position: relative;
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    margin: 80px 0;
}

.marquee-track {
    display: flex;
    gap: 120px;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-track.dragging {
    animation: none;
    transition: transform 0.05s linear;
}

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

.client-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.client-logo-item:hover {
    opacity: 1;
}

.client-logo-item img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.clients-stats {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 13px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .clients-stats {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* CTA EXPERIMENTAL */
.cta-experimental {
    padding: 200px 40px;
    background: var(--paper);
}

.cta-layout {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.cta-title-massive {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(56px, 8vw, 140px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.06em;
}

.cta-title-massive .line {
    display: block;
}

.cta-title-massive .accent {
    color: var(--accent);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-block {
    background: var(--ink);
    color: var(--paper);
    padding: 48px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.cta-block {
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-block:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
}

.cta-block:hover::before {
    left: 100%;
}

.cta-block.email {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
}

.cta-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    display: block;
    margin-bottom: 12px;
}

.cta-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: all 0.3s;
}

.cta-block:hover .cta-value {
    transform: scale(1.05);
}

/* BOOKING CARD STYLES */
.booking-card {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 280px !important;
    border: none !important;
}

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

.booking-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
}

.booking-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-weight: 500;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
}

.booking-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

.booking-btn svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.contact-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 !important;
    background: transparent !important;
}

.contact-card .cta-block {
    padding: 32px !important;
    margin: 0 !important;
}

.contact-card .cta-block.email {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%) !important;
}

.contact-card .cta-block.phone {
    background: var(--ink) !important;
}

@media (max-width: 768px) {
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cta-actions {
        gap: 16px;
    }
    
    .booking-card {
        min-height: 240px !important;
    }
    
    .booking-title {
        font-size: 24px;
    }
    
    .booking-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .cta-block {
        padding: 32px !important;
    }
}

/* FOOTER MINIMAL */
.footer-minimal {
    background: linear-gradient(180deg, #0f1419 0%, var(--ink) 100%);
    padding: 120px 40px 48px;
    color: var(--paper);
    position: relative;
}

.footer-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(250,250,249,0.1), transparent);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    gap: 80px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 140px;
    filter: invert(1);
}

.footer-tagline {
    font-size: 18px;
    color: rgba(250,250,249,0.6);
}

.footer-links {
    display: flex;
    gap: 48px;
    padding: 48px 0;
    border-top: 1px solid rgba(250,250,249,0.1);
    border-bottom: 1px solid rgba(250,250,249,0.1);
}

.footer-links a {
    color: rgba(250,250,249,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--paper);
}

.footer-legal {
    text-align: center;
    color: rgba(250,250,249,0.4);
    font-size: 13px;
}

.lang-switch {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    transition: all 0.2s;
}

.lang-switch:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

/* ACCESSIBILITY */
.accessibility-toggle {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    color: #fff;
    border: 1px solid rgba(250, 250, 249, 0.2);
    cursor: pointer;
    z-index: 10002;
    box-shadow: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.accessibility-toggle:hover {
    transform: scale(1.05);
    opacity: 1;
    background: rgba(10, 10, 10, 0.8);
}

.accessibility-panel {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 320px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(10, 10, 10, 0.15);
    z-index: 10003;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 80vh;
    overflow-y: auto;
}

.accessibility-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .accessibility-toggle {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    
    .accessibility-panel {
        bottom: auto;
        top: 50%;
        right: 16px;
        left: 16px;
        width: auto;
        transform: translateY(calc(-50% + 20px));
        max-height: 70vh;
    }
    
    .accessibility-panel.active {
        transform: translateY(-50%);
    }
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.panel-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.panel-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--slate);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-content {
    padding: 20px;
}

.control-group {
    margin-bottom: 24px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ink);
}

.control-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.control-buttons button {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--ink);
}

.control-buttons button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.control-buttons button.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.control-buttons button[data-action="text-small"] { font-size: 11px; }
.control-buttons button[data-action="text-normal"] { font-size: 13px; }
.control-buttons button[data-action="text-large"] { font-size: 16px; }

.reset-btn {
    width: 100%;
    padding: 12px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.reset-btn:hover {
    background: var(--accent);
}

/* ACCESSIBILITY MODES */
html.text-small { font-size: 14px; }
html.text-small body { font-size: 14px; }
html.text-large { font-size: 18px; }
html.text-large body { font-size: 18px; }

html.text-small .hero-statement { font-size: clamp(48px, 7vw, 120px) !important; }
html.text-large .hero-statement { font-size: clamp(64px, 9vw, 160px) !important; }
html.text-small .services-header .title-massive { font-size: clamp(56px, 9vw, 160px) !important; }
html.text-large .services-header .title-massive { font-size: clamp(72px, 11vw, 200px) !important; }
html.text-small .cta-title-massive { font-size: clamp(48px, 7vw, 120px) !important; }
html.text-large .cta-title-massive { font-size: clamp(64px, 9vw, 160px) !important; }

html.contrast-high {
    --ink: #000 !important;
    --paper: #fff !important;
    --slate: #333 !important;
    --border: #000 !important;
}

html.contrast-high body {
    background: #fff !important;
    color: #000 !important;
}

html.contrast-high .services-radical,
html.contrast-high .footer-minimal {
    background: #000 !important;
}

html.contrast-high .service-tile,
html.contrast-high .platform-block,
html.contrast-high .cta-block {
    border-width: 3px !important;
    border-color: #000 !important;
}

html.contrast-high .hero-video-bg video {
    opacity: 0.4 !important;
    filter: grayscale(1) contrast(1.5) !important;
}

html.contrast-high .nav-item,
html.contrast-high .about-paragraph {
    color: #000 !important;
}

html.contrast-high .tile-content h3,
html.contrast-high .tile-content p {
    color: #fff !important;
}

/* Daltonismo filters */
html.color-protanopia {
    filter: url('#protanopia-filter');
}

html.color-deuteranopia {
    filter: url('#deuteranopia-filter');
}

html.color-tritanopia {
    filter: url('#tritanopia-filter');
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 10001;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* DARK MODE */
html.dark-mode {
    --ink: #fafaf9;
    --paper: #0a0a0a;
    --slate: #a1a1a1;
    --border: #2a2a2a;
}

html.dark-mode body {
    background: #0a0a0a;
    color: #fafaf9;
}

html.dark-mode .hero-experimental {
    background: #0a0a0a;
}

html.dark-mode .hero-video-bg video {
    opacity: 0.15;
}

html.dark-mode .services-bento {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f1419 100%);
}

html.dark-mode .platforms-asymmetric {
    background: #0a0a0a;
}

html.dark-mode .about-deconstructed {
    background: #0a0a0a;
}

html.dark-mode .clients-showcase {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f1419 100%);
}

html.dark-mode .cta-experimental {
    background: #0a0a0a;
}

html.dark-mode .premium-nav {
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(250, 250, 249, 0.1);
}

html.dark-mode .nav-item {
    color: #fafaf9;
}

html.dark-mode .nav-item::after {
    background: var(--accent);
}

html.dark-mode .nav-cta-btn {
    background: #fafaf9;
    color: #0a0a0a;
}

html.dark-mode .platform-block.secondary {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

html.dark-mode .cta-block {
    background: #2a2a2a;
    color: #fafaf9;
}

html.dark-mode .footer-minimal {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

html.dark-mode .footer-links {
    border-color: rgba(250, 250, 249, 0.1);
}

html.dark-mode .footer-links a {
    color: rgba(250, 250, 249, 0.6);
}

html.dark-mode .lang-switch {
    color: #fafaf9;
    border-color: rgba(250, 250, 249, 0.2);
}

html.dark-mode .lang-switch:hover {
    background: #fafaf9;
    color: #0a0a0a;
}

html.dark-mode .accessibility-panel {
    background: #1a1a1a;
    border-color: rgba(250, 250, 249, 0.1);
    color: #fafaf9;
}

html.dark-mode .panel-header {
    border-color: rgba(250, 250, 249, 0.1);
}

html.dark-mode .control-buttons button {
    background: #2a2a2a;
    border-color: rgba(250, 250, 249, 0.2);
    color: #fafaf9;
}

html.dark-mode .control-buttons button:hover {
    border-color: var(--accent);
}

html.dark-mode .control-buttons button.active {
    background: var(--accent);
    color: #fff;
}

html.dark-mode .reset-btn {
    background: #fafaf9;
    color: #0a0a0a;
}

html.dark-mode .reset-btn:hover {
    background: var(--accent);
    color: #fff;
}

html.dark-mode .clients-marquee {
    border-color: rgba(250, 250, 249, 0.1);
}

html.dark-mode .card-front {
    background: rgba(250, 250, 249, 0.05);
    border-color: rgba(250, 250, 249, 0.1);
}

html.dark-mode .card-back {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

html.dark-mode .client-card {
    background: #1a1a1a;
    border-color: rgba(250, 250, 249, 0.1);
}

html.dark-mode .client-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

html.dark-mode .feature-pill {
    background: #fafaf9;
    color: #0a0a0a;
}

.magnetic-area {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .hero-layout { grid-template-columns: 1fr; gap: 80px; text-align: center; }
    .hero-logo-zone { justify-content: center; flex-direction: column; align-items: center; }
    .hero-text-zone { justify-content: center; }
    .hero-metrics { position: static; margin-top: 80px; justify-content: center; }
    .services-experimental-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
    .service-tile:nth-child(n) { grid-column: span 1 !important; }
    .about-container { grid-template-columns: 1fr; }
    .cta-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .custom-cursor { display: none; }
    .hero-experimental { padding: 80px 20px 120px; min-height: auto; }
    .hero-layout { grid-template-columns: 1fr; gap: 60px; }
    .hero-logo-zone { margin-top: 0; }
    .hero-logo-massive { max-width: 250px; }
    .hero-text-inner { max-width: 100%; }
    .hero-statement { font-size: clamp(32px, 6vw, 56px); margin-bottom: 20px; }
    .hero-manifesto { font-size: 16px; margin-bottom: 0; }
    .hero-metrics { position: static; flex-direction: column; gap: 24px; margin-top: 60px; }
    .metric .num { font-size: 32px; }
    .metric .label { font-size: 11px; }
    .platforms-split { grid-template-columns: 1fr; }
    .services-experimental-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 24px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250,250,249,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        margin-top: 8px;
        border-radius: 12px;
        border: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
    }
    .nav-container {
        gap: 16px;
    }
    .accessibility-panel { width: calc(100vw - 32px); right: 16px; }
    .accessibility-toggle { bottom: 16px; right: 16px; }
    .clients-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .clients-grid { grid-template-columns: 1fr; gap: 1px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card { min-height: 350px; }
}

/* SVG Filters para daltonismo */
.daltonism-filters {
    position: absolute;
    width: 0;
    height: 0;
}

@media (max-width: 1400px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bento-card[data-service="01"],
    .bento-card[data-service="02"],
    .bento-card[data-service="03"],
    .bento-card[data-service="04"],
    .bento-card[data-service="05"],
    .bento-card[data-service="06"] {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card {
        min-height: 350px;
    }
}

.services-bento,
.platforms-asymmetric,
.about-deconstructed,
.clients-showcase,
.cta-experimental {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
