/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ef233c;
    --secondary-red: #d90429;
    --dark-red: #8d0801;
    --success-green: #2ecc71;
    --dark-bg: #0d0d0d;
    --dark-bg-2: #1a1a1a;
    --dark-bg-3: #242424;
    --dark-bg-4: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --text-dark-muted: #6b7280;
    --accent-glow: rgba(239, 35, 60, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-red: linear-gradient(135deg, #ef233c 0%, #d90429 100%);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--dark-bg);
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(239, 35, 60, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(217, 4, 41, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(141, 8, 1, 0.05) 0%, transparent 50%);
    animation: bgShift 25s ease infinite;
}

@keyframes bgShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5%, -5%) rotate(3deg); }
    66% { transform: translate(5%, 5%) rotate(-3deg); }
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(239, 35, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 35, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    padding: 1rem 2rem;
    padding-top: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb-sep {
    color: var(--text-dark-muted);
    font-size: 0.65rem;
}

.breadcrumb-current {
    color: var(--primary-red);
    font-weight: 600;
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    position: relative;
}

.breadcrumb + .page-banner {
    padding-top: 2rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/slide-bg.webp') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-text h1 .highlight {
    color: var(--primary-red);
    display: block;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(239, 35, 60, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

/* ==================== SECTION TITLES ==================== */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -1px;
    overflow-wrap: break-word;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-red);
    margin: 1rem auto;
}

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 4rem 2rem;
    background: var(--dark-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    animation: fadeIn 1s ease;
    padding: 2rem;
    background: var(--dark-bg-2);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(239, 35, 60, 0.15);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--dark-bg-2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 35, 60, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(239, 35, 60, 0.15);
    background: var(--dark-bg-4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ==================== RATINGS SECTION ==================== */
.ratings {
    padding: 4rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--glass-border);
}

.ratings .section-title,
.ratings .section-subtitle {
    padding: 0 2rem;
}

.ratings-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1rem 2rem 2rem;
}

.rating-card {
    background: var(--dark-bg-2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rating-vehicle {
    flex: 1;
    min-width: 0;
}

.rating-vehicle h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating-specs {
    color: var(--text-dark-muted);
    font-size: 0.8rem;
}

.rating-stars {
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.rating-comment {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    font-style: italic;
    flex: 1;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--dark-bg-2);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.2rem;
    background: var(--dark-bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn.active {
    background: var(--gradient-red);
    border-color: transparent;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.tab-btn:hover {
    border-color: var(--primary-red);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 800px;
    margin: 0 auto;
}

.price-table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark-muted);
    border-bottom: 2px solid var(--glass-border);
}

.price-table thead th:last-child {
    text-align: right;
}

.price-row {
    cursor: pointer;
    transition: background 0.2s;
}

.price-row td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.price-row:hover {
    background: var(--dark-bg-3);
}

.price-row td:first-child {
    font-weight: 600;
}

.price-row td:last-child {
    text-align: right;
}

.price-row .price-credits {
    background: var(--gradient-red);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.price-row .expand-icon {
    color: var(--text-dark-muted);
    font-size: 0.7rem;
    margin-right: 0.5rem;
    transition: transform 0.2s;
    display: inline-block;
    width: 1rem;
}

.price-row.open .expand-icon {
    transform: rotate(90deg);
}

.price-row.no-opts {
    cursor: default;
}

.price-row.no-opts .expand-icon {
    visibility: hidden;
}

.opts-row {
    display: none;
}

.opts-row.open {
    display: table-row;
}

.opts-row td {
    padding: 0;
    border-bottom: 1px solid var(--glass-border);
}

.opts-list {
    background: var(--dark-bg-3);
    padding: 0.5rem 1rem 0.5rem 2.5rem;
}

.opt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.opt-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.opt-credits {
    background: var(--dark-red);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--dark-bg-2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px !important;
}

.faq-item.open .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 35, 60, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==================== LEGAL PAGES ==================== */
.legal-content {
    padding: 3rem 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.3rem;
}

.legal-content a {
    color: var(--primary-red);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-subtitle {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info {
    background: var(--dark-bg-3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin-top: 1.5rem;
}

.company-info p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 0;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.site-footer h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-dark-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-dark-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg-2);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-banner a {
    color: var(--primary-red);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-accept {
    background: var(--gradient-red);
    color: white;
}

.cookie-decline {
    background: var(--dark-bg-3);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== TECH DECORATIONS ==================== */
.tech-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: techLine 3s ease-in-out infinite;
}

@keyframes techLine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
}

/* ==================== 404 PAGE ==================== */
.error-page {
    padding: 10rem 2rem 6rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.error-page p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ==================== RESPONSIVE: 992px ==================== */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg-2);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ==================== RESPONSIVE: 768px ==================== */
@media (max-width: 768px) {
    /* Hero */
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text .subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .hero {
        padding-top: 80px;
    }

    /* Section headings */
    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    /* Features */
    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .features {
        padding: 3rem 1.5rem;
    }

    /* Stats */
    .stats {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Pricing */
    .pricing {
        padding: 3rem 1rem;
    }

    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .price-table thead th {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
    }

    .price-row td {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    /* About */
    .about {
        padding: 3rem 1.5rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta h2 {
        font-size: 1.4rem;
    }

    .cta p {
        font-size: 0.85rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem !important;
    }

    .faq-answer p {
        font-size: 0.8rem !important;
    }

    /* Nav */
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        height: 30px;
    }

    /* Ratings - horizontal scroll on mobile */
    .ratings-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .ratings-grid::-webkit-scrollbar {
        display: none;
    }
    .rating-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Legal pages */
    .legal-content {
        padding: 2rem 1.5rem 4rem;
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }

    .legal-content h3 {
        font-size: 0.95rem;
    }

    .legal-content p,
    .legal-content ul {
        font-size: 0.85rem;
    }

    .company-info {
        padding: 1rem;
    }

    /* Footer */
    .site-footer {
        padding: 2.5rem 1.5rem 0;
    }

    .site-footer h4 {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    /* Page banner */
    .page-banner {
        padding: 6rem 1.5rem 2rem;
    }

    .breadcrumb + .page-banner {
        padding-top: 1.5rem;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding-top: 80px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .breadcrumb-container {
        font-size: 0.75rem;
    }

    /* Cookie banner */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }

    .cookie-banner p {
        font-size: 0.75rem;
    }

    .cookie-btn {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    /* 404 */
    .error-page h1 {
        font-size: 5rem;
    }

    .error-page h2 {
        font-size: 1.4rem;
    }

    .error-page p {
        font-size: 0.9rem;
    }
}

/* ==================== RESPONSIVE: 576px ==================== */
@media (max-width: 576px) {
    .site-footer {
        padding: 2rem 1.25rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand img {
        height: 28px;
    }

    .footer-brand p {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    .site-footer h4 {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.4rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 1.5rem;
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    .footer-bottom-links {
        gap: 1rem;
    }

    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}
