/* ====================================================
   HOSTAGENCIS - MAIN STYLESHEET
   Modern CSS with Mobile-First, Glassmorphism & 2025 Trends
   ==================================================== */

/* CSS RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ====================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ==================================================== */

:root {
    /* Colors */
    --primary-color: #1E40AF;
    --secondary-color: #059669;
    --accent-color: #EA580C;
    --whatsapp-color: #25D366;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    
    /* Spacing */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* Layout */
    --container-max-width: 1200px;
    --container-padding: var(--space-4);
    --section-padding: var(--space-16);
    
    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-backdrop: blur(20px);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Breakpoints (for reference in media queries) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}

/* ====================================================
   UTILITY CLASSES
   ==================================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.text--gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ====================================================
   TYPOGRAPHY
   ==================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

h1 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
}

h2 {
    font-size: var(--font-size-2xl);
}

h3 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

strong {
    font-weight: 600;
    color: var(--gray-800);
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: var(--font-size-4xl);
    }
    
    h2 {
        font-size: var(--font-size-3xl);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: var(--font-size-5xl);
    }
}

/* ====================================================
   BUTTONS
   ==================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    min-height: 44px; /* Touch target size */
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Button Sizes */
.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    min-height: 36px;
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    min-height: 52px;
}

.btn--xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-xl);
    min-height: 60px;
}

.btn--full {
    width: 100%;
}

/* Button Variants */
.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), #1D4ED8);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--secondary-color), #047857);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-color), #22C55E);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent-color), #DC2626);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ====================================================
   HEADER & NAVIGATION
   ==================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all var(--transition-base);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
}

.nav__logo-img {
    width: 200px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.nav__menu {
    display: none;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__link {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-base);
}

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

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav__cta {
    display: none;
}

.nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    font-size: var(--font-size-lg);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav__menu {
        display: block;
    }
    
    .nav__cta {
        display: inline-flex;
    }
    
    .nav__toggle {
        display: none;
    }
}

/* ====================================================
   BADGES & STATUS INDICATORS
   ==================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--primary {
    background: var(--primary-color);
    color: var(--white);
}

.badge--secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.badge--accent {
    background: var(--accent-color);
    color: var(--white);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.status--online {
    color: var(--secondary-color);
}

/* ====================================================
   HERO SECTION
   ==================================================== */

.hero {
    padding: calc(80px + var(--space-16)) 0 var(--space-16);
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%239CA3AF" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    pointer-events: none;
}

.hero__container {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.hero__title {
    margin-bottom: var(--space-6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Desktop Hero Layout */
@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
    
    .hero__content {
        text-align: left;
    }
    
    .hero__badges {
        justify-content: flex-start;
    }
    
    .hero__title {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero__subtitle {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero__cta {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* ====================================================
   DASHBOARD MOCKUP
   ==================================================== */

.hero__dashboard {
    position: relative;
    width: 100%;
    max-width: 450px;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.dashboard-card {
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin: 0;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.status--online {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--secondary-color);
}

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

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.metric {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.metric:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.metric__icon {
    font-size: var(--font-size-lg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.metric__data {
    display: flex;
    flex-direction: column;
}

.metric__value {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.metric__label {
    font-size: var(--font-size-xs);
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-activity {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-4);
}

.activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
}

.activity-time {
    color: var(--gray-500);
    font-weight: 500;
    min-width: 45px;
}

.activity-text {
    flex: 1;
    color: var(--gray-700);
    margin: 0 var(--space-3);
}

.activity-status.success {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Floating Metrics */
.floating-metric {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: floatingMetric 4s ease-in-out infinite;
}

.floating-metric--1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-metric--2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatingMetric {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-metric__icon {
    font-size: var(--font-size-lg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.floating-metric__text {
    display: flex;
    flex-direction: column;
}

.floating-metric__value {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.floating-metric__label {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    font-weight: 600;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .floating-metric {
        display: none;
    }
    
    .hero__dashboard {
        max-width: 350px;
    }
    
    .dashboard-card {
        padding: var(--space-6);
    }
}

/* ====================================================
   SECTION HEADERS
   ==================================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__title {
    margin-bottom: var(--space-4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    word-spacing: -1px;
    letter-spacing: -0.3px;
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================
   PROBLEMS SECTION
   ==================================================== */

.problems {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FEF2F2, #FEFEFE);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(239, 68, 68, 0.02) 10px,
        rgba(239, 68, 68, 0.02) 20px
    );
    pointer-events: none;
}

.problems__grid {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}

.problem-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EF4444, #DC2626);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15);
}

.problem-card--critical:hover {
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
    border-color: #FCA5A5;
}

.problem-card--urgent:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
    border-color: #FCD34D;
}

.problem-card--frustrating:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: #C4B5FD;
}

.problem-card--blocking:hover {
    box-shadow: 0 15px 40px rgba(107, 114, 128, 0.2);
    border-color: #D1D5DB;
}

.problem__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-4);
    border-radius: 50%;
    font-size: var(--font-size-3xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.icon-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-pulse,
.icon-shake,
.icon-slow,
.icon-offline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    pointer-events: none;
}

.icon-pulse {
    background: rgba(239, 68, 68, 0.3);
    animation: problemPulse 2s ease-in-out infinite;
}

.icon-shake {
    animation: problemShake 1s ease-in-out infinite;
}

.icon-slow {
    background: rgba(139, 92, 246, 0.3);
    animation: problemSlow 3s ease-in-out infinite;
}

.icon-offline {
    background: rgba(107, 114, 128, 0.3);
    animation: problemOffline 2s ease-in-out infinite;
}

@keyframes problemPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

@keyframes problemShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

@keyframes problemSlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

@keyframes problemOffline {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.problem__icon--malware {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.problem__icon--downtime {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.problem__icon--slow {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.problem__icon--support {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    box-shadow: 0 0 20px rgba(107, 114, 128, 0.3);
}

.problem__title {
    margin-bottom: var(--space-4);
    color: var(--gray-800);
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 1.3;
    word-spacing: -1px;
}

.problem__description {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.problem__impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.impact-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.impact-value {
    font-size: var(--font-size-sm);
    color: #DC2626;
    font-weight: 700;
}

.problems__transition {
    text-align: center;
    padding: var(--space-10);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-2xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.problems__transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.problems__transition::after {
    content: '✨';
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: var(--font-size-2xl);
    opacity: 0.7;
}

.transition__text {
    font-size: var(--font-size-2xl);
    margin: 0;
    color: var(--white) !important;
    position: relative;
    z-index: 2;
}

.transition__text strong {
    color: var(--white) !important;
}

/* Grid responsivo para problems */
@media (min-width: 640px) {
    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problems__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ====================================================
   VALUE PROPOSITION SECTION
   ==================================================== */

.value-prop {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.pillars {
    display: grid;
    gap: var(--space-8);
}

.pillar {
    text-align: center;
    padding: var(--space-10);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.1) 0%,
        rgba(5, 150, 105, 0.1) 50%,
        rgba(234, 88, 12, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pillar:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar--featured {
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.95) 0%,
        rgba(29, 78, 216, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.2);
}

.pillar--featured::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 1;
}

.pillar--featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.25);
}

.pillar--featured .pillar__title,
.pillar--featured .pillar__features {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-8);
    background: rgba(30, 64, 175, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    position: relative;
    z-index: 2;
}

.pillar:hover .pillar__icon {
    transform: translateY(-4px);
}

.pillar--featured .pillar__icon {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pillar__title {
    margin-bottom: var(--space-8);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar--featured .pillar__title {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar__features {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pillar__features li {
    padding: var(--space-3) 0;
    position: relative;
    padding-left: var(--space-8);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pillar__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: var(--font-size-lg);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.pillar--featured .pillar__features li {
    color: rgba(255, 255, 255, 0.95);
}

.pillar--featured .pillar__features li::before {
    color: var(--white);
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Pillars Layout */
@media (min-width: 1024px) {
    .pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-10);
    }
    
    .pillar--featured {
        transform: scale(1.05) translateY(-12px);
    }
    
    .pillar--featured:hover {
        transform: scale(1.05) translateY(-16px);
    }
}/* ====================================================
   SERVICES SECTION
   ==================================================== */

.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    gap: var(--space-6);
}

.service-card {
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.05) 0%,
        rgba(5, 150, 105, 0.05) 50%,
        rgba(234, 88, 12, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.service-card:hover::before {
    opacity: 1;
}

.service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    position: relative;
    z-index: 2;
}

.service__icon .icon-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.service__icon .icon-container i {
    font-size: var(--font-size-3xl);
    color: var(--white);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.service__icon .icon-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.8) 0%,
        rgba(5, 150, 105, 0.8) 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover .service__icon .icon-bg-effect {
    transform: scale(1.1);
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.9) 0%,
        rgba(5, 150, 105, 0.9) 100%);
}

.service-card:hover .service__icon .icon-container i {
    transform: scale(1.1) rotate(5deg);
}

/* Service Icon Variations */
.service__icon--hosting .icon-bg-effect {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(29, 78, 216, 0.8) 100%);
}

.service__icon--monitoring .icon-bg-effect {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
}

.service__icon--security .icon-bg-effect {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.8) 0%, rgba(249, 115, 22, 0.8) 100%);
}

.service__icon--wordpress .icon-bg-effect {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(168, 85, 247, 0.8) 100%);
}

.service__icon--consulting .icon-bg-effect {
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.8) 0%, rgba(107, 114, 128, 0.8) 100%);
}

.service__icon--training .icon-bg-effect {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.8) 0%, rgba(6, 182, 212, 0.8) 100%);
}

.service__title {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-800);
    position: relative;
    z-index: 2;
    line-height: 1.3;
    word-spacing: -1px;
}

.service__description {
    margin-bottom: var(--space-6);
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.feature-badge {
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
    color: var(--primary-color);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card:hover .feature-badge {
    background: rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateY(-2px);
}

.service__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.service__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service__cta:hover::before {
    left: 100%;
}

.service__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.3);
}

.service__cta i {
    transition: transform 0.3s ease;
}

.service__cta:hover i {
    transform: translateX(4px);
}

/* Services Grid Responsive */
@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ====================================================
   SOCIAL PROOF SECTION
   ==================================================== */

.social-proof {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.testimonials {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.15);
}

.testimonial--featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.05) 0%,
        rgba(255, 255, 255, 0.98) 100%);
}

.testimonial--featured:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 40px 80px -10px rgba(30, 64, 175, 0.2);
}

.testimonial__badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: 0 var(--radius-xl) 0 var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 700;
    z-index: 10;
}

.testimonial__content {
    padding: var(--space-8);
}

.testimonial__rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.stars {
    display: flex;
    gap: var(--space-1);
}

.stars i {
    color: #FFD700;
    font-size: var(--font-size-lg);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.rating-text {
    font-weight: 700;
    color: var(--gray-800);
    font-size: var(--font-size-sm);
}

.testimonial__quote {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    position: relative;
    font-style: italic;
}

.testimonial__quote::before {
    content: '"';
    font-size: var(--font-size-5xl);
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial__metrics {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: rgba(30, 64, 175, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.metric {
    flex: 1;
    text-align: center;
}

.metric__value {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.metric__label {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial__photo-container {
    position: relative;
    flex-shrink: 0;
}

.testimonial__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.verified-badge i {
    color: var(--white);
    font-size: var(--font-size-xs);
}

.testimonial__info {
    flex: 1;
}

.testimonial__name {
    color: var(--gray-800);
    margin-bottom: var(--space-1);
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.testimonial__position {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-1);
    display: block;
    font-weight: 600;
}

.testimonial__company {
    color: var(--gray-500);
    font-size: var(--font-size-xs);
    display: block;
}

.testimonial__cta {
    margin: var(--space-6) var(--space-8) var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
}

.testimonial__cta:hover {
    transform: translateY(-2px);
}

.testimonial__cta i {
    font-size: var(--font-size-lg);
}

/* Stats Section */
.stats {
    display: grid;
    gap: var(--space-6);
    text-align: center;
}

.stat {
    padding: var(--space-4);
}

.stat__number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.stat__label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Responsive Testimonials & Stats */
@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ====================================================
   PRICING SECTION
   ==================================================== */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card--featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--primary-color), #1D4ED8);
    color: var(--white);
}

.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #DC2626);
    color: var(--white);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.pricing__value-badge {
    position: absolute;
    top: var(--space-6);
    right: var(--space-4);
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--secondary-color);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.pricing__value-badge--featured {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin: var(--space-4) 0;
}

.price-from {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.price-original {
    font-size: var(--font-size-lg);
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-card--featured .price-amount {
    color: var(--white);
}

.price-period {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
}

.pricing-card--featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing__savings {
    margin-top: var(--space-2);
}

.savings-text {
    background: linear-gradient(135deg, var(--secondary-color), #047857);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.pricing__header {
    margin-bottom: var(--space-6);
}

.pricing__name {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
    color: var(--gray-800);
}

.pricing-card--featured .pricing__name {
    color: var(--white);
}

.pricing__description {
    color: var(--gray-600);
    margin: 0;
}

.pricing-card--featured .pricing__description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing__features {
    margin-bottom: var(--space-8);
}

.features-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--gray-600);
}

.pricing-card--featured .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.features-list i {
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card--featured .features-list i {
    color: var(--white);
}

.featured-highlight {
    color: var(--white) !important;
}

.featured-highlight strong {
    color: var(--white) !important;
}

.pricing__cta {
    margin-top: auto;
}

.pricing__guarantee {
    text-align: center;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.guarantee i {
    font-size: var(--font-size-2xl);
    color: var(--secondary-color);
    flex-shrink: 0;
}

.guarantee__content h4 {
    margin-bottom: var(--space-2);
    color: var(--gray-800);
}

.guarantee__content p {
    margin: 0;
    color: var(--gray-600);
}

/* Pricing Grid Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .pricing-card--featured {
        transform: scale(1.03) translateY(-8px);
    }
    
    .pricing-card--featured:hover {
        transform: scale(1.03) translateY(-12px);
    }
}

@media (min-width: 1024px) {
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }
    
    .pricing-card--featured {
        transform: scale(1.05) translateY(-12px);
    }
    
    .pricing-card--featured:hover {
        transform: scale(1.05) translateY(-16px);
    }
}

/* ====================================================
   URGENCY SECTION
   ==================================================== */

.urgency {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.urgency__banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.urgency__content {
    flex: 1;
    max-width: 800px;
}

.urgency__alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    position: relative;
}

.alert-pulse {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.alert-text {
    font-size: var(--font-size-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.urgency__title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-6);
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.urgency__description {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.95);
}

.urgency__stats {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    margin-bottom: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency__timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.timer__label {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: var(--space-4);
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-1);
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.btn--urgency {
    background: linear-gradient(135deg, var(--white), #F3F4F6);
    color: var(--accent-color);
    border: none;
    padding: var(--space-6) var(--space-8);
    font-size: var(--font-size-lg);
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3); }
}

.btn--urgency:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.btn-text {
    font-size: var(--font-size-lg);
    font-weight: 800;
}

.btn-subtext {
    font-size: var(--font-size-sm);
    font-weight: 600;
    opacity: 0.8;
}

.urgency__guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.urgency__social-proof {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
    margin-top: var(--space-8);
}

.social-proof__activity {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.activity-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

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

.social-proof__avatars {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.social-proof__avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.avatar-count {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Desktop Urgency Layout */
@media (min-width: 768px) {
    .urgency__banner {
        flex-direction: row;
        text-align: left;
    }
    
    .urgency__title {
        justify-content: flex-start;
    }
    
    .urgency__timer {
        align-items: flex-end;
    }
}

/* ====================================================
   FAQ SECTION
   ==================================================== */

.faq {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.faq__question:hover {
    background: var(--gray-50);
}

.faq__question h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--gray-800);
}

.faq__question i {
    color: var(--primary-color);
    transition: transform var(--transition-base);
}

.faq-item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 var(--space-6) var(--space-6);
    display: none;
}

.faq-item.active .faq__answer {
    display: block;
}

.faq__answer p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.faq__cta {
    color: var(--primary-color);
    font-weight: 600;
    transition: color var(--transition-base);
}

.faq__cta:hover {
    color: var(--secondary-color);
}

/* ====================================================
   FINAL CTA SECTION
   ==================================================== */

.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color), #1D4ED8);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23FFFFFF" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    pointer-events: none;
}

.final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta__title {
    margin-bottom: var(--space-6);
    color: var(--white);
}

.final-cta__subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
}

.final-cta__action {
    margin-bottom: var(--space-6);
}

.final-cta__btn {
    background: var(--white);
    color: var(--primary-color);
    transform: none;
}

.final-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta__guarantee {
    margin-bottom: var(--space-8);
}

.final-cta__guarantee p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
}

.final-cta__guarantee strong {
    color: var(--white) !important;
}

.final-cta__sidebar {
    display: grid;
    gap: var(--space-6);
    max-width: 400px;
    margin: 0 auto;
}

.sidebar-testimonial {
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sidebar-testimonial__quote {
    font-style: italic;
    margin-bottom: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-testimonial__author {
    color: var(--white) !important;
    font-weight: 600;
}

.sidebar-testimonial__author strong {
    color: var(--white) !important;
}

.sidebar-stat {
    text-align: center;
}

.sidebar-stat__number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.sidebar-stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Desktop Final CTA Layout */
@media (min-width: 1024px) {
    .final-cta__content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: var(--space-16);
        align-items: center;
        text-align: left;
    }
    
    .final-cta__sidebar {
        margin: 0;
    }
}

/* ====================================================
   FOOTER
   ==================================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__content {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer__brand {
    text-align: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer__logo-img {
    width: auto;
    height: 50px;
    max-width: 200px;
}

.footer__logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
}

.footer__description {
    color: var(--gray-400);
    max-width: 300px;
    margin: 0 auto;
}

.footer__links {
    display: grid;
    gap: var(--space-6);
}

.footer__column {
    text-align: center;
}

.footer__title {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__list a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer__list a:hover {
    color: var(--white);
}

.footer__list i {
    margin-right: var(--space-2);
    color: var(--primary-color);
    width: 16px;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-700);
    text-align: center;
}

.footer__legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.footer__legal p {
    color: var(--gray-500);
    margin: 0;
}

.footer__legal-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
}

.footer__legal-links a {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
}

.footer__legal-links a:hover {
    color: var(--white);
}

.footer__certifications {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gray-800);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.cert-badge i {
    color: var(--secondary-color);
}

/* Desktop Footer Layout */
@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr 2fr;
        text-align: left;
    }
    
    .footer__brand {
        text-align: left;
    }
    
    .footer__logo {
        justify-content: flex-start;
    }
    
    .footer__description {
        margin: 0;
    }
    
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__column {
        text-align: left;
    }
    
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer__legal {
        flex-direction: row;
        gap: var(--space-8);
    }
}

/* ====================================================
   WHATSAPP FLOATING BUTTON ENHANCED
   ==================================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 1000;
}

.whatsapp-float__btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--whatsapp-color), #22C55E);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    text-decoration: none;
    font-weight: 600;
    animation: whatsappPulse 2s infinite;
    position: relative;
    overflow: visible;
}

.whatsapp-float__btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    animation: none;
}

.whatsapp-float__btn:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.whatsapp-float__btn i {
    font-size: var(--font-size-xl);
}

.whatsapp-float__text {
    font-size: var(--font-size-sm);
    display: none;
}

.whatsapp-float__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EF4444;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    animation: badgeBounce 2s infinite;
}

/* WhatsApp Tooltip */
.whatsapp-float__tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: var(--space-4);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 280px;
    border: 1px solid var(--gray-200);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.tooltip-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    padding: 8px;
}

.tooltip-info h4 {
    margin: 0 0 var(--space-1) 0;
    color: var(--gray-800);
    font-size: var(--font-size-base);
}

.tooltip-info p {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

.tooltip-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.tooltip-action {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--font-size-sm);
}

.tooltip-action:hover {
    background: var(--whatsapp-color);
    color: var(--white);
    transform: translateX(4px);
}

.tooltip-action i {
    color: var(--whatsapp-color);
    width: 16px;
    text-align: center;
}

.tooltip-action:hover i {
    color: var(--white);
}

/* WhatsApp Notification */
.whatsapp-float__notification {
    position: absolute;
    bottom: 100%;
    right: 60px;
    margin-bottom: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    opacity: 0;
    transform: translateY(10px);
    animation: notificationSlide 6s ease-in-out infinite;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    color: var(--gray-800);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-1);
}

.notification-text p {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--font-size-xs);
    line-height: 1.4;
}

/* Desktop WhatsApp Button */
@media (min-width: 768px) {
    .whatsapp-float__text {
        display: block;
    }
    
    .whatsapp-float {
        bottom: var(--space-8);
        right: var(--space-8);
    }
}

/* ====================================================
   MOBILE QUICK ACTIONS
   ==================================================== */

.mobile-quick-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-4);
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.quick-action-item {
    flex: 1;
    max-width: 100px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-600);
    transition: all 0.2s ease;
    font-size: var(--font-size-xs);
    font-weight: 600;
    width: 100%;
}

.quick-action-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.quick-action-btn--whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
    border-color: var(--whatsapp-color);
}

.quick-action-btn--whatsapp:hover {
    background: #22C55E;
    color: var(--white);
}

.quick-action-btn i {
    font-size: var(--font-size-lg);
}

/* Hide mobile actions on desktop */
@media (min-width: 768px) {
    .mobile-quick-actions {
        display: none;
    }
}

/* Add bottom padding to body on mobile to account for quick actions */
@media (max-width: 767px) {
    body {
        padding-bottom: 100px;
    }
}

/* WhatsApp Button Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.2), var(--shadow-lg);
    }
    100% {
        box-shadow: var(--shadow-lg);
    }
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes notificationSlide {
    0%, 15% {
        opacity: 0;
        transform: translateY(10px);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    85%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ====================================================
   MOBILE UX ENHANCEMENTS
   ==================================================== */

/* Touch device optimizations */
.touch-device .btn,
.touch-device .nav__link,
.touch-device .testimonial__cta {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Keyboard handling */
.keyboard-open {
    height: 100vh;
    overflow: hidden;
}

.keyboard-open .whatsapp-float {
    bottom: var(--space-4);
}

.keyboard-open .mobile-quick-actions {
    transform: translateY(100%);
}

/* iOS specific optimizations */
.ios {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ios .btn {
    -webkit-appearance: none;
    border-radius: var(--radius-lg);
}

/* Android specific optimizations */
.android .btn {
    -webkit-tap-highlight-color: transparent;
}

/* Countdown timer animations */
@keyframes countdownFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

.countdown-number {
    animation: countdownFlip 0.6s ease-in-out;
}

/* Enhanced mobile navigation */
@media (max-width: 767px) {
    .nav__logo-img {
        width: 150px;
        max-height: 40px;
    }
    
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        padding: var(--space-6);
        transform: translateY(0);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav__menu--open {
        transform: translateY(-100%);
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .nav__link {
        padding: var(--space-4);
        border-radius: var(--radius-md);
        transition: all 0.2s ease;
        font-weight: 600;
    }
    
    .nav__link:hover {
        background: var(--gray-50);
        transform: translateX(8px);
    }
    
    /* Improved hero section for mobile */
    .hero__content {
        text-align: center;
        padding: var(--space-8) var(--space-4);
    }
    
    .hero__title {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
        word-spacing: -2px;
        letter-spacing: -0.5px;
    }
    
    .problem__title {
        font-size: var(--font-size-lg);
        line-height: 1.25;
        word-spacing: -2px;
        letter-spacing: -0.3px;
    }
    
    .service__title {
        font-size: var(--font-size-lg);
        line-height: 1.25;
        word-spacing: -2px;
        letter-spacing: -0.3px;
    }
    
    .urgency__title {
        font-size: var(--font-size-xl);
        line-height: 1.2;
        word-spacing: -2px;
        letter-spacing: -0.5px;
    }
    
    .section__title {
        font-size: var(--font-size-xl);
        line-height: 1.15;
        word-spacing: -2px;
        letter-spacing: -0.5px;
        max-width: 320px;
    }
    
    .value-prop .section__title {
        font-size: var(--font-size-lg);
        line-height: 1.1;
        word-spacing: -3px;
        letter-spacing: -0.8px;
        max-width: 280px;
    }
    
    .hero__subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-6);
    }
    
    /* Mobile-friendly pricing cards */
    .pricing-card {
        padding: var(--space-6);
        margin-bottom: var(--space-6);
    }
    
    .pricing__price {
        text-align: center;
        margin-bottom: var(--space-4);
    }
    
    /* Enhanced testimonials for mobile */
    .testimonial {
        padding: var(--space-6);
        margin-bottom: var(--space-6);
    }
    
    .testimonial__content {
        gap: var(--space-4);
    }
    
    .testimonial__quote {
        font-size: var(--font-size-base);
        line-height: 1.6;
    }
    
    /* Mobile urgency section */
    .urgency__stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .countdown {
        gap: var(--space-4);
    }
    
    .countdown-item {
        min-width: 60px;
        padding: var(--space-3);
    }
    
    .countdown-number {
        font-size: var(--font-size-xl);
    }
    
    .countdown-label {
        font-size: var(--font-size-xs);
    }
}

/* Large mobile screens */
@media (min-width: 480px) and (max-width: 767px) {
    .nav__logo-img {
        width: 180px;
        max-height: 45px;
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .quick-action-btn {
        padding: var(--space-4);
    }
    
    .quick-action-btn i {
        font-size: var(--font-size-xl);
    }
}

/* Extra touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    .nav__link:hover {
        background: transparent;
    }
    
    .nav__link:active {
        background: var(--gray-50);
    }
}

/* ====================================================
   ADVANCED MICROINTERACTIONS
   ==================================================== */

/* Magnetic buttons effect */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.btn-magnetic:hover::before {
    width: 300px;
    height: 300px;
}

.btn-magnetic:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating card animations */
.floating-card {
    animation: float 6s ease-in-out infinite;
}

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

/* Glowing text effect */
.glow-text {
    position: relative;
    display: inline-block;
}

.glow-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-text:hover::after {
    opacity: 1;
}

/* Morphing icons */
.icon-morph {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-morph:hover {
    transform: scale(1.2) rotate(360deg);
}

/* Ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* Sliding gradient backgrounds */
.gradient-slide {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    animation: gradientSlide 4s ease infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Staggered animations */
.stagger-animation {
    animation-fill-mode: both;
}

.stagger-animation:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation:nth-child(5) { animation-delay: 0.5s; }

/* Parallax text effect */
.parallax-text {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

/* Hover lift effect - simplified */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Glow border effect - simplified */
.glow-border {
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.glow-border:hover {
    border-color: var(--primary-color);
}

/* Text reveal animation */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: left 0.5s ease;
}

.text-reveal:hover::after {
    left: 100%;
}

/* Breathing animation */
.breathing {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Wobble effect */
.wobble {
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

/* Elastic hover */
.elastic-hover {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.elastic-hover:hover {
    transform: scale(1.1);
}

/* Slide in animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease forwards;
}

.slide-in-down {
    animation: slideInDown 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Microinteraction for cards */
.card-micro {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-micro:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-micro:active {
    transform: translateY(-2px) scale(0.98);
}

/* Progress bar animations */
.progress-animated {
    position: relative;
    overflow: hidden;
}

.progress-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Pulse effect for important elements */
.pulse-important {
    animation: pulseImportant 2s infinite;
}

@keyframes pulseImportant {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* ====================================================
   ANIMATIONS & UTILITIES
   ==================================================== */

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus visible for better accessibility */
.btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .nav__toggle {
        display: none !important;
    }
    
    .hero {
        padding-top: var(--space-8);
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
}