/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Oficial */
    --primary-color: #10B981;        /* Verde esmeralda */
    --primary-dark: #2e0d3c;         /* Roxo escuro */
    --accent-color: #003300;         /* Verde escuro */
    --dark-bg: #181b20;              /* Cinza escuro */
    --gray-bg: #fffff8;              /* Off-white */
    --white: #FFFFFF;                /* Branco */
    
    /* Cores complementares */
    --secondary-color: #64748b;
    --text-dark: #000000;
    --text-light: #64748b;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --success-color: #10B981;
    --gradient-1: linear-gradient(135deg, #10B981 0%, #2e0d3c 100%);
    --gradient-2: linear-gradient(135deg, #003300 0%, #10B981 100%);
    --light-green: #f5f5f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1.25rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.9;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.dropdown {
    position: relative;
}

.dropdown .arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--gray-bg);
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--white), var(--gray-bg));
    color: var(--text-dark);
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-with-background {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 27, 32, 0.7) 0%, rgba(46, 13, 60, 0.7) 50%, rgba(16, 185, 129, 0.7) 100%);
    z-index: 2;
}

.hero-with-background .container {
    position: relative;
    z-index: 3;
}

.hero-with-background .hero-title {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.hero-with-background .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-with-background .pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-with-background .pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-with-background .pricing-card:hover::before {
    opacity: 1;
}

.hero-with-background .pricing-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4), 
                0 0 0 1px rgba(16, 185, 129, 0.3),
                0 0 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 1);
}

.hero-with-background .pricing-card.featured {
    border: 2px solid rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 253, 245, 0.98) 100%);
}

.hero-with-background .pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    animation: shimmer 3s infinite;
    background-size: 200% 100%;
}

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

.hero-with-background .pricing-card.featured:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 24px 80px rgba(16, 185, 129, 0.5), 
                0 0 0 2px rgba(16, 185, 129, 0.4),
                0 0 60px rgba(16, 185, 129, 0.3);
}

.hero-with-background .pricing-card .btn {
    transition: all 0.3s ease;
}

.hero-with-background .pricing-card:hover .btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

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

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-gray {
    background: var(--gray-bg);
}

/* All industry-specific backgrounds now use inline styles for complete isolation */

.section-light {
    background: var(--light-green);
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Value Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Cards Grid - 3 cards aligned */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pillar-card {
    background: rgba(255, 255, 248, 0.98);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #2e0d3c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(46, 13, 60, 0.1);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4), 
                0 0 0 1px rgba(16, 185, 129, 0.3),
                0 0 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 248, 1);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.5));
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2e0d3c;
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-title {
    color: #10B981;
}

.pillar-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #181b20;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    text-align: center;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Engines */
.engines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.engine-card {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

.engine-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px);
}

.engine-featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.engine-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.engine-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 70px;
    padding: 0 0.5rem;
}

.engine-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.75rem 0;
    line-height: 1.2;
}

.engine-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.engine-cta {
    width: 100%;
    margin-top: 1.5rem;
    white-space: nowrap;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.diagnostic-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.diagnostic-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px);
}

.diagnostic-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.diagnostic-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.diagnostic-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.industry-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.industry-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.industry-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #2e0d3c 0%, #181b20 100%);
    color: #fffff8;
    border-radius: 16px;
    margin: 4rem 2rem;
    border: 2px solid #10B981;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fffff8;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #fffff8;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0 2rem;
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #1a1d29 0%, var(--dark-bg) 100%);
    padding: 4rem 0 2rem;
}

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

.footer-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-title span {
    color: var(--primary-color);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

/* Modern Footer Grid */
.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-brand {
    max-width: 280px;
}

.footer-col-brand .footer-logo {
    height: 45px;
    margin-bottom: 1.25rem;
}

.footer-col-brand .footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer Headings Modern */
.footer-heading-modern {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
}

/* Contact List */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

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

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter {
    text-align: center;
    padding: 3rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.newsletter-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Footer Bottom Modern */
.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-col-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Page Header */
.page-header {
    background: #2e0d3c;
    color: #fffff8;
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid #10B981;
}

.page-header-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fffff8;
    letter-spacing: -1px;
}

.page-header-subtitle {
    font-size: 1.125rem;
    color: #fffff8;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
    text-align: left;
}

.feature-list li {
    padding: 0.65rem 0 0.65rem 2.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 800;
    font-size: 1.4rem;
    top: 0.5rem;
}

/* Pain Points */
.pain-points {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    align-items: stretch;
}

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

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

@media (max-width: 480px) {
    .pain-points {
        grid-template-columns: 1fr;
    }
}

.pain-point {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pain-point h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.pain-point p {
    font-size: 0.95rem;
    color: #7f1d1d;
    flex-grow: 1;
}

/* Outcomes */
.outcomes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    align-items: stretch;
}

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

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

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

.outcome {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.outcome h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.outcome p {
    font-size: 0.95rem;
    color: #047857;
    flex-grow: 1;
}

/* Content Box */
.content-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin: 3rem 0;
    transition: all 0.3s;
}

.content-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.content-box-gray {
    background: var(--gray-bg);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Modern FAQ Section */
.section-faq-modern {
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-bg) 50%, var(--white) 100%);
    position: relative;
}

.section-faq-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(46, 13, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-faq-modern .container {
    position: relative;
    z-index: 1;
}

/* Modern FAQ Items */
.faq-item-modern {
    background: var(--white);
    padding: 1.5rem 2rem 1.5rem 5rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

/* Accordion Styles */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    line-height: 1;
}

.faq-accordion.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
}

.faq-answer-wrapper > * {
    overflow: hidden;
}

.faq-accordion.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 1rem;
}

.faq-accordion .faq-answer {
    margin: 0;
    padding-top: 0.5rem;
}

.faq-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.faq-item-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-item-modern:hover::before {
    transform: scaleY(1);
}

.faq-item-modern:hover::after {
    opacity: 1;
}

.faq-item-modern:hover {
    transform: translateX(8px) translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.faq-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.faq-item-modern:hover .faq-icon {
    transform: translateY(-50%) scale(1.2) rotate(10deg);
}

.faq-item-modern .faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
    transition: color 0.3s ease;
    flex: 1;
}

.faq-item-modern:hover .faq-question {
    color: var(--primary-color);
}

.faq-item-modern .faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Staggered Animation */
.faq-list-modern .faq-item-modern:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.faq-list-modern .faq-item-modern:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.faq-list-modern .faq-item-modern:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.faq-list-modern .faq-item-modern:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.faq-list-modern .faq-item-modern:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.faq-list-modern .faq-item-modern:nth-child(6) {
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

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

/* Responsive FAQ */
@media (max-width: 640px) {
    .faq-item-modern {
        padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    }
    
    .faq-icon {
        left: 1rem;
        font-size: 1.5rem;
    }
    
    .faq-header {
        gap: 0.5rem;
    }
    
    .faq-item-modern .faq-question {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-toggle {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
    
    .faq-item-modern:hover {
        transform: translateX(4px) translateY(-2px);
    }
    
    .faq-item-modern .faq-answer {
        font-size: 0.9rem;
    }
}

/* Two Column Layout */
.two-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Responsive */
@media (max-width: 1200px) {
    .engines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .engines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        background: var(--white);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        color: var(--text-dark);
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.2s;
    }
    
    .nav-links a:hover {
        background: rgba(16, 185, 129, 0.1);
        color: var(--primary-color);
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 0.5rem;
        margin-top: 0.25rem;
        background: transparent;
    }
    
    .dropdown-menu li {
        width: 100%;
    }
    
    .dropdown-menu a {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-nav {
        margin-top: 0.5rem;
        text-align: center;
        border-radius: 8px;
    }

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

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

    .two-col-grid {
        grid-template-columns: 1fr;
    }

    /* Hero with background responsive */
    .hero-with-background {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    /* Remove overlay on tablet/mobile */
    .hero-with-background::before {
        display: none;
    }

    .hero-with-background .hero-title {
        font-size: 2rem;
    }

    .hero-with-background .hero-subtitle {
        font-size: 1rem;
    }

    /* Pricing Grid Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-with-background .pricing-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .hero-with-background .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-lg {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .pillars-grid,
    .steps-grid,
    .contact-cards-grid,
    .industries-grid,
    .diagnostics-grid {
        grid-template-columns: 1fr;
    }

    /* Hero with background mobile */
    .hero-with-background {
        padding: 3rem 0 2rem;
    }

    /* Remove overlay on mobile */
    .hero-with-background::before {
        display: none;
    }

    .hero-with-background .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-with-background .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-with-background .hero-cta {
        margin-bottom: 2rem;
    }

    /* Pricing cards mobile */
    .pricing-grid {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

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

    .price {
        font-size: 1.4rem;
    }

    .pricing-features {
        font-size: 0.9rem;
    }

    /* Table mobile scroll - handled in comparison table section */

    /* CTA Section mobile */
    .section-cta {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }

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

    .cta-text {
        font-size: 1rem;
    }

    /* Purple Band mobile */
    .section-purple {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }

    .section-purple .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

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

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        height: 32px;
    }

    /* Logo mobile */
    .logo-img {
        height: 24px;
    }

    /* Page header mobile */
    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .page-header-subtitle {
        font-size: 1rem;
    }
}

/* Feature Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--gray-bg);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.comparison-table td {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: var(--success-color);
    font-weight: 800;
    font-size: 1.25rem;
}

.x-icon {
    color: #d1d5db;
    font-weight: 800;
    font-size: 1.25rem;
}

/* Modern Comparison Section */
.section-comparison-modern {
    background: var(--gray-bg);
    padding: 5rem 0;
    overflow-x: visible;
}

.section-comparison-modern .section-header {
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .section-comparison-modern {
        padding: 3rem 0;
        overflow-x: visible;
    }
    
    .section-comparison-modern .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}

/* Modern Comparison Table - Inspired by Schedule Style */
.comparison-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3rem auto;
    max-width: 1100px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table-modern thead {
    background: transparent;
}

.comparison-table-modern th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.comparison-table-modern th.feature-col {
    background: var(--primary-color);
    text-align: left;
    font-size: 0.9rem;
}

.comparison-table-modern th.plan-featured {
    background: var(--primary-dark);
    position: relative;
}

.comparison-table-modern tbody tr {
    background: var(--white);
    transition: all 0.2s ease;
}

.comparison-table-modern tbody tr:nth-child(odd) {
    background: #f8f9fa;
}

.comparison-table-modern tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.comparison-table-modern tbody td {
    padding: 1rem 1.25rem;
    text-align: center;
    border: none;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.comparison-table-modern tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-table-modern tbody td:nth-child(4) {
    background: rgba(46, 13, 60, 0.03);
}

.comparison-table-modern tbody tr:nth-child(odd) td:nth-child(4) {
    background: rgba(46, 13, 60, 0.06);
}

.comparison-table-modern .check-icon {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4rem;
}

.comparison-table-modern .x-icon {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.4;
}

/* Responsive Table */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    position: relative;
    margin: 2rem 0;
}

/* Custom Scrollbar */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 968px) {
    .section-comparison-modern .container {
        padding: 0;
    }
    
    .table-wrapper {
        margin: 2rem 0 0;
        padding: 0 1rem;
        width: 100%;
    }
    
    .comparison-table-modern {
        border-radius: 12px;
        min-width: 650px;
        font-size: 0.85rem;
        display: table;
    }
    
    .comparison-table-modern th,
    .comparison-table-modern td {
        padding: 0.875rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .comparison-table-modern tbody td:first-child {
        white-space: normal;
        min-width: 200px;
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 1;
    }
    
    .comparison-table-modern tbody tr:nth-child(odd) td:first-child {
        background: #f8f9fa;
    }
    
    .comparison-table-modern th.plan-col {
        font-size: 0.8rem;
        padding: 0.875rem 0.5rem;
    }
    
    .comparison-table-modern th.feature-col {
        position: sticky;
        left: 0;
        z-index: 2;
    }
}

@media (max-width: 640px) {
    .section-comparison-modern .container {
        padding: 0;
        max-width: 100%;
    }
    
    .section-comparison-modern .section-header {
        padding: 0 1rem;
    }
    
    .table-wrapper {
        margin: 2rem 0 0;
        padding: 0 0.5rem;
        width: 100%;
        overflow-x: auto;
    }
    
    .comparison-table-modern {
        min-width: 600px;
        border-radius: 8px;
        margin: 0 auto;
    }
    
    .comparison-table-modern th,
    .comparison-table-modern td {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .comparison-table-modern tbody td:first-child {
        font-size: 0.8rem;
        min-width: 160px;
        padding-right: 0.75rem;
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 1;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
    }
    
    .comparison-table-modern tbody tr:nth-child(odd) td:first-child {
        background: #f8f9fa;
    }
    
    .comparison-table-modern th.feature-col {
        font-size: 0.75rem;
        min-width: 160px;
        position: sticky;
        left: 0;
        z-index: 2;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-table-modern th.plan-col {
        font-size: 0.7rem;
        padding: 0.75rem 0.4rem;
        letter-spacing: 0.3px;
    }
    
    .comparison-table-modern .check-icon {
        font-size: 1.2rem;
    }
    
    .comparison-table-modern .x-icon {
        font-size: 1rem;
    }
    
    /* Scroll hint */
    .table-wrapper::after {
        content: '← Deslize para ver mais →';
        display: block;
        text-align: center;
        font-size: 0.7rem;
        color: var(--text-light);
        margin-top: 1rem;
        padding: 0 1rem;
        font-style: italic;
        opacity: 0.8;
    }
}

/* Metrics/Testimonial Section */
.metrics-section {
    background: var(--white);
    padding: 4rem 0;
}

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

.metric-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Purple Band Section - Modern Gradient */
.section-purple {
    border-radius: 20px;
    margin: 4rem 2rem;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(46, 13, 60, 0.3);
}

.section-purple-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    border-radius: 20px;
}

.section-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.5) 0%, rgba(16, 185, 129, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

.section-purple .container {
    position: relative;
    z-index: 3;
}

.section-purple .section-title {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-purple .section-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4);
}

.section-purple .btn-primary {
    background: #2e0d3c;
    color: var(--white);
    border: 2px solid #2e0d3c;
    transition: all 0.3s ease;
}

.section-purple .btn-primary:hover {
    background: #10B981;
    color: var(--white);
    border-color: #10B981;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

/* Improved Spacing */
.section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s;
    height: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(to bottom, var(--white), var(--light-green));
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
    transform: translateY(-4px);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-grow: 1;
}

.full-width {
    width: 100%;
}

/* Testimonial / Metrics */
.metrics-section {
    padding: 4rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 620px;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.testimonial-portrait {
    display: flex;
    justify-content: center;
}

.portrait-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 1.5rem;
    width: 260px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    transition: all 0.3s;
}

.portrait-card:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.portrait-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background-image: url('/images/background/val.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.portrait-name {
    font-weight: 700;
    color: var(--text-dark);
}

/* Table wrapper */
.table-wrapper {
    overflow-x: auto;
}

/* Additional Visual Enhancements */
.hero-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card,
.pillar-card,
.engine-card,
.industry-card,
.diagnostic-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Tablet Optimizations */
@media (min-width: 641px) and (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .hero-with-background .hero-title {
        font-size: 2.25rem;
    }

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

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

    .container {
        padding: 0 1.5rem;
    }
}

/* Mobile Menu Improvements */
@media (max-width: 968px) {
    .nav-links.active {
        background: var(--white);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    }
}

/* Mobile Comparison Cards */
.comparison-mobile {
    display: none;
}

.comparison-desktop {
    display: block;
}

.mobile-plan-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mobile-plan-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(to bottom, var(--white), rgba(16, 185, 129, 0.05));
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: scale(1.02);
}

.mobile-plan-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.mobile-plan-card.featured:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
}

.mobile-plan-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.mobile-plan-card.featured .mobile-plan-header {
    border-bottom-color: var(--primary-color);
}

.mobile-plan-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mobile-plan-card.featured .mobile-plan-header h3 {
    color: var(--primary-color);
}

.mobile-plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.mobile-featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.mobile-features-list {
    margin-bottom: 1.5rem;
}

.mobile-feature {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s ease;
}

.mobile-feature.included {
    background: rgba(16, 185, 129, 0.08);
    color: var(--text-dark);
}

.mobile-feature.included::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.mobile-feature.excluded {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-light);
    opacity: 0.6;
}

.mobile-feature.excluded::before {
    content: "–";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Show mobile version on small screens */
@media (max-width: 768px) {
    .comparison-desktop {
        display: none;
    }
    
    .comparison-mobile {
        display: block;
        padding: 0 1rem;
    }
    
    .mobile-plan-card {
        padding: 1.5rem;
    }
    
    .mobile-plan-header h3 {
        font-size: 1.5rem;
    }
    
    .mobile-plan-price {
        font-size: 1.75rem;
    }
    
    .mobile-feature {
        font-size: 0.9rem;
        padding: 0.65rem 0.65rem 0.65rem 2.25rem;
    }
}


