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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    position: relative;
    z-index: 1001;
    animation: slideInFromRight 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo-img {
    height: 120px;
    width: auto;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1d4ed8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%),
                      url('hero-background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0 100px;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    transform: scaleX(-1);
}

.hero > * {
    transform: scaleX(-1);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2) saturate(1.3);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8)) brightness(1.2);
}

.feature-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.feature-item.highlight {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
}

.feature-item.highlight .feature-text {
    color: #fbbf24;
    font-weight: 600;
    font-size: 13px;
}

.feature-item.highlight:hover {
    background: rgba(251, 191, 36, 0.3);
}

/* Search Container */
.search-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    min-height: 240px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer-tabs 4s infinite;
    z-index: 1;
}

.tab-btn:nth-child(1)::before {
    animation-delay: 0s;
}

.tab-btn:nth-child(2)::before {
    animation-delay: 2s;
}

.tab-btn.no-shimmer::before {
    animation: none;
}

@keyframes shimmer-tabs {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.tab-btn.active {
    background: rgba(251, 191, 36, 0.9);
    color: #1a1a1a;
    border-color: rgba(251, 191, 36, 1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.search-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.035);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 950px;
    margin: 0 auto;
}

.search-input,
.search-select {
    flex: 1;
    min-width: 200px;
    padding: 22px 30px;
    border: none;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-right: 3px solid #fbbf24;
    font-weight: 700;
    letter-spacing: 1px;
}

.search-input:last-of-type,
.search-select:last-of-type {
    border-right: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-select {
    color: #ffffff;
    flex: 0 0 auto;
    min-width: 200px;
    width: 200px;
}

.search-select option {
    background: #1a1a1a;
    color: #ffffff;
}

#plate-tab .search-input {
    flex: 1;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.btn-search {
    padding: 22px 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.btn-search:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-search:hover .btn-icon {
    transform: translateX(5px);
}

/* Trust Badge */
.trust-badge {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.badge-icon {
    font-size: 18px;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 25px;
    background: #f8fafc;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-box p {
    color: #6b7280;
    line-height: 1.7;
}

/* What's Included Section */
.whats-included {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.report-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s;
}

.report-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.report-icon {
    font-size: 32px;
}

.report-label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.report-count {
    font-size: 13px;
    color: #1d4ed8;
    font-weight: 600;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #ffffff;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-header {
    background: #f8fafc;
    font-weight: 700;
}

.comparison-cell {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.label {
    justify-content: flex-start;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-cell.brand {
    flex-direction: column;
}

.brand-logo {
    height: 35px;
}

.brand-name {
    font-weight: 700;
    font-size: 18px;
}

.comparison-cell.highlight {
    color: #1d4ed8;
    font-weight: 700;
    font-size: 20px;
}

.price-row {
    background: #f8fafc;
}

.price-row .comparison-cell strong {
    font-size: 24px;
    color: #1d4ed8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
}

.pricing .section-title {
    color: #ffffff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-price {
    margin-bottom: 30px;
    color: #1d4ed8;
}

.price-currency {
    font-size: 32px;
    font-weight: 700;
    vertical-align: top;
}

.price-amount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.price-cents {
    font-size: 32px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #4b5563;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

.btn-pricing,
.btn-pricing-outline {
    width: 100%;
    padding: 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pricing {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.btn-pricing-outline {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.btn-pricing-outline:hover {
    transform: translateY(-2px);
    background: rgba(251, 191, 36, 0.1);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* Support Section */
.support {
    padding: 100px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
}

.support-content {
    max-width: 700px;
    margin: 0 auto;
}

.support-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.support-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.support-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.support-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 30px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    transition: all 0.3s;
}

.support-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

/* States Section */
.states-section {
    padding: 100px 0;
    background: #ffffff;
}

.states-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.state-link {
    padding: 18px 25px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    text-decoration: none;
    color: #059669;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.state-link:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
}

.pricing-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-cta-left {
    text-align: center;
}

.pricing-badge-large {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pricing-amount {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.pricing-features-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.pricing-features-list li {
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

.pricing-cta-right {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-by-label {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pricing-vin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-vin-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-vin-input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9fafb;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

/* Final Comparison */
.final-comparison {
    padding: 100px 0;
    background: #ffffff;
}

.comparison-table-final {
    max-width: 900px;
    margin: 50px auto 0;
}

.comparison-table-styled {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table-styled thead {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
}

.comparison-table-styled th {
    padding: 25px 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

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

.comparison-table-styled td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table-styled tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-styled .feature-name {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.comparison-table-styled .highlight-col {
    background: #f0fdf4;
}

.check-icon {
    color: #059669;
    font-size: 24px;
    font-weight: 700;
}

.cross-icon {
    color: #dc2626;
    font-size: 24px;
    font-weight: 700;
}

.price-row {
    background: #f9fafb;
}

.price-cell {
    padding: 10px 0;
}

.price-cell strong {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.price-amount-table {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
}

.highlight-col .price-amount-table {
    color: #059669;
}

/* Why Choose VIN TRUST Section */
.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-choose-left {
    padding-right: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    line-height: 1.2;
}

.feature-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-icon-block {
    flex-shrink: 0;
}

.feature-icon-large {
    font-size: 48px;
    display: block;
}

.feature-text-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-text-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.why-choose-right {
    position: relative;
}

.report-demo {
    position: relative;
}

.report-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    max-width: 400px;
    margin: 0 auto;
    animation: reportSlideIn 1.5s ease-out;
    overflow: hidden;
}

@keyframes reportSlideIn {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Report Header */
.report-header {
    padding: 20px 20px 0;
}

.car-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    margin-bottom: 15px;
    animation: carImageZoom 2s ease-out 0.2s both;
}

@keyframes carImageZoom {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.car-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.car-details {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.car-year, .car-make, .car-model {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.vin-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.vin-label {
    color: #6b7280;
    font-weight: 500;
}

.vin-number {
    font-family: monospace;
    background: #f9fafb;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: #1f2937;
}

/* Report Status */
.report-status {
    padding: 15px 20px;
    background: #fef3c7;
    border-top: 1px solid #fde68a;
    border-bottom: 1px solid #fde68a;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.status-badge.warning {
    color: #92400e;
}

.status-icon {
    font-size: 16px;
}

/* Issues Section */
.issues-section {
    padding: 20px;
}

.issues-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.issue-item {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid;
}

.issue-item.critical {
    background: #fef2f2;
    border-left-color: #dc2626;
}

.issue-item.warning {
    background: #fffbeb;
    border-left-color: #f59e0b;
}

.issue-item.info {
    background: #eff6ff;
    border-left-color: #3b82f6;
}

.issue-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.issue-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    flex: 1;
}

.issue-severity {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.issue-item.critical .issue-severity {
    background: #dc2626;
    color: #ffffff;
}

.issue-item.warning .issue-severity {
    background: #f59e0b;
    color: #ffffff;
}

.issue-item.info .issue-severity {
    background: #3b82f6;
    color: #ffffff;
}

.issue-details p {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.4;
}

.issue-date, .issue-damage, .issue-mileage, .issue-recall {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Report Summary */
.report-summary {
    padding: 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.summary-stats {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.btn-view-report {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-view-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
}

.issue-section {
    margin-top: 25px;
    animation: issueSectionSlideIn 1.8s ease-out 0.3s both;
}

@keyframes issueSectionSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.issue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 15px;
}

.issue-icon {
    font-size: 20px;
}

.issue-text {
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.issue-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.records-found {
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
}

.btn-view-issues {
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-issues:hover {
    background: #b91c1c;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    animation: summaryCardsFadeIn 2s ease-out 0.5s both;
}

@keyframes summaryCardsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.summary-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.summary-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.summary-count {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.summary-card.total-loss .summary-count {
    color: #dc2626;
}

.summary-card.auto-specs .summary-count {
    color: #059669;
}

.summary-card.awards .summary-count {
    color: #059669;
}

.summary-card.title-records .summary-count {
    color: #fbbf24;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-badge {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.footer-badge strong {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        background-color: #1a1a1a;
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%),
                          url('hero-background.jpg');
        background-attachment: scroll;
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .search-form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input,
    .search-select {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        min-width: 100%;
    }
    
    .search-input:last-child,
    .search-select:last-of-type {
        border-bottom: none;
    }
    
    .btn-search {
        width: 100%;
        justify-content: center;
    }
    
    .search-input,
    .search-select {
        min-width: 100%;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell.brand:not(:first-child) {
        display: none;
    }
    
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .state-link {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .pricing-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-amount {
        font-size: 42px;
    }
    
    .pricing-cta-right {
        padding: 30px;
    }
    
    .comparison-table-styled {
        font-size: 14px;
    }
    
    .comparison-table-styled th,
    .comparison-table-styled td {
        padding: 15px 10px;
    }
    
    .price-amount-table {
        font-size: 22px;
    }
}
