/* =====================================================
   SISTEMA DE DISEÑO - vectum (Dark Luxury Tech)
   ===================================================== */

:root {
    /* Fondos */
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;

    /* Acento Primario: Azul Eléctrico */
    --primary-50:  #EFF6FF;
    --primary-100: #DBEAFE;
    --primary-200: #BFDBFE;
    --primary-300: #93C5FD;
    --primary-400: #60A5FA;
    --primary-500: #3B82F6;
    --primary-600: #2563EB;
    --primary-700: #1D4ED8;
    --primary-800: #1E40AF;
    --primary-900: #1E3A8A;
    --primary-RGB: 59, 130, 246; /* Para rgba() */

    /* Textos */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    /* Acentos Secundarios */
    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;

    /* Fuentes */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* =====================================================
   RESET Y BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-300) 50%, var(--primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.font-mono { font-family: var(--font-mono); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utilidades Layout */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 80px; } }

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* =====================================================
   COMPONENTES
   ===================================================== */

/* Glassmorphism */
.glass-card {
    background: linear-gradient(
        135deg,
        rgba(var(--primary-RGB), 0.08) 0%,
        rgba(var(--primary-RGB), 0.03) 50%,
        rgba(var(--primary-RGB), 0.08) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--primary-RGB), 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botones */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--primary-600) 0%,
        var(--primary-500) 30%,
        var(--primary-400) 60%,
        var(--primary-500) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    box-shadow: 
        0 0 0 1px rgba(var(--primary-RGB), 0.5),
        0 4px 24px rgba(var(--primary-RGB), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 
        0 0 0 2px rgba(var(--primary-RGB), 0.8),
        0 8px 40px rgba(var(--primary-RGB), 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 15px 31px;
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-RGB), 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(var(--primary-RGB), 0.1);
    border-color: var(--primary-400);
}

.btn-small { padding: 10px 20px; font-size: 0.875rem; border-radius: 8px; }
.btn-large { padding: 18px 40px; font-size: 1.125rem; }

.hover-text-primary:hover {
    color: var(--primary-400);
}

/* Glows */
.glow-primary {
    filter: drop-shadow(0 0 20px rgba(var(--primary-RGB), 0.6))
            drop-shadow(0 0 40px rgba(var(--primary-RGB), 0.4))
            drop-shadow(0 0 60px rgba(var(--primary-RGB), 0.3));
}

/* =====================================================
   ESTRUCTURA DE PÁGINA
   ===================================================== */

/* Partículas de Fondo */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--primary-500);
    animation: float-particle 20s infinite ease-in-out;
    will-change: transform, opacity;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(var(--primary-RGB), 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    padding: 16px 0;
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.logo img { height: 65px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { position: relative; font-weight: 500; color: var(--text-secondary); transition: color 0.3s ease; }
.nav-link:hover { color: var(--text-primary); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary-500); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }

.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger { width: 24px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; width: 100%; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px; color: var(--text-secondary); }
.hero-title { margin-bottom: 24px; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 540px; }
.hero-cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.sphere { width: 500px; height: 500px; position: relative; transform-style: preserve-3d; animation: float 6s ease-in-out infinite; }
.sphere-image { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 0 40px rgba(var(--primary-RGB), 0.5)); }
.sphere-inner { position: absolute; top: 10%; left: 10%; width: 80%; height: 80%; background: radial-gradient(circle, rgba(var(--primary-RGB), 0.2) 0%, transparent 70%); border-radius: 50%; z-index: 1; box-shadow: 0 0 100px rgba(var(--primary-RGB), 0.3); }

/* Social Proof (Marquee Infinito) */
.social-proof { padding-top: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; position: relative;}
.marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100vw;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-left: 80px;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
    opacity: 0.7;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.partner-logo { font-size: 1.75rem; font-weight: 800; font-family: var(--font-display); color: var(--text-tertiary); transition: all 0.4s ease; cursor: default; white-space: nowrap; }
.partner-logo:hover { color: var(--text-primary); text-shadow: 0 0 20px rgba(255,255,255,0.5); transform: scale(1.05); }

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

/* Secciones Generales */
.section-header { max-width: 700px; margin: 0 auto 60px; }
.section-subtitle { font-size: 1.125rem; color: var(--text-secondary); margin-top: 16px; }

/* Flip Cards (Servicios) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; perspective: 1000px; }

.service-card-flip { height: 480px; width: 100%; outline: none; cursor: pointer; perspective: 1000px; }
.service-card-inner { position: relative; width: 100%; height: 100%; text-align: left; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }

.service-card-flip:hover .service-card-inner,
.service-card-flip:focus .service-card-inner,
.service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.service-card-front {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(var(--primary-RGB), 0.2);
}

.service-card-front .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-flip:hover .service-image { transform: scale(1.05); }

.service-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}
.service-title-front { font-size: 1.375rem; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.service-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.feature-tag {
    font-size: 0.75rem; font-weight: 600; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em;
    padding: 6px 12px; background: rgba(var(--primary-RGB), 0.1); color: var(--primary-300); border-radius: 100px; border: 1px solid rgba(var(--primary-RGB), 0.2);
}

/* Showcase */
.showcase-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; overflow: hidden; padding: 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 8px; font-family: var(--font-mono); }
.stat-label { font-size: 0.875rem; color: var(--text-tertiary); font-weight: 500; }

.dashboard-preview { background: var(--bg-secondary); border-color: rgba(255,255,255,0.05); padding: 24px; }
.animated-pulse { animation: pulse-opacity 2s infinite ease-in-out; }

/* CTA */
.cta-card { padding: 80px 40px; border-color: rgba(var(--primary-RGB), 0.3); text-align: center; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(var(--primary-RGB), 0.3) 0%, transparent 70%); border-radius: 50%; filter: blur(40px); z-index: 0; pointer-events: none; }

/* Footer */
.footer { padding: 80px 0 40px; background-color: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }

/* =====================================================
   ANIMACIONES
   ===================================================== */

.animated-element {
    opacity: 0;
    will-change: transform, opacity;
}

.animate-in.fade-in { animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-in.scale-in { animation: scale-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards; }
.animate-in.fade-in-rotate { animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fade-in-rotate {
    0% { opacity: 0; transform: translateY(40px) rotate(-10deg) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-30px) rotate(1deg); }
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    25% { transform: translate(100px, -100px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-50px, -200px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(-100px, -100px) scale(1.2); opacity: 0.5; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(var(--primary-RGB), 0.5), 0 4px 24px rgba(var(--primary-RGB), 0.4), 0 0 60px rgba(var(--primary-RGB), 0.3); }
    50% { box-shadow: 0 0 0 2px rgba(var(--primary-RGB), 0.8), 0 8px 40px rgba(var(--primary-RGB), 0.6), 0 0 80px rgba(var(--primary-RGB), 0.5); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* =====================================================
   RESPONSIVE LAYOUT
   ===================================================== */

@media (max-width: 1200px) {
    .showcase-container { grid-template-columns: 1fr; padding: 40px; }
    .showcase-content { text-align: center; }
    .showcase-content .section-subtitle { text-align: center; margin: 0 auto 32px; }
    .stats-grid { justify-content: center; }
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-label { margin: 0 auto 24px; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-cta { justify-content: center; }
    .sphere { width: 400px; height: 400px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    h1 { font-size: 2.5rem; }
    .sphere { width: 300px; height: 300px; }
    .nav-links { 
        position: absolute; top: 100%; left: 0; width: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(24px);
        flex-direction: column; padding: 24px; gap: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .mobile-menu-toggle { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .services-grid { grid-template-columns: 1fr; }
    .service-card-flip { height: 420px; }
    /* Flip con tap on mobile */
    .service-card-flip:active .service-card-inner { transform: rotateY(180deg); }
    
    .stats-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-card { padding: 40px 24px; }
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: calc(100% - 48px);
    max-width: 400px;
    z-index: 9999;
    padding: 24px;
    background: rgba(9, 9, 11, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.text-primary-400 { color: var(--primary-400); }
.underline { text-decoration: underline; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.cursor-pointer { cursor: pointer; }

@media (max-width: 767px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 24px 20px;
    }
}

/* =====================================================
   TEAM CARDS
   ===================================================== */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 24px;
    max-width: 320px;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.15);
}

.team-card-img-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    position: relative;
}

.team-card-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--black);
    background-color: var(--black);
}

.team-card-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.team-card-role {
    color: var(--primary-400);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.team-card-bio {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.team-card::after {
    content: '🔗 Ver LinkedIn';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--primary-400);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
}

.team-card:hover::after {
    bottom: 16px;
    opacity: 1;
}

.team-card:hover .team-card-bio {
    transform: translateY(-10px);
    opacity: 0.5;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

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

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

.form-label {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.form-input {
    width: 100%;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    background: rgba(17, 24, 39, 0.9);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30,30,40,0.6), rgba(10,10,15,0.8));
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-text p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modal Calendly Success */
#form-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
