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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Disclaimer Banner */
.disclaimer-banner {
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 0.15rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 24px;
}

.disclaimer-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.disclaimer-banner p {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1;
    flex: 1;
}

.disclaimer-banner strong {
    font-weight: 700;
    color: #ffd700;
}

.disclaimer-link {
    color: #ffd700;
    text-decoration: underline;
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.disclaimer-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Header */
.blog-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.15rem 0;
    position: sticky;
    top: 24px;
    z-index: 100;
    overflow: hidden;
    max-height: 36px;
    height: 36px;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    max-width: 160px;
    overflow: hidden;
    height: 20px;
    position: relative;
}



.logo-text {
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #6366f1;
}

/* Article */
.blog-article {
    padding: 3rem 0;
}

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

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Promo Alert */
.promo-alert {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-icon {
    font-size: 2rem;
}

.alert-text {
    flex: 1;
    color: #92400e;
    font-weight: 600;
}

.alert-text code {
    background: #92400e;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.alert-cta {
    background: #f59e0b;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.alert-cta:hover {
    background: #d97706;
    transform: translateY(-1px);
}

/* Article Content */
.article-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.content-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Table of Contents */
.table-of-contents {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Cost Breakdown */
.cost-breakdown {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cost-item {
    background: #f8fafc;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 8px;
}

.cost-item h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

/* Example Box */
.example-box {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.example-box h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.example-box ul {
    margin-bottom: 0;
}

.example-box strong {
    color: #dc2626;
}

/* Service Reviews */
.service-review {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-service {
    border: 2px solid #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    margin: 0;
    color: #1a202c;
}

.rating {
    color: #fbbf24;
    font-weight: 600;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.pros h4 {
    color: #10b981;
}

.cons h4 {
    color: #ef4444;
}

.pros ul, .cons ul {
    margin: 0;
}

/* Exclusive Deal Box */
.exclusive-deal-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.deal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.deal-badge {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.deal-header h4 {
    color: #065f46;
    font-size: 1.5rem;
    margin: 0;
}

.promo-code-section {
    text-align: center;
    margin: 1.5rem 0;
}

.promo-display {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.promo-code-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-section {
    text-align: center;
    margin-top: 1.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.deal-disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background: #f8fafc;
    font-weight: 600;
    color: #2d3748;
}

.highlighted-row {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
}

.bank-row {
    background: #fef2f2;
}

.green {
    color: #10b981;
    font-weight: 600;
}

.red {
    color: #ef4444;
    font-weight: 600;
}

.table-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

/* Featured Section */
.featured-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.deal-container {
    max-width: 600px;
    margin: 0 auto;
}

.deal-content h3 {
    text-align: center;
    color: #0c4a6e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Steps */
.deal-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
    background: #6366f1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    margin: 0;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #64748b;
    margin: 0;
}

/* Tax Warning */
.tax-warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.tax-warning p {
    color: #92400e;
    font-weight: 600;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-align: center;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.final-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.final-cta .cta-button {
    background: white;
    color: #6366f1;
}

.final-cta .cta-button:hover {
    background: #f8fafc;
}

.final-cta p {
    margin-top: 1rem;
    opacity: 0.9;
}

/* Personal Message */
.personal-message {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    margin: 2rem 0;
}

.personal-message h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer-note {
    font-size: 0.9rem;
    color: #718096;
    background: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.disclaimer-note em {
    font-style: italic;
}

/* Footer */
.blog-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-section a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
}

/* Disclaimer Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.modal-icon {
    margin-bottom: 1.5rem;
}

.friendly-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.modal-body h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-body p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disclaimer-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.disclaimer-list li {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.disclaimer-list li:last-child {
    margin-bottom: 0;
}

.modal-footer-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-buttons {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-btn.btn-primary {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
    cursor: pointer;
}

.modal-btn.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Modal Styles */
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .friendly-icon {
        font-size: 3rem;
        width: 60px;
        height: 60px;
    }
    
    .modal-body h3 {
        font-size: 1.3rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .disclaimer-list {
        padding: 1rem;
    }
    
    .disclaimer-list li {
        font-size: 0.9rem;
    }
    
    .modal-buttons {
        padding: 0 1.5rem 1.5rem;
    }
    
    .modal-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .alert-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
    
    .deal-steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta {
        padding: 2rem;
    }
    
    .final-cta h3 {
        font-size: 1.5rem;
    }
}
