﻿/*
Theme Name: Run Up Agency
Theme URI: https://runup.digital
Author: Run Up
Description: Tema personalizado para Run Up Agency - Growth Marketing 360. Sin dependencias de plugins.
Version: 1.0
Text Domain: runup
*/
/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --bg:         #080912;
    --bg-2:       #0d0f1e;
    --text:       #f0f0f5;
    --muted:      #8b8fa8;
    --primary:    #FD00FF; /* Magenta neón Palermo */
    --secondary:  #6300FF; /* Violeta profundo Palermo */
    --accent:     #01FFD8;
    --google:     #4285F4;
    --glass-bg:   rgba(255,255,255,0.03);
    --glass-brd:  rgba(255,255,255,0.1);
    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  28px;
    --font-head:  'Outfit', sans-serif;
    --font-body:  'Inter', sans-serif;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight:700; line-height:1.15; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }

.container { max-width:1200px; margin:0 auto; padding:0 2rem; }

/* ============================================
   GRADIENT UTILITIES
   ============================================ */
/* Gradient text — shimmer sweep on hover */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    transition: transform 0.4s var(--ease);
    display: inline-block;
}
.gradient-text:hover {
    transform: scale(1.03);
    animation: gradient-shimmer 2s linear infinite;
}

@keyframes gradient-shimmer {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Hero gradient text same effect */
.hero-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 33%, #ff80e8 66%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    transition: transform 0.4s var(--ease), text-shadow 0.4s var(--ease);
    display: inline-block;
}
.hero-gradient:hover {
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(197,0,229,0.4);
    animation: gradient-shimmer 3s linear infinite;
}

/* google-text hover */
.google-text {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    transition: transform 0.4s var(--ease);
    display: inline-block;
}
.google-text:hover {
    transform: scale(1.05);
    animation: gradient-shimmer 2.5s linear infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-head);
    box-shadow: 0 0 30px rgba(197,0,229,0.25);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(197,0,229,0.45);
    color: #fff;
}
.btn-primary i { transition: transform 0.3s var(--ease); }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-head);
    border: 1px solid var(--glass-brd);
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.25);
    background: var(--glass-bg);
}

/* WhatsApp button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-head);
    box-shadow: 0 0 30px rgba(37,211,102,0.25);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    white-space: nowrap;
}
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(37,211,102,0.45);
    color: #fff;
}
.btn-whatsapp i { font-size: 1.1rem; }

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-head);
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 5%;
    z-index: 1000;
    background: rgba(8,9,18,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-brd);
    transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(8,9,18,0.95);
}

.logo h2 {
    font-size: 1.8rem;
    letter-spacing: -1px;
    font-weight: 800;
}
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--muted);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.btn-primary::after { display:none; }
.nav-links a.btn-primary { color: #fff; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity:0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    gap: 3rem;
    background: #080912;
}

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

/* Tracking cursor light for maximum interactivity */
.cursor-light {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(253, 0, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: soft-light;
    filter: blur(80px);
    will-change: transform;
}

.hero-bg-layer {
    position: absolute;
    inset: -20%;
    will-change: transform;
    opacity: 0.7;
    filter: blur(60px);
}

.layer-1 {
    background: linear-gradient(135deg, #FD00FF 0%, transparent 60%);
    clip-path: polygon(0 0, 80% 0, 20% 100%, 0 100%);
    z-index: 1;
}
.layer-2 {
    background: linear-gradient(45deg, #6300FF 0%, transparent 60%);
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 5% 100%);
    opacity: 0.5;
    z-index: 2;
}
.layer-3 {
    background: radial-gradient(circle, #FD00FF 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

.hero-bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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='1'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 10;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: none;
}

.hero-content > p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.7;
}

.badge-partner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(66,133,244,0.1);
    color: var(--google);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(66,133,244,0.25);
    letter-spacing: 0.5px;
    font-family: var(--font-head);
}

.hero-visual {
    position: relative;
    height: 460px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-orb {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,0,229,0.2) 0%, rgba(255,0,212,0.1) 50%, transparent 70%);
    filter: blur(40px);
    animation: pulse-orb 8s infinite alternate;
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem 2.2rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: float-card 6s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
}

.hero-card:hover {
    transform: translateY(-20px) scale(1.08) rotate(2deg);
    border-color: #FD00FF;
    background: rgba(253, 0, 255, 0.08);
    box-shadow: 0 60px 120px rgba(253, 0, 255, 0.3);
}

.hero-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(253, 0, 255, 0.4);
}

.card-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero-card:hover .card-num {
    transform: scale(1.1);
}
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.card-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}
.card-label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

.card-roi { top: 10%; right: 5%; animation-delay: 0s; }
.card-roi .card-icon { background: rgba(197,0,229,0.2); color: var(--primary); }
.card-roi .card-num { color: var(--primary); }

.card-seo { bottom: 30%; left: 2%; animation-delay: 2s; }
.card-seo .card-icon { background: rgba(255,185,0,0.2); color: #ffb900; }
.card-seo .card-num { color: #ffb900; }

.card-clients { bottom: 10%; right: 10%; animation-delay: 4s; }
.card-clients .card-icon { background: rgba(0,229,197,0.2); color: var(--accent); }
.card-clients .card-num { color: var(--accent); }

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

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    font-family: var(--font-head);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%,100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.marquee-wrapper {
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 0.9rem 0;
    position: relative;
    z-index: 2;
}
.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee-scroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-track span {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}
.marquee-track .dot {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   BENTO SERVICES
   ============================================ */
.bento-section {
    padding: 8rem 0;
    position: relative;
}
.bento-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(circle, rgba(197,0,229,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 1.2rem;
}

/* Card base */
.bento-card {
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-card:hover { transform: translateY(-8px); }

/* Grid placement */
.bento-seo     { grid-column: 1 / 3; grid-row: 1 / 2; }
.bento-ads     { grid-column: 3 / 5; grid-row: 1 / 2; }
.bento-stat    { grid-column: 5 / 7; grid-row: 1 / 2; }
.bento-social  { grid-column: 1 / 3; grid-row: 2 / 3; }
.bento-web     { grid-column: 3 / 5; grid-row: 2 / 3; }
.bento-support { grid-column: 5 / 7; grid-row: 2 / 3; }

/* Card color variants */
.bento-seo {
    background: linear-gradient(135deg, #1a0530 0%, #2d0a4e 100%);
    border: 1px solid rgba(197,0,229,0.2);
    box-shadow: 0 20px 60px rgba(197,0,229,0.1);
}
.bento-seo:hover { box-shadow: 0 30px 80px rgba(197,0,229,0.2); }

.bento-ads {
    background: linear-gradient(135deg, #0a1830 0%, #0f2545 100%);
    border: 1px solid rgba(66,133,244,0.2);
    box-shadow: 0 20px 60px rgba(66,133,244,0.08);
}
.bento-ads:hover { box-shadow: 0 30px 80px rgba(66,133,244,0.18); }

.bento-stat {
    background: linear-gradient(135deg, #05141a 0%, #0a2530 100%);
    border: 1px solid rgba(0,229,197,0.2);
    box-shadow: 0 20px 60px rgba(0,229,197,0.08);
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bento-stat:hover { box-shadow: 0 30px 80px rgba(0,229,197,0.18); }

.bento-social {
    background: linear-gradient(135deg, #1a1000 0%, #2d1f08 60%, #1a0e00 100%);
    border: 1px solid rgba(255,185,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.bento-social:hover { box-shadow: 0 30px 80px rgba(255,185,0,0.25); }

.bento-web {
    background: linear-gradient(135deg, #05001a 0%, #10003d 100%);
    border: 1px solid rgba(150,100,255,0.2);
    box-shadow: 0 20px 60px rgba(150,100,255,0.08);
}
.bento-web:hover { box-shadow: 0 30px 80px rgba(150,100,255,0.18); }

.bento-support {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    box-shadow: 0 20px 60px rgba(197,0,229,0.25);
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.bento-support:hover { box-shadow: 0 30px 80px rgba(197,0,229,0.45); }

/* Bento card elements */
.bento-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
    z-index: 2;
}

/* Icon now INSIDE bento-content (in-flow, not absolute) */
.bento-icon-big {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
    transition: opacity 0.4s, transform 0.4s var(--ease);
    display: block;
}
.bento-card:hover .bento-icon-big { opacity: 0.7; transform: scale(1.1); }

.bento-seo .bento-icon-big  { color: var(--primary); }
.bento-ads .bento-icon-big  { color: var(--google); }
.bento-social .bento-icon-big { color: #ffb900; }
.bento-web .bento-icon-big  { color: #9664ff; }

.bento-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.bento-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
}
.bento-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.2rem;
    line-height: 1.65;
    flex: 1;
}
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-head);
    color: rgba(255,255,255,0.5);
    transition: color 0.3s, gap 0.3s;
    margin-top: auto;
    align-self: flex-start;
}
.bento-card:hover .bento-link { color: #fff; gap: 10px; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: wa-pulse 2s ease-in-out infinite;
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.15);
    animation: wa-pulse 2s ease-in-out infinite 0.4s;
}
@keyframes wa-pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 50px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,12,25,0.95);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-head);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid rgba(37,211,102,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(-50%) translateX(8px);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Stat card */
.stat-big-num {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-big-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}
.stat-big-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    max-width: 200px;
    line-height: 1.6;
}

/* Support card */
.support-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.bento-support h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.bento-support p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; line-height: 1.6; }

/* Deco circle */
.bento-deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,0,229,0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    border-top: 1px solid var(--glass-brd);
    border-bottom: 1px solid var(--glass-brd);
    position: relative;
    overflow: hidden;
}
.partner-section::before {
    content: '';
    position: absolute;
    left: -100px; top: 50%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66,133,244,0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.partner-text .section-tag { display: block; text-align: left; }
.partner-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
.partner-text p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.benefits-list { display: flex; flex-direction: column; gap: 1rem; }
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
}
.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(52,168,83,0.15);
    color: #34A853;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   PREMIUM GOOGLE PARTNER BADGE
   ============================================ */
.partner-badge-container { display: flex; justify-content: center; }

.badge-premium {
    position: relative;
    width: 320px;
    padding: 3rem 2.5rem;
    background: rgba(10,12,25,0.8);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 1px solid rgba(66,133,244,0.15);
    box-shadow:
        0 0 0 1px rgba(66,133,244,0.08),
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.badge-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(66,133,244,0.2),
        0 40px 100px rgba(0,0,0,0.6),
        0 0 60px rgba(66,133,244,0.1),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Glowing background blur inside card */
.badge-premium::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66,133,244,0.12) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}
.badge-premium::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -20px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,168,83,0.1) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
    z-index: 0;
}
.badge-premium > * { position: relative; z-index: 1; }

/* Animated rings */
.badge-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(66,133,244,0.12);
    pointer-events: none;
    z-index: 0;
    animation: ring-pulse 4s ease-in-out infinite;
}
.ring-1 { width: 160px; height: 160px; top: -40px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.ring-2 { width: 240px; height: 240px; top: -80px; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; opacity:0.6; }
.ring-3 { width: 320px; height: 320px; top: -120px; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; opacity:0.3; }
@keyframes ring-pulse {
    0%,100% { opacity: 0.1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.4; transform: translateX(-50%) scale(1.05); }
}

/* Google G icon */
.badge-g-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.g-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}
.g-segment {
    position: absolute;
    width: 50%; height: 50%;
    opacity: 0.15;
}
.g-blue  { top:0; left:0; background:#4285F4; border-radius: 50% 0 0 0; }
.g-red   { top:0; right:0; background:#EA4335; border-radius: 0 50% 0 0; }
.g-yellow{ bottom:0; left:0; background:#FBBC05; border-radius: 0 0 0 50%; }
.g-green { bottom:0; right:0; background:#34A853; border-radius: 0 0 50% 0; }

/* Partner text group */
.badge-label-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.badge-company {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.badge-tier {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.badge-year {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Pill badges */
.badge-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(66,133,244,0.1);
    border: 1px solid rgba(66,133,244,0.2);
    color: rgba(255,255,255,0.7);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.badge-pill i { color: #4285F4; font-size: 0.7rem; }
.badge-pill:hover {
    background: rgba(66,133,244,0.2);
    border-color: rgba(66,133,244,0.4);
    color: #fff;
}

/* ============================================
   PROCESS — 4 STEPS
   ============================================ */
.process-section {
    padding: 8rem 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.process-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(197,0,229,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 1rem;
}

/* Horizontal connector */
.process-connector {
    position: absolute;
    top: 42px;
    left: calc(12.5% + 22px);
    right: calc(12.5% + 22px);
    height: 2px;
    background: var(--glass-brd);
    z-index: 0;
}
.connector-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(197,0,229,0.5);
}
.connector-fill.active { width: 100%; }

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.step-dot {
    width: 84px;
    height: 84px;
    position: relative;
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease);
}
.process-step:hover .step-dot { transform: scale(1.1); }

.step-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(197,0,229,0.2), rgba(255,0,212,0.1));
    border: 2px solid rgba(197,0,229,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 30px rgba(197,0,229,0.5);
}

.step-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(197,0,229,0.2);
    animation: spin-ring 20s linear infinite;
    z-index: 1;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }

.step-num {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 220px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 5rem 0;
    background: var(--bg);
    border-top: 1px solid var(--glass-brd);
    border-bottom: 1px solid var(--glass-brd);
    position: relative;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,0,229,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr) repeat(3, 1px);
    align-items: center;
    gap: 0;
}

/* We use flexbox instead - simpler */
.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item { text-align: center; }
.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.counter {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 0.5rem;
    font-family: var(--font-head);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--glass-brd);
}

/* ============================================
   CASES SECTION
   ============================================ */
.cases-section {
    padding: 8rem 0;
    position: relative;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.case-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,0,229,0.05), rgba(255,0,212,0.03));
    opacity: 0;
    transition: opacity 0.4s;
}
.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,0,229,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.case-card:hover::before { opacity: 1; }

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--font-head);
    margin-bottom: 1rem;
}
.case-metric {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.case-metric-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}
.case-card > p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--primary);
    transition: gap 0.3s;
}
.case-card:hover .case-link { gap: 10px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 8rem 0;
    overflow: hidden;
    background: radial-gradient(ellipse at left, rgba(255,0,212,0.05) 0%, transparent 60%);
}

.testimonials-slider {
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    cursor: grab;
    padding-bottom: 2rem;
}
.testimonials-slider::-webkit-scrollbar {
    display: none;
}
.testimonials-slider:active { cursor: grabbing; }

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.testimonial-card {
    width: 360px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex-shrink: 0;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
    white-space: normal;
    scroll-snap-align: start;
}
.testimonial-card:hover {
    border-color: rgba(197,0,229,0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testi-controls button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    color: var(--text);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.testi-controls button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}
.quote {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-brd);
    padding-top: 1.2rem;
}
.client-info img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(197,0,229,0.4);
    flex-shrink: 0;
}
.client-info h4 { font-size: 1rem; margin-bottom: 2px; font-weight: 700; }
.client-info span { font-size: 0.8rem; color: var(--muted); }

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
    padding: 8rem 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.founder-inner {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}
.founder-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(197,0,229,0.15);
    flex: 0 0 42%;
    max-width: 42%;
}
.founder-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}
.founder-media:hover img { transform: scale(1.05); }
.founder-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,9,18,0.8), transparent 50%);
    pointer-events: none;
}
.founder-text h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.founder-text p {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ============================================
   STORY SECTION (NOSOTROS)
   ============================================ */
.story-section {
    padding: 6rem 0;
}
.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}
.story-row:last-child { margin-bottom: 0; }
.story-row.reverse { direction: rtl; }
.story-row.reverse > * { direction: ltr; }

.story-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: var(--bg-2);
}
.story-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}
.story-img-container:hover img {
    transform: scale(1.05);
}
.story-text h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.story-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================
   PORTFOLIO SHOWCASE (CASOS.HTML)
   ============================================ */
.portfolio-showcase {
    overflow: hidden;
}
.portfolio-card {
    position: relative;
    background: rgba(13, 15, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    margin-bottom: 4rem;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.portfolio-card:last-child { margin-bottom: 0; }
.portfolio-card:hover {
    border-color: rgba(197, 0, 229, 0.4);
    transform: translateY(-5px);
}
.portfolio-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.5s;
}
.portfolio-card:hover .portfolio-glow { opacity: 0.3; }
.portfolio-glow-magenta { background: var(--primary); }
.portfolio-glow-cyan { background: var(--cyan); }
.portfolio-glow-orange { background: var(--orange); }
.portfolio-glow-blue { background: var(--google); }

.portfolio-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.portfolio-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin: 1rem 0 0.5rem;
    color: var(--text);
    line-height: 1.1;
}
.portfolio-services {
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 4rem;
    align-items: start;
}
.portfolio-metrics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.metric-box {
    background: rgba(0,0,0,0.2);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid currentColor;
    color: var(--primary);
}
.metric-num {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}
.metric-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}
.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.detail-block h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.detail-block p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE (CONTACTO.HTML)
   ============================================ */
.contact-page-section {
    padding: 6rem 0;
    background: var(--bg-1);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.contact-info-col h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.contact-desc {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}
.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(197, 0, 229, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(197, 0, 229, 0.2);
}
.info-text h3 {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.info-text a, .info-text p {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}
.info-text a:hover {
    color: var(--primary);
}

.contact-trust {
    padding-top: 3rem;
    border-top: 1px solid var(--glass-brd);
}
.trust-badge-img {
    max-width: 200px;
    margin-bottom: 1.5rem;
    display: block;
}
.trust-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}
.trust-link:hover { color: var(--text); }

/* Premium Form */
.premium-form {
    background: var(--bg-2);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.form-header {
    margin-bottom: 2.5rem;
}
.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.form-header p { color: var(--muted); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}
.req { color: var(--primary); }

.premium-form input,
.premium-form textarea,
.premium-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.premium-form input:focus,
.premium-form textarea:focus,
.premium-form select:focus {
    outline: none;
    border-color: rgba(197, 0, 229, 0.5);
    box-shadow: 0 0 15px rgba(197, 0, 229, 0.15);
}

.select-wrapper {
    position: relative;
}
.select-chevron {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}
.premium-form select {
    appearance: none;
    cursor: pointer;
}
.premium-form select option {
    background: var(--bg-1);
    color: var(--text);
}

.form-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.form-footer-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(99,0,255,0.08) 50%, var(--bg) 100%);
}
.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
}

.cta-inner { position: relative; z-index: 1; }
.cta-pretitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-family: var(--font-head);
}
.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}
.cta-section p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.large-btn { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(5,6,12,0.98);
    border-top: 1px solid var(--glass-brd);
    padding: 5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h2 { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 800; }
.footer-brand span { color: var(--primary); }
.footer-brand p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--muted);
    transition: all 0.3s var(--ease);
}
.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197,0,229,0.35);
}

.footer-nav h3, .footer-services h3, .footer-contact h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.4rem;
    font-family: var(--font-head);
}
.footer-nav ul li, .footer-services ul li { margin-bottom: 0.7rem; }
.footer-nav a, .footer-services a {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    transition: color 0.3s;
}
.footer-nav a:hover, .footer-services a:hover { color: var(--text); }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}
.footer-contact i { color: var(--primary); width: 16px; }

.footer-bottom {
    border-top: 1px solid var(--glass-brd);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS — data-anim
   ============================================ */
[data-anim] {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-anim="fade-up"]   { transform: translateY(40px); }
[data-anim="fade-right"]{ transform: translateX(-40px); }
[data-anim="fade-left"] { transform: translateX(40px); }
[data-anim="zoom-in"]   { transform: scale(0.85); }
[data-anim].in-view {
    opacity: 1;
    transform: none;
}

/* Bento card entry */
.bento-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
                box-shadow 0.4s var(--ease);
}
.bento-card.in-view { opacity: 1; transform: translateY(0); }
.bento-card:hover { transform: translateY(-8px) !important; }

/* Process step entry */
.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.process-step.in-view { opacity: 1; transform: translateY(0); }


/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
    min-height: 50vh;
    padding: 10rem 5% 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
}
.page-hero .hero-bg { bottom: 0; }
.page-hero .section-tag { margin-bottom: 0.5rem; }
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.2rem;
}
.page-hero p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES DETAILED (PREMIUM CARDS)
   ============================================ */
.services-detail {
    padding: 6rem 0 2rem;
    position: relative;
    background: radial-gradient(circle at top right, rgba(197,0,229,0.04), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0,229,197,0.03), transparent 50%);
}

.premium-service-card {
    display: flex;
    flex-direction: row;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    margin: 0 auto 5rem;
    max-width: 1050px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.premium-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

/* Glowing edge based on service color */
.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: var(--service-color, var(--primary));
    box-shadow: 0 0 15px var(--service-color, var(--primary));
    opacity: 0.8;
}

.psc-content {
    flex: 1;
    padding: 4.5rem;
    z-index: 2;
    background: linear-gradient(90deg, rgba(8,9,18,0.7) 0%, transparent 100%);
}
.psc-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.15;
}
.psc-content p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 90%;
}

.psc-visual {
    width: 32%;
    background: linear-gradient(135deg, rgba(255,255,255,0.01), rgba(255,255,255,0.04));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-left: 1px solid var(--glass-brd);
}

.psc-blob {
    position: absolute;
    width: 150px; height: 150px;
    background: var(--service-color, var(--primary));
    filter: blur(60px);
    opacity: 0.15;
    animation: pulse-orb 6s infinite alternate;
}

.psc-icon {
    font-size: 3.5rem;
    color: var(--service-color, var(--primary));
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.psc-stat {
    position: relative;
    z-index: 2;
    text-align: center;
}
.psc-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-head);
    color: #fff;
    line-height: 1;
}
.psc-stat-label {
    font-size: 0.8rem;
    color: var(--service-color, var(--primary));
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-weight: 700;
}

/* Reusable benefits list */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}
.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(197,0,229, 0.15);
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Visuals removed since replaced by psc- classes */

/* ============================================
   GLOBAL INTERACTIVE HOVER EFFECTS (RUN UP)
   ============================================ */
.header-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(66,133,244,0.12);
    border: 1px solid rgba(66,133,244,0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-head);
    color: var(--google);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .header-partner-badge span { display: none; }
    .header-partner-badge { padding: 6px 10px; border-radius: 50%; }
}

/* 1. Logo Hover Effect (Glow & Scale) */
.logo .brand-logo {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}
.logo .brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(197, 0, 229, 0.6)) drop-shadow(0 0 30px rgba(197, 0, 229, 0.4));
}

/* 2. Distinctive Gradient Text Hover (Hue rotation) */
.gradient-text {
    transition: filter 0.4s ease, letter-spacing 0.4s ease;
}
.gradient-text:hover {
    filter: brightness(1.2) hue-rotate(20deg);
    letter-spacing: 1px;
}

/* 3. Primary Button Interactive Glow */
.btn-primary {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(197, 0, 229, 0.5), 0 0 15px rgba(197, 0, 229, 0.3) inset;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.btn-primary:hover::after {
    left: 200%;
}

/* 4. Navbar Links Animated Underline */
.nav-links a {
    position: relative;
    padding-bottom: 5px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-links a.btn-primary::after { display: none; } /* Exclude button in nav */

/* 5. Photos & Images Enhanced Glow */
.story-img-container {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.story-img-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(197, 0, 229, 0.2), 0 0 0 1px rgba(197, 0, 229, 0.3);
}

/* 6. Bento Cards Magnetic Inner Glow */
.bento-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.bento-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(197, 0, 229, 0.15) inset;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .bento-seo, .bento-ads, .bento-stat,
    .bento-social, .bento-web, .bento-support {
        grid-column: auto;
        grid-row: auto;
    }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .process-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .partner-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .partner-text .section-tag { text-align: center; }
    .benefits-list { text-align: left; max-width: 400px; margin: 0 auto; }
    /* Founder & Story mobile */
    .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
    .founder-media { aspect-ratio: 16/9; max-width: 600px; margin: 0 auto; }
    
    .story-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }
    .story-row.reverse { direction: ltr; }
    .story-img-container { aspect-ratio: 16/9; }

    /* Portfolio Mobile */
    .portfolio-grid { grid-template-columns: 1fr; gap: 3rem; }
    .portfolio-card { padding: 2rem; margin-bottom: 2rem; }
    .metric-box { padding: 1.5rem; }

    /* Contact Mobile */
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .premium-form { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 900px) {
    .premium-service-card {
        flex-direction: column;
        margin-bottom: 3.5rem;
    }
    .psc-content {
        padding: 3rem 2rem;
        background: none; /* remove linear-gradient on mobile */
    }
    .psc-content p { max-width: 100%; }
    .psc-visual {
        width: 100%;
        padding: 4rem 2rem;
        border-left: none;
        border-top: 1px solid var(--glass-brd);
    }
    .premium-service-card::before {
        width: 100%; height: 4px; bottom: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 5% 3rem;
        text-align: center;
    }
    .hero-visual { display: none; }
    .hero-buttons { justify-content: center; }
    .hero-content > p { margin: 0 auto 2.5rem; }
    .badge-partner { margin-left: auto; margin-right: auto; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8,9,18,0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-brd);
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }

    .bento-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .stat-divider { display: none; }
    .cta-section h2 { letter-spacing: -1px; }
    .web-lab-grid.web-lab-desktop { display: none; }
    .web-lab-mobile { display: block; margin-top: 2rem; }
    .founder-inner--reversed { flex-direction: column; }
    .web-card-browser { height: 200px; }
}

/* ============================================
   DIGITAL LAB — WEB PORTFOLIO
   ============================================ */
.web-lab-section {
    padding: 6rem 0;
    background: var(--bg);
}

.web-lab-mobile {
    display: none;
}

.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    background: #0d0f1e;
    border: 10px solid #1a1c2d;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.phone-screen iframe {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -195px; /* Mitad de 390px */
    width: 390px;
    height: 1200px;
    border: none;
    transform: scale(0.77);
    transform-origin: top center;
    pointer-events: none;
    transition: top 10s ease-in-out;
}

.phone-mockup:hover .phone-screen iframe {
    top: -250px;
}

.phone-home-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    pointer-events: none;
}

.phone-info {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(13, 15, 30, 0.7);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}
.phone-info h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0.5rem 0 0.8rem;
}
.phone-info p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.web-lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.web-card {
    background: rgba(13, 15, 30, 0.7);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.web-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 0, 255, 0.35);
    box-shadow: 0 40px 80px rgba(253, 0, 255, 0.12);
}

.web-card-browser {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #0a0b15;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.browser-dots {
    display: flex;
    gap: 5px;
}
.browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    font-size: 0.75rem;
    color: var(--muted);
    background: rgba(255,255,255,0.05);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-family: monospace;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* The iframe preview with auto-scroll on hover */
.web-card-preview {
    position: relative;
    height: 224px;
    overflow: hidden;
    background: #0d0f1e;
}
.web-card-preview iframe {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -640px; /* Mitad de 1280px */
    width: 1280px;
    height: 1200px;
    border: none;
    transform: scale(0.32);
    transform-origin: top center;
    pointer-events: none;
    transition: top 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.web-card:hover .web-card-preview iframe {
    top: -400px;
}

.web-card-info {
    padding: 1.8rem;
}

.web-card-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-family: var(--font-head);
}

.web-card-info h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0 0.8rem;
    color: var(--text);
}

.web-card-info p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.web-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s ease;
    font-family: var(--font-head);
}
.web-card-link:hover { gap: 0.8rem; }

/* ============================================
   TEAM SECTION — NOSOTROS
   ============================================ */
.founder-inner--reversed {
    flex-direction: row-reverse;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-head);
    border: 1px solid transparent;
}
.badge-google {
    background: rgba(66,133,244,0.12);
    color: var(--google);
    border-color: rgba(66,133,244,0.3);
}
.badge-workana {
    background: rgba(255,185,0,0.12);
    color: #ffb900;
    border-color: rgba(255,185,0,0.3);
}
.badge-growth {
    background: rgba(253,0,255,0.1);
    color: var(--primary);
    border-color: rgba(253,0,255,0.25);
}

/* Photo Placeholder */
.founder-media--muted .photo-placeholder {
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(150,100,255,0.05);
    border: 2px dashed rgba(150,100,255,0.25);
    border-radius: var(--radius-lg);
    color: rgba(150,100,255,0.6);
    text-align: center;
    padding: 2rem;
}
.founder-media--muted .photo-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}
.founder-media--muted .photo-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(150,100,255,0.6);
}
.founder-media--muted .photo-placeholder p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9664ff;
    font-family: var(--font-head);
}

/* SEO & Mobile Fixes */
html, body { overflow-x: hidden !important; width: 100%; position: relative; }
#breadcrumbs { padding: 1rem 2rem; color: #ccc; font-size: 0.9rem; margin-top: 80px; }
#breadcrumbs a { color: var(--primary); text-decoration: none; }
#breadcrumbs span { color: #888; }
