/* Import base styles */
@import url('style.css');

/* ========================================
   DAA-Specific Overrides & Enhancements
   ======================================== */

/* Hero Section - DAA Specific */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0f1621 0%, #1a2332 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 113, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 113, 235, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 113, 235, 0.2), rgba(0, 113, 235, 0.2));
    border: 1px solid rgba(0, 113, 235, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0071EB;
}

.hero-badge i {
    color: #0071EB;
    font-size: 16px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #0071EB;
    font-size: 20px;
}

.trust-badges {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    font-size: 24px;
    color: #0071EB;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 0;
    background: var(--bg-light);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
}

.icon-badge.danger {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
}

.icon-badge.success {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
}

.problem-side h2,
.solution-side h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.problem-list,
.solution-list {
    list-style: none;
}

.problem-list li,
.solution-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.problem-list i {
    color: #0071EB;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.solution-list i {
    color: #0071EB;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Data Points Section */
.data-points-section {
    padding: 100px 0;
    background: white;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.data-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.data-card:hover {
    border-color: #0071EB;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.15);
}

.data-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.data-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.data-card ul {
    list-style: none;
}

.data-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.data-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0071EB;
    font-weight: 700;
}

.data-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 128, 255, 0.1);
}

.data-highlight {
    font-size: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.data-highlight i {
    color: #0071EB;
    font-size: 24px;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb 0%, white 100%);
}

.package-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(0, 128, 255, 0.2);
    font-size: 15px;
}

.package-notice i {
    color: #0071EB;
    font-size: 18px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: #0071EB;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.premium {
    border-color: #00D4FF;
    background: linear-gradient(to bottom, white 0%, rgba(0, 212, 255, 0.02) 100%);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.premium-badge {
    background: linear-gradient(135deg, #0071EB, #005bb5);
}

.package-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.package-price {
    margin-bottom: 16px;
}

.package-price .currency {
    font-size: 24px;
    color: var(--text-secondary);
    vertical-align: super;
}

.package-price .amount {
    font-size: 56px;
    font-weight: 900;
    color: #0071EB;
    line-height: 1;
}

.package-price .period {
    font-size: 18px;
    color: var(--text-secondary);
}

.package-leads {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.package-features {
    padding: 30px;
}

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

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.package-features i {
    color: #0071EB;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.per-lead {
    font-size: 14px;
    color: #0071EB;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-cta {
    width: 100%;
    padding: 14px 28px;
    background: white;
    border: 2px solid #0080FF;
    color: #0071EB;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: #0071EB;
    color: white;
}

.package-cta.primary {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
    border: none;
}

.package-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 113, 235, 0.3);
}

.package-cta.premium-cta {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
    border: none;
}

.package-cta.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.package-best {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.volume-notice {
    margin-top: 40px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 128, 255, 0.2);
}

.volume-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.volume-content i {
    font-size: 36px;
    color: #0071EB;
    flex-shrink: 0;
}

.volume-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.volume-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.package-guarantee {
    margin-top: 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content i {
    font-size: 48px;
    color: #0071EB;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.guarantee-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1a2332, #0f1621);
    color: white;
}

.comparison-table th {
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:last-child {
    border-right: none;
}

.price-small {
    font-size: 14px;
    font-weight: 500;
    color: #0071EB;
    display: block;
    margin-top: 4px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.featured-col {
    background: rgba(0, 128, 255, 0.05);
}

.premium-col {
    background: rgba(0, 212, 255, 0.05);
}

.text-success {
    color: #0071EB;
    font-size: 20px;
}

.text-muted {
    color: var(--text-light);
}

.cta-row td {
    padding: 30px 20px;
}

.table-cta {
    padding: 12px 24px;
    background: white;
    border: 2px solid #0080FF;
    color: #0071EB;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-cta:hover {
    background: #0071EB;
    color: white;
}

.table-cta.primary {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
    border: none;
}

.table-cta.premium {
    background: linear-gradient(135deg, #0071EB, #005bb5);
    color: white;
    border: none;
}

/* Upsell Section */
.upsell-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1621 0%, #1a2332 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.upsell-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 113, 235, 0.08) 0%, transparent 50%);
}

.upsell-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.upsell-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.upsell-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.upsell-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.upsell-benefit i {
    color: #0071EB;
    font-size: 18px;
    flex-shrink: 0;
}

.upsell-pricing {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.upsell-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.upsell-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.upsell-amount {
    font-size: 36px;
    font-weight: 800;
    color: #0071EB;
}

.upsell-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.upsell-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.upsell-icon {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #0071EB, #005bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.4);
}

.upsell-icon i {
    font-size: 80px;
    color: white;
}

.upsell-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.upsell-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0071EB;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0071EB;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #0071EB;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item a {
    color: #0071EB;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0071EB 0%, #005bb5 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.final-cta > p {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-button.xl {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-button.secondary.xl {
    background: white;
    color: #0071EB;
    border: none;
}

.cta-button.secondary.xl:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.final-note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.final-note i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .upsell-content {
        grid-template-columns: 1fr;
    }
    
    .upsell-benefits {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .volume-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .comparison-table-wrapper {
        overflow-x: scroll;
    }
}