/* ============================================
   DISEÑO 100% NUEVO - VERDE ESMERALDA/CIAN/TURQUESA
   Estilo Geométrico Minimalista con Morphing Shapes
   ============================================ */

:root {
    /* Colores únicos - Verde Esmeralda/Cian/Turquesa (NUNCA USADOS) */
    --emerald: #10B981;
    --emerald-dark: #059669;
    --emerald-light: #34D399;
    --cyan: #06B6D4;
    --cyan-dark: #0891B2;
    --cyan-light: #22D3EE;
    --teal: #14B8A6;
    --teal-dark: #0D9488;
    --teal-light: #5EEAD4;
    --navy-deep: #0F172A;
    --navy-medium: #1E293B;
    --navy-light: #334155;
    
    /* Fondos */
    --bg-primary: #0A0E1A;
    --bg-secondary: #0F172A;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-glass: rgba(16, 185, 129, 0.05);
    
    /* Texto */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    /* Efectos */
    --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.4);
    --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.4);
    --glow-teal: 0 0 25px rgba(20, 184, 166, 0.4);
    --glow-strong: 0 0 50px rgba(16, 185, 129, 0.6);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #06B6D4 50%, #14B8A6 100%);
    --gradient-secondary: linear-gradient(135deg, #34D399 0%, #22D3EE 100%);
    --gradient-bg: radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
}

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

body {
    font-family: 'Space Grotesk', 'JetBrains Mono', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: var(--gradient-bg);
    overflow-x: hidden;
    position: relative;
}

/* Líneas animadas de fondo */
.animated-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.line {
    position: absolute;
    background: var(--gradient-primary);
    animation: line-move 20s linear infinite;
}

.line-1 {
    width: 1px;
    height: 100%;
    left: 10%;
    animation-delay: 0s;
}

.line-2 {
    width: 1px;
    height: 100%;
    left: 30%;
    animation-delay: 5s;
}

.line-3 {
    width: 1px;
    height: 100%;
    left: 50%;
    animation-delay: 10s;
}

.line-4 {
    width: 1px;
    height: 100%;
    left: 70%;
    animation-delay: 15s;
}

@keyframes line-move {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.geo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVBAR GEOMÉTRICO
   ============================================ */
.geo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1.5rem 0;
}

.geo-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.geo-nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.geo-logo-shape {
    width: 50px;
    height: 50px;
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--emerald);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-logo-shape.small {
    width: 40px;
    height: 40px;
}

.shape-inner {
    width: 60%;
    height: 60%;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: shape-rotate 10s linear infinite;
}

@keyframes shape-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.geo-brand-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.geo-nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.geo-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.geo-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.geo-nav-link:hover::after,
.geo-nav-link.active::after {
    width: 100%;
}

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

.geo-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.geo-nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--emerald);
    transition: all 0.3s ease;
}

/* ============================================
   HERO GEOMÉTRICO
   ============================================ */
.geo-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.morphing-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.morph-shape {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: morph 15s ease-in-out infinite;
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translate(0, 0); }
    25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(20px, -20px); }
    50% { border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%; transform: translate(-20px, 20px); }
    75% { border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%; transform: translate(20px, 20px); }
}

.geo-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.geo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: var(--glow-emerald);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.geo-hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

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

.geo-hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.geo-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.geo-btn-primary {
    position: relative;
    padding: 1rem 2.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--emerald);
    border-radius: 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%, 0% 30%);
    overflow: hidden;
}

.geo-btn-primary:hover {
    background: var(--emerald);
    box-shadow: var(--glow-emerald);
    transform: translateY(-3px);
}

.btn-geo-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyan);
    clip-path: polygon(10% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%, 0% 30%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.geo-btn-primary:hover .btn-geo-border {
    opacity: 1;
    animation: border-pulse 1.5s ease-in-out infinite;
}

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

.geo-btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--cyan);
    border-radius: 0;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    clip-path: polygon(0% 0%, 90% 0%, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
}

.geo-btn-secondary:hover {
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

.geo-hero-stats {
    display: flex;
    gap: 2rem;
}

.geo-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.geo-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.geo-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.grid-line {
    position: absolute;
    background: var(--emerald);
    opacity: 0.3;
}

.grid-line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 33%;
    animation: grid-pulse 3s ease-in-out infinite;
}

.grid-line:nth-child(2) {
    width: 100%;
    height: 1px;
    top: 66%;
    animation: grid-pulse 3s ease-in-out infinite 1s;
}

.grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    left: 50%;
    animation: grid-pulse 3s ease-in-out infinite 2s;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.geo-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.geo-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 2px solid var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--emerald);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hex-float 6s ease-in-out infinite;
    box-shadow: var(--glow-emerald);
}

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

.elem-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.elem-3 {
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes hex-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(60deg); }
}

/* ============================================
   SECCIÓN DE CONFIANZA
   ============================================ */
.geo-trust {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.geo-trust-content {
    text-align: center;
}

.geo-trust-text {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.geo-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.geo-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    min-width: 200px;
    transition: all 0.3s ease;
}

.geo-badge-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-emerald);
    border-color: var(--emerald);
}

.badge-geo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.geo-badge-item span {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   SERVICIOS GEOMÉTRICOS
   ============================================ */
.geo-services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.geo-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.geo-section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    clip-path: polygon(10% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%, 0% 30%);
}

.geo-section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.geo-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.geo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.geo-service-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
    text-align: center;
    transition: all 0.5s ease;
}

.geo-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-strong);
    border-color: var(--emerald);
}

.service-geo-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    opacity: 0.3;
}

.service-geo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-geo-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-geo-desc {
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-geo-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.geo-service-card:hover .service-geo-accent {
    transform: scaleX(1);
}

/* ============================================
   ABOUT ZIGZAG GEOMÉTRICO
   ============================================ */
.geo-about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.geo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.geo-about-visual {
    position: relative;
    height: 500px;
}

.geo-about-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-geo-shape {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.2;
    animation: shape-morph 10s ease-in-out infinite;
}

.shape-a {
    width: 250px;
    height: 250px;
    top: 0;
    left: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.shape-b {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 0;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 2s;
}

.shape-c {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-delay: 4s;
}

@keyframes shape-morph {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.geo-about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(10% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%, 0% 30%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    box-shadow: var(--glow-emerald);
}

.geo-about-content {
    animation: fade-in-right 1s ease-out;
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.geo-about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.geo-about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.geo-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-geo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-geo-content {
    flex: 1;
}

.feature-geo-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-geo-content span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   PROCESO TIMELINE GEOMÉTRICO
   ============================================ */
.geo-process {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.geo-process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}

.geo-process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: 0;
}

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

.process-geo-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: var(--glow-emerald);
}

.process-geo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--emerald);
}

.process-geo-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-geo-desc {
    color: var(--text-secondary);
    line-height: 1.8;
}

.geo-process-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
    flex-shrink: 0;
}

/* ============================================
   BENEFICIOS GEOMÉTRICOS
   ============================================ */
.geo-benefits {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.geo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.geo-benefit-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
    text-align: center;
    transition: all 0.5s ease;
}

.geo-benefit-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--glow-strong);
    border-color: var(--emerald);
}

.benefit-geo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.benefit-geo-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.benefit-geo-desc {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CONTACTO GEOMÉTRICO
   ============================================ */
.geo-contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.geo-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.geo-contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.geo-contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.geo-contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
    transition: all 0.3s ease;
}

.geo-contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--glow-emerald);
    border-color: var(--emerald);
}

.contact-geo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-geo-content h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.contact-geo-content p {
    color: var(--text-secondary);
}

.geo-contact-form {
    animation: fade-in-right 1s ease-out;
}

.geo-form {
    padding: 2.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
}

.geo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.geo-form-group {
    margin-bottom: 1.5rem;
}

.geo-form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.geo-form-group input,
.geo-form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
}

.geo-form-group input:focus,
.geo-form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: var(--glow-emerald);
}

.geo-form-group input::placeholder,
.geo-form-group textarea::placeholder {
    color: var(--text-muted);
}

.geo-btn-submit {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--emerald);
    border-radius: 0;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%, 0% 30%);
    overflow: hidden;
}

.geo-btn-submit:hover {
    background: var(--emerald);
    box-shadow: var(--glow-emerald);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER GEOMÉTRICO
   ============================================ */
.geo-footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
}

.geo-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.geo-footer-brand {
    max-width: 400px;
}

.geo-footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.geo-footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.geo-social-links {
    display: flex;
    gap: 1rem;
}

.geo-social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.geo-social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) rotate(60deg);
    box-shadow: var(--glow-emerald);
}

.geo-footer-links h4,
.geo-footer-legal h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.geo-footer-links ul,
.geo-footer-legal ul {
    list-style: none;
}

.geo-footer-links ul li,
.geo-footer-legal ul li {
    margin-bottom: 0.8rem;
}

.geo-footer-links ul li a,
.geo-footer-legal ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.geo-footer-links ul li a:hover,
.geo-footer-legal ul li a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.geo-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .geo-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .geo-hero-visual {
        margin-top: 3rem;
    }
    
    .geo-about-grid {
        grid-template-columns: 1fr;
    }
    
    .geo-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .geo-footer-content {
        grid-template-columns: 1fr;
    }
    
    .geo-process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .geo-process-timeline::before {
        display: none;
    }
    
    .geo-process-connector {
        width: 2px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .geo-nav-links {
        display: none;
    }
    
    .geo-nav-toggle {
        display: flex;
    }
    
    .geo-hero-title {
        font-size: 2.5rem;
    }
    
    .geo-section-title {
        font-size: 2rem;
    }
    
    .geo-services-grid {
        grid-template-columns: 1fr;
    }
    
    .geo-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .geo-form-row {
        grid-template-columns: 1fr;
    }
}
