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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #004E89;
    --accent-color: #00A8E8;
    --success-color: #06D6A0;
    --warning-color: #FFD166;
    --danger-color: #EF476F;
    --dark-bg: #1A1A2E;
    --light-bg: #F8F9FA;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --border-color: #E1E8ED;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Floating AI Search Snippets */
.floating-snippets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.snippet {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatSnippet 6s ease-in-out infinite;
    max-width: 280px;
}

.snippet i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.snippet p {
    margin: 0;
    font-weight: 500;
}

/* Positioning */
.snippet-left-1 { top: 20%; left: 5%; animation-delay: 0s; }
.snippet-left-2 { top: 45%; left: 8%; animation-delay: 2s; }
.snippet-left-3 { top: 70%; left: 4%; animation-delay: 4s; }

.snippet-right-1 { top: 25%; right: 5%; animation-delay: 1s; }
.snippet-right-2 { top: 50%; right: 8%; animation-delay: 3s; }
.snippet-right-3 { top: 75%; right: 4%; animation-delay: 5s; }

@keyframes floatSnippet {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hide on smaller screens */
@media (max-width: 1200px) {
    .floating-snippets {
        display: none;
    }
}

/* Floating Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    perspective: 1000px;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 20s infinite linear;
    transform-style: preserve-3d;
    filter: blur(1px);
}

.floating-element i {
    display: block;
    transform: rotateX(10deg) rotateY(10deg);
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.05),
        2px 2px 0 rgba(255, 255, 255, 0.05),
        3px 3px 0 rgba(255, 255, 255, 0.05);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg) translateZ(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg) translateZ(100px);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 0;
    color: white;
}

.header-content {
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Audit Section */
.audit-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.audit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease-out;
}

.audit-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.audit-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Form Styles */
.audit-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 1.2rem;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-bg);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: white;
}

.audit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.audit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.audit-btn:active {
    transform: translateY(0);
}

.audit-btn i {
    font-size: 1.1rem;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 0;
    position: relative;
}

/* AI Loader Animation */
.ai-loader {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scanner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    animation: spin 3s linear infinite;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.scanner::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-left-color: var(--accent-color);
    border-right-color: var(--primary-color);
    animation: spin 2s linear infinite reverse;
}

.ai-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite ease-in-out;
    z-index: 2;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    top: 50%;
    animation: scan 2s ease-in-out infinite;
    z-index: 1;
    opacity: 0.7;
}

.particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particles 2s linear infinite;
    opacity: 0;
}

.particles span:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.particles span:nth-child(2) { top: 50%; right: 0; animation-delay: 0.5s; }
.particles span:nth-child(3) { bottom: 0; left: 50%; animation-delay: 1s; }
.particles span:nth-child(4) { top: 50%; left: 0; animation-delay: 1.5s; }

/* Loading Text & Progress */
.loading-text-container {
    margin-bottom: 40px;
}

.glitch-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
}

.loading-progress-modern {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar-modern {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    position: absolute;
    left: -30%;
    animation: progressIndeterminate 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.wait-time-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    opacity: 0.8;
}

.wait-time-notice i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* Enhanced GEO Facts */
.geo-facts {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

.geo-fact-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.fact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 209, 102, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--warning-color);
    animation: pulse 2s infinite;
}

.fact-content {
    text-align: left;
}

.fact-content h5 {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.geo-fact-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@keyframes scan {
    0%, 100% { top: 20%; opacity: 0; }
    50% { top: 80%; opacity: 1; }
}

@keyframes particles {
    0% { transform: scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes progressIndeterminate {
    0% { left: -30%; width: 30%; }
    50% { width: 50%; }
    100% { left: 100%; width: 30%; }
}

/* Results Section */
.results-section {
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.results-header h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: -1px;
}

.score-display {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.score-circle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--score-percent, 0%);
    background: linear-gradient(to top, var(--score-color, var(--success-color)), rgba(255, 255, 255, 0.5));
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.score-value {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.score-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.interpretation-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: var(--transition);
}

.interpretation-message:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.interpretation-message p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Executive Summary */
.executive-summary {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin: 30px auto 40px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s ease-out;
}

.executive-summary h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.executive-summary h3 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.summary-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.summary-section {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--border-color);
    transition: var(--transition);
}

.summary-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.summary-section:nth-child(1) {
    border-left-color: var(--success-color);
}

.summary-section:nth-child(2) {
    border-left-color: var(--danger-color);
}

.summary-section:nth-child(3) {
    border-left-color: var(--warning-color);
}

.summary-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-section:nth-child(1) h4::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
}

.summary-section:nth-child(2) h4::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
}

.summary-section:nth-child(3) h4::before {
    content: "⚡";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--warning-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
}

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

.summary-section li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.summary-section li:not(:first-child) {
    filter: blur(4px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.summary-section li:not(:first-child)::after {
    content: "🔒";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    filter: blur(0);
}

.summary-section li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Audit Table */
.audit-table-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    overflow-x: auto;
}

.audit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.audit-table thead {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.audit-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.audit-table tbody tr:hover {
    background: var(--light-bg);
}

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

.audit-row.free-section {
    background: rgba(6, 214, 160, 0.03);
}

.audit-row.premium-section {
    background: rgba(255, 209, 102, 0.03);
}

.category-cell {
    padding: 20px 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.category-cell i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.score-cell {
    padding: 20px 12px;
    text-align: center;
}

.score-cell .score-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.status-cell {
    padding: 20px 12px;
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.free {
    background: var(--success-color);
    color: white;
}

.status-badge.premium {
    background: var(--warning-color);
    color: var(--text-dark);
}

.status-badge i {
    margin-right: 4px;
    font-size: 0.75rem;
}

.preview-cell {
    padding: 20px 12px;
    max-width: 300px;
}

.preview-content {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.preview-content.blurred {
    filter: blur(3px);
    user-select: none;
    color: var(--text-light);
    font-style: italic;
}

.action-cell {
    padding: 20px 12px;
    text-align: center;
}

.view-details-btn,
.unlock-report-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.view-details-btn {
    background: var(--secondary-color);
    color: white;
}

.view-details-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.unlock-report-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.unlock-report-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.unlock-report-btn i {
    font-size: 0.9rem;
}

/* Detail Modal */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.detail-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.detail-modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.detail-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-detail-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-detail-modal:hover {
    transform: rotate(90deg);
}

.detail-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

/* Results Grid (keeping for backward compatibility) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.result-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out backwards;
    border: 2px solid transparent;
}

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

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.result-card.free-section {
    border-top: 3px solid var(--success-color);
}

.result-card.premium-section {
    border-top: 3px solid var(--warning-color);
}

.card-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.card-header h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
}

.score-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 20px;
}

.issues-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Sections */
.card-section {
    margin-bottom: 20px;
}

.card-section h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.analysis-section h5 {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.analysis-section h5 i {
    color: var(--accent-color);
}

.actions-section h5 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.actions-section h5 i {
    color: var(--primary-color);
}

/* Analysis Items */
.analysis-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.analysis-item:hover {
    background: #e6f2ff;
    box-shadow: var(--shadow-sm);
}

.analysis-item.critical {
    background: #fff0f0;
    border-left-color: var(--danger-color);
}

.analysis-item.warning {
    background: #fffbf0;
    border-left-color: var(--warning-color);
}

.analysis-item.good {
    background: #f0fff4;
    border-left-color: var(--success-color);
}

.analysis-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    color: var(--accent-color);
}

.analysis-icon.critical { color: var(--danger-color); }
.analysis-icon.warning { color: var(--warning-color); }
.analysis-icon.good { color: var(--success-color); }

/* Action Items */
.action-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #fff9f0;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
    position: relative;
}

.action-item:hover {
    background: #fff5e6;
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.action-item.priority-high {
    border-left-color: var(--danger-color);
    background: #fff0f0;
}

.action-item.priority-medium {
    border-left-color: var(--warning-color);
    background: #fffbf0;
}

.action-item.priority-low {
    border-left-color: var(--success-color);
    background: #f0fff4;
}

.action-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    color: var(--primary-color);
}

.priority-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}

.priority-badge.high {
    background: var(--danger-color);
    color: white;
}

.priority-badge.medium {
    background: var(--warning-color);
    color: var(--text-dark);
}

.priority-badge.low {
    background: var(--success-color);
    color: white;
}

/* Item Content */
.item-content {
    flex: 1;
}

.item-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.issue-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--border-color);
    transition: var(--transition);
}

.issue-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.issue-item.critical {
    border-left-color: var(--danger-color);
}

.issue-item.warning {
    border-left-color: var(--warning-color);
}

.issue-item.good {
    border-left-color: var(--success-color);
}

.issue-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.issue-icon.critical { color: var(--danger-color); }
.issue-icon.warning { color: var(--warning-color); }
.issue-icon.good { color: var(--success-color); }

.issue-content {
    flex: 1;
}

.issue-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.issue-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Paywall Overlay */
.premium-section {
    position: relative;
}

.premium-section.locked .card-content {
    position: relative;
    min-height: 200px;
}

.premium-section.locked .issues-list {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.paywall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.paywall-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: lockPulse 2s infinite;
}

.paywall-overlay h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.paywall-overlay p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.unlock-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.premium-section.unlocked .paywall-overlay {
    display: none;
}

.premium-section.unlocked .issues-list {
    filter: none;
    pointer-events: auto;
    user-select: auto;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.payment-modal.show {
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing {
    margin: 30px 0;
}

.price-tag {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
    align-self: flex-end;
    margin-bottom: 8px;
}

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

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.features-list i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.btn-purchase {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    width: 100%;
    margin-top: 10px;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.demo-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Currency Toggle */
.currency-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.currency-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.currency-btn:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.currency-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: transparent;
}

/* Cents in price tag */
.cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Secure note */
.secure-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-note i {
    color: var(--success-color);
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Error Modal */
.error-modal-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
}

.error-icon {
    font-size: 5rem;
    color: var(--danger-color);
    margin-bottom: 20px;
    animation: pulse 1s infinite;
}

.error-modal-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.error-modal-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.error-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    color: white;
    opacity: 0.8;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
}

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

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

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes lockPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .audit-table th:nth-child(4),
    .audit-table td:nth-child(4) {
        display: none; /* Hide preview column on tablets */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .logo i {
        font-size: 1.8rem;
    }
    
    /* Header Adjustments */
    .results-header h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .score-circle {
        width: 140px;
        height: 140px;
    }
    
    .score-value {
        font-size: 3rem;
    }
    
    /* Table Responsive Card View */
    .audit-table-container {
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .audit-table, 
    .audit-table thead, 
    .audit-table tbody, 
    .audit-table th, 
    .audit-table td, 
    .audit-table tr { 
        display: block; 
    }
    
    .audit-table thead {
        display: none; /* Hide table headers */
    }
    
    .audit-table tbody tr {
        background: white;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        padding: 15px;
        border: 1px solid var(--border-color);
    }
    
    .audit-table td {
        padding: 8px 0;
        text-align: left;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .category-cell {
        font-size: 1.1rem;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color) !important;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .score-cell, .status-cell, .action-cell {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    /* Add labels for mobile view */
    .score-cell::before {
        content: "Score:";
        font-weight: 600;
        color: var(--text-light);
    }
    
    .status-cell::before {
        content: "Status:";
        font-weight: 600;
        color: var(--text-light);
    }
    
    .preview-cell {
        display: none; /* Hide preview on mobile */
    }
    
    .action-cell {
        margin-top: 15px;
        padding-top: 15px !important;
        border-top: 1px solid var(--border-color) !important;
        justify-content: center;
    }
    
    .view-details-btn, .unlock-report-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Modal Mobile Optimization */
    .detail-modal-content, 
    .error-modal-content,
    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 10px;
        padding: 20px;
    }
    
    .detail-modal-header {
        padding: 15px;
    }
    
    .detail-modal-body {
        padding: 15px;
    }
    
    /* Summary Section */
    .summary-content {
        grid-template-columns: 1fr;
    }
    
    .executive-summary {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .audit-card {
        padding: 25px 15px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .audit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-value {
        font-size: 2.5rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-card {
    flex: 1;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 25px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: 3px solid white;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 15px auto 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card:hover .step-icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1);
}

.step-card:hover .step-icon-wrapper i {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.step-connector {
    display: none;
}

/* Desktop connector lines */
@media (min-width: 900px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -30px;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    }
    
    .step-connector::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid rgba(118, 75, 162, 0.5);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }
    
    .step-card:last-child .step-connector {
        display: none;
    }
}

/* Mobile responsive for How It Works */
@media (max-width: 899px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-card {
        max-width: 340px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 60px 0 40px;
    }
    
    .step-card {
        padding: 30px 20px 25px;
    }
    
    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .step-icon-wrapper i {
        font-size: 1.6rem;
    }
}

/* Why Audit Section - Blended with Homepage Design */
.why-audit-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

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

.benefit-icon {
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.icon-wrapper i {
    font-size: 22px;
    color: white;
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    flex: 1;
    opacity: 0.8;
}

.metric-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.cta-banner {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-shadow: none;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.cta-button i {
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-audit-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .why-audit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .cta-banner {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
