/* =====================================================
   BLEUE CONSULTING - Agencia de Publicidad
   Diseno Innovador y Creativo
   ===================================================== */

/* Variables */
:root {
    /* Colores del logo */
    --color-primary: #D6228C;
    --color-secondary: #00C8E0;
    --color-primary-dark: #B01A73;
    --color-secondary-dark: #00A5BA;

    /* Fondos */
    --color-dark: #0A0A0F;
    --color-darker: #050508;
    --color-surface: #12121A;
    --color-surface-light: #1A1A25;
    --color-footer: #000000; 

    /* Textos */
    --color-text: #E8E8EC;
    --color-text-muted: #9898A6;
    --color-text-dark: #6B6B7B;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-primary-reverse: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 100%);

    /* Tipografia */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espaciado */
    --container-width: 1280px;
    --section-padding: 120px;
    --header-height: 110px;

    /* Transiciones */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Bordes y sombras */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-glow: 0 0 60px rgba(214, 34, 140, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Cursor personalizado */
.cursor {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(214, 34, 140, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.active {
    transform: scale(2);
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(214, 34, 140, 0.05);
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower {
        display: none;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Gradient Text */
.gradient-text, .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(214, 34, 140, 0.1);
    border: 1px solid rgba(214, 34, 140, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

/* Section Title */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--color-text);
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

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

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15), 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header.scrolled .nav-link {
    color: rgba(10, 10, 15, 0.7);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary);
}

.header.scrolled .menu-toggle span {
    background: var(--color-dark);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
    width: auto;
}

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

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition-base);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(214, 34, 140, 0.3);
}

.btn-header .btn-arrow {
    width: 20px;
    height: 20px;
}

.btn-header .btn-arrow svg {
    width: 100%;
    height: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-base);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

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

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.3;
}

/* Orb blanca para la esquina del logo */
.orb-white {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.85);
    top: -200px;
    left: -50px;
    animation: float 25s ease-in-out infinite;
    animation-delay: -3s;
    opacity: 0.6;
    filter: blur(80px);
}

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

.hero-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: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(214, 34, 140, 0.1);
    border: 1px solid rgba(214, 34, 140, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
}

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

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

.hero-tag span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 32px;
}

.title-line {
    display: block;
}

.title-outline {
    -webkit-text-stroke: 2px var(--color-text);
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(214, 34, 140, 0.3);
}

.btn-primary .btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition-base);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(214, 34, 140, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 34, 140, 0.3);
    transform: translateX(10px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-left: 12px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--color-darker);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px 80px;
}

.about-header {
    grid-column: 1 / 2;
}

.about-content {
    grid-column: 1 / 2;
}

.about-visual {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: relative;
}

.about-text-block {
    margin-bottom: 48px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(214, 34, 140, 0.05);
    border-color: rgba(214, 34, 140, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Visual Card */
.visual-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.visual-tag {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.visual-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(214, 34, 140, 0.4);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   SERVICES SHOWCASE - Bento Grid Innovador
   ===================================================== */
.services-showcase {
    padding: var(--section-padding) 0;
    background: var(--color-darker);
    position: relative;
    overflow: hidden;
}

/* Showcase Header */
.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 60px;
}

.showcase-header-left {
    flex: 1;
}

.showcase-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
}

.showcase-header-right {
    flex: 0 0 400px;
}

.showcase-header-right p {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-base);
}

.btn-outline-dark:hover {
    border-color: var(--color-primary);
    background: rgba(214, 34, 140, 0.1);
}

.btn-outline-dark svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.btn-outline-dark:hover svg {
    transform: translate(4px, -4px);
}

/* Bento Grid */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 260px);
    gap: 20px;
    margin-bottom: 60px;
}

/* Bento Items */
.bento-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

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

.bento-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-bg img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.2) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 0.95) 100%);
    transition: var(--transition-base);
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(180deg,
        rgba(214, 34, 140, 0.1) 0%,
        rgba(10, 10, 15, 0.7) 50%,
        rgba(10, 10, 15, 0.98) 100%);
}

.bento-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: var(--transition-base);
}

.bento-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.bento-item:hover .bento-content p {
    opacity: 1;
    transform: translateY(0);
}

.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.bento-features span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.bento-link:hover {
    color: var(--color-secondary);
    gap: 12px;
}

.bento-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.bento-link-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
    opacity: 0;
    transform: translate(10px, -10px);
}

.bento-item:hover .bento-link-icon {
    opacity: 1;
    transform: translate(0, 0);
}

.bento-link-icon:hover {
    background: var(--gradient-primary);
}

.bento-link-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.bento-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

/* Bento Content Row (para cards anchas) */
.bento-content-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.bento-content-row .bento-text {
    flex: 1;
    padding-right: 24px;
}

.bento-content-row .bento-link {
    flex-shrink: 0;
}

/* Tamaños del Bento Grid */
.bento-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Marquee de servicios */
.services-marquee {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

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

/* Responsive Bento */
@media (max-width: 1200px) {
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .showcase-header-right {
        flex: none;
        max-width: 500px;
    }

    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-featured,
    .bento-medium,
    .bento-wide,
    .bento-small {
        grid-column: span 1;
        min-height: 300px;
    }

    .bento-featured {
        min-height: 400px;
    }

    .bento-content {
        padding: 24px;
    }

    .bento-content p {
        opacity: 1;
        transform: translateY(0);
    }

    .bento-link-icon {
        opacity: 1;
        transform: translate(0, 0);
    }

    .marquee-track span {
        font-size: 1rem;
    }
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.process .section-header {
    margin-bottom: 80px;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    z-index: 0;
}

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

.step-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.step-marker span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step:hover .step-marker {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.process-step:hover .step-marker span {
    -webkit-text-fill-color: #fff;
    background: none;
}

.step-content {
    max-width: 200px;
    margin: 0 auto;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 34, 140, 0.1);
    border-radius: var(--radius-sm);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

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

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.8) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(214, 34, 140, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: #fff;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(214, 34, 140, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-cta:hover .btn-shine {
    left: 100%;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: var(--color-darker);
}

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

.contact-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

.contact-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    bottom: -100px;
    right: -100px;
}

.contact-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    position: sticky;
    top: 120px;
}

.info-header {
    margin-bottom: 40px;
}

.info-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.info-card:hover {
    background: rgba(214, 34, 140, 0.05);
    border-color: rgba(214, 34, 140, 0.2);
    transform: translateX(8px);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
}

.info-card-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Mini Map */
.info-map {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.8;
    transition: var(--transition-base);
}

.info-map:hover iframe {
    filter: grayscale(0);
    opacity: 1;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.map-link:hover {
    background: rgba(214, 34, 140, 0.1);
    color: var(--color-primary);
}

.map-link svg {
    width: 16px;
    height: 16px;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.form-glass {
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

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

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

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 20px 16px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition-base);
    outline: none;
}

.input-wrapper textarea {
    resize: none;
    min-height: 120px;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
}

.input-wrapper select option {
    background: #1a1a2e;
    color: #ffffff;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-text-muted);
    pointer-events: none;
}

.input-wrapper label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-base);
}

.input-wrapper textarea ~ label {
    top: 20px;
    transform: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--color-primary);
    background: rgba(214, 34, 140, 0.05);
}

.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label,
.input-wrapper select:focus ~ label,
.input-wrapper select:valid ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.input-wrapper input:focus ~ .input-highlight,
.input-wrapper select:focus ~ .input-highlight,
.input-wrapper textarea:focus ~ .input-highlight {
    width: 100%;
}

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(214, 34, 140, 0.3);
}

.btn-submit .btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px) rotate(-45deg);
}

.btn-loading {
    position: absolute;
    display: none;
    gap: 4px;
}

.btn-loading span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: loading 1s ease-in-out infinite;
}

.btn-loading span:nth-child(2) { animation-delay: 0.2s; }
.btn-loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loading {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0.5; }
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    opacity: 0;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-footer);
    border-top: 1px solid rgba(225, 12, 12, 0.999);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(209, 16, 16, 0.879);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 5, 5, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-muted);
    transition: var(--transition-base);
}

.social-link:hover svg {
    fill: #fff;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    padding: 8px 0;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-address {
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* =====================================================
   TOAST NOTIFICATION
   ===================================================== */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-surface);
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 10000;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 150, 0.15);
    border-radius: 50%;
}

.toast-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00C896;
}

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

.toast-content strong {
    font-size: 1rem;
    color: var(--color-text);
}

.toast-content span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-visual {
        grid-column: 1;
        grid-row: auto;
        order: -1;
    }

    .visual-card {
        min-height: 400px;
    }

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

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

    .contact-info {
        position: static;
    }

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

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

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

    .timeline-line {
        display: none;
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

    .step-marker {
        margin: 0;
        flex-shrink: 0;
    }

    .step-content {
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        flex-direction: column;
        gap: 8px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 16px 20px;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(214, 34, 140, 0.1);
    }

    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

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

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .stat-card {
        min-width: 100%;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

    .form-glass {
        padding: 32px 24px;
    }

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

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

    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .title-outline {
        -webkit-text-stroke: 1px var(--color-text);
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .visual-badge {
        width: 100px;
        height: 100px;
        right: -10px;
    }

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

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

    .step-marker {
        width: 60px;
        height: 60px;
    }

    .step-marker span {
        font-size: 1.25rem;
    }
}

/* Accessibility */
@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;
    }
}

/* Print */
@media print {
    .header,
    .cursor,
    .cursor-follower,
    .scroll-indicator,
    .toast {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    section {
        page-break-inside: avoid;
    }
}
