
.autoshield-root {
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --accent-color: #3b82f6;
    --cta-color: #fbbf24;
    --cta-hover: #f59e0b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.autoshield-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Advertisement Top Bar */
.ad-top-bar {
    background-color: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    padding: 8px 20px;
    text-align: center;
    font-weight: 500;
}

/* Header & Nav */
.main-header {
    background-color: var(--secondary-bg);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.brand-logo span {
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Comparison Container */
.comparison-container {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.compare-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(5px);
}

.compare-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.badge-specialist { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.badge-value { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.provider-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.provider-tagline {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: var(--accent-color);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px; /* Fixed height for consistency */
    padding: 0 20px;
    background-color: var(--cta-color);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-top: auto;
    box-sizing: border-box;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: scale(1.02);
}

/* Verdict Section */
.verdict-section {
    background-color: var(--secondary-bg);
    padding: 60px 5%;
    border-radius: 32px;
    margin: 50px 5%;
    text-align: center;
}

/* Footer Section */
.main-footer {
    background-color: #020617;
    padding: 80px 5% 40px;
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
}

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

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.2s;
}

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

.legal-address {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--glass-border);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body h2 {
    margin-top: 0;
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Comparison Table */
.table-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
    background: var(--glass-bg);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th, .comparison-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.comparison-table td {
    color: var(--text-main);
}

.comparison-table .feature-col {
    font-weight: 600;
    color: var(--text-muted);
    width: 30%;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* FAQ Section */
.faq-container {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-main);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .comparison-grid { grid-template-columns: 1fr; }
}
