:root {
    /* Colors - New Theme */
    --bg-dark: #FFFEFA;
    /* Warm White */
    --bg-card: #E5E5E5;
    /* Platinum */
    --text-primary: #333333;
    /* Charcoal */
    --text-secondary: rgba(51, 51, 51, 0.8);
    /* Charcoal with opacity */

    /* Accent */
    --accent-primary: #FF8800;
    /* Orange */
    --accent-secondary: #FFAA33;
    /* Light Orange */
    --accent-glow: rgba(255, 136, 0, 0.3);

    /* Gold replaced by Accent for consistency, or keep if specific premium feel needed. 
       User said "whole website colors to THIS", implying strict palette. 
       Mapping Gold to Accent or Dark Text. Let's use Accent for now. */
    --gold: #FF8800;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF8800 0%, #FF6600 100%);
    --gradient-text: linear-gradient(to right, #333333, #FF8800);
    --gradient-dark: linear-gradient(to bottom, #FFFEFA, #F5F5F0);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image: url('1.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* White overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    /* Adjust opacity for background visibility */
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn--outline:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo__highlight {
    color: var(--gold);
}

.logo__accent {
    color: var(--accent-primary);
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    color: rgba(255, 255, 255, 0.7);
    /* Light text for dark header */
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: #ffffff;
    /* Brighter white on hover */
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero__tags {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tag {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero__title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero__stats {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-silhouette {
    width: 100%;
    height: 100%;
    background: url('https://raw.githubusercontent.com/gist/placeholder/car-silhouette.png') no-repeat center center;
    /* Placeholder */
    background-size: contain;
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.3));
    /* We will replace this with a generated image or CSS shape later */
}

/* Responsive */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero__tags,
    .hero__buttons,
    .hero__stats {
        justify-content: center;
    }

    .hero__description {
        margin: 0 auto 40px;
    }

    .nav {
        display: none;
        /* Simple hide for now, will implement mobile menu in JS */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero__title {
        font-size: 3rem;
    }
}

/* Sections Common */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Features */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How it Works */
.how-it-works {
    background: linear-gradient(to bottom, var(--bg-dark), #0f1623);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    counter-reset: step;
}

.step-item {
    position: relative;
    padding-top: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    color: var(--accent-secondary);
}

.step-text {
    color: var(--text-secondary);
}

/* Contact CTA */
.cta-box {
    background: var(--gradient-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: #05080f;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer__desc {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
}

.footer__title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
}

.footer__links li {
    margin-bottom: 15px;
}

.footer__links a {
    color: var(--text-secondary);
}

.footer__links a:hover {
    color: var(--accent-primary);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Section */
.about__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* Expert Check */
.expert-check__text {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Start Guide */
.guide-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.guide-content p {
    margin-bottom: 20px;
}

.guide-highlight {
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 1.2rem;
    border-left: 4px solid var(--accent-primary);
    padding-left: 20px;
    margin-top: 30px;
}

/* Reviews */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-name {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.review-source {
    font-size: 0.85rem;
    color: var(--accent-primary);
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
}

/* Footer Socials */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.social-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Prices */
.prices__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    /* Gold border as in image */
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
    background: rgba(251, 191, 36, 0.02);
}

.price-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.price-details {
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-details p {
    margin-bottom: 8px;
}

.price-details strong {
    color: var(--text-primary);
}

.price-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Reports */
.reports__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.report-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.report-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #1f2937;
    /* Fallback */
}

.report-content {
    padding: 25px;
}

.report-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-success {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.status-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.report-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.report-details {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Popup Modal */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.popup.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.popup-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.popup-text {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.popup-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .hero-form-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* --- Visual Redesign Styles --- */

/* Hero Video Background */
.hero__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero__bg-video .bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Adjust visibility vs overlay */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 15, 28, 0.9) 0%, rgba(10, 15, 28, 0.4) 60%, rgba(10, 15, 28, 0.2) 100%);
    z-index: 1;
}

/* Adjust Hero Content for visual focus */
.hero__container {
    position: relative;
    z-index: 2;
}

/* Feature Visual Cards */
/* Feature Visual Cards */
.feature-card-visual {
    background: radial-gradient(circle at center, #1f2937 0%, #000 100%);
    /* Dark square gradient */
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Grid texture overlay if desired, or just gradient */
    background: rgba(0, 0, 0, 0.2);
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.feature-card-visual:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Icon Styles */
.feature-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    /* Space for text at bottom */
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.feature-card-visual:hover .feature-svg,
.feature-card-visual:hover .feature-icon-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 136, 0, 0.5));
    /* Glow orange on hover */
    stroke: var(--accent-primary);
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.feature-desc {
    color: #ccc;
    /* Lighter grey for visibility on dark */
    font-size: 0.95rem;
    opacity: 0.8;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.feature-card-visual:hover .feature-desc {
    opacity: 1;
    transform: translateY(0);
    color: white;
}

/* Visual Steps (How it Works) */
.visual-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    transition: var(--transition-fast);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-secondary);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .visual-steps {
        flex-direction: column;
        gap: 15px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* --- Intro Sequence Styles --- */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.intro-step.active {
    opacity: 1;
    visibility: visible;
}

.intro-logo-text {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 5px;
    animation: scaleUp 2s ease forwards;
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.intro-about {
    background: radial-gradient(circle at center, #1f2937 0%, black 100%);
    overflow-y: auto;
}

.intro-container {
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.intro-title {
    font-size: 3rem;
    margin-bottom: 30px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text-content {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.intro-text-content p {
    margin-bottom: 20px;
}

.intro-text-content strong {
    color: white;
    font-weight: 600;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.intro-stat-item {
    display: flex;
    flex-direction: column;
}

.intro-stat-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.intro-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .intro-logo-text {
        font-size: 3rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Fix for Intro Scroll on Mobile */
    .intro-about {
        display: block;
        /* Disable flex centering to allow scrolling */
        padding-top: 20px;
    }

    .intro-container {
        padding-bottom: 80px;
        /* Space for scrolling */
        margin: 0 auto;
    }
}

.hero__location {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Social Media Buttons */
.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-inst {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-fb {
    background: #1877f2;
    color: white;
}

.social-yt {
    background: #ff0000;
    color: white;
}

/* Light Theme Specific Component Adjustments */

/* Feature Cards text color fix */
.feature-title {
    color: white;
    /* Keep white on image cards */
}

/* Ensure Intro Overlay stays dark for impact */
.intro-overlay {
    background: #000000;
    /* Force black for intro despite global light theme */
}

.intro-about {
    background: radial-gradient(circle at center, #1f2937 0%, black 100%);
}

.intro-text-content {
    color: #9ca3af;
    /* Reset to light grey for readability on dark intro */
}

.intro-stat-label {
    color: #9ca3af;
}

/* Card Shadows for Light Theme (instead of borders) */
.price-card,
.faq-item,
.review-card,
.step-card {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    /* More opaque white */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form-title {
    color: var(--text-primary);
}

.hero-form-subtitle {
    color: var(--text-secondary);
}

/* Footer readability */
.footer {
    background: #111827;
    /* Keep footer dark for contrast */
    color: white;
    margin-top: 50px;
}

.footer__desc {
    color: #9ca3af;
}

.footer__link {
    color: #d1d5db;
}

.footer__link:hover {
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Expert Check Banner */
.expert-check {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    background-image: url('2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 60px 0;
    overflow: hidden;
}

.expert-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
    z-index: 1;
}

.expert-check__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.expert-check__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.expert-check__title .text-gold {
    color: var(--gold);
}

.expert-check__text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #e5e7eb;
    line-height: 1.6;
}

.btn--gold {
    background: var(--gold);
    color: #111827;
    /* Dark text on gold button */
    font-weight: 700;
    border: none;
    padding: 15px 40px;
}

.btn--gold:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

@media (max-width: 768px) {
    .expert-check__title {
        font-size: 1.8rem;
    }
}

/* Language Selection Styles */
.intro-language {
    background: radial-gradient(circle at center, #1f2937 0%, black 100%);
    z-index: 10;
    /* Ensure it stays on top/interactable */
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.lang-btn {
    min-width: 250px;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--gold);
    color: #111827;
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
}

/* --- Mobile Optimization (Comprehensive) --- */
@media (max-width: 768px) {

    /* Global Spacing */
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Typography Scaling */
    html {
        font-size: 14px;
        /* Base scale down */
    }

    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        /* Account for header */
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__visual {
        height: 300px;
        /* Reduced height for mobile */
        order: -1;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
        padding-top: 20px;
    }

    .stat-item {
        align-items: center;
    }

    /* Prices Grid Stacking */
    .prices__grid {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
        /* Prevent overly wide cards on tablets */
        margin-bottom: 20px;
    }

    /* Features Grid */
    .features__grid {
        grid-template-columns: 1fr;
    }

    /* Reports & Reviews */
    .reports__grid,
    .reviews__grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer__container {
        gap: 30px;
        text-align: center;
        /* Ensure text alignment is centered */
    }

    .footer__desc {
        margin: 20px auto 0;
        /* Center block element */
    }

    .footer__social {
        justify-content: center;
        /* Center flex items */
    }

    .footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Intro Overlay */
    .intro-logo-text {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-text-content {
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        width: 100%;
        /* Full width buttons often better on mobile */
        justify-content: center;
    }

    .hero__buttons .btn {
        width: auto;
        /* Except hero buttons if side-by-side desired */
        flex: 1;
    }
}