/* ======== RESET Y VARIABLES GLOBALES ======== */
:root {
    /* Paleta de colores optimizada para conversión y confianza */
    --professional-grad: linear-gradient(135deg, #00D4FF 0%, #0099FF 50%, #7B2DFF 100%);
    --primary-color: #00D4FF;
    --secondary-color: #7B2DFF;
    --accent-color: #FF6B35;
    --action-grad: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --success-color: #52D4A8;
    --warmth-accent: #FFB347;
    
    --dark-bg: #0A0A0B;
    --card-bg: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    --card-hover: linear-gradient(145deg, #1f1f3a 0%, #1a2547 100%);
    --text-light: #FFFFFF;
    --text-secondary: #B8B9BA;
    --text-muted: #8B8C8D;
    --font-main: 'Poppins', sans-serif;
    
    /* Sombras mejoradas */
    --shadow-primary: 0 10px 40px rgba(0, 212, 255, 0.3);
    --shadow-secondary: 0 10px 40px rgba(123, 45, 255, 0.3);
    --shadow-accent: 0 10px 40px rgba(255, 107, 53, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Forzar máxima calidad en todos los videos - alta calidad sin pixelación */
video {
    image-rendering: auto !important;
    -ms-interpolation-mode: bicubic !important;
    transform: translate3d(0, 0, 0) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 45, 255, 0.1) 0%, transparent 50%);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 3vw, 3rem); 
    line-height: 1.1;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-wrap: balance;
    line-height: 1.2;
}

/* Extra breathing room for white section titles: improves scanability & reduces visual tension
   (direct child h2 elements inside sections get additional top margin). */
section > h2 {
    margin-top: 24px; /* was 0; adds clear separation from section's top edge */
}

h3 { font-size: 1.5rem; }

section {
    padding: 80px 0;
    position: relative;
}

/* Espaciado específico para secciones críticas */
#hero { padding-top: 50px; padding-bottom: 40px; }
#trusted-by { padding: 40px 0; }
#final-cta { padding: 120px 20px; }

.gradient-text {
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility: prevent unwanted line breaks for short phrases */
.no-wrap { white-space: nowrap; }

/* ======== ANIMATIONS ======== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* ======== HEADER / NAVEGACIÓN ======== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    display: flex; 
    align-items: center; 
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--professional-grad);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ======== DROPDOWN MENU ======== */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-header {
    display: block;
    padding: 12px 20px 4px 20px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-disabled {
    display: block;
    padding: 8px 20px 12px 20px;
    color: #555;
    font-size: 0.9rem;
    cursor: not-allowed;
    background: transparent;
    font-weight: 600;
}

/* ======== BOTONES CTA ======== */
.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button.primary {
    background: var(--action-grad);
    color: white;
    border: none;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
    filter: brightness(1.1);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button.secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.cta-button.secondary:hover::before {
    left: 0;
}

.cta-button.accent {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-accent);
}

.cta-button.accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.small { padding: 10px 25px; font-size: 0.85rem; }
.cta-button.large { padding: 20px 50px; font-size: 1.1rem; }
.cta-button.full-width { width: 100%; text-align: center; }

/* ======== HERO SECTION ======== */
#hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

/* Hero con imagen de fondo */
#hero.hero-with-background {
    min-height: 600px;
    max-height: 70vh;
    background-image: url('../img/team.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0.7) 0%,
        rgba(10, 10, 11, 0.85) 50%,
        rgba(10, 10, 11, 0.9) 100%
    );
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(123, 45, 255, 0.15) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

#hero .hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

#hero.hero-with-background h1 {
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

#hero.hero-with-background .gradient-text {
    background: linear-gradient(135deg, #FFB347 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
    text-shadow: none;
}

#hero .subtitle {
    font-size: 1.2rem;
    margin: 30px auto;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-buttons {
    margin-top: 1rem; /* Ajustado desde un valor original estimado de 2rem */
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-mockup {
    margin-top: 20px;
    margin-bottom: -40px;
    position: relative;
    /* Optimizado para conversión - 1080px máximo impacto */
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mockup img, .hero-mockup video.hero-video {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
    /* Renderizado suave de alta calidad para video HD */
    image-rendering: auto;
}

/* Remove direct border from the video; the frame will carry it */
.hero-mockup video.hero-video { border: none; }

/* ======== Video Window (framed component) ======== */
/* Outer frame stays neutral; highlight goes to the black inner window */
.video-window-outer {
    /* Outer thick frame that mimics the grey rounded container */
    background: linear-gradient(145deg, #2b2b32, #1e1e25);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 16px; /* reduced by 10% (from 18px to 16.2px ≈ 16px) */
    box-shadow: 0 36px 81px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04); /* adjusted shadow */
}

.video-window {
    background: #0f1014; /* inner bezel color */
    border-radius: 14px; /* reduced by 10% (from 16px to 14.4px ≈ 14px) */
    overflow: hidden;
    border: 1.35px solid rgba(0,212,255,0.35); /* reduced by 10% (from 1.5px to 1.35px) */
}

.video-window-topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f1014;
    padding: 9px 11px; /* reduced by 10% (from 10px 12px to 9px 11px) */
    border-bottom: 1px solid rgba(255,255,255,0.08);
    height: 36px; /* reduced by 10% (from 40px to 36px) */
}

/* Arreglamos el ícono para que aparezca correctamente */
.video-window-topbar::before {
    content: "";
    width: 19px; /* reduced by 10% (from 21px to 18.9px ≈ 19px) */
    height: 19px; /* reduced by 10% */
    display: block;
    background-image: url('../icons/a21.png');
    background-size: cover;
    border-radius: 4px; /* kept at 4px (from 4px to 3.6px ≈ 4px) */
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
    filter: drop-shadow(0 0 3px rgba(0,212,255,0.18)); /* kept at 3px */
}

.video-window-icon {
    display: none; /* Ocultamos el ícono original */
}

.video-window-dots {
    display: flex;
    align-items: center;
    gap: 5px; /* reduced by 10% (from 6px to 5.4px ≈ 5px) */
}

.video-dot {
    width: 9px; /* reduced by 10% (from 10px to 9px) */
    height: 9px; /* reduced by 10% */
    border-radius: 50%;
    background: #3a3b46;
    border: 1px solid rgba(255,255,255,0.08);
}
.video-dot.close { background: #ff5f56; }
.video-dot.min { background: #ffbd2e; }
.video-dot.max { background: #27c93f; }

.video-window-content { 
    background: #0b0c10; 
    padding: 9px; /* reduced by 10% (from 10px to 9px) */
    border-top: 1px solid rgba(0,212,255,0.2);
    /* Forzar render sin filtros */
    filter: none;
    -webkit-filter: none;
}

.video-window-content .hero-video {
    border-radius: 0;
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Para video HTML5 */
.video-window-content video.hero-video {
    height: auto;
}

/* Para iframe de YouTube */
.video-window-content iframe.hero-video {
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* Ensure video corners are square even if other rules add rounding */
.hero-mockup .video-window .video-window-content .hero-video {
    border-radius: 0 !important;
}

/* Subtle hover glow following CTA style */
.video-window-outer:hover {
    box-shadow: 0 45px 108px rgba(0,0,0,0.7), 0 0 0 3px rgba(0,212,255,0.15); /* reduced by 10% */
}

/* Title inside topbar */
.video-window-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero trust + metrics badges */
.hero-trust { margin-top: 35px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
.hero-trust .trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#hero.hero-with-background .hero-trust .trust-row {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}
.hero-trust .trust-row img {
    width: 20px;
    height: 20px;
}
.hero-trust .rating, .hero-trust .risk {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.metrics-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}
.metric-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

/* ======== SOCIAL PROOF / TRUST ======== */
#trusted-by {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(16, 25, 44, 0.8), rgba(26, 26, 46, 0.8));
    text-align: center;
    position: relative;
}

#trusted-by h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.logos span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logos span:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ======== PAIN POINTS SECTION ======== */
#pain-points {
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 26, 46, 0.5) 35%, rgba(255, 179, 71, 0.03) 50%, rgba(26, 26, 46, 0.5) 65%, var(--dark-bg) 100%);
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.pain-card {
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--professional-grad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--card-hover);
}

.pain-card:hover::before {
    transform: scaleX(1);
}

.pain-card i {
    font-size: 3rem;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: block;
}

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pain-card p {
    line-height: 1.8;
}

/* ======== SOLUTION / TOOLS SECTION ======== */
#tools {
    text-align: center;
    position: relative;
}

#tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(123, 45, 255, 0.05) 0%, transparent 50%);
}

/* ======== HOW IT WORKS ======== */
#how-it-works { text-align: center; }
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.how-step {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
}
.how-icon { font-size: 2rem; margin-bottom: 12px; color: var(--primary-color); }

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}
.tools-grid.centered-tools {
    /* Convert two full-width 1fr columns into auto-fitting columns that occupy only needed width */
    grid-template-columns: repeat(auto-fit, minmax(300px, 520px));
    justify-content: center; /* center the whole grid block */
    justify-items: center;   /* center items inside their tracks */
}

.tool-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 50px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.tool-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.tool-image:hover img {
    transform: scale(1.05);
}

.tool-card ul {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.tool-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.tool-card ul i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(82, 212, 168, 0.3));
}

/* ======== TESTIMONIALS SECTION ======== */
#testimonials {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(16, 25, 44, 0.8));
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--professional-grad);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.author h4 { 
    margin: 0 0 5px 0; 
    font-size: 1.1rem;
}

.author span { 
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ======== PRICING SECTION ======== */
#pricing { 
    text-align: center;
    position: relative;
}

.section-subtitle { 
    max-width: 600px; 
    margin: 20px auto 70px; 
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    /* Extra space below to prevent scaled cards from crowding the FAQ section */
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 60px 40px;
    width: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    /* Allow badges that sit slightly outside the card to be fully visible */
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 212, 255, 0.07));
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--professional-grad);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35);
}

/* High-conversion elements */
.save-badge {
    display: inline-block;
    align-self: center;
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.35);
}

.limited-note {
    margin-top: 6px;
    color: #ffd8c2;
    font-size: 0.85rem;
    text-align: center;
}

.plan-description { 
    color: var(--text-secondary); 
    margin-bottom: 30px; 
    font-size: 1.1rem;
}

.price {
    /* Visual hierarchy optimized for conversion */
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--text-light);
    margin: 18px 0 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap; /* prevent overflow on narrow widths */
    gap: 6px;
    line-height: 1; /* tighter lockup */
}

.price .price-decimal { 
    font-size: 0.55em; /* proportional to main number */
    margin-left: 2px;
}

.price .price-unit {
    font-size: 0.45em;
    font-weight: 800;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.price .price-currency {
    font-size: 0.6em;
    font-weight: 800;
    opacity: 0.95;
    transform: translateY(-0.05em);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-right: 8px;
}

.billing-info { 
    font-size: 0.95rem; 
    color: var(--text-secondary); 
    margin-bottom: 20px; 
}

.billing-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
    margin-bottom: 12px;
}

.risk-reversal {
    font-size: 0.85rem;
    color: var(--success-color);
    background: rgba(82, 212, 168, 0.08);
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(82, 212, 168, 0.15);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.features-list li i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(82, 212, 168, 0.3));
}

.pricing-card .cta-button { 
    margin-top: auto;
    font-size: 1.05rem;
    padding: 16px 0;
}

/* Prelaunch tag (replaces price for coming soon product) */
.prelaunch-tag {
    font-size: 1.05rem;
    font-weight: 600;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.25);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: 14px;
    margin: 10px 0 14px;
    line-height: 1.3;
}
@media (max-width: 480px){
    .prelaunch-tag { font-size: 0.95rem; padding: 12px 14px; }
}

/* ======== ROI CALCULATOR ======== */
#roi { text-align: center; }
.roi-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.roi-inputs { display: grid; gap: 16px; text-align: left; }
.roi-inputs label { display: grid; gap: 8px; color: var(--text-light); font-weight: 600; }
.roi-inputs input[type="number"], .roi-inputs input[type="range"] {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-light);
    padding: 10px 12px;
    border-radius: 10px;
}
.roi-result { display: grid; place-content: center; gap: 10px; }
.roi-figure { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text-light); }
.roi-note { color: var(--text-secondary); font-size: 0.95rem; }

/* ======== MOBILE STICKY CTA ======== */
#mobile-sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(10,10,11,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    display: none;
    z-index: 1100;
}
@media (max-width: 768px) {
    #mobile-sticky-cta { display: block; }
    body { padding-bottom: 76px; }
}

/* ======== FAQ SECTION ======== */
#faq {
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 70px auto 0;
    display: grid;
    gap: 30px;
}

.faq-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.faq-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-light);
}

.faq-item p {
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ======== FINAL CTA SECTION ======== */
#final-cta {
    background: var(--professional-grad);
    text-align: center;
    padding: 120px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#final-cta h2 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

#final-cta p { 
    max-width: 600px; 
    margin: 20px auto 40px; 
    font-size: 1.3rem;
    opacity: 0.9;
}

#final-cta .cta-button {
    background: white;
    color: var(--dark-bg);
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* ======== FOOTER ======== */
.main-footer {
    padding-top: 80px;
    background: #050505;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-about p { 
    margin-top: 25px;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: 10px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
}

.footer-disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-left: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.2);
}

/* ======== MODAL (Isla Notes Waitlist) ======== */
.modal-overlay[aria-hidden="true"] { display: none; }
.modal-overlay[aria-hidden="false"] { display: flex; }
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(5,8,15,0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center; justify-content: center; padding: 30px 18px;
}
.modal {
    background: linear-gradient(145deg, #1a1f2d, #141a26);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px -10px rgba(0,0,0,0.65), 0 0 0 2px rgba(0,212,255,0.08);
    width: 100%; max-width: 520px; border-radius: 28px; padding: 42px 46px 40px; position: relative; overflow: hidden;
}
.modal::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 20% 25%, rgba(0,212,255,0.15), transparent 60%), radial-gradient(circle at 80% 75%, rgba(123,45,255,0.15), transparent 65%);
    mix-blend-mode: screen; opacity: 0.9;
}
.modal h3 { font-size: 1.9rem; margin-bottom: 10px; }
.modal-subtitle { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.modal-close { position: absolute; top: 14px; right: 18px; background: rgba(255,255,255,0.05); color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.15); width: 38px; height: 38px; border-radius: 12px; cursor: pointer; font-size: 1.3rem; line-height: 1; display: grid; place-items: center; transition: all .25s ease; }
.modal-close:hover { color: var(--text-light); background: rgba(0,212,255,0.15); border-color: rgba(0,212,255,0.4); }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label { font-weight: 600; color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }
.form-row input[type="email"] { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 14px 18px; color: var(--text-light); font-family: var(--font-main); font-size: 1rem; outline: none; transition: border-color .25s, box-shadow .25s; }
.form-row input[type="email"]:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0,212,255,0.25); }
.form-hint { font-size: 0.8rem; margin-top: -6px; min-height: 18px; }
.micro-trust { font-size: 0.7rem; letter-spacing: .5px; text-transform: uppercase; opacity: 0.65; margin-top: 8px; text-align: center; }
@media (max-width: 560px){
    .modal { padding: 38px 32px 34px; border-radius: 22px; }
    .modal h3 { font-size: 1.6rem; }
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 992px) {
    .tools-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    h1 { font-size: 2.5rem; }
    #hero.hero-with-background {
        min-height: 500px;
        max-height: none;
        padding: 60px 20px;
    }
    #hero.hero-with-background h1 {
        font-size: 2.2rem;
    }
    #hero .subtitle {
        font-size: 1.1rem;
    }
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    .hero-trust .trust-row {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .hero-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .pain-cards { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .pricing-grid { flex-direction: column; }
    .pricing-card { width: 100%; max-width: 400px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .social-icons a { margin: 0 15px; }
    .roi-card { grid-template-columns: 1fr; }
}

/* ======== SCROLLBAR PERSONALIZADO ======== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--professional-grad);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* === Video controls: remove dark blur overlay; keep only bar/time/buttons visible === */
/* Applies to Chromium-based browsers (Edge/Chrome) and Safari */
.hero-mockup video.hero-video::-webkit-media-controls-panel {
    background: transparent !important;
    backdrop-filter: none !important;
}
.hero-mockup video.hero-video::-webkit-media-controls-enclosure {
    background-color: transparent !important;
    backdrop-filter: none !important;
}
.hero-mockup video.hero-video::-webkit-media-controls {
    filter: none !important;
}
/* Ensure the video itself isn't blurred by any ancestor effects */
.hero-mockup video.hero-video {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* ======== ESTILOS ADICIONALES PARA INDEX.HTML (HOME) ======== */

/* Hero image placeholder con notas de recomendación */
.hero-image-placeholder {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-note {
    margin-top: 12px;
    padding: 12px 18px;
    background: rgba(255, 179, 71, 0.1);
    border-left: 3px solid var(--warmth-accent);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.image-note strong {
    color: var(--warmth-accent);
    font-weight: 600;
}

/* About Section - Two Column Layout */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-text .lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.value-props-mini {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.value-item i {
    font-size: 2rem;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.value-item h4 {
    margin-bottom: 6px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.value-item p {
    margin: 0;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

/* Products Grid - Enhanced */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: rgba(0, 212, 255, 0.4);
}

.product-card.coming-soon {
    opacity: 0.85;
}

.product-card.coming-soon:hover {
    box-shadow: var(--shadow-secondary);
    border-color: rgba(123, 45, 255, 0.4);
}

.product-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card .badge.available {
    background: linear-gradient(135deg, #52D4A8, #43B58F);
    color: white;
}

.product-card .badge.soon {
    background: linear-gradient(135deg, #7B2DFF, #5A21B6);
    color: white;
}

.product-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.product-description {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.product-highlights {
    margin-bottom: 30px;
}

.product-highlights h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-highlights ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.product-highlights li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-highlights li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-highlights li strong {
    color: var(--text-light);
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 24px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-cta {
    margin-top: 30px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.price-tag strong {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 700;
}

.save-badge-inline {
    padding: 6px 14px;
    background: var(--action-grad);
    color: white;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.guarantee-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--success-color);
    margin-top: 12px;
}

.product-prelaunch {
    margin-top: 30px;
    padding: 24px;
    background: rgba(123, 45, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(123, 45, 255, 0.3);
    text-align: center;
}

.prelaunch-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.includes-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Why ISLA Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: var(--card-bg);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--professional-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Community Image */
.community-image {
    margin-top: 60px;
    text-align: center;
}

.community-image img {
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Quote icon for testimonials */
.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -10px;
}

/* Final CTA Section */
#final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 45, 255, 0.1));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

#final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

#final-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.guarantee-text {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--success-color);
}

/* Mobile Sticky CTA Enhancement */
#mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.98), rgba(10, 10, 11, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#mobile-sticky-cta.visible {
    transform: translateY(0);
}

/* ======== RESPONSIVE ADJUSTMENTS FOR HOME PAGE ======== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .final-cta-buttons .cta-button {
        width: 100%;
        max-width: 400px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-item i {
        font-size: 2.5rem;
    }
}

/* ======== ABOUT US PAGE SPECIFIC STYLES ======== */

/* Company Stats Section */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 40px;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 50px;
}

.stat-item h4 {
    font-size: 2rem;
    margin: 0;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Mission Section */
.mission-content {
    margin-top: 40px;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 45, 255, 0.1));
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.mission-statement h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.info-block i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
    margin-top: 5px;
}

.info-block h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: var(--text-light);
}

.info-block p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--secondary-color);
}

.contact-form-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 45, 255, 0.1));
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-highlight {
    font-size: 1.3rem !important;
    margin: 30px 0 !important;
}

.contact-highlight a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-highlight a:hover {
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.9rem !important;
    font-style: italic;
    color: var(--text-muted) !important;
}

/* Responsive adjustments for About Us page */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-statement {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
}

/* ======== CHECKOUT PAGE ======== */
.checkout-page {
    padding: 60px 0 100px;
    min-height: calc(100vh - 90px);
}

.checkout-header {
    text-align: center;
    margin-bottom: 60px;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.checkout-back-link:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

.checkout-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-title .gradient-text {
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Checkout two-column layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Order Summary Card */
.order-summary-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
}

.order-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--professional-grad);
}

.order-summary-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.order-summary-header i {
    font-size: 1.4rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.order-summary-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.order-plan-name {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--professional-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.order-plan-name h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.plan-tag {
    display: inline-block;
    background: var(--professional-grad);
    color: white;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Checkout Features List */
.checkout-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.checkout-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-features li:last-child {
    border-bottom: none;
}

.checkout-features li i {
    color: var(--success-color);
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(82, 212, 168, 0.3));
    flex-shrink: 0;
}

/* Price Breakdown */
.checkout-price-breakdown {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-row .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-row.discount-row {
    color: var(--success-color);
}

.discount-amount {
    font-weight: 700;
}

.price-row.total-row {
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    margin-top: 8px;
    padding-top: 16px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.05rem;
}

.total-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--professional-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-monthly-equivalent {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
    padding: 10px;
    background: rgba(82, 212, 168, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(82, 212, 168, 0.1);
}

.price-monthly-equivalent strong {
    color: var(--success-color);
}

/* Checkout Guarantee */
.checkout-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(82, 212, 168, 0.06);
    border: 1px solid rgba(82, 212, 168, 0.15);
    border-radius: 14px;
    padding: 18px 20px;
}

.checkout-guarantee > i {
    font-size: 1.6rem;
    color: var(--success-color);
    filter: drop-shadow(0 0 6px rgba(82, 212, 168, 0.4));
    flex-shrink: 0;
}

.checkout-guarantee strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.checkout-guarantee p {
    color: var(--success-color);
    font-size: 0.85rem;
    margin: 0;
}

/* Payment Section */
.checkout-payment-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.payment-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.08);
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--action-grad);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.payment-header i {
    font-size: 1.4rem;
    color: var(--success-color);
    filter: drop-shadow(0 0 6px rgba(82, 212, 168, 0.4));
}

.payment-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.payment-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* What happens next */
.payment-what-happens {
    margin-bottom: 30px;
}

.payment-what-happens h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-what-happens h4 i {
    color: var(--primary-color);
}

.payment-what-happens ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}

.payment-what-happens ol li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    counter-increment: steps;
    color: var(--text-secondary);
    font-size: 0.92rem;
    border-left: 2px solid rgba(0, 212, 255, 0.15);
    margin-left: 4px;
    transition: all 0.3s ease;
}

.payment-what-happens ol li:hover {
    border-left-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.03);
    border-radius: 0 10px 10px 0;
}

.payment-what-happens ol li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Checkout CTA Button */
.checkout-btn {
    font-size: 1.15rem !important;
    padding: 20px 40px !important;
    margin: 10px 0 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pulse 2s ease-in-out infinite;
    cursor: pointer;
}

.checkout-btn:hover {
    animation: none;
}

/* Security Badges */
.checkout-security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.security-badge i {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Payment Cards Accepted */
.payment-cards-accepted {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accepted-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.card-icons i {
    font-size: 2rem;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.card-icons i:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.15);
}

/* Checkout FAQ */
.checkout-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.checkout-faq-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(4px);
}

.checkout-faq-item h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-faq-item h4 i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.checkout-faq-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ======== CHECKOUT RESPONSIVE ======== */
@media (max-width: 960px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-summary-card,
    .payment-card {
        padding: 35px 28px;
    }
}

@media (max-width: 600px) {
    .checkout-page {
        padding: 30px 0 60px;
    }

    .checkout-header {
        margin-bottom: 30px;
    }

    .order-summary-card,
    .payment-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .checkout-security-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .order-plan-name {
        flex-direction: column;
        text-align: center;
    }

    .checkout-btn {
        font-size: 1rem !important;
        padding: 18px 30px !important;
    }
}