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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature p {
    opacity: 0.9;
}

/* Test Form Section */
.test-form-section {
    padding: 4rem 0;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.test-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #2a5298;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.btn-primary.btn-white {
    background: white;
    color: #1e3c72;
    border: 2px solid #1e3c72;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
}

.btn-primary.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.2);
    border-color: #2a5298;
    color: #2a5298;
}

.btn-secondary {
    background: transparent;
    color: #2a5298;
    padding: 1rem 2rem;
    border: 2px solid #2a5298;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #2a5298;
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.features-section h2::after {
    content: 'Tudo que você precisa em um só lugar';
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 15px;
    color: #6c757d;
    -webkit-text-fill-color: #6c757d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.4));
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    transform: translateY(-2px);
}

.feature-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #495057;
}

/* Feature Card Specific Colors */
.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, #fff9db 100%);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(135deg, #da77f2 0%, #cc5de8 100%);
}

.feature-card:nth-child(5) {
    background: linear-gradient(135deg, #ffffff 0%, #e7f5ff 100%);
}

.feature-card:nth-child(5)::before {
    background: linear-gradient(135deg, #339af0 0%, #228be6 100%);
}

.feature-card:nth-child(6) {
    background: linear-gradient(135deg, #ffffff 0%, #e6fcf5 100%);
}

.feature-card:nth-child(6)::before {
    background: linear-gradient(135deg, #20c997 0%, #12b886 100%);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.25);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1e3c72;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #2a5298;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #333;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 800;
    position: relative;
}

.pricing h2::after {
    content: 'Escolha o plano ideal para você';
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-top: 1rem;
    opacity: 0.8;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card.featured {
    border: 3px solid #2a5298;
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(42, 82, 152, 0.25);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
}

.pricing-card.featured::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(30, 60, 114, 0.15);
    border-color: #2a5298;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 100px rgba(42, 82, 152, 0.35);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.plan-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.plan-price {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.plan-period {
    color: #888;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px;
    transition: color 0.3s ease;
    list-style: none;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.pricing-card:hover .plan-features li {
    color: #333;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #2a5298;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3c72;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

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

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(42, 82, 152, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-item h3 {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active h3 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.faq-item p {
    padding: 0 2rem 2rem 2rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
    padding-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2a5298;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="20" cy="60" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.comparison-section h2::after {
    content: 'Escolha o melhor plano para você';
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 15px;
    opacity: 0.9;
    color: #e8f2ff;
}

.comparison-table {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    background: white;
    color: #333;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.comparison-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.comparison-table th:nth-child(5) {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    position: relative;
}

.comparison-table th:nth-child(5)::before {
    content: '🏆 MAIS POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.comparison-table tr:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.comparison-table td:first-child {
    font-weight: 700;
    text-align: left;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    color: #1e3c72;
    border-right: 3px solid #667eea;
}

.comparison-table td:nth-child(5) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    font-weight: 600;
    color: #ee5a24;
}

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

.comparison-table td {
    font-size: 1.1rem;
    font-weight: 500;
}

.comparison-table td:contains('✓') {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-table td:contains('Grátis') {
    color: #27ae60;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison-table td:contains('R$') {
    color: #1e3c72;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Checkout Section */
.checkout-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="checkout-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23checkout-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.checkout-container > div {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.checkout-container > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.15);
}

.checkout-container h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.checkout-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Plan Selection */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.plan-card {
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card input[type="radio"] {
    display: none;
}

.plan-card input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.plan-card.featured {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    transform: scale(1.05);
}

.plan-card.featured::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    transform: scaleX(1);
}

.plan-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.plan-price span {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    -webkit-text-fill-color: #6c757d;
}

.savings {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(81, 207, 102, 0.3);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.plan-features li {
    padding: 8px 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: #51cf66;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Form Styles */
.checkout-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Payment Options */
.payment-options {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.payment-option {
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment-option:hover::before {
    transform: scaleX(1);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.payment-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.payment-info h3 {
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 700;
}

.payment-info p {
    margin: 0;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

.payment-discount {
    margin-left: auto;
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(81, 207, 102, 0.3);
}

/* Order Summary */
.summary-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 35px;
    border-radius: 20px;
    margin-top: 30px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    font-size: 1rem;
    font-weight: 500;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.discount {
    color: #51cf66;
    font-weight: 600;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 20px 0;
    border-radius: 1px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-benefits {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.summary-benefits h4 {
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-benefits ul {
    list-style: none;
    padding: 0;
}

.summary-benefits li {
    padding: 8px 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-benefits li::before {
    content: '✓';
    color: #51cf66;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Purchase Section */
.purchase-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.terms-checkbox {
    margin-bottom: 35px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #667eea;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-purchase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 30px;
    min-width: 320px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-purchase:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.btn-purchase:active {
    transform: translateY(-2px) scale(1.02);
}

.security-info {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

.security-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Checkout Responsive */
@media (max-width: 768px) {
    .checkout-section {
        padding: 60px 0;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 95%;
    }
    
    .checkout-container > div {
        padding: 25px;
        border-radius: 20px;
    }
    
    .checkout-container h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card:hover {
        transform: translateY(-3px);
    }
    
    .plan-header h3 {
        font-size: 1.2rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 15px;
        border-radius: 10px;
    }
    
    .payment-option {
        padding: 20px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-icon {
        font-size: 2rem;
    }
    
    .payment-info h3 {
        font-size: 1.1rem;
    }
    
    .payment-info p {
        font-size: 0.9rem;
    }
    
    .payment-discount {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .summary-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .summary-item {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    
    .summary-total {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .summary-benefits h4 {
        font-size: 1rem;
    }
    
    .summary-benefits li {
        font-size: 0.9rem;
    }
    
    .purchase-section {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .btn-purchase {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 280px;
        border-radius: 40px;
    }
    
    .security-info {
        font-size: 0.9rem;
    }
}

/* Guarantees Section */
.guarantees {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.guarantees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guarantee-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23guarantee-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.guarantees .container {
    position: relative;
    z-index: 1;
}

.guarantees h2 {
    text-align: center;
    color: white;
    margin-bottom: 60px;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.guarantees h2::after {
    content: 'Sua tranquilidade é nossa prioridade';
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 15px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.guarantee-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guarantee-card:hover::before {
    transform: scaleX(1);
}

.guarantee-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

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

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

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

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

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 12px 24px rgba(102, 126, 234, 0.4));
}

.guarantee-card h3 {
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.guarantee-card p {
    color: #495057;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Guarantee Card Specific Colors */
.guarantee-card:nth-child(1) .guarantee-icon {
    color: #ff6b6b;
}

.guarantee-card:nth-child(2) .guarantee-icon {
    color: #ffd93d;
}

.guarantee-card:nth-child(3) .guarantee-icon {
    color: #6bcf7f;
}

.guarantee-card:nth-child(4) .guarantee-icon {
    color: #4ecdc4;
}

.guarantee-card:nth-child(1)::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.guarantee-card:nth-child(2)::before {
    background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
}

.guarantee-card:nth-child(3)::before {
    background: linear-gradient(135deg, #6bcf7f 0%, #27ae60 100%);
}

.guarantee-card:nth-child(4)::before {
    background: linear-gradient(135deg, #4ecdc4 0%, #16a085 100%);
}

/* Guarantees Responsive */
@media (max-width: 768px) {
    .guarantees {
        padding: 80px 0;
    }
    
    .guarantees h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .guarantees h2::after {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .guarantee-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .guarantee-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .guarantee-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .guarantee-card:hover .guarantee-icon {
        transform: scale(1.05) rotate(3deg);
    }
    
    .guarantee-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .guarantee-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .guarantees {
        padding: 60px 0;
    }
    
    .guarantees h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .guarantees h2::after {
        font-size: 0.9rem;
    }
    
    .guarantees-grid {
        gap: 25px;
        margin-top: 30px;
    }
    
    .guarantee-card {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .guarantee-icon {
        font-size: 3rem;
        margin-bottom: 18px;
    }
    
    .guarantee-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .guarantee-card p {
        font-size: 0.95rem;
    }
}

/* MVV Section */
.mvv-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.mvv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mvv-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,10 50,30 30,50 10,30" fill="%23667eea" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23mvv-pattern)"/></svg>') repeat;
    pointer-events: none;
}

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

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

.mvv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

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

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

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

.mvv-icon {
    font-size: 4.5rem;
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 12px 24px rgba(102, 126, 234, 0.4));
}

.mvv-card h3 {
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 800;
    position: relative;
}

.mvv-card p {
    color: #495057;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.mvv-card ul {
    text-align: left;
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
}

.mvv-card li {
    padding: 12px 0;
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.mvv-card li::before {
    content: '▶';
    color: #667eea;
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.mvv-card li strong {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* MVV Card Specific Colors */
.mvv-card:nth-child(1) .mvv-icon {
    color: #ff6b6b;
}

.mvv-card:nth-child(2) .mvv-icon {
    color: #4ecdc4;
}

.mvv-card:nth-child(3) .mvv-icon {
    color: #ffd93d;
}

.mvv-card:nth-child(1)::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.mvv-card:nth-child(2)::before {
    background: linear-gradient(135deg, #4ecdc4 0%, #16a085 100%);
}

.mvv-card:nth-child(3)::before {
    background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
}

.mvv-card:nth-child(1):hover {
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.2);
}

.mvv-card:nth-child(2):hover {
    box-shadow: 0 30px 60px rgba(78, 205, 196, 0.2);
}

.mvv-card:nth-child(3):hover {
    box-shadow: 0 30px 60px rgba(255, 217, 61, 0.2);
}

/* MVV Responsive */
@media (max-width: 768px) {
    .mvv-section {
        padding: 80px 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 40px;
    }
    
    .mvv-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .mvv-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .mvv-icon {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .mvv-card:hover .mvv-icon {
        transform: scale(1.05) rotate(-3deg);
    }
    
    .mvv-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .mvv-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .mvv-card li {
        padding: 10px 0;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .mvv-card li::before {
        font-size: 0.7rem;
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    .mvv-section {
        padding: 60px 0;
    }
    
    .mvv-grid {
        gap: 30px;
        margin-top: 30px;
    }
    
    .mvv-card {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .mvv-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .mvv-card h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .mvv-card p {
        font-size: 0.95rem;
    }
    
    .mvv-card ul {
        margin: 20px 0 0 0;
    }
    
    .mvv-card li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    margin-bottom: 1rem;
    color: #2a5298;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #2a5298;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.6;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.pricing-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.pricing-preview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 800;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.pricing-preview .pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-preview .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-preview .pricing-card.featured {
    border: 3px solid #2a5298;
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(42, 82, 152, 0.25);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
}

.pricing-preview .pricing-card .badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.pricing-preview .pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(30, 60, 114, 0.15);
    border-color: #2a5298;
}

.pricing-preview .pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 100px rgba(42, 82, 152, 0.35);
}

.pricing-preview .pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.pricing-preview .pricing-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.pricing-preview .pricing-card .price {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.pricing-preview .pricing-card .price span {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

.pricing-preview .pricing-card .savings {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pricing-preview .pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-preview .pricing-card ul li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px;
    transition: color 0.3s ease;
}

.pricing-preview .pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-preview .pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-preview .pricing-card:hover ul li {
    color: #333;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(114, 9, 183, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(83, 52, 131, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.certifications h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.certifications h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #7209b7, #533483, #0f3460, #533483, #7209b7);
    border-radius: 2px;
    animation: certShimmer 3s ease-in-out infinite;
}

@keyframes certShimmer {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

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

.cert-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: certSlideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.2s; }
.cert-card:nth-child(3) { animation-delay: 0.3s; }
.cert-card:nth-child(4) { animation-delay: 0.4s; }

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

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7209b7, #533483, #0f3460);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(114, 9, 183, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(114, 9, 183, 0.4));
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(114, 9, 183, 0.6));
}

.cert-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.cert-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .certifications {
        padding: 80px 0;
    }
    
    .certifications h2 {
        font-size: 2.5rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .cert-card {
        padding: 2rem 1.5rem;
    }
    
    .cert-icon {
        font-size: 3rem;
    }
    
    .cert-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .certifications {
        padding: 60px 0;
    }
    
    .certifications h2 {
        font-size: 2rem;
    }
    
    .cert-card {
        padding: 1.5rem 1rem;
    }
    
    .cert-icon {
        font-size: 2.5rem;
    }
    
    .cert-card h3 {
        font-size: 1.2rem;
    }
    
    .cert-card p {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .form-container h2 {
        font-size: 2rem;
    }
    
    .benefits h2,
    .services h2,
    .pricing h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-preview .pricing-card.featured {
        transform: none;
    }
    
    .pricing-preview .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-preview .pricing-card {
        max-width: 100%;
    }
    
    /* Comparison Section Mobile */
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .comparison-section h2::after {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .comparison-table {
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .comparison-table th {
        font-size: 1rem;
    }
    
    .comparison-table th:nth-child(5)::before {
        font-size: 0.7rem;
        padding: 3px 10px;
        top: -12px;
    }
    
    .comparison-table td:first-child {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 60px 0;
    }
    
    .features-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .features-section h2::after {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .test-form-section,
    .benefits,
    .services,
    .pricing,
    .testimonials,
    .faq,
    .cta-section {
        padding: 2rem 0;
    }
    
    .benefit-card,
    .service-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-choose h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f8f9ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    color: white;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.2); }
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.reason-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }
.reason-card:nth-child(5) { animation-delay: 0.5s; }
.reason-card:nth-child(6) { animation-delay: 0.6s; }

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

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.4),
        inset 0 1px 0 rgba(255,255,255,0.6);
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
}

.reason-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.reason-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
}

.reason-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Why Choose Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 80px 0;
    }
    
    .why-choose h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .reason-card {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .reason-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .reason-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .reason-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose h2 {
        font-size: 1.8rem;
    }
    
    .reasons-grid {
        gap: 25px;
        padding: 0 10px;
    }
    
    .reason-card {
        padding: 25px 20px;
    }
    
    .reason-icon {
        font-size: 3rem;
    }
    
    .reason-card h3 {
        font-size: 1.3rem;
    }
    
    .reason-card p {
        font-size: 0.95rem;
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f8f9ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    color: white;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 2px;
    animation: teamShimmer 2s ease-in-out infinite;
}

@keyframes teamShimmer {
    0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.3); }
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: statFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.4),
        inset 0 1px 0 rgba(255,255,255,0.6);
    background: linear-gradient(145deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.team-departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.department {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: deptFadeIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.department:nth-child(1) { animation-delay: 0.5s; }
.department:nth-child(2) { animation-delay: 0.6s; }
.department:nth-child(3) { animation-delay: 0.7s; }

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

.department::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.department:hover::before {
    transform: scaleX(1);
}

.department:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.4),
        inset 0 1px 0 rgba(255,255,255,0.6);
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
}

.department h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
}

.department p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .team-intro {
        font-size: 1.1rem;
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .stat-card {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .team-departments {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .department {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .department h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .department p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-section h2 {
        font-size: 1.8rem;
    }
    
    .team-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .team-departments {
        gap: 25px;
        padding: 0 10px;
    }
    
    .department {
        padding: 25px 20px;
    }
    
    .department h3 {
        font-size: 1.3rem;
    }
    
    .department p {
        font-size: 0.95rem;
    }
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.technology-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #fff, #f8f9ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    color: white;
}

.technology-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 2px;
    animation: techShimmer 2s ease-in-out infinite;
}

@keyframes techShimmer {
    0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.4); }
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-text {
    animation: techFadeInLeft 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes techFadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tech-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
}

.tech-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: techFeatureFadeIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.tech-features li:nth-child(1) { animation-delay: 0.2s; }
.tech-features li:nth-child(2) { animation-delay: 0.3s; }
.tech-features li:nth-child(3) { animation-delay: 0.4s; }
.tech-features li:nth-child(4) { animation-delay: 0.5s; }
.tech-features li:nth-child(5) { animation-delay: 0.6s; }
.tech-features li:nth-child(6) { animation-delay: 0.7s; }

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

.tech-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.tech-features li:hover::before {
    transform: scaleY(1);
}

.tech-features li:hover {
    transform: translateX(10px);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.4),
        inset 0 1px 0 rgba(255,255,255,0.6);
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
}

.tech-features li strong {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.tech-features li:not(strong) {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tech-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: techFadeInRight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
    animation-delay: 0.3s;
}

@keyframes techFadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-placeholder {
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    padding: 80px 60px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    animation: techPlaceholderShimmer 3s ease-in-out infinite;
}

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

.image-placeholder:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.4),
        inset 0 1px 0 rgba(255,255,255,0.6);
    background: linear-gradient(145deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.image-placeholder span {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.image-placeholder:hover span {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
    margin: 0;
}

/* Technology Section Responsive */
@media (max-width: 768px) {
    .technology-section {
        padding: 80px 0;
    }
    
    .technology-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }
    
    .tech-text h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .tech-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .tech-features li {
        padding: 18px 20px;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    .image-placeholder {
        padding: 60px 40px;
        border-radius: 20px;
    }
    
    .image-placeholder span {
        font-size: 4rem;
        margin-bottom: 15px;
    }
    
    .image-placeholder p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .technology-section {
        padding: 60px 0;
    }
    
    .technology-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .tech-content {
        gap: 40px;
        padding: 0 10px;
    }
    
    .tech-text h3 {
        font-size: 1.6rem;
    }
    
    .tech-text p {
        font-size: 1rem;
    }
    
    .tech-features li {
        padding: 15px 18px;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
    
    .image-placeholder {
        padding: 50px 30px;
    }
    
    .image-placeholder span {
        font-size: 3.5rem;
    }
    
    .image-placeholder p {
        font-size: 1.1rem;
    }
}