/* ============================================
   HARPY LANDING PAGE - STYLES
   Corporate Modern Design
   ============================================ */

/* --- CSS Variables (Paleta de colores) --- */
:root {
    /* Colores principales (Sidebar/Dark) */
    --sidebar-gradient-top: #0F2940;
    --sidebar-gradient-bottom: #1A3A5F;
    
    /* Colores de acento */
    --accent-primary: #3DB5C0;      /* Teal - highlights */
    --accent-secondary: #2A70B0;    /* Azul medio */
    --accent-tertiary: #7BC67E;     /* Verde - success */
    
    /* Colores de texto */
    --text-dark: #1A3A5F;
    --text-medium: #2A70B0;
    --text-light: rgba(255, 255, 255, 0.75);
    --text-white: #FFFFFF;
    --text-muted: #6B7280;
    
    /* Fondos */
    --bg-page: #F0F2F6;
    --bg-white: #FFFFFF;
    --bg-dark: linear-gradient(135deg, var(--sidebar-gradient-top), var(--sidebar-gradient-bottom));
    
    /* Estados */
    --danger: #EF4444;
    --success: #10B981;
    --warning: #F59E0B;
    
    /* Efectos */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Bordes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

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

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: var(--text-white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-muted);
}

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

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

.text-danger {
    color: var(--danger);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(61, 181, 192, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    background: var(--text-white);
    color: var(--sidebar-gradient-top);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--accent-primary);
    color: var(--text-white);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(61, 181, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42, 112, 176, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--text-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(61, 181, 192, 0.2);
    border: 1px solid rgba(61, 181, 192, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-cta .btn-outline {
    border-color: var(--text-light);
    color: var(--text-white);
}

.hero-cta .btn-outline:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

/* .hero-stats moved to ANIMATED STAT RINGS section */

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    letter-spacing: 0.3px;
}

/* Hero Video / Mockup */
.hero-image {
    display: flex;
    justify-content: center;
}

.hero-video-wrap {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-video-wrap:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-video-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #1e1e1e;
}

.hero-video-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-video-bar span:nth-child(1) { background: #ff5f57; }
.hero-video-bar span:nth-child(2) { background: #ffbd2e; }
.hero-video-bar span:nth-child(3) { background: #28ca42; }

.hero-video-bar .bar-title {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-left: auto;
    letter-spacing: 0.5px;
}

.hero-video-wrap video {
    width: 100%;
    display: block;
}

/* Module inline video previews */
.module-video {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--bg-page);
}

.module-video video {
    width: 100%;
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* --- Section Styles --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--text-white);
}

.section-header.light .section-tag {
    background: rgba(61, 181, 192, 0.2);
    color: var(--accent-primary);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(61, 181, 192, 0.1);
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
}

/* --- Problem Section --- */
.problem-section {
    background: var(--bg-page);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
}

.comparison-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.comparison-card.problem {
    border-top: 4px solid var(--danger);
}

.comparison-card.solution {
    border-top: 4px solid var(--success);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
}

.card-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.card-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.card-header h3 {
    font-size: 1.25rem;
}

.pain-points li,
.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-page);
}

.pain-points li:last-child,
.benefits li:last-child {
    border-bottom: none;
}

.pain-points i {
    color: var(--danger);
    margin-top: 4px;
}

.benefits i {
    color: var(--success);
    margin-top: 4px;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-page);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.feature-card.featured {
    grid-column: span 1;
    background: var(--bg-dark);
    border: none;
}

.feature-card.featured h3,
.feature-card.featured p,
.feature-card.featured li {
    color: var(--text-white);
}

.feature-card.featured .feature-icon {
    background: rgba(61, 181, 192, 0.2);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent-primary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 181, 192, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card > p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list {
    font-size: 0.875rem;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--bg-page);
}

.feature-card.featured .feature-list li {
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* --- Process Section --- */
.process-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(61, 181, 192, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(123, 198, 126, 0.1) 0%, transparent 40%);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
    color: var(--text-white);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 24px auto 0;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-page);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    color: var(--accent-primary);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-page);
    color: var(--text-muted);
    border-radius: 50%;
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.author-info .company {
    color: var(--accent-primary);
    font-weight: 500;
}

/* Early Adopter Card */
.early-adopter-card {
    max-width: 720px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, var(--sidebar-gradient-top), var(--sidebar-gradient-bottom));
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.early-adopter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 181, 192, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.early-adopter-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.early-adopter-content {
    position: relative;
    z-index: 1;
}

.early-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(123, 198, 126, 0.2);
    border: 1px solid rgba(123, 198, 126, 0.4);
    border-radius: var(--radius-full);
    color: var(--accent-tertiary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.early-adopter-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.early-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.early-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(61, 181, 192, 0.3);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 181, 192, 0.15);
    color: var(--accent-primary);
    border-radius: var(--radius-md);
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.benefit-text span {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
}

.btn-early {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-tertiary);
    color: var(--sidebar-gradient-top);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(123, 198, 126, 0.3);
}

.btn-early:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 198, 126, 0.4);
    background: #8fd491;
}

.early-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.early-note i {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .early-benefits {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .early-adopter-card {
        padding: 32px 20px;
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .early-adopter-card h3 {
        font-size: 1.4rem;
    }
    
    .early-adopter-card h3 br {
        display: none;
    }
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--bg-page);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo i {
    font-size: 2rem;
}

.trust-logo span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* --- Roadmap Section --- */
.roadmap-section {
    background: var(--bg-page);
}

@media (min-width: 769px) {
    .roadmap-section {
        overflow: hidden;
    }
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-tertiary), var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.roadmap-item {
    position: relative;
    padding-left: 90px;
    padding-bottom: 50px;
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    z-index: 1;
}

.roadmap-item.current .roadmap-marker {
    background: var(--accent-tertiary);
    color: var(--text-white);
    box-shadow: 0 0 0 6px rgba(123, 198, 126, 0.2);
}

.roadmap-item.upcoming .roadmap-marker {
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: 0 0 0 6px rgba(61, 181, 192, 0.2);
}

.roadmap-item.vision .roadmap-marker {
    background: var(--accent-secondary);
    color: var(--text-white);
    box-shadow: 0 0 0 6px rgba(42, 112, 176, 0.2);
}

.roadmap-content {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid transparent;
}

.roadmap-item.current .roadmap-content {
    border-left-color: var(--accent-tertiary);
}

.roadmap-item.upcoming .roadmap-content {
    border-left-color: var(--accent-primary);
}

.roadmap-item.vision .roadmap-content {
    border-left-color: var(--accent-secondary);
    background: linear-gradient(135deg, var(--sidebar-gradient-top), var(--sidebar-gradient-bottom));
}

.roadmap-item.vision .roadmap-content h3 {
    color: var(--text-white);
}

.roadmap-item.vision .roadmap-content > p,
.roadmap-item.vision .roadmap-features li {
    color: rgba(255, 255, 255, 0.75);
}

.roadmap-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.roadmap-item.current .roadmap-status {
    background: rgba(123, 198, 126, 0.1);
    color: var(--accent-tertiary);
}

.roadmap-item.upcoming .roadmap-status {
    background: rgba(61, 181, 192, 0.1);
    color: var(--accent-primary);
}

.roadmap-item.vision .roadmap-status {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-primary);
}

.roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.roadmap-content > p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.roadmap-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.roadmap-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.roadmap-item.current .roadmap-features i {
    color: var(--accent-tertiary);
}

.roadmap-item.upcoming .roadmap-features i {
    color: var(--accent-primary);
    font-size: 0.5rem;
}

.roadmap-item.vision .roadmap-features i {
    color: var(--accent-primary);
}

.vision-box {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.vision-box p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.vision-box p:last-child {
    margin-bottom: 0;
}

.vision-tagline {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    color: var(--accent-primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

/* --- Pricing Section --- */
/* ============================================
   PRICING COMPARISON TABLE
   ============================================ */
.pricing-section {
    background: var(--bg-white);
}

.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transform: rotateX(180deg);
}

.pricing-table-wrap > .pricing-table {
    transform: rotateX(180deg);
}

.pricing-table-wrap::-webkit-scrollbar {
    height: 6px;
}

.pricing-table-wrap::-webkit-scrollbar-track {
    background: var(--bg-page);
}

.pricing-table-wrap::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 2px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table thead th:not(.feature-col) {
    min-width: 140px;
}

/* Header */
.pricing-table thead th {
    padding: 28px 20px 24px;
    text-align: center;
    vertical-align: bottom;
    background: var(--bg-dark);
    color: var(--text-white);
    border-bottom: 3px solid var(--accent-primary);
    position: relative;
}

.pricing-table thead th.feature-col {
    background: var(--bg-dark);
    min-width: 200px;
    text-align: left;
}

.pricing-table thead th.popular {
    background: rgba(15, 41, 64, 0.95);
    box-shadow: inset 0 0 0 2px var(--accent-primary);
}

.plan-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.plan-price small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
}

.popular-badge {
    display: inline-block;
    padding: 3px 12px;
    background: var(--accent-primary);
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Body Rows */
.pricing-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--bg-page);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pricing-table tbody td.feature-col {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-white);
    min-width: 200px;
}

.pricing-table tbody td.popular {
    background: rgba(61, 181, 192, 0.04);
}

.pricing-table tbody tr:hover td {
    background: rgba(61, 181, 192, 0.06);
}

.pricing-table tbody tr:hover td.popular {
    background: rgba(61, 181, 192, 0.1);
}

/* Divider Rows */
.pricing-table tr.feature-divider td {
    padding: 10px 20px;
    background: var(--bg-page);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-align: left;
    border-bottom: none;
}

.pricing-table tr.feature-divider td.popular {
    background: var(--bg-page);
}

/* Check / Cross Icons */
.pricing-table .check {
    color: var(--accent-primary);
    font-size: 1rem;
}

.pricing-table .cross {
    color: #ccc;
    font-size: 0.85rem;
}

.pricing-table .fa-infinity {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Footer CTAs */
.pricing-table tfoot td {
    padding: 24px 20px;
    text-align: center;
    background: var(--bg-page);
    border-top: 2px solid var(--bg-page);
}

.pricing-table tfoot td.feature-col {
    background: var(--bg-page);
}

.pricing-table tfoot td.popular {
    background: rgba(61, 181, 192, 0.08);
}

.pricing-table .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Pricing Notes */
.pricing-notes {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-guarantee,
.pricing-custom,
.pricing-trial {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-primary);
}

.pricing-guarantee i,
.pricing-custom i,
.pricing-trial i {
    color: var(--accent-primary);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-guarantee p,
.pricing-custom p,
.pricing-trial p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-custom a {
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-custom a:hover {
    color: var(--accent-secondary);
}

/* --- CTA Section --- */
.cta-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61, 181, 192, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.cta-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--bg-page);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

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

.cta-form .btn {
    margin-top: 8px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Form Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Button inside dark sections — needs white outline for visibility */
.success-message .btn-outline,
.cta-section .btn-outline {
    color: var(--text-white);
    border-color: var(--accent-primary);
    background: transparent;
}

.success-message .btn-outline:hover,
.cta-section .btn-outline:hover {
    background: var(--accent-primary);
    color: var(--text-white);
    border-color: var(--accent-primary);
}

/* Contact emails in error state */
.contact-emails {
    margin: 16px 0;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(61, 181, 192, 0.15);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-full);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-email-link:hover {
    background: var(--accent-primary);
    color: var(--text-white);
}

/* Direct contact section below form */
.contact-direct {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.contact-direct p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-direct a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-direct a:hover {
    text-decoration: underline;
}

.contact-direct i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

/* --- Footer --- */
.footer {
    background: var(--sidebar-gradient-top);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: var(--text-white);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-primary);
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-divider {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-notes {
        margin-top: 40px;
    }

    .pricing-guarantee,
    .pricing-custom,
    .pricing-trial {
        padding: 16px;
    }

    .hero-migration-badge {
        font-size: 0.875rem;
        padding: 10px 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Pricing table on tablet: allow scroll, sticky feature col */
    .pricing-table {
        table-layout: auto;
        min-width: 700px;
    }

    .pricing-table td.feature-col,
    .pricing-table th.feature-col {
        position: sticky;
        left: 0;
        z-index: 2;
    }

    .pricing-table thead th.feature-col {
        z-index: 3;
        background: linear-gradient(135deg, var(--sidebar-gradient-top), var(--sidebar-gradient-bottom));
        box-shadow: 3px 0 10px rgba(0,0,0,0.15);
    }

    .pricing-table tbody td.feature-col {
        background: #fff;
        box-shadow: 3px 0 10px rgba(0,0,0,0.08);
    }

    .pricing-table tfoot td.feature-col {
        background: var(--bg-page);
        box-shadow: 3px 0 10px rgba(0,0,0,0.08);
    }

    .pricing-table tr.feature-divider td.feature-col {
        background: var(--bg-page);
        box-shadow: 3px 0 10px rgba(0,0,0,0.06);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    
    .cta-form {
        padding: 24px;
    }
}

/* ============================================
   TIMELINE MODULES SECTION
   ============================================ */
.modules-section {
    background: var(--bg-page);
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 40px;
}

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

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    z-index: 1;
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: 0 0 0 6px rgba(61, 181, 192, 0.2);
    transition: all var(--transition-normal);
}

.timeline-item[data-module="2"] .timeline-marker {
    background: var(--accent-secondary);
    box-shadow: 0 0 0 6px rgba(42, 112, 176, 0.2);
}

.timeline-item[data-module="3"] .timeline-marker {
    background: var(--accent-tertiary);
    box-shadow: 0 0 0 6px rgba(123, 198, 126, 0.2);
}

.timeline-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border-left: 4px solid var(--accent-primary);
}

.timeline-item[data-module="2"] .timeline-card {
    border-left-color: var(--accent-secondary);
}

.timeline-item[data-module="3"] .timeline-card {
    border-left-color: var(--accent-tertiary);
}

.timeline-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateX(4px);
}

.timeline-card-header {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.module-number {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.timeline-card-header h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    padding-right: 40px;
}

.module-summary {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    padding-right: 40px;
}

.timeline-toggle {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-page);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-muted);
}

.timeline-toggle:hover {
    background: var(--accent-primary);
    color: var(--text-white);
}

.timeline-toggle i {
    transition: transform var(--transition-normal);
}

.timeline-item.expanded .timeline-toggle i {
    transform: rotate(180deg);
}

.timeline-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 32px;
}

.timeline-item.expanded .timeline-card-body {
    max-height: 800px;
    padding: 0 32px 28px;
}

.module-features {
    margin-bottom: 20px;
}

.module-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-page);
}

.module-features li:last-child {
    border-bottom: none;
}

.module-features li i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
}

.module-normas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.norma-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(61, 181, 192, 0.1);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(61, 181, 192, 0.2);
}

.module-research-link {
    display: inline-block;
    padding: 10px 0;
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.module-research-link:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 60px;
    }
    .timeline-marker {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-card-header {
        padding: 20px;
    }
    .timeline-card-body {
        padding: 0 20px;
    }
    .timeline-item.expanded .timeline-card-body {
        padding: 0 20px 20px;
    }
}

/* ============================================
   ROLES SECTION
   ============================================ */
.roles-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.role-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-page);
    transition: all var(--transition-normal);
    text-align: center;
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.role-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 181, 192, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.role-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.role-card > p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.role-card ul {
    text-align: left;
}

.role-card ul li {
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--bg-page);
    padding-left: 8px;
}

.role-card ul li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Roles: horizontal snap scroll on mobile */
    .roles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .roles-grid::-webkit-scrollbar {
        display: none;
    }
    
    .roles-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .role-card {
        min-width: 260px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    /* Pricing table mobile: sticky feature column */
    .pricing-table {
        min-width: 620px;
    }
    
    .pricing-table thead th {
        padding: 16px 12px 14px;
    }
    
    .plan-name {
        font-size: 0.85rem;
    }
    
    .plan-price {
        font-size: 1.25rem;
    }
    
    .popular-badge {
        font-size: 0.55rem;
        padding: 2px 8px;
    }
    
    .pricing-table tbody td {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    /* Sticky first column */
    .pricing-table td.feature-col,
    .pricing-table th.feature-col {
        position: sticky;
        left: 0;
        z-index: 2;
        min-width: 145px;
        max-width: 160px;
        font-size: 0.8rem;
    }
    
    .pricing-table thead th.feature-col {
        z-index: 3;
        background: var(--bg-dark);
        box-shadow: 3px 0 10px rgba(0,0,0,0.15);
    }
    
    .pricing-table tbody td.feature-col {
        background: #fff;
        box-shadow: 3px 0 10px rgba(0,0,0,0.08);
    }
    
    .pricing-table tbody tr:hover td.feature-col {
        background: #f0fafb;
    }
    
    .pricing-table tfoot td.feature-col {
        z-index: 2;
        background: var(--bg-page);
        box-shadow: 3px 0 10px rgba(0,0,0,0.08);
    }
    
    /* Divider rows — sticky feature cell needs background */
    .pricing-table tr.feature-divider td.feature-col {
        background: var(--bg-page);
        box-shadow: 3px 0 10px rgba(0,0,0,0.06);
    }
    
    .pricing-table tr.feature-divider td {
        font-size: 0.65rem;
    }
    
    .pricing-table .btn-sm {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .pricing-table .plan-col {
        min-width: 110px;
    }
    
    /* Roadmap: horizontal scroll on mobile */
    .roadmap-section {
        overflow-x: visible;
    }
    
    .roadmap-timeline {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 16px 24px;
        margin: 0 -24px;
        max-width: none;
        position: relative;
    }
    
    .roadmap-timeline::before {
        display: none !important;
    }
    
    .roadmap-item {
        min-width: 270px;
        max-width: 290px;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding-left: 0 !important;
        padding-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .roadmap-content > p {
        flex: 1;
    }
    
    .roadmap-marker {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 44px;
        height: 44px;
        margin: 0 auto 16px;
        flex-shrink: 0;
    }
    
    .roadmap-content {
        border-left: none !important;
        border-top: 3px solid var(--accent-primary);
        padding: 20px;
        margin-left: 0;
        width: 100%;
    }
    
    .roadmap-item.completed .roadmap-content {
        border-top-color: var(--accent-tertiary);
        border-left: none !important;
    }
    
    .roadmap-item.vision .roadmap-content {
        border-top-color: var(--accent-secondary);
    }
    
    .vision-box {
        font-size: 0.85rem;
    }
    
    .vision-box p {
        font-size: 0.85rem;
    }
    
    .roadmap-timeline::-webkit-scrollbar {
        display: none;
    }
    
    .roadmap-timeline {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ============================================
   ROADMAP COMPLETED ITEMS
   ============================================ */
.roadmap-item.completed .roadmap-marker {
    background: var(--accent-tertiary);
    color: var(--text-white);
    box-shadow: 0 0 0 6px rgba(123, 198, 126, 0.2);
}

.roadmap-item.completed .roadmap-content {
    border-left-color: var(--accent-tertiary);
}

.roadmap-item.completed .roadmap-status {
    background: rgba(123, 198, 126, 0.1);
    color: var(--accent-tertiary);
}

/* ============================================
   HERO — COMPLIANCE BADGES
   ============================================ */
.hero-compliance {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(61, 181, 192, 0.12);
    border: 1px solid rgba(61, 181, 192, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.compliance-badge i {
    font-size: 0.7rem;
}

/* ============================================
   HERO — ANIMATED STAT RINGS
   ============================================ */
.hero-stats {
    display: flex;
    gap: 36px;
}

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

.ring-wrap {
    position: relative;
    width: 112px;
    height: 112px;
    margin: 0 auto 10px;
    overflow: visible;
}

.ring-wrap svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 7;
}

.ring-fill {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: 326.73;
    filter: drop-shadow(0 0 6px var(--ring-color));
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ring-fill.animated {
    stroke-dashoffset: 0;
}

.ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.ring-suffix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
    .ring-fill {
        transition: none;
    }
}

@media (max-width: 768px) {
    .ring-wrap {
        width: 90px;
        height: 90px;
    }
    .ring-number {
        font-size: 1.4rem;
    }
}

/* ============================================
   HERO — MIGRATION BADGE & ORIGIN BADGE
   ============================================ */
.hero-migration-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(123, 198, 126, 0.2);
    border: 1px solid rgba(123, 198, 126, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-tertiary);
    margin-bottom: 24px;
}

.hero-migration-badge i {
    font-size: 1.1rem;
}

.hero-origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.hero-origin i {
    color: var(--accent-primary);
    font-size: 0.75rem;
}

/* ============================================
   RESEARCH POST PAGES
   ============================================ */
.post-page {
    padding-top: 100px;
}

.post-header {
    background: var(--bg-dark);
    padding: 60px 0 80px;
    position: relative;
}

.post-header .container {
    position: relative;
    z-index: 1;
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color var(--transition-fast);
}

.post-back:hover {
    color: var(--accent-primary);
}

.post-header h1 {
    color: var(--text-white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    max-width: 800px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-body {
    max-width: 800px;
    margin: -40px auto 60px;
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.post-body h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bg-page);
}

.post-body h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.post-body h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
}

.post-body p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-body ul, .post-body ol {
    margin: 0 0 16px 24px;
    list-style: disc;
}

.post-body ul li, .post-body ol li {
    padding: 4px 0;
    line-height: 1.7;
    color: var(--text-dark);
}

.post-body ol {
    list-style: decimal;
}

.post-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(61, 181, 192, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-body blockquote p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0;
}

.post-references {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid var(--bg-page);
}

.post-references h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.post-references ol {
    list-style: decimal;
    margin-left: 24px;
}

.post-references li {
    padding: 4px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-page);
    border-radius: var(--radius-xl);
    margin-top: 40px;
}

.post-cta h3 {
    margin-bottom: 12px;
}

.post-cta p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .post-body {
        margin: -20px 16px 40px;
        padding: 24px;
    }
    .post-header {
        padding: 40px 0 60px;
    }
}
