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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #334155;
}

.header-background {
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-pattern {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s ease-in-out infinite;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    margin-right: 8px;
    font-size: 16px;
}

.header-title {
    margin-bottom: 16px;
}

.title-highlight {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.title-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
    color: #cbd5e1;
}

.header-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.btn-whatsapp:active {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 12px;
}

.btn-main {
    font-size: 16px;
    font-weight: 700;
}

.btn-sub {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Banner Section with Profile */
.banner {
    background: #f8fafc;
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #e2e8f0;
}

.profile-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    gap: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.profile-image {
    flex-shrink: 0;
}

.image-placeholder {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.avatar-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.profile-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.profile-title {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 500;
}

.profile-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.credential-icon {
    font-size: 16px;
}

.credential-text {
    font-weight: 500;
}

.profile-content {
    padding: 32px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.expertise-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.expertise-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.expertise-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: #f8fafc;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1fr));
    gap: 32px;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.problem-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.problem-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

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

.problem-content {
    flex: 1;
}

.problem-title {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
    line-height: 1.3;
}

.problem-desc {
    font-size: 14px;
    color: #7f1d1d;
    line-height: 1.6;
    margin-bottom: 12px;
}

.problem-impact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.impact-label {
    font-weight: 600;
    color: #991b1b;
}

.impact-text {
    color: #7f1d1d;
    font-weight: 500;
}

.solution-preview {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preview-icon {
    font-size: 48px;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.preview-icon svg {
    color: white;
    width: 32px;
    height: 32px;
}

.preview-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.preview-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Solution Section */
.solution-section {
    background: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1fr));
    gap: 32px;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 0;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.card-icon svg {
    color: white;
    width: 28px;
    height: 28px;
}

.card-icon .icon {
    font-size: 28px;
    color: white;
}

.card-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
}

.solution-benefits {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #334155;
}

.cta-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="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-header {
    text-align: center;
    margin-bottom: 40px;
}

.cta-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.6;
    color: #cbd5e1;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 32px;
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.highlight-icon svg {
    color: white;
    width: 32px;
    height: 32px;
}

.highlight-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.benefits-section {
    margin-bottom: 32px;
}

.benefits-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-check {
    font-size: 16px;
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.urgency-section {
    text-align: center;
    margin-bottom: 32px;
}

.urgency-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.cta-button-container {
    text-align: center;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
    padding: 24px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.btn-cta:active {
    transform: scale(0.98);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-cta .btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 12px;
}

.btn-cta .btn-main {
    font-size: 18px;
    font-weight: 700;
}

.btn-cta .btn-sub {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.trust-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.trust-icon svg {
    color: white;
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: #222;
    color: #aaa;
    padding: 32px 0 20px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

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

.footer-note {
    margin-bottom: 16px;
    line-height: 1.7;
    padding: 0 10px;
    text-align: center;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .header-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-indicators {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 30px 0 40px;
    }
    
    .title-highlight {
        font-size: 24px;
    }
    
    .title-subtitle {
        font-size: 16px;
    }
    
    .header-description {
        font-size: 14px;
    }
    
    .btn-whatsapp, .btn-cta {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-content {
        padding: 24px;
    }
    
    .header-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus, button:focus {
    outline: 2px solid #1e3c72;
    outline-offset: 2px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 20px;
}

.compliance-notice,
.service-description {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.compliance-notice {
    border-left: 4px solid #dc3545;
    background-color: #fff5f5;
}

.service-description {
    border-left: 4px solid #1e3c72;
    background-color: #f0f7ff;
}

.compliance-notice h4,
.service-description h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.compliance-notice ul {
    margin: 8px 0;
    padding-left: 16px;
}

.compliance-notice li {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.compliance-notice li strong {
    color: #dc3545;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-disagree,
.btn-agree {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-disagree {
    background-color: #6c757d;
    color: white;
}

.btn-disagree:hover {
    background-color: #5a6268;
}

.btn-agree {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-agree:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b5c 100%);
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Responsive */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-header h3 {
        font-size: 16px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-footer {
        padding: 16px;
        flex-direction: column;
    }
    
    .btn-disagree,
    .btn-agree {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* WhatsApp Modal Styles */
.whatsapp-info {
    text-align: center;
    margin-bottom: 24px;
}

.whatsapp-icon-large {
    color: #25D366;
    margin-bottom: 16px;
}

.whatsapp-info h4 {
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 12px;
}

.whatsapp-info p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.service-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.service-details h4 {
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 12px;
}

.service-details ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.service-details li {
    color: #475569;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 0;
}

.important-notice {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.important-notice h4 {
    color: #dc2626;
    font-size: 16px;
    margin-bottom: 12px;
}

.important-notice ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.important-notice li {
    color: #7f1d1d;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 0;
}

.btn-cancel {
    background: #6b7280;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.btn-cancel:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-confirm {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b5c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Print styles for compliance */
@media print {
    .header, .cta-section, .modal {
        display: none;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 40px 0 60px;
    }
    
    .title-highlight {
        font-size: 36px;
    }
    
    .title-subtitle {
        font-size: 18px;
    }
    
    .header-description {
        font-size: 16px;
    }
    
    .btn-whatsapp {
        padding: 18px 32px;
        font-size: 15px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-item,
    .solution-card {
        padding: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-content {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .title-highlight {
        font-size: 28px;
    }
    
    .title-subtitle {
        font-size: 16px;
    }
    
    .header-description {
        font-size: 14px;
    }
    
    .btn-whatsapp {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .problem-item,
    .solution-card {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-content {
        padding: 24px;
    }
}

/* Floating WhatsApp Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-whatsapp-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.floating-btn-text {
    position: absolute;
    right: 75px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
}

.floating-btn-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #128C7E;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .floating-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .floating-btn-text {
        display: none;
    }
}
