/* ==========================================================================
   GELO BLACK — Professional UI/UX Design System
   ========================================================================== */

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

/* ===== DESIGN TOKENS ===== */
:root {
    /* Colors */
    --c-primary: #1a9cd4;
    --c-primary-light: #3bb5eb;
    --c-primary-dark: #1580b0;
    --c-accent: #00d4ff;
    --c-dark: #0a0a0a;
    --c-dark-2: #111114;
    --c-dark-3: #1a1a1f;
    --c-dark-4: #242429;
    --c-white: #ffffff;
    --c-off-white: #f8f9fb;
    --c-gray-50: #f4f5f7;
    --c-gray-100: #e8eaef;
    --c-gray-200: #d1d5de;
    --c-gray-400: #9098a9;
    --c-gray-500: #6b7280;
    --c-gray-600: #4b5563;
    --c-gray-800: #1f2937;
    --c-success: #25d366;

    /* Gradients */
    --g-primary: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
    --g-dark: linear-gradient(180deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
    --g-glow: radial-gradient(circle, rgba(26,156,212,0.15) 0%, transparent 70%);

    /* Typography */
    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-serif: 'Playfair Display', Georgia, serif;
    --f-size-xs: 0.75rem;
    --f-size-sm: 0.875rem;
    --f-size-base: 1rem;
    --f-size-md: 1.125rem;
    --f-size-lg: 1.25rem;
    --f-size-xl: 1.5rem;
    --f-size-2xl: 2rem;
    --f-size-3xl: 2.5rem;
    --f-size-4xl: 3.25rem;
    --f-size-5xl: 4rem;

    /* Spacing */
    --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
    --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
    --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
    --s-32: 128px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 60px rgba(26,156,212,0.2);
    --shadow-glow-strong: 0 0 80px rgba(26,156,212,0.35);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --t-fast: 0.2s var(--ease-out);
    --t-base: 0.35s var(--ease-out);
    --t-slow: 0.6s var(--ease-out);

    /* Layout */
    --navbar-h: 72px;
    --container: 1200px;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-h);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--f-sans);
    font-size: var(--f-size-base);
    line-height: 1.6;
    color: var(--c-gray-800);
    background: var(--c-white);
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s-6);
}

em {
    font-style: normal;
    background: var(--g-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--c-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    height: 60px;
    margin-bottom: var(--s-6);
    animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--c-dark-3);
    border-radius: var(--r-full);
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--g-primary);
    border-radius: var(--r-full);
    animation: preloader-fill 1.5s var(--ease-out) forwards;
}

@keyframes preloader-fill {
    from { width: 0; }
    to { width: 100%; }
}

/* ===== CUSTOM CURSOR (desktop only) ===== */
@media (pointer: fine) {
    .cursor-dot {
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--c-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    .cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(26,156,212,0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                    border-color 0.3s, background 0.2s;
    }

    .cursor-dot.hover { width: 12px; height: 12px; background: var(--c-accent); }
    .cursor-ring.hover { width: 50px; height: 50px; border-color: rgba(0,212,255,0.3); }
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-h);
    z-index: 1000;
    transition: var(--t-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo img {
    height: 42px;
    transition: var(--t-fast);
}

.navbar__logo:hover img { transform: scale(1.05); }

.navbar__nav {
    display: flex;
    align-items: center;
    gap: var(--s-1);
}

.navbar__link {
    color: rgba(255,255,255,0.65);
    font-size: var(--f-size-sm);
    font-weight: 500;
    padding: var(--s-2) var(--s-4);
    border-radius: var(--r-sm);
    letter-spacing: 0.01em;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--c-primary);
    border-radius: var(--r-full);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--c-white);
}

.navbar__link.active::after { width: 20px; }

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    background: var(--c-white);
    color: var(--c-dark);
    font-size: var(--f-size-sm);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--r-full);
    transition: var(--t-base);
}

.navbar__cta:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26,156,212,0.3);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: var(--t-base);
    transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    font-size: var(--f-size-sm);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--r-full);
    cursor: pointer;
    border: none;
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--g-primary);
    color: var(--c-white);
    box-shadow: 0 4px 16px rgba(26,156,212,0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26,156,212,0.45);
}

.btn--ghost {
    background: rgba(255,255,255,0.08);
    color: var(--c-white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--c-white);
    color: var(--c-dark);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--full { width: 100%; }

/* ===== SECTION LABEL ===== */
.section-label {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    margin-bottom: var(--s-4);
}

.section-label--center { justify-content: center; }

.section-label__line {
    width: 32px;
    height: 1px;
    background: var(--c-primary);
}

.section-label span {
    font-size: var(--f-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-primary);
}

.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto var(--s-16);
}

.section-header__title {
    font-size: clamp(var(--f-size-2xl), 4vw, var(--f-size-3xl));
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--s-4);
    color: var(--c-dark);
}

.section-header__desc {
    font-size: var(--f-size-md);
    color: var(--c-gray-500);
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--c-dark);
    overflow: hidden;
    padding: calc(var(--navbar-h) + var(--s-12)) 0 var(--s-16);
}

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

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 25% 50%, rgba(26,156,212,0.08) 0%, transparent 100%),
        radial-gradient(ellipse 40% 40% at 75% 30%, rgba(0,212,255,0.06) 0%, transparent 100%);
}

.hero__grid-pattern {
    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: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero__orbs { position: absolute; inset: 0; }

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-drift 20s ease-in-out infinite;
}

.hero__orb--1 {
    width: 400px; height: 400px;
    background: rgba(26,156,212,0.07);
    top: 10%; left: 5%;
}

.hero__orb--2 {
    width: 300px; height: 300px;
    background: rgba(0,212,255,0.05);
    bottom: 10%; right: 10%;
    animation-delay: -7s;
}

.hero__orb--3 {
    width: 250px; height: 250px;
    background: rgba(26,156,212,0.04);
    top: 50%; left: 40%;
    animation-delay: -14s;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-16);
    align-items: center;
}

/* Hero Text */
.hero__overline {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    color: var(--c-primary-light);
    font-size: var(--f-size-sm);
    font-weight: 500;
    margin-bottom: var(--s-6);
}

.hero__overline-dot {
    width: 8px; height: 8px;
    background: var(--c-primary);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-size: clamp(var(--f-size-3xl), 5.5vw, var(--f-size-5xl));
    font-weight: 900;
    color: var(--c-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: var(--s-6);
}

.hero__title-accent {
    font-family: var(--f-serif);
    font-style: italic;
    background: var(--g-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--f-size-md);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: var(--s-10);
}

.hero__actions {
    display: flex;
    gap: var(--s-4);
    flex-wrap: wrap;
    margin-bottom: var(--s-16);
}

/* Hero Metrics */
.hero__metrics {
    display: flex;
    align-items: center;
    gap: var(--s-8);
}

.hero__metric { text-align: left; }

.hero__metric-value {
    display: block;
    font-size: var(--f-size-3xl);
    font-weight: 800;
    color: var(--c-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero__metric-label {
    display: block;
    font-size: var(--f-size-xs);
    color: rgba(255,255,255,0.4);
    margin-top: var(--s-1);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero__metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Hero Visual */
.hero__visual { position: relative; }

.hero__image-wrapper {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.hero__image-wrapper img {
    width: 100%;
    border-radius: var(--r-xl);
    transition: transform 8s var(--ease-out);
}

.hero__image-wrapper:hover img { transform: scale(1.03); }

.hero__image-glow {
    position: absolute;
    inset: -50%;
    background: var(--g-glow);
    pointer-events: none;
    z-index: -1;
}

.hero__floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: var(--s-3);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: var(--s-4) var(--s-5);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

.hero__floating-icon {
    font-size: 1.6rem;
    color: var(--c-primary);
}

.hero__floating-badge strong {
    display: block;
    font-size: var(--f-size-sm);
    color: var(--c-dark);
}

.hero__floating-badge small {
    font-size: var(--f-size-xs);
    color: var(--c-gray-500);
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--s-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
    z-index: 5;
}

.hero__scroll span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== BRAND STRIP ===== */
.brand-strip {
    background: var(--c-dark-2);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: var(--s-5) 0;
}

.brand-strip__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-10);
}

.brand-strip__item {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    color: rgba(255,255,255,0.45);
    font-size: var(--f-size-sm);
    font-weight: 500;
}

.brand-strip__item svg { color: var(--c-primary); opacity: 0.7; }

/* ===== ABOUT ===== */
.about {
    padding: var(--s-32) 0;
    background: var(--c-off-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-20);
    align-items: center;
}

.about__media { position: relative; }

.about__image-main {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about__image-main:hover img { transform: scale(1.03); }

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 6px solid var(--c-off-white);
    box-shadow: var(--shadow-lg);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--g-primary);
    color: var(--c-white);
    padding: var(--s-5) var(--s-6);
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: 0 8px 30px rgba(26,156,212,0.3);
}

.about__experience-number {
    display: block;
    font-size: var(--f-size-2xl);
    font-weight: 900;
    line-height: 1;
}

.about__experience-text {
    font-size: var(--f-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: 2px;
}

.about__title {
    font-size: clamp(var(--f-size-xl), 3vw, var(--f-size-3xl));
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--s-6);
    color: var(--c-dark);
}

.about__text {
    color: var(--c-gray-500);
    font-size: var(--f-size-md);
    line-height: 1.8;
    margin-bottom: var(--s-4);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
    margin-top: var(--s-10);
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--s-4);
    padding: var(--s-4) var(--s-5);
    border-radius: var(--r-md);
    transition: var(--t-base);
}

.about__feature:hover {
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26,156,212,0.1), rgba(0,212,255,0.05));
    border-radius: var(--r-sm);
    color: var(--c-primary);
}

.about__feature h4 {
    font-size: var(--f-size-sm);
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--c-dark);
}

.about__feature p {
    font-size: var(--f-size-sm);
    color: var(--c-gray-500);
    line-height: 1.5;
}

/* ===== FLAVORS ===== */
.flavors {
    padding: var(--s-32) 0;
    background: var(--c-white);
}

.flavors__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s-5);
}

.flavor-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    border-radius: var(--r-xl);
    padding: var(--s-8) var(--s-5);
    text-align: center;
    transition: var(--t-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--c-primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.flavor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.flavor-card__visual {
    position: relative;
    margin-bottom: var(--s-5);
}

.flavor-card__emoji {
    font-size: 3.2rem;
    display: block;
    transition: transform 0.4s var(--ease-out);
}

.flavor-card:hover .flavor-card__emoji { transform: scale(1.15) rotate(-5deg); }

.flavor-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--card-accent) 0%, transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    transition: opacity 0.4s;
}

.flavor-card:hover .flavor-card__glow { opacity: 0.15; }

.flavor-card__badge {
    display: inline-block;
    background: var(--c-gray-50);
    color: var(--c-gray-500);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: var(--r-full);
    margin-bottom: var(--s-3);
}

.flavor-card:hover .flavor-card__badge {
    background: rgba(26,156,212,0.08);
    color: var(--c-primary);
}

.flavor-card__name {
    font-size: var(--f-size-lg);
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: var(--s-2);
}

.flavor-card__desc {
    font-size: var(--f-size-sm);
    color: var(--c-gray-500);
    line-height: 1.6;
    flex: 1;
}

.flavor-card__footer {
    margin-top: var(--s-5);
    padding-top: var(--s-4);
    border-top: 1px solid var(--c-gray-100);
}

.flavor-card__tag {
    font-size: 11px;
    color: var(--c-gray-400);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== PROCESS ===== */
.process {
    padding: var(--s-32) 0;
    background: var(--c-dark);
    color: var(--c-white);
}

.process .section-header__title { color: var(--c-white); }
.process .section-header__desc { color: rgba(255,255,255,0.5); }

.process__timeline {
    position: relative;
    display: flex;
    justify-content: center;
    gap: var(--s-12);
    max-width: 900px;
    margin: 0 auto;
}

.process__line {
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26,156,212,0.3), transparent);
}

.process__step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.process__step-marker {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--s-6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-dark-3);
    border: 2px solid rgba(26,156,212,0.3);
    transition: var(--t-base);
}

.process__step:hover .process__step-marker {
    border-color: var(--c-primary);
    background: var(--c-dark-4);
    box-shadow: 0 0 30px rgba(26,156,212,0.2);
}

.process__step-marker span {
    font-size: var(--f-size-sm);
    font-weight: 800;
    background: var(--g-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process__step h3 {
    font-size: var(--f-size-base);
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.process__step p {
    font-size: var(--f-size-sm);
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== GALLERY ===== */
.gallery {
    padding: var(--s-32) 0;
    background: var(--c-off-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--s-5);
    height: 500px;
}

.gallery__item {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item--wide { grid-row: span 2; }

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s-6);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--t-base);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery__caption {
    font-size: var(--f-size-md);
    font-weight: 700;
    color: var(--c-white);
}

.gallery__overlay p {
    font-size: var(--f-size-sm);
    color: rgba(255,255,255,0.65);
    margin-top: var(--s-1);
}

.gallery__brand-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    border-radius: var(--r-xl);
    padding: var(--s-6);
    gap: var(--s-4);
    transition: var(--t-base);
}

.gallery__brand-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.gallery__brand-card img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.gallery__brand-card p {
    font-size: var(--f-size-sm);
    color: var(--c-gray-500);
    font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: var(--s-20) 0;
    background: var(--c-dark);
    overflow: hidden;
}

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

.cta-banner__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-banner__orb--1 {
    width: 400px; height: 400px;
    background: rgba(26,156,212,0.12);
    top: -100px; left: -100px;
}

.cta-banner__orb--2 {
    width: 300px; height: 300px;
    background: rgba(0,212,255,0.08);
    bottom: -100px; right: -50px;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-8);
    background: linear-gradient(135deg, rgba(26,156,212,0.12), rgba(0,212,255,0.06));
    border: 1px solid rgba(26,156,212,0.15);
    border-radius: var(--r-xl);
    padding: var(--s-12) var(--s-16);
}

.cta-banner__text h2 {
    font-size: clamp(var(--f-size-xl), 3vw, var(--f-size-2xl));
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: var(--s-2);
}

.cta-banner__text p {
    color: rgba(255,255,255,0.5);
    font-size: var(--f-size-md);
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--s-32) 0;
    background: var(--c-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s-16);
    align-items: start;
}

.contact__title {
    font-size: clamp(var(--f-size-2xl), 4vw, var(--f-size-3xl));
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: var(--s-4);
    line-height: 1.15;
}

.contact__desc {
    font-size: var(--f-size-md);
    color: var(--c-gray-500);
    line-height: 1.7;
    margin-bottom: var(--s-10);
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: var(--s-4);
    padding: var(--s-4) var(--s-5);
    border-radius: var(--r-md);
    border: 1px solid var(--c-gray-100);
    transition: var(--t-base);
}

.contact__channel:hover {
    border-color: var(--c-gray-200);
    background: var(--c-gray-50);
    transform: translateX(4px);
}

.contact__channel--whatsapp:hover { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.04); }
.contact__channel--instagram:hover { border-color: rgba(228,64,95,0.3); background: rgba(228,64,95,0.04); }

.contact__channel-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    background: var(--c-gray-50);
    color: var(--c-gray-600);
    flex-shrink: 0;
}

.contact__channel--whatsapp .contact__channel-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.contact__channel--instagram .contact__channel-icon { background: rgba(228,64,95,0.1); color: #e4405f; }

.contact__channel strong {
    display: block;
    font-size: var(--f-size-sm);
    font-weight: 700;
    color: var(--c-dark);
}

.contact__channel small {
    font-size: var(--f-size-xs);
    color: var(--c-gray-500);
}

.contact__channel-arrow {
    margin-left: auto;
    color: var(--c-gray-400);
    transition: var(--t-fast);
    flex-shrink: 0;
}

.contact__channel:hover .contact__channel-arrow { color: var(--c-gray-600); transform: translateX(3px); }

/* Contact Form */
.contact__form-wrapper {
    background: var(--c-gray-50);
    border-radius: var(--r-xl);
    padding: var(--s-10);
    border: 1px solid var(--c-gray-100);
}

.contact__form h3 {
    font-size: var(--f-size-xl);
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: var(--s-2);
}

.contact__form > p {
    font-size: var(--f-size-sm);
    color: var(--c-gray-500);
    margin-bottom: var(--s-8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
}

.form-field {
    margin-bottom: var(--s-4);
}

.form-field label {
    display: block;
    font-size: var(--f-size-sm);
    font-weight: 600;
    color: var(--c-gray-800);
    margin-bottom: var(--s-2);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--c-gray-200);
    border-radius: var(--r-sm);
    font-size: var(--f-size-sm);
    background: var(--c-white);
    color: var(--c-gray-800);
    transition: var(--t-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--c-gray-400);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(26,156,212,0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form .btn { margin-top: var(--s-4); }

/* Form success state */
.btn--success {
    background: var(--c-success) !important;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3) !important;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-dark);
    color: rgba(255,255,255,0.5);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--s-10);
    padding: var(--s-16) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
    height: 42px;
    margin-bottom: var(--s-4);
}

.footer__brand p {
    font-size: var(--f-size-sm);
    line-height: 1.7;
    max-width: 280px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.footer__col h4 {
    font-size: var(--f-size-sm);
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--s-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__col a,
.footer__col span {
    font-size: var(--f-size-sm);
    color: rgba(255,255,255,0.45);
    transition: var(--t-fast);
}

.footer__col a:hover { color: var(--c-white); }

.footer__bottom {
    padding: var(--s-6) 0;
    text-align: center;
    font-size: var(--f-size-xs);
    color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: var(--s-8);
    left: var(--s-8);
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--t-base);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float__tooltip {
    position: absolute;
    left: calc(100% + 12px);
    background: var(--c-dark);
    color: var(--c-white);
    font-size: var(--f-size-xs);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--t-fast);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: var(--s-8);
    right: var(--s-8);
    width: 44px;
    height: 44px;
    background: var(--c-white);
    color: var(--c-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--t-base);
    border: 1px solid var(--c-gray-100);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--c-primary);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="fade-up"] { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__metrics { justify-content: center; }
    .hero__visual { max-width: 480px; margin: 0 auto; }
    .hero__floating-badge { left: auto; right: 20px; bottom: -15px; }
    .hero__scroll { display: none; }

    .about__grid { grid-template-columns: 1fr; gap: var(--s-16); }
    .about__image-main img { height: 400px; }

    .flavors__grid { grid-template-columns: repeat(3, 1fr); }

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

    .footer__top { grid-template-columns: 1fr 1fr; gap: var(--s-8); }

    .gallery__grid { height: auto; }
    .gallery__item--wide { min-height: 300px; }

    .cta-banner__inner { flex-direction: column; text-align: center; padding: var(--s-10); }
}

@media (max-width: 768px) {
    :root { --navbar-h: 64px; }

    .navbar__toggle { display: flex; }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100dvh;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: var(--s-2);
        padding: var(--s-10);
        transition: right 0.4s var(--ease-out);
        z-index: 1000;
    }

    .navbar__nav.active { right: 0; }

    .navbar__link {
        font-size: var(--f-size-lg);
        padding: var(--s-3) var(--s-4);
    }

    .navbar__cta { display: none; }

    .hero { min-height: auto; padding: calc(var(--navbar-h) + var(--s-10)) 0 var(--s-10); }
    .hero__title { font-size: clamp(var(--f-size-2xl), 8vw, var(--f-size-4xl)); }
    .hero__metrics { flex-wrap: wrap; gap: var(--s-6); }
    .hero__metric-value { font-size: var(--f-size-2xl); }

    .about, .flavors, .process, .gallery, .contact { padding: var(--s-20) 0; }

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

    .about__image-accent { width: 150px; height: 150px; bottom: -20px; right: -10px; }
    .about__experience { top: -15px; left: -10px; padding: var(--s-4); }
    .about__experience-number { font-size: var(--f-size-xl); }

    .process__timeline { flex-direction: column; gap: var(--s-6); }
    .process__line { display: none; }

    .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
    .gallery__item--wide { min-height: 250px; grid-row: span 1; }
    .gallery__item:not(.gallery__item--wide) { min-height: 200px; }

    .contact__form-wrapper { padding: var(--s-6); }
    .form-row { grid-template-columns: 1fr; }

    .footer__top { grid-template-columns: 1fr; text-align: center; gap: var(--s-8); }
    .footer__brand p { margin: 0 auto; }

    .section-header { margin-bottom: var(--s-10); }

    .brand-strip__inner { gap: var(--s-6); }
    .brand-strip__item span { font-size: var(--f-size-xs); }
}

@media (max-width: 480px) {
    .flavors__grid { grid-template-columns: 1fr; }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }

    .hero__metrics { flex-direction: column; gap: var(--s-4); }
    .hero__metric-divider { width: 40px; height: 1px; }

    .about__image-accent { display: none; }
    .about__image-main img { height: 280px; }

    .whatsapp-float { bottom: var(--s-5); left: var(--s-5); width: 50px; height: 50px; }
    .whatsapp-float__tooltip { display: none; }
    .back-to-top { bottom: var(--s-5); right: var(--s-5); width: 40px; height: 40px; }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(26,156,212,0.2);
    color: var(--c-dark);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: var(--c-dark-4); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--c-gray-600); }
