:root {
    --primary: #1D9BF0;
    /* Light blue from logo */
    --primary-hover: #1A8CD8;
    /* Slightly darker shade for hover states */
    --secondary: #6C5CE7;
    /* Purple from logo */
    --accent: #a29bfe;
    /* Lighter purple accent */
    --light: #ffffff;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.cookie-table tr:hover {
    background-color: #f9f9f9;
}

/* Contact Page */
.contact-page {
    padding: 160px 0 80px;
    background-color: #f9fafb;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-align: center;
}

.contact-subtitle {
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    flex: 2;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 15px;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray);
    margin-bottom: 5px;
}

.info-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

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

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

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox {
    margin-right: 10px;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Support Page / Help Center */
.support-page {
    padding: 160px 0 80px;
    background-color: #f9fafb;
}

.support-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.support-search {
    max-width: 700px;
    margin: 2rem auto 3rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: var(--gray);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.search-box button {
    position: absolute;
    right: 5px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 4rem;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
    font-size: 1.8rem;
    color: var(--primary);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.category-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

.popular-articles {
    margin-bottom: 4rem;
}

.popular-articles h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.article-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
}

.article-item a {
    display: block;
    padding: 30px;
    color: inherit;
    text-decoration: none;
}

.article-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.article-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.support-contact {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.support-contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.support-contact p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* System Status Page */
.status-page {
    padding: 160px 0 80px;
    background-color: #f9fafb;
}

.status-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-align: center;
}

.status-subtitle {
    color: var(--gray);
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.status-overview {
    margin-bottom: 3rem;
}

.current-status {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.current-status.operational {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 5px solid #10b981;
}

.current-status.incident {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 5px solid #ef4444;
}

.status-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.operational .status-icon {
    color: #10b981;
}

.incident .status-icon {
    color: #ef4444;
}

.status-info h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.status-info p {
    color: var(--gray);
    margin-bottom: 0;
}

.services-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.operational {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-badge.incident {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-badge.maintenance {
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-badge.development {
    background-color: rgba(79, 70, 229, 0.15);
    color: #4f46e5;
}

.uptime {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.incident-details {
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.incident-details p {
    margin-bottom: 0.5rem;
}

.development-notice {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 5px solid #4f46e5;
}

.notice-icon {
    font-size: 2rem;
    color: #4f46e5;
    margin-right: 1.5rem;
}

.notice-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.notice-content p {
    margin-bottom: 0;
    color: var(--gray);
}

.incident-history {
    margin-bottom: 3rem;
}

.incident-history h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 3px;
    background-color: #e5e7eb;
}

.timeline-item {
    position: relative;
    padding-left: 160px;
    margin-bottom: 2.5rem;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: right;
    color: var(--gray);
    font-weight: 600;
}

.timeline-content {
    position: relative;
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #e5e7eb;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-right: 100px;
}

.timeline-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-badge.maintenance {
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.timeline-badge.incident {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.timeline-updates {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.update {
    margin-bottom: 0.5rem;
}

.update-time {
    font-weight: 600;
    margin-right: 0.5rem;
}

.subscription-panel {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.subscription-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.subscription-panel p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.subscription-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.subscription-form .btn {
    border-radius: 0 50px 50px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .features-grid,
    .pricing-plans {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services-status {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-text {
        margin-bottom: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .steps:before {
        display: none;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .articles-list {
        grid-template-columns: 1fr;
    }

    .support-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-status {
        grid-template-columns: 1fr;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-date {
        position: relative;
        left: -40px;
        top: auto;
        width: auto;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .timeline-content:before {
        left: -50px;
    }

    .subscription-form {
        flex-direction: column;
    }

    .subscription-form input {
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .subscription-form .btn {
        border-radius: 50px;
    }

    .development-notice {
        flex-direction: column;
        text-align: center;
    }

    .notice-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

    section {
        padding: 60px 0;
    }

    .pricing-save {
        right: 120px;
    }

    .support-categories {
        grid-template-columns: 1fr;
    }

    .search-box button {
        position: static;
        width: 100%;
        margin-top: 10px;
        border-radius: 5px;
    }

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9fafb;
}

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

section {
    padding: 80px 0;
}

.article-item p {
    margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.8em;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    }

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    border: none;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--light-gray);
    color: var(--primary-hover);
}

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

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

/* Header */
.header {
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo i {
    color: var(--accent);
    margin-right: 0.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links .btn {
    padding: 10px 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f1f5fe 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    width: 33.3%;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-img {
    position: relative;
    flex: 1;
    text-align: right;
}

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

/* Animation dots */
.animation-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: float 15s infinite ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background-color: var(--accent);
    bottom: -200px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10px, 15px) scale(1.05);
    }

    50% {
        transform: translate(20px, 5px) scale(0.95);
    }

    75% {
        transform: translate(5px, 15px) scale(1.05);
    }
}

/* Features Section */
.features {
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

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

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.3rem;
    margin: 15px 0;
}

.feature-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* How it Works */
.how-it-works {
    background-color: var(--light-gray);
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.steps:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 150px;
    right: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 250px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    color: var(--primary);
    font-size: 2rem;
    line-height: 0;
    position: relative;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    background-color: var(--light-gray);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.toggle-label {
    display: inline-block;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 15px;
}

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

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

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

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

input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

.pricing-save {
    position: relative;
    top: 7px;
    background-color: var(--success);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    height: 28px;
}

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

.pricing-plan {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-plan.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    z-index: 1;
}

.pricing-plan.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.popular-badge {
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
    display: flex;
    flex-direction: column;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.2rem;
    margin-right: 10px;
}

.pricing-billing {
    font-size: 0.9rem;
    color: var(--gray);
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 10px;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

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

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.pricing-features li:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
}

.pricing-features i {
    margin-right: 10px;
    color: var(--success);
    font-size: 1.1rem;
}

.pricing-features i.fa-times {
    color: var(--danger);
}

.pricing-features .feature-text {
    flex: 1;
}

.pricing-features .feature-note {
    color: var(--gray);
    font-size: 0.85rem;
}

.pricing-footer {
    padding: 0 30px 30px;
}

/* FAQ */
.faq {
    background-color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: var(--light-gray);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9e9e9;
}

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

.faq-content {
    padding: 0 20px 20px;
    color: var(--gray);
}

.faq-item.active .faq-question {
    background-color: #e9e9e9;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

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

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-btn {
    background-color: white;
    color: var(--primary);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-guarantee i {
    margin-right: 5px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-about {
    color: #bbb;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.form-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 15l-4.243-4.243 1.415-1.414L12 12.172l2.828-2.829 1.415 1.414z" fill="rgba(108,117,125,1)"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1000px;
    width: 90%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.cookie-text {
    margin-right: 20px;
}

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

.cookie-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-accept {
    background-color: var(--primary);
    color: white;
    border: none;
}

.cookie-decline {
    background-color: transparent;
    color: var(--gray);
    border: 1px solid #ddd;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-in {
    animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* Legal Pages */
.legal-page {
    padding: 160px 0 80px;
    background-color: #f9fafb;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.last-updated {
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.mb-80{
    margin-bottom: 80px !important;
}
.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

.legal-content strong {
    font-weight: 600;
}
   /* Stats Section */
   .stats-section {
       background-color: white;
       padding: 80px 0;
   }

   .stats-container {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 30px;
       margin-top: 3rem;
   }

   .stat-box {
       background-color: var(--light-gray);
       border-radius: 10px;
       padding: 30px;
       text-align: center;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       position: relative;
   }

   .stat-box:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   .stat-icon {
       width: 70px;
       height: 70px;
       line-height: 70px;
       border-radius: 50%;
       margin: 0 auto 20px;
       background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
       font-size: 1.8rem;
       color: var(--primary);
   }

   .stat-number {
       font-size: 2rem;
       font-weight: 800;
       color: var(--primary);
       margin-bottom: 5px;
       display: inline-block;
   }

   .stat-suffix {
       font-size: 2rem;
       font-weight: 800;
       color: var(--primary);
       display: inline-block;
       margin-left: 5px;
       position: relative;
       top: -10px;
   }

   .stat-label {
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark);
        line-height: 1.1;
   }

   .stat-growth {
       font-size: 0.9rem;
       color: var(--success);
   }

   /* Clients Section */
   .clients-section {
       background-color: var(--light-gray);
       padding: 80px 0;
   }

   .clients-wrapper {
       max-width: 1100px;
       margin: 0 auto;
   }

   .clients-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 40px;
       margin-top: 3rem;
       margin-bottom: 4rem;
   }

   .client-logo {
       background-color: white;
       border-radius: 10px;
       padding: 30px;
       display: flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
       transition: transform 0.3s ease;
   }

   .client-logo:hover {
       transform: translateY(-10px);
   }

   .client-logo img {
       max-width: 100%;
       max-height: 80px;
       filter: grayscale(100%);
       opacity: 0.7;
       transition: all 0.3s ease;
   }

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

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

   .clients-cta p {
       font-size: 1.2rem;
       margin-bottom: 1.5rem;
       color: var(--dark);
   }

   /* Media Queries para Responsive Design */
   @media (max-width: 992px) {
       .stats-container {
           grid-template-columns: repeat(2, 1fr);
       }
   }

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

   @media (max-width: 576px) {

       .stats-container,
       .clients-grid {
           grid-template-columns: 1fr;
       }
   }
   .btn-outline {
       background-color: transparent;
       color: var(--primary);
       border: 2px solid var(--primary);
       padding: 10px 20px;
       border-radius: 50px;
       font-weight: 600;
       text-decoration: none;
       transition: all 0.3s ease;
   }
   .nav-links li:last-child {
       margin-left: 10px !important;
   }
   .btn-outline:hover {
       background-color: rgba(67, 97, 238, 0.1);
       transform: translateY(-2px);
   }

   /* Media Queries - Responsive Design */

   /* Tablets (hasta 1024px) */
   @media (max-width: 1024px) {

       /* Ajustes generales */
       .container {
           padding: 0 15px;
       }

       h1 {
           font-size: 2.8rem;
       }

       h2 {
           font-size: 2.2rem;
       }

       /* Grids */
       .features-grid,
       .support-categories {
           grid-template-columns: repeat(2, 1fr);
           gap: 20px;
       }

       .pricing-plans {
           grid-template-columns: repeat(3, 1fr);
           gap: 15px;
       }

       .stats-container {
           grid-template-columns: repeat(2, 1fr);
           gap: 20px;
       }

       /* Footer */
       .footer-content {
           grid-template-columns: 2fr 1fr 1fr;
           gap: 30px;
       }

       /* Services status */
       .services-status {
           grid-template-columns: repeat(2, 1fr);
       }

       /* Contact page */
       .contact-wrapper {
           gap: 20px;
       }
   }

   /* Tablets pequeñas y celulares grandes (hasta 768px) */
   @media (max-width: 768px) {

       /* Ajustes generales */
       section {
           padding: 60px 0;
       }

       h1 {
           font-size: 2.4rem;
       }

       h2 {
           font-size: 1.8rem;
       }

       /* Header y navegación */
       .mobile-menu-btn {
           display: block;
       }
           .hero-subtitle{font-size: 1rem;}
       .nav-links {
           display: none;
           position: absolute;
           top: 100%;
           left: 0;
           right: 0;
           background-color: var(--dark);
           box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
           flex-direction: column;
           text-align: center;
           padding: 20px 0;
           z-index: 1000;
       }

       .nav-links.show {
           display: flex;
       }

       .nav-links li {
           margin: 10px 0;
       }

       /* Hero section */
       .hero {
           padding: 120px 0 60px;
       }

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

       .hero-text {
           margin-bottom: 2rem;
       }

       .hero-btns {
           justify-content: center;
       }

       .hero-stats {
           justify-content: center;
       }

       /* Servicios y características */
       .feature-card {
           padding: 20px;
       }

       .steps {
           flex-direction: column;
           gap: 30px;
       }

       .steps:before {
           display: none;
       }

       .step {
           margin-bottom: 20px;
       }

       /* Precios */
       .pricing-plans {
           grid-template-columns: 1fr;
           max-width: 500px;
           margin-left: auto;
           margin-right: auto;
       }

       .pricing-plan.popular {
           transform: scale(1);
       }

       .pricing-plan.popular:hover {
           transform: translateY(-10px);
       }

       /* Footer */
       .footer-content {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       /* Páginas de contacto y soporte */
       .contact-wrapper {
           flex-direction: column;
       }

       .articles-list {
           grid-template-columns: 1fr;
       }

       .services-status {
           grid-template-columns: 1fr;
       }

       /* Timeline */
       .timeline:before {
           left: 30px;
       }

       .timeline-item {
           padding-left: 70px;
       }

       .timeline-date {
           position: relative;
           left: -40px;
           top: auto;
           width: auto;
           text-align: left;
           margin-bottom: 0.5rem;
       }

       .timeline-content:before {
           left: -50px;
       }

       /* Formularios */
       .subscription-form {
           flex-direction: column;
       }

       .subscription-form input {
           border-radius: 5px;
           margin-bottom: 1rem;
       }

       .subscription-form .btn {
           border-radius: 5px;
       }

       /* Avisos */
       .development-notice {
           flex-direction: column;
           text-align: center;
       }

       .notice-icon {
           margin-right: 0;
           margin-bottom: 1rem;
       }

       /* Cookie banner */
       .cookie-banner {
           flex-direction: column;
           text-align: center;
       }

       .cookie-text {
           margin-right: 0;
           margin-bottom: 15px;
       }
   }

   /* Celulares (hasta 576px) */
   @media (max-width: 576px) {

       /* Ajustes generales */
       .container {
           padding: 0 10px;
       }

       section {
           padding: 50px 0;
       }

       h1 {
           font-size: 2rem;
       }

       h2 {
           font-size: 1.6rem;
       }

       /* Grids */
       .features-grid,
       .support-categories,
       .articles-list {
           grid-template-columns: 1fr;
           gap: 15px;
       }

       /* Hero section */
       .hero {
           padding: 100px 0 50px;
       }

       .hero-stats {
           flex-direction: column;
           gap: 20px;
       }

       .stat-item {
           width: 100%;
       }

       /* Botones y formularios */
       .hero-btns {
           flex-direction: column;
           gap: 10px;
       }

       .btn {
           width: 100%;
       }

       /* FAQ */
       .faq-question {
           padding: 15px;
           font-size: 0.9rem;
       }

       /* Formularios */
       .form-group {
           margin-bottom: 15px;
       }

       .modal-content {
           padding: 20px;
       }

       /* Search en soporte */
       .search-box {
           flex-direction: column;
       }

       .search-box input {
           border-radius: 5px;
           margin-bottom: 10px;
       }

       .search-box button {
           width: 100%;
           position: static;
           border-radius: 5px;
       }

       /* WhatsApp float */
       .whatsapp-float {
           padding: 10px 15px;
           right: 15px;
           bottom: 15px;
       }

       .whatsapp-float i {
           margin-right: 5px;
       }

       /* Legal pages */
       .legal-content {
           padding: 20px;
       }

       /* Status page */
       .status-icon {
           font-size: 2rem;
       }

       .current-status {
           padding: 15px;
       }

       /* Pricing save badge */
       .pricing-save {
           position: static;
           margin-bottom: 10px;
           display: inline-block;
       }
   }

   /* Celulares pequeños (hasta 375px) */
   @media (max-width: 375px) {
       h1 {
           font-size: 1.8rem;
       }

       h2 {
           font-size: 1.4rem;
       }

       .feature-icon,
       .category-icon,
       .stat-icon {
           width: 60px;
           height: 60px;
           line-height: 60px;
           font-size: 1.5rem;
       }

       .stat-number {
           font-size: 2.5rem;
       }

       .hero-subtitle,
       .section-subtitle {
           font-size: 0.9rem;
       }

       .pricing-title {
           font-size: 1.3rem;
       }

       .pricing-price {
           font-size: 1.7rem;
       }

       .original-price {
           font-size: 1rem;
       }

       .timeline-content h3 {
           font-size: 1.1rem;
           padding-right: 80px;
       }
   }


   /* Estilos para la sección promocional */
   .promo-countdown {
       position: relative;
       padding: 80px 0;
       background: linear-gradient(135deg, #3a0ca3, #4361ee);
       color: white;
       overflow: hidden;
       text-align: center;
   }

   /* Blobs animados para el fondo (reusando la animación de blobs existente) */
   .promo-blob-1 {
       width: 600px;
       height: 600px;
       background-color: rgba(76, 201, 240, 0.2);
       top: -200px;
       right: -150px;
       animation-delay: 0s;
   }

   .promo-blob-2 {
       width: 500px;
       height: 500px;
       background-color: rgba(255, 255, 255, 0.1);
       bottom: -150px;
       left: -100px;
       animation-delay: -5s;
   }

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

   .promo-badge {
       display: inline-block;
       background-color: #f72585;
       color: white;
       font-weight: 700;
       padding: 8px 20px;
       border-radius: 30px;
       font-size: 0.9rem;
       margin-bottom: 20px;
       box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
       animation: pulse 2s infinite;
   }

   .promo-countdown h2 {
       font-size: 2.5rem;
       font-weight: 800;
       margin-bottom: 20px;
       line-height: 1.2;
   }

   .promo-countdown p {
       font-size: 1.2rem;
       margin-bottom: 30px;
       opacity: 0.9;
   }

   .highlight {
       color: #4cc9f0;
       position: relative;
       display: inline-block;
   }

   .highlight:after {
       content: '';
       position: absolute;
       bottom: 5px;
       left: 0;
       width: 100%;
       height: 6px;
       background-color: rgba(76, 201, 240, 0.3);
       z-index: -1;
   }

   .countdown-container {
       margin: 30px 0 40px;
   }

   .countdown-text {
       font-size: 1.1rem;
       margin-bottom: 15px;
       opacity: 0.9;
   }

   .countdown {
       display: flex;
       justify-content: center;
       gap: 15px;
   }

   .countdown-item {
       min-width: 80px;
       text-align: center;
   }

   .countdown-number {
       background: rgba(255, 255, 255, 0.15);
       border-radius: 8px;
       font-size: 2.2rem;
       font-weight: 700;
       padding: 15px 0;
       margin-bottom: 8px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
       backdrop-filter: blur(5px);
       border: 1px solid rgba(255, 255, 255, 0.1);
   }

   .countdown-label {
       font-size: 0.85rem;
       text-transform: uppercase;
       letter-spacing: 1px;
       opacity: 0.8;
   }

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

       50% {
           transform: scale(1.05);
       }

       100% {
           transform: scale(1);
       }
   }

   /* Adaptación para móviles */
   @media (max-width: 768px) {
       .promo-countdown h2 {
           font-size: 2rem;
       }

       .countdown {
           flex-wrap: wrap;
       }

       .countdown-item {
           min-width: 70px;
       }

       .countdown-number {
           font-size: 1.8rem;
           padding: 10px 0;
       }
   }

   @media (max-width: 576px) {
       .promo-countdown h2 {
           font-size: 1.6rem;
       }

       .countdown-item {
           min-width: 60px;
       }

       .countdown-number {
           font-size: 1.5rem;
       }
   }

   /* Sección de Industrias */
   .industries {
       background-color: white;
       padding: 80px 0;
   }

   .industries-tabs {
       margin-top: 3rem;
   }

   .industries-nav {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       gap: 10px;
       margin-bottom: 2rem;
   }

   .industry-tab {
       background-color: var(--light-gray);
       border: none;
       border-radius: 50px;
       padding: 12px 20px;
       font-size: 1rem;
       font-weight: 600;
       color: var(--gray);
       display: flex;
       align-items: center;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .industry-tab i {
       margin-right: 8px;
       font-size: 1.1rem;
   }

   .industry-tab:hover {
       background-color: rgba(67, 97, 238, 0.1);
       color: var(--primary);
   }

   .industry-tab.active {
       background-color: var(--primary);
       color: white;
   }

   .industry-content-container {
       position: relative;
       min-height: 400px;
   }

   .industry-content {
       display: none;
       opacity: 0;
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       transition: opacity 0.3s ease;
   }

   .industry-content.active {
       display: flex;
       opacity: 1;
       position: relative;
   }

   .industry-info {
       flex: 1;
       padding-right: 30px;
   }

   .industry-image {
       flex: 1;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .industry-image img {
       max-width: 100%;
       border-radius: 10px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }

   .industry-info h3 {
       font-size: 1.8rem;
       margin-bottom: 1rem;
       color: var(--primary);
   }

   .industry-info p {
       font-size: 1.1rem;
       margin-bottom: 1.5rem;
       color: var(--gray);
   }

   .industry-benefits {
       list-style: none;
       margin-bottom: 2rem;
   }

   .industry-benefits li {
       margin-bottom: 10px;
       display: flex;
       align-items: center;
   }

   .industry-benefits li i {
       color: var(--success);
       margin-right: 10px;
   }

   .industry-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 20px;
       margin-bottom: 2rem;
   }

   .industry-grid-item {
       background-color: var(--light-gray);
       border-radius: 10px;
       padding: 20px;
       text-align: center;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .industry-grid-item:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
   }

   .industry-grid-item i {
       font-size: 2rem;
       color: var(--primary);
       margin-bottom: 10px;
   }

   .industry-grid-item h4 {
       margin: 0;
       font-size: 1.1rem;
   }

   .industry-all-cta {
       text-align: center;
       margin-top: 2rem;
   }

   .industry-all-cta p {
       font-size: 1.2rem;
       color: var(--gray);
       max-width: 700px;
       margin: 0 auto 1.5rem;
   }

   /* Responsive de Industrias */
   @media (max-width: 992px) {
       .industry-content.active {
           flex-direction: column;
       }

       .industry-info {
           padding-right: 0;
           margin-bottom: 2rem;
       }

       .industry-grid {
           grid-template-columns: repeat(3, 1fr);
       }
   }

   @media (max-width: 768px) {
       .industry-tab {
           padding: 10px 15px;
           font-size: 0.9rem;
       }

       .industry-info h3 {
           font-size: 1.5rem;
       }

       .industry-grid {
           grid-template-columns: repeat(2, 1fr);
       }
   }

   @media (max-width: 576px) {
       .industries-nav {
           flex-wrap: nowrap;
           overflow-x: auto;
           padding-bottom: 10px;
           justify-content: flex-start;
       }

       .industry-tab {
           white-space: nowrap;
       }

       .industry-info h3 {
           font-size: 1.3rem;
       }

       .industry-info p {
           font-size: 1rem;
       }

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

   .col-10 {
       width: 80%;
       margin: auto;
       margin-bottom: 80px
   }