:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --secondary-color: #10B981;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dropdown Menu Styles */
.nav-list .dropdown {
    position: relative;
}

.nav-link.dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    vertical-align: middle;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s;
    vertical-align: middle;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        margin-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #059669, #10B981);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.announcement-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #059669;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.announcement-text {
    font-weight: 500;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.announcement-link {
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.announcement-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

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

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

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

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

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e5e7eb;
    color: #9ca3af;
    border-color: #e5e7eb;
}

.btn:disabled:hover,
.btn[disabled]:hover {
    transform: none;
    box-shadow: none;
    background: #e5e7eb;
    color: #9ca3af;
    border-color: #e5e7eb;
}

/* Pages */
.page {
    display: none;
    min-height: calc(100vh - 70px);
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #FDE047;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Improved button styles for hero section */
.hero-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-buttons .btn-primary:hover {
    background: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.feature-card.featured-card {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(90deg, #DC2626, #EF4444);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FDE047, #FACC15);
    color: #1F2937;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    animation: pulse 2s infinite;
}

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

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-subtitle strong {
    color: #FDE047;
    font-size: 26px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-check {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #10B981;
}

.cta-actions {
    margin-bottom: 50px;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 18px 40px;
    font-size: 18px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    transition: left 0.5s;
}

.btn-white:hover::before {
    left: 100%;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-white:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-contact {
    margin-top: 20px;
    font-size: 16px;
}

.cta-phone {
    color: #FDE047;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    margin-left: 10px;
    transition: all 0.3s;
}

.cta-phone:hover {
    text-shadow: 0 0 20px rgba(253, 224, 71, 0.8);
}

.cta-testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.cta-stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.cta-testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cta-testimonial span {
    font-size: 14px;
    opacity: 0.9;
}

/* Clients Slider */
.clients-slider {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 500;
}

.clients-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-slide {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

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

.client-logo {
    flex: 0 0 200px;
    height: 60px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 0.7;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-logo svg {
    width: 100%;
    height: 100%;
    fill: #4B5563;
}

.client-logo svg text {
    fill: #4B5563;
}

/* Gradient masks for fade effect */
.clients-track::before,
.clients-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-track::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.clients-track::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Pause on hover */
.clients-track:hover .clients-slide {
    animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .clients-slide {
        animation-duration: 20s;
    }
    
    .client-logo {
        flex: 0 0 150px;
        margin: 0 20px;
    }
}

/* Pricing */
.page-title {
    text-align: center;
    font-size: 42px;
    margin: 50px 0 20px;
}

.page-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Module Cards */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

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

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

.module-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.module-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-badge.mandatory {
    background: linear-gradient(90deg, #DC2626, #EF4444);
    color: white;
}

.module-badge.coming-soon {
    background: linear-gradient(90deg, #6B7280, #9CA3AF);
    color: white;
}

.module-header {
    text-align: center;
    margin-bottom: 20px;
}

.module-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.module-header h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.module-description {
    color: var(--text-light);
    font-size: 13px;
}

.module-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.module-price .price-amount {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.module-price .price-period {
    font-size: 13px;
    color: var(--text-light);
}

.module-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.module-features li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
}

.additional-cost {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Bundles Section */
.bundles-section {
    background: var(--bg-light);
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.bundles-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .bundles-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.bundle-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.bundle-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.bundle-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.bundle-card h3 {
    font-size: 24px;
    margin: 20px 0 10px;
}

.bundle-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.bundle-original {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
}

.savings {
    background: #FEE2E2;
    color: #DC2626;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.bundle-price {
    margin-bottom: 20px;
}

.bundle-price .price-amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.bundle-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.bundle-includes li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    margin-top: 40px;
}

.pricing-footer p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-card .currency {
    font-size: 20px;
    margin-right: 5px;
}

.pricing-card .amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.pricing-card .period {
    font-size: 18px;
    color: var(--text-light);
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

/* Help Section */
.help-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 60px;
    gap: 15px;
}

.search-input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.help-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.help-card h3 {
    margin-bottom: 15px;
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.help-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 30px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

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

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-company {
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Legal Pages */
.legal-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

.legal-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.legal-card h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-content h4 {
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px !important;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 3000;
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: var(--bg-light);
}

/* Cookie Settings Modal */
.modal-large {
    max-width: 600px;
}

.cookie-settings {
    margin-top: 30px;
}

.cookie-category {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h3 {
    font-size: 16px;
    margin: 0;
}

.cookie-category p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Fichaje Digital Page */
.fichaje-hero {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.fichaje-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.fichaje-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.fichaje-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fichaje-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fichaje-subtitle strong {
    color: #FDE047;
    font-weight: 700;
}

.fichaje-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.fichaje-buttons .btn-primary {
    background: white;
    color: #4F46E5;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.fichaje-buttons .btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fichaje-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.fichaje-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.fichaje-price-hero {
    font-size: 18px;
    opacity: 0.9;
}

.fichaje-price-hero strong {
    color: #FDE047;
    font-size: 22px;
}

/* Normativa Section */
.normativa-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.normativa-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.normativa-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.normativa-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.normativa-items {
    display: grid;
    gap: 20px;
}

.normativa-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.normativa-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.normativa-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.normativa-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.normativa-alert {
    background: white;
    border: 2px solid #DC2626;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.normativa-alert h3 {
    color: #DC2626;
    margin-bottom: 20px;
}

.normativa-alert ul {
    list-style: none;
    margin-bottom: 25px;
}

.normativa-alert li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.normativa-alert li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Process Steps */
.fichaje-features {
    padding: 80px 0;
}

.fichaje-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-arrow {
    font-size: 32px;
    color: var(--primary-color);
    align-self: center;
}

/* Benefits Grid */
.fichaje-benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Tablet Section */
.tablet-section {
    padding: 80px 0;
}

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

.tablet-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.tablet-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.tablet-features {
    margin-bottom: 30px;
}

.tablet-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.check-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.tablet-price {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Tablet Mockup */
.tablet-mockup {
    background: #333;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tablet-screen {
    background: white;
    border-radius: 10px;
    padding: 30px;
    min-height: 400px;
}

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

.fichaje-interface h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.fichaje-interface p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.employee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.employee-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.employee-box:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.clock-display {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stars {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Pricing Section Fichaje */
.pricing-section-fichaje {
    padding: 80px 0;
}

.fichaje-pricing-card {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.fichaje-pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.fichaje-price-display {
    margin-bottom: 10px;
}

.price-big {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-vat {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.fichaje-price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.fichaje-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.trial-note {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ Grid */
.fichaje-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CTA Section Fichaje - Redesigned */
.cta-section-fichaje {
    background: #1a1a2e;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section-fichaje::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

.cta-section-fichaje h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section-fichaje p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-section-fichaje .btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.cta-section-fichaje .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.cta-section-fichaje .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-section-fichaje .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-note::before,
.cta-note::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section-fichaje h2 {
        font-size: 32px;
    }
    
    .cta-section-fichaje p {
        font-size: 18px;
    }
    
    .cta-section-fichaje .btn-primary,
    .cta-section-fichaje .btn-outline {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .cta-section-fichaje {
        padding: 60px 0;
    }
    
    .announcement-bar {
        padding: 8px 10px;
    }
    
    .announcement-content {
        font-size: 13px;
    }
    
    .announcement-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .legal-card {
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    /* Fichaje Page Responsive */
    .fichaje-title {
        font-size: 32px;
    }

    .fichaje-subtitle {
        font-size: 18px;
    }

    .fichaje-buttons {
        flex-direction: column;
        align-items: center;
    }

    .normativa-grid {
        grid-template-columns: 1fr;
    }

    .fichaje-process {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tablet-content {
        grid-template-columns: 1fr;
    }

    .tablet-mockup {
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* CTA Section Responsive */
    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .btn-white {
        font-size: 16px;
        padding: 15px 30px;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-link {
        display: block;
        padding: 10px;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .pricing-grid,
    .help-categories {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .help-search {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title,
    .page-title {
        font-size: 28px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* CTA Popup Modal Styles */
.cta-popup-content {
    max-width: 400px;
    width: 90%;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background: white;
}

.cta-popup-body {
    padding: 25px;
    text-align: center;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta-popup-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.cta-popup-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-popup-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-popup-options {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-popup-phone,
.cta-popup-callback {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cta-popup-phone h3,
.cta-popup-callback h3 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-popup-phone-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-popup-phone-number:hover {
    transform: scale(1.05);
}

.phone-icon {
    font-size: 20px;
    -webkit-text-fill-color: initial;
}

.cta-popup-schedule {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
}

.cta-popup-divider {
    display: none;
}

.cta-popup-callback-text {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
}

.cta-popup-callback .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
}

.cta-popup-features {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin: 0 -25px -25px;
    flex-wrap: wrap;
}

.cta-popup-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: white;
    flex: 1;
    justify-content: center;
}

.feature-check {
    color: white;
    font-weight: bold;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.25);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsiveness for CTA popup */
@media (max-width: 768px) {
    .cta-popup-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .cta-popup-body {
        padding: 20px;
    }
    
    .cta-popup-title {
        font-size: 22px;
    }
    
    .cta-popup-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-popup-divider {
        display: none;
    }
    
    .cta-popup-phone-number {
        font-size: 26px;
    }
    
    .cta-popup-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}/* Feature Pages Styles */
.feature-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.feature-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.benefit-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

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

.recipe-management,
.inventory-control,
.integration,
.workflow,
.use-cases,
.compliance,
.dashboard-preview,
.fichaje-methods,
.features-highlight,
.testimonial-section {
    padding: 80px 0;
}

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

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--secondary-color);
}

.inventory-features,
.cases-grid,
.methods-grid,
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.inventory-card,
.case-card,
.method-card,
.highlight-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.inventory-card:hover,
.case-card:hover,
.method-card:hover,
.highlight-item:hover {
    transform: translateY(-5px);
}

.inventory-card i,
.case-icon i,
.method-card i,
.highlight-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.integration-flow,
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.integration-item,
.workflow-step {
    text-align: center;
    padding: 20px;
}

.integration-item i,
.step-icon i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.integration-arrow,
.workflow-arrow {
    font-size: 30px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.compliance-list {
    list-style: none;
    margin: 30px 0;
}

.compliance-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.compliance-list i {
    color: var(--secondary-color);
}

.compliance-note {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.dashboard-feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dashboard-image img,
.compliance-image img,
.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.integration-logo img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.integration-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.integration-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-title {
    color: var(--text-light);
}

.case-card ul {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.case-card ul li {
    padding: 5px 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .feature-hero .container,
    .content-grid,
    .compliance-content {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline,
    .integration-flow,
    .workflow-steps {
        flex-direction: column;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .integration-arrow,
    .workflow-arrow {
        transform: rotate(90deg);
    }
}

/* Tablet Mockup Styles */
.tablet-mockup {
    max-width: 500px;
    margin: 0 auto;
}

.tablet-frame {
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tablet-screen {
    background: white;
    border-radius: 20px;
    min-height: 400px;
    padding: 20px;
    overflow: hidden;
}

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

.fichaje-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.fichaje-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.fichaje-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.fichaje-employees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.employee-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.employee-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.employee-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.employee-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.employee-status {
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 15px;
    display: inline-block;
}

.employee-status.in {
    background: #10B981;
    color: white;
}

.employee-status.out {
    background: #EF4444;
    color: white;
}

/* Comparison Table Styles */
.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.comparison-column {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.comparison-column.manual {
    border-top: 4px solid #EF4444;
}

.comparison-column.digital {
    border-top: 4px solid #10B981;
}

.comparison-column h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-column li:last-child {
    border-bottom: none;
}

.comparison-column li.con::before {
    content: "✗";
    color: #EF4444;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comparison-column li.pro::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .tablet-mockup {
        max-width: 100%;
    }
    
    .fichaje-employees {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Pricing Benefits */
.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.pricing-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow);
    font-weight: 500;
}

.pricing-benefit i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* CTA Final Enhanced */
.cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

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

.cta-final-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-final-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-final-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-separator {
    color: white;
    opacity: 0.5;
    font-size: 2rem;
}

.cta-final-subtitle {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-final .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-final-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-final-features span {
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-final-features i {
    color: #10B981;
}

.btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {
    .cta-final-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* Interested Section Styles - Compact Version */
.interested-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
}

.interested-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.interested-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #10B981);
}

.interested-box h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.interested-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.interested-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0 35px;
    flex-wrap: wrap;
}

.interested-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.interested-highlights i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.interested-cta {
    margin-top: 25px;
}

.interested-cta .btn {
    font-size: 1.1rem;
    padding: 16px 35px;
    margin-bottom: 15px;
}

.interested-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .interested-section {
        padding: 40px 0;
    }
    
    .interested-box {
        padding: 30px 20px;
    }
    
    .interested-box h3 {
        font-size: 1.5rem;
    }
    
    .interested-highlights {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .interested-cta .btn {
        font-size: 1rem;
        padding: 14px 30px;
    }
}
