/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neural Colors - Same as main app */
    --color-primary: #1a1a2e;
    --color-secondary: #6366f1;
    --color-accent: #06b6d4;
    --color-purple: #8b5cf6;
    --color-cyan: #06b6d4;
    --color-pink: #ec4899;
    
    /* Backgrounds */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-text: #1E293B;
    --color-text-light: #64748B;
    --color-border: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 2px 0 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);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

@media (max-width: 768px) {
    .nav-content {
        height: 70px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-purple);
}

.nav-links a.active {
    color: var(--color-purple);
    font-weight: 700;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-lg);
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .mobile-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.mobile-menu a:not(.btn-primary):hover {
    background: var(--color-bg-alt);
}

.mobile-menu button.btn-primary {
    justify-content: center;
    width: 100%;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
button.btn-primary,
button.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: inherit;
    min-height: 44px;
    justify-content: center;
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    button.btn-primary,
    button.btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5558e3 0%, #7c4fe0 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: white;
    color: var(--color-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-secondary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--spacing-xl)) var(--spacing-lg) var(--spacing-3xl);
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero-badge svg {
    color: #0F77A5;
    flex-shrink: 0;
}

.hero-badge svg path,
.hero-badge svg polyline {
    stroke: currentColor;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.nora-letter {
    font-size: 1.4em;
    font-weight: 800;
    display: inline-block;
    position: relative;
    animation: letterPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.nora-letter:hover {
    transform: scale(1.1) translateY(-2px);
}

.nora-letter.n {
    color: #6366f1;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    animation-delay: 0s;
}

.nora-letter.o {
    color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    animation-delay: 0.2s;
}

.nora-letter.r {
    color: #06b6d4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    animation-delay: 0.4s;
}

.nora-letter.a {
    color: #ec4899;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    animation-delay: 0.6s;
}

@keyframes letterPulse {
    0%, 100% {
        text-shadow: 0 0 20px currentColor;
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 30px currentColor, 0 0 40px currentColor;
        opacity: 0.9;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-buttons .btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    right: 20%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 75%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.floating-card svg path {
    fill: var(--color-purple);
}

.floating-card svg circle {
    stroke: var(--color-secondary);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--color-text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

.feature-card {
    padding: var(--spacing-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.feature-icon svg rect,
.feature-icon svg circle,
.feature-icon svg path:first-of-type {
    stroke: var(--color-secondary);
}

.feature-icon svg path:last-of-type {
    stroke: var(--color-purple);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== ASSESSMENT SECTION ===== */
.assessment-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.assessment-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.assessment-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.assessment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.assessment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.assessment-card:hover::before {
    opacity: 1;
}

.assessment-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.assessment-card:hover .assessment-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
}

.assessment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.assessment-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.assessment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.assessment-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-light);
    font-size: 0.9rem;
    padding-left: var(--spacing-md);
    position: relative;
}

.assessment-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

/* ===== TALENT POOL SECTION ===== */
.talent-pool-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.talent-pool-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.talent-pool-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.talent-pool-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(6, 182, 212, 0.15);
    color: var(--color-cyan);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.talent-pool-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.talent-pool-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.talent-pool-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.tp-feature {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tp-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
}

.tp-feature-icon {
    flex-shrink: 0;
}

.tp-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.tp-feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.talent-pool-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-stat {
    text-align: center;
}

.tp-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tp-stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Search Demo Visual */
.talent-pool-visual {
    position: relative;
}

.search-demo {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 2px solid var(--color-border);
}

.search-bar span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.result-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.result-item:nth-child(1) {
    animation-delay: 0.2s;
}

.result-item:nth-child(2) {
    animation-delay: 0.4s;
}

.result-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.result-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.result-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.result-match {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.result-badge {
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-cyan);
    margin-top: var(--spacing-lg);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.steps {
    display: grid;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.step-visual {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.step-visual svg circle {
    stroke: var(--color-secondary);
}

.step-visual svg path,
.step-visual svg rect {
    stroke: var(--color-purple);
    fill: var(--color-purple);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon svg circle {
    stroke: var(--color-purple);
}

.benefit-icon svg path {
    stroke: var(--color-purple);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

.benefits-visual {
    position: relative;
}

.stats-card {
    background: var(--gradient-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: white;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.stats-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.stats-badge {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.stats-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stats-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #06b6d4;
}

.stats-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.stats-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.stats-bar-fill {
    height: 100%;
    background: #06b6d4;
    border-radius: 50px;
    transition: width 1s ease;
}

/* ===== PLANS CTA SECTION ===== */
.plans-cta-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: white;
    text-align: center;
}

.plans-cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.plans-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-3xl) 0;
}

.quick-plan-card {
    padding: var(--spacing-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.quick-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.quick-plan-card.popular {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.quick-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.quick-plan-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.quick-plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.quick-plan-price span {
    font-size: 1rem;
    color: var(--color-text-light);
}

.quick-plan-price.custom {
    font-size: 1.75rem;
}

.quick-plan-card p {
    color: var(--color-text-light);
    font-weight: 500;
}

.plans-cta-button {
    margin: var(--spacing-xl) auto;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.plans-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.benefit-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== OLD PRICING SECTION (KEPT FOR COMPATIBILITY) ===== */
.pricing-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.pricing-feature {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
    background: white;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-feature:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.pricing-feature p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.pricing-highlight {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Cost Comparison */
.cost-comparison {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.comparison-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.comparison-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.comparison-column {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.comparison-column.traditional {
    border: 2px solid var(--color-border);
}

.comparison-column.nora {
    border: 3px solid var(--color-secondary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-border);
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.comparison-item span:first-child {
    color: var(--color-text);
    font-weight: 500;
}

.comparison-item .cost {
    font-weight: 700;
    color: var(--color-text);
}

.comparison-item .cost.included {
    color: var(--color-secondary);
}

.comparison-item .cost.free {
    color: #10b981;
    font-size: 1.125rem;
}

.comparison-total {
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-total span:first-child {
    font-weight: 600;
    color: var(--color-text-light);
}

.comparison-total .total-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
}

.comparison-total.highlight {
    border-top-color: var(--color-secondary);
}

.comparison-total.highlight .total-value {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    color: var(--color-primary);
}

.savings-badge strong {
    color: var(--color-pink);
    font-size: 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--gradient-accent);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-title .gradient-text {
    background: linear-gradient(135deg, #ffffff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.cta .btn-primary {
    background: white;
    color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--color-secondary);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-feature svg circle {
    stroke: white;
}

.cta-feature svg path {
    stroke: white;
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.contact-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--color-bg-alt);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.modal-close:hover {
    background: var(--color-border);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.modal-header p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    background: white;
    border-color: var(--color-secondary);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-option-icon svg {
    width: 24px;
    height: 24px;
}

.contact-option.email .contact-option-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    color: #6366f1;
}

.contact-option.whatsapp .contact-option-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(34, 197, 94, 0.15));
    color: #25d366;
}

.contact-option.phone .contact-option-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.15));
    color: #06b6d4;
}

.contact-option:hover .contact-option-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-option-content {
    flex: 1;
}

.contact-option-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.15rem;
}

.contact-option-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-option-arrow {
    color: var(--color-text-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-option:hover .contact-option-arrow {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.modal-footer {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.modal-footer p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
}

.plans-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

/* ===== ROI CTA BLOCK ===== */
.roi-cta-block {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, #0F77A5 0%, #243944 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roi-cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 196, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-roi 8s ease-in-out infinite;
}

.roi-cta-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-roi 10s ease-in-out infinite reverse;
}

@keyframes float-roi {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.roi-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.roi-cta-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: bounce-roi 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes bounce-roi {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.roi-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.roi-cta-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.roi-cta-block .btn-large {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.roi-cta-block .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-cyan);
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-bottom > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-company {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-company strong {
    color: var(--color-cyan);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-company:hover strong {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .talent-pool-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: calc(80px + var(--spacing-md)) var(--spacing-md) var(--spacing-xl);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .hero-buttons .btn-large {
        width: 100%;
        max-width: 400px;
    }
    
    .nora-letter {
        font-size: 1.3em;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .assessment-card {
        padding: var(--spacing-lg);
    }
    
    .talent-pool-visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }
    
    .talent-pool-stats {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-visual {
        margin: 0 auto;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
    
    .plans-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-badge {
        position: static;
        transform: none;
        margin-bottom: var(--spacing-sm);
        display: inline-block;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-badge {
        position: static;
        transform: none;
        margin-bottom: var(--spacing-md);
        display: inline-block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .modal-content {
        padding: 20px;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-icon {
        width: 56px;
        height: 56px;
    }
    
    .modal-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-option {
        padding: var(--spacing-sm);
    }
    
    .contact-option-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-option-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .plans-cta-buttons {
        flex-direction: column;
    }
    
    .plans-cta-buttons .btn-large {
        width: 100%;
    }
    
    .footer-bottom > div {
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: calc(70px + 1.5rem) 1rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .nora-letter {
        font-size: 1.2em;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
    
    .feature-card,
    .assessment-card {
        padding: 1.25rem;
    }
    
    .feature-title,
    .assessment-title {
        font-size: 1.125rem;
    }
    
    .feature-description,
    .assessment-description {
        font-size: 0.9rem;
    }
}
/* ========================================
   LANDING PME - Estilos Adicionais
   ======================================== */

/* Hero Section Layout */
.hero .container {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

/* Text Highlights */
.highlight-primary {
    color: #0F77A5;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-secondary {
    background: linear-gradient(120deg, rgba(254, 196, 43, 0.3) 0%, rgba(254, 196, 43, 0.3) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
    font-weight: 600;
    color: #243944;
    padding: 0 2px;
    display: inline-block;
}

.text-accent {
    color: #0F77A5;
    font-weight: 600;
}

/* Feature List Strong */
.feature-list strong {
    color: #243944;
    font-weight: 600;
}

/* Para Quem Cards Strong */
.para-quem-card strong {
    color: #FEC42B;
    font-weight: 700;
}

/* CTA Final Strong */
.cta-content strong {
    color: white;
    font-weight: 700;
}

.cta-content h2 {
    line-height: 1.3;
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    width: 260px;
    min-height: 88px;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.floating-card.card-1 {
    top: 0%;
    left: 8%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 28%;
    right: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 56%;
    left: 12%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #243944;
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: nowrap;
}

.card-subtitle {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

/* Problema Section */
.problema-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problema-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.problema-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 119, 165, 0.1) 0%, rgba(36, 57, 68, 0.05) 100%);
    border-radius: 16px;
    color: #0F77A5;
}

.problema-icon svg {
    color: #0F77A5;
}

.problema-card h3 {
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    font-weight: 700;
    color: #243944;
    margin-bottom: 15px;
    line-height: 1.3;
}

.problema-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.problema-cta {
    text-align: center;
    margin-top: 60px;
}

.problema-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #243944;
    margin-bottom: 25px;
}

/* Solução Section */
.solucao-section {
    padding: 80px 0;
    background: white;
}

.solucao-features {
    margin-top: 60px;
}

.solucao-feature {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solucao-feature.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.solucao-feature.reverse .solucao-visual {
    order: 2;
}

.solucao-feature.reverse .solucao-content {
    order: 1;
}

.feature-icon-large {
    font-size: 120px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.solucao-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #243944;
    margin-bottom: 15px;
}

.feature-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #0F77A5;
    margin-bottom: 25px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    color: #495057;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Para Quem Section */
.para-quem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #243944 0%, #0F77A5 100%);
    color: white;
}

.para-quem-section .section-title,
.para-quem-section .section-description {
    color: white;
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.para-quem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.para-quem-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.para-quem-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 196, 43, 0.15);
    border-radius: 12px;
    color: #FEC42B;
}

.para-quem-icon svg {
    color: #FEC42B;
}

.para-quem-card h3 {
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.para-quem-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Planos Section */
.planos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.plano-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plano-card.destaque {
    border: 3px solid #0F77A5;
    transform: scale(1.05);
}

.plano-card.destaque:hover {
    transform: scale(1.05) translateY(-10px);
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FEC42B 0%, #f39c12 100%);
    color: #243944;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(254, 196, 43, 0.4);
}

.plano-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.plano-nome {
    font-size: 28px;
    font-weight: 800;
    color: #243944;
    margin-bottom: 10px;
}

.plano-subtitulo {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
}

.plano-preco {
    text-align: center;
    padding: 25px 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
}

.preco-cifrao {
    font-size: 20px;
    font-weight: 600;
    color: #0F77A5;
    white-space: nowrap;
}

.preco-numero {
    font-size: 48px;
    font-weight: 800;
    color: #243944;
    line-height: 1;
}

.preco-periodo {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
}

.preco-detalhes {
    font-size: 14px;
    color: #495057;
    margin: 8px 0 5px;
    font-weight: 500;
}

.preco-extras {
    font-size: 12px;
    color: #0F77A5;
    margin: 0;
    font-weight: 600;
}

.plano-ideal {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.plano-ideal strong {
    display: block;
    font-size: 14px;
    color: #243944;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-ideal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-ideal li {
    font-size: 14px;
    color: #495057;
    padding: 5px 0;
}

.plano-features h4 {
    font-size: 16px;
    font-weight: 700;
    color: #243944;
    margin: 25px 0 15px 0;
}

.plano-features h4.ia-section {
    color: #0F77A5;
    margin-top: 30px;
}

.plano-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-features li {
    font-size: 14px;
    color: #495057;
    padding: 8px 0;
    line-height: 1.5;
}

.btn-plano {
    width: 100%;
    padding: 15px;
    background: #243944;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-plano:hover {
    background: #0F77A5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 119, 165, 0.3);
}

.btn-plano.primary {
    background: linear-gradient(135deg, #0F77A5 0%, #243944 100%);
}

.btn-plano.primary:hover {
    background: linear-gradient(135deg, #243944 0%, #0F77A5 100%);
}

/* Tabela Comparativa */
.comparativo-section {
    padding: 80px 0;
    background: white;
}

.tabela-comparativa-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tabela-comparativa {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.tabela-comparativa thead {
    background: linear-gradient(135deg, #243944 0%, #0F77A5 100%);
    color: white;
}

.tabela-comparativa th {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.tabela-comparativa th.feature-col {
    text-align: left;
    width: 40%;
}

.tabela-comparativa th.plan-col {
    width: 20%;
}

.tabela-comparativa th.destaque {
    background: #FEC42B;
    color: #243944;
}

.tabela-comparativa tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.tabela-comparativa tbody tr:hover {
    background: #f8f9fa;
}

.tabela-comparativa td {
    padding: 18px 20px;
    text-align: center;
    font-size: 15px;
}

.tabela-comparativa td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #243944;
}

.tabela-comparativa td.destaque {
    background: rgba(254, 196, 43, 0.1);
    font-weight: 700;
    color: #0F77A5;
}

.tabela-comparativa tr.separator td {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 700;
    color: #243944;
    text-align: left;
}

/* Manual vs NORA */
.manual-vs-nora {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparacao-grid {
    max-width: 900px;
    margin: 50px auto 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparacao-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #243944 0%, #0F77A5 100%);
    color: white;
}

.comparacao-header > div {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.comparacao-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparacao-row:last-child {
    border-bottom: none;
}

.comparacao-row > div {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.col-manual {
    background: #fff5f5;
    color: #495057;
}

.col-nora {
    background: #f0f9ff;
    color: #243944;
    font-weight: 600;
}

.icon-negativo {
    font-size: 20px;
    color: #dc3545;
}

.icon-positivo {
    font-size: 20px;
    color: #28a745;
    font-weight: 700;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #243944 0%, #0F77A5 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #243944;
}

.modal-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #243944;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #0F77A5;
}

.modal-content textarea {
    min-height: 80px;
    max-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #243944 0%, #0F77A5 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
}

.footer-description strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-column a:hover {
    color: #FEC42B;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
}

.footer-company {
    margin-top: 5px;
    font-size: 13px;
}

.footer-company strong {
    color: #FEC42B;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero Section em mobile */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Hero Visual - Ocultar cards flutuantes no mobile */
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .solucao-feature,
    .solucao-feature.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solucao-content h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .feature-highlight {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }
    
    .feature-icon-large {
        font-size: 80px;
    }
    
    .solucao-feature.reverse .solucao-visual,
    .solucao-feature.reverse .solucao-content {
        order: initial;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .plano-card {
        padding: var(--spacing-lg);
    }
    
    .plano-nome {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }
    
    .preco-numero {
        font-size: 40px;
    }
    
    .preco-cifrao {
        font-size: 16px;
    }
    
    .preco-valor {
        gap: 3px;
    }
    
    .preco-periodo {
        font-size: 16px;
    }
    
    .preco-detalhes {
        font-size: 13px;
    }
    
    .preco-extras {
        font-size: 11px;
    }
    
    .plano-card.destaque {
        transform: scale(1);
    }
    
    .comparacao-row {
        grid-template-columns: 1fr;
    }
    
    .comparacao-header {
        grid-template-columns: 1fr;
    }
    
    .col-manual {
        border-bottom: 1px solid #e9ecef;
    }
    
    .tabela-comparativa-wrapper {
        -webkit-overflow-scrolling: touch;
    }
    
    .tabela-comparativa {
        font-size: 12px;
        min-width: 600px;
    }
    
    .tabela-comparativa th,
    .tabela-comparativa td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .tabela-comparativa th.feature-col,
    .tabela-comparativa td.feature-name {
        min-width: 180px;
    }
    
    .cta-content h2 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        line-height: 1.3;
    }
    
    .cta-content h3 {
        font-size: clamp(1.75rem, 6vw, 2rem);
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }
    
    /* Footer em mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
