/* Reset and Base Styles */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #3b82f6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

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

/* FORCE DISABLE all reveal/transform animations on sections */
section,
section.reveal,
section.reveal.revealed,
.hero,
.stats-section {
    transform: none !important;
    opacity: 1 !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: var(--darker-bg);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    display: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #020617;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary);
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-graphic {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    position: relative;
    /* Removed animation: pulse-glow */
}

@media (max-width: 768px) {
    .hero-image {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* Removed pulse-glow animation */

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
    /* Removed animation: float */
    z-index: 2;
    min-width: 200px;
}

.floating-card i {
    font-size: 1.5rem;
    color: white;
}

.card-1 {
    top: 15%;
    left: 0;
    border-left: 4px solid var(--primary);
}

.card-2 {
    top: 45%;
    right: -30px;
    border-left: 4px solid var(--secondary);
}

.card-3 {
    bottom: 15%;
    left: 30px;
    border-left: 4px solid #f59e0b;
}

/* Removed float animation */

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-icon i {
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: #020617;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-row {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    color: white;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
}

.price-row .currency {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.price-row .amount {
    font-size: 4rem;
    letter-spacing: -2px;
}

.period {
    display: block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.price-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.pricing-features li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.pricing-features strong {
    color: white;
    display: block;
}

.feature-detail {
    font-size: 0.85rem;
    opacity: 0.7;
}

.pricing-footer {
    margin-top: auto;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 150px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInFromTop 1s ease-out;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
}

.pricing-header h3::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: shimmer 3s infinite;
}

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

    100% {
        left: 100%;
    }
}

.pricing-card.featured .pricing-header h3 {
    color: white;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    padding: 1rem 1.2rem;
    border-radius: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.pricing-card.featured .pricing-header h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    gap: 0.2rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #10b981;
    margin: 0 0.3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.pricing-card.featured .amount {
    color: #10b981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.4rem;
    font-weight: 800;
    white-space: nowrap;
}

.period {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.3rem;
    font-weight: 700;
    display: block;
    text-align: center;
    margin-top: 0.3rem;
    margin-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.price-description {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4b5563;
    line-height: 1.3;
    min-height: 2.5rem;
}

.pricing-features i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.pricing-features li>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-detail {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: auto;
}

/* Advanced Pricing Section */
.advanced-pricing {
    background: var(--darker-bg);
    padding-top: 0;
}

.advanced-card {
    padding-top: 4rem;
}

.card-type-badge {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.full-width {
    width: 100%;
}

/* Demos Section */
.demos-container {
    margin-top: 5rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.demos-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.demos-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

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

.demo-card {
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.demo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-preview-img {
    height: 180px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.demo-card:hover .demo-preview-img img {
    opacity: 1;
}

.demo-info {
    padding: 1.5rem;
    text-align: left;
}

.demo-info span {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.demo-info small {
    color: var(--primary);
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: -1;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: white;
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.testimonial-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-weight: 800;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

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

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.guarantee-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.guarantee-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 41, 59, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
}

.guarantee-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.guarantee-item span {
    color: white;
}

.guarantee-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-badge {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-weight: 800;
    font-size: 1rem;
    animation: pulse 2s infinite;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
}

.guarantee-badge i {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

/* Process Section - Light Background for contrast */
.process-section {
    padding: 100px 0;
    background: #f8fafc !important;
    position: relative;
    overflow: hidden;
}

.process-section .section-title {
    color: #1e293b !important;
}

.process-section .section-description {
    color: #64748b !important;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.08);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #1e293b !important;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-step p {
    color: #64748b !important;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* FAQ Section - Light Background */
.faq-section {
    padding: 100px 0;
    background: #f8fafc !important;
}

.faq-section .section-title {
    color: #1e293b !important;
}

.faq-section .section-description {
    color: #64748b !important;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b !important;
    margin: 0;
}

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

.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 2rem 1.5rem;
    color: #64748b !important;
    line-height: 1.7;
    margin: 0;
}

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

/* Blog Preview Section */
.blog-preview {
    padding: 100px 0;
    background: var(--darker-bg) !important;
}

.blog-preview .section-title {
    color: white !important;
}

.blog-preview .section-description {
    color: var(--text-muted) !important;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(30, 41, 59, 0.6) !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none;
    display: block;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.6) !important;
}

.blog-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2) !important;
    color: var(--primary) !important;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: #cbd5e1 !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: block;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    opacity: 1;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Fix for Advanced Pricing/Demos Container */
.demos-container {
    margin-top: 5rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.demos-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: transparent;
    -webkit-text-fill-color: white;
}

.demos-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

/* Pricing Card Visibility Fixes */
.pricing-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(88, 28, 135, 0.4), rgba(30, 41, 59, 0.6));
    border: 2px solid var(--secondary);
}

.pricing-header h3 {
    color: white;
}

.pricing-card .price-old {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pricing-card .price-row {
    color: white;
}

.pricing-card .period {
    color: var(--primary);
}

.pricing-features li {
    color: var(--text-muted);
}

.pricing-features strong {
    color: white;
}

.pricing-features .feature-detail {
    color: rgba(255, 255, 255, 0.5);
}

/* Advanced Card Specifics */
.advanced-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
}

.advanced-card .card-type-badge {
    color: white;
    background: var(--primary);
    border: none;
    top: 1.5rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--darker-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-section {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

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

.project-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-align: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-card .btn {
    width: 100%;
    border-radius: 0;
    padding: 1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #020617;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.map-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0;
    margin-top: 3rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 500px;
}

.map-wrapper {
    position: relative;
    filter: grayscale(100%) invert(90%);
}

.map-wrapper iframe {
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.map-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

.map-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.map-details i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--darker-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.benefit-icon i {
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about-feature p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.about-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:last-child {
    grid-column: 1 / -1;
    background: var(--primary);
    color: #020617;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

.stat-card:last-child p {
    opacity: 1;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    background: transparent;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

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

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

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.faq-item.active {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(30, 41, 59, 0.4);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(15, 23, 42, 0.6);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

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

/* Footer */
.footer {
    background: #020617;
    color: white;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--primary);
    color: #020617;
    transform: translateY(-2px);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hero {
        padding: 120px 0 40px;
        min-height: 70vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.2rem 0;
    }

    .feature-item {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .hero-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .feature-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .about-graphic {
        grid-template-columns: 1fr;
    }

    .stat-card:last-child {
        grid-column: 1;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .map-info {
        padding: 1.5rem;
    }

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

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 0 30px;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }

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

    .feature-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
        padding: 1rem 1.2rem;
    }


    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .period {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

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

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

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

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

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {

    .service-card,
    .pricing-card,
    .testimonial-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .service-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .service-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .pricing-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .pricing-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .pricing-card:nth-child(3) {
        animation-delay: 0.3s;
    }
}

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

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes morphing {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes neonGlow {

    0%,
    100% {
        box-shadow: 0 0 5px #10b981, 0 0 10px #10b981, 0 0 15px #10b981;
    }

    50% {
        box-shadow: 0 0 10px #10b981, 0 0 20px #10b981, 0 0 30px #10b981;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

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

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

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Nuevos estilos para la estructura de planes */
.plan-section {
    margin-bottom: 2rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #059669, #10b981);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-header p {
    font-size: 1rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

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

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.project-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e5e7eb;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: rgba(251, 191, 36, 0.9);
    color: #1f2937;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.project-card .btn {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.8rem;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card .btn:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Responsive para proyectos */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plan-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .plan-header p {
        font-size: 0.9rem;
    }

    .project-card {
        margin-bottom: 1rem;
    }

    .project-image {
        height: 180px;
    }

    .project-info h4 {
        font-size: 1.4rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    .plan-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .plan-header h3 {
        font-size: 1.3rem;
    }

    .plan-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .project-image {
        height: 150px;
    }

    .project-info h4 {
        font-size: 1.2rem;
    }

    .project-tags {
        gap: 0.3rem;
    }

    .tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .project-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Mejoras adicionales para móviles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        margin: 1.5rem 0;
    }

    .feature-item {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service-card,
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.4rem;
        padding: 1rem 1.2rem;
    }


    .amount {
        font-size: 2.2rem;
    }

    .pricing-card.featured .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.1rem;
    }

    .period {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .plan-section {
        padding: 1.5rem;
    }

    .project-image {
        height: 150px;
    }
}

/* Print styles */
@media print {

    .header,
    .whatsapp-float,
    .hero-buttons,
    .pricing-footer {
        display: none;
    }

    .hero {
        background: white;
        color: black;
    }

    .section-title {
        color: black;
    }
}

/* --- New Pricing Styles --- */

/* Offer Badge */
.offer-badge {
    background: #ef4444;
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
    align-self: center;
}

/* Price Old */
.price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

/* Advanced Pricing Section */
.advanced-pricing {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.advanced-pricing::before {
    background:
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
}

.advanced-pricing .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.advanced-pricing .section-description {
    color: #94a3b8;
}

.advanced-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.advanced-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-15px);
}

.advanced-card .pricing-header h3 {
    background: transparent;
    box-shadow: none;
    color: #f8fafc;
    text-shadow: none;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    text-align: center;
    justify-content: center;
    min-height: auto;
}

.advanced-card .pricing-header h3::before {
    display: none;
}

.advanced-card .price-row .amount {
    color: #f8fafc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.advanced-card .price-row .currency {
    color: #94a3b8;
}

.advanced-card .price-description {
    color: #94a3b8;
}

.advanced-card .pricing-features li {
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.advanced-card .pricing-features li i {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.advanced-card .feature-detail {
    color: #64748b;
}

.card-type-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    width: fit-content;
    align-self: center;
    letter-spacing: 1px;
}

.full-width {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Adjustments for existing pricing cards to accommodate badges */
.pricing-card .pricing-header {
    justify-content: flex-start;
    padding-top: 0;
}

/* --- Demos Section Styles --- */
.demos-container {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.demos-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demos-description {
    color: #94a3b8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(5px);
}

.demo-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-preview {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #60a5fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.demo-card:hover .demo-preview {
    transform: scale(1.1) rotate(5deg);
    color: #a78bfa;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.demo-info span {
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.1rem;
}

.demo-info small {
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}


/* --- Process Section Styles --- */
.process-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* --- FAQ Section Styles --- */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3b82f6;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
    /* Adjust as needed */
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* --- Floating WhatsApp Button Styles --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    margin-top: 2px;
    /* Visual correction */
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

/* --- Blog Preview Section --- */
.blog-preview {
    padding: 6rem 0;
    background: #f1f5f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.8rem;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.4;
}

.blog-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

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

/* --- Blog Page Styles --- */
.blog-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.blog-posts {
    padding: 4rem 0;
    background: #f8fafc;
}

.blog-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-post-full {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.post-image {
    height: 300px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.post-meta i {
    margin-right: 0.5rem;
}

.post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #334155;
}

.post-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #475569;
}

.post-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
    color: #475569;
}

/* --- Exit Intent Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(50px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.close-modal:hover {
    color: #ef4444;
}

.modal-body {
    padding: 3rem 2rem;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    animation: bounce 2s infinite;
}

.modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.modal-body p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Demo Image Fix */
.demo-preview-img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.demo-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* --- Premium Blog Article Styles --- */
.article-page {
    background-color: #f8fafc;
    padding-top: 100px; /* fallback si layout.js no carga */
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Main Content Area */
.article-main {
    background: white;
    padding: 3rem;
    /* More breathing room */
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.article-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.article-category-badge {
    display: inline-block;
    background: #eff6ff;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.article-meta-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #94a3b8;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
}

.article-featured-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.article-featured-image:hover img {
    transform: scale(1.03);
}

/* Typography & Readability */
.article-body {
    font-size: 1.15rem;
    /* Larger text for better reading */
    line-height: 1.8;
    color: #334155;
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body h2,
.article-body h3 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.article-body h2 {
    font-size: 1.8rem;
}

.article-body h3 {
    font-size: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    position: relative;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.related-post-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.related-post-card:last-child {
    margin-bottom: 0;
}

.related-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-info h4 {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.related-post-card:hover .related-post-info h4 {
    color: #3b82f6;
}

.related-post-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.article-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.article-cta-content {
    position: relative;
    z-index: 1;
}

/* Cleaned up old sections */

/* Blog Section on Homepage */
.blog-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    opacity: 1;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    color: white;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.center-btn {
    text-align: center;
    margin-top: 4rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(30, 41, 59, 0.4);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-item h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: rgba(30, 41, 59, 0.4);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.6);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

/* Footer */
.footer {
    background: #020617;
    padding: 80px 0 40px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    color: #020617;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Blog Page Specific Styles */
.blog-posts {
    padding: 80px 0;
    background: var(--darker-bg);
}

.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-hero {
    min-height: 40vh;
    padding: 120px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    top: 0;
    left: 0;
    pointer-events: none;
}

.blog-hero .hero-content {
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.blog-hero .hero-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

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

    .article-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .article-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .article-main {
        padding: 2rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .demos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .demos-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-grid,
    .blog-grid-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

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

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Hide hero image/graphic completely on mobile */
    .hero-image,
    .hero-graphic {
        display: none !important;
    }

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

    .guarantee-badge {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
        margin: 0 auto;
    }

    .guarantee-badge i {
        font-size: 2rem;
    }

    .guarantee-features {
        justify-content: center;
    }

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

    .social-links {
        justify-content: center;
    }

    .demos-container {
        margin-top: 3rem;
        padding: 3rem 1rem;
        border-radius: 20px;
    }

    .demos-title {
        font-size: 1.8rem;
    }

    .demos-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .demos-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    /* Hide large step numbers on mobile */
    .step-number {
        display: none !important;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Fix advanced pricing cards on mobile */
    .advanced-card {
        padding-top: 5rem !important;
    }

    .card-type-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: inline-flex;
        margin-bottom: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .map-info {
        padding: 2rem;
    }
}