/* Main Design System */
:root {
    --primary-color: #D4AF37;
    /* Premium Gold */
    --primary-hover: #E5C158;
    --accent-color: #F9E2AF;
    /* Lighter Gold Accent */
    --bg-dark: #000000;
    --bg-dark-alt: #0a0a0a;
    --bg-glass: rgba(15, 15, 15, 0.7);
    --text-white: #ffffff;
    --text-dim: #a1a1aa;
    --text-dark: #121212;
    --border-glass: rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
    /* Global sharp reset */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 39px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--text-dark) !important;
    padding: 0.6rem 1.5rem;
    border: none;
    font-weight: 700 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 8rem 2rem;
    gap: 2rem;
    transition: var(--transition);
    border-left: 1px solid var(--border-glass);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 12rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05), transparent 40%);
}

.background-strips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.strip {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strip-1 {
    left: 0;
}

.strip-2 {
    left: 0;
}

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

.hero-text .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-glass);
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-text .highlight {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    border: 1px solid var(--border-glass);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.indicator ion-icon {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
    transform: scaleX(-1);
    /* Flip to face left */
    animation: floating 17s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.bg-glass {
    background: var(--bg-dark-alt);
    position: relative;
    overflow: hidden;
}

.bg-glass::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03), transparent 70%);
    pointer-events: none;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 3rem 2rem;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 1.2rem;
    font-weight: 800;
    opacity: 0.3;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-card p {
    color: var(--text-dim);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    background: var(--primary-color);
}

.service-item ion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item h4 {
    font-size: 1rem;
}

.service-item:hover ion-icon,
.service-item:hover h4 {
    color: var(--text-dark);
}

/* Showcase Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.rounded-box {
    width: 100%;
}

.shadow-gold {
    box-shadow: 0 30px 60px -12px rgba(212, 175, 55, 0.2);
}

.showcase-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-list ion-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
}

.benefit-card ion-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-dim);
}

/* Mechanic CTA Card */
.bg-dark-alt {
    background: var(--bg-dark-alt);
}

.mechanic-cta-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.5));
    border: 1px solid var(--border-glass);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inline-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.inline-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.error-msg {
    color: #ff4444;
    margin-bottom: 1rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.1));
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.app-btn {
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: var(--transition);
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.app-btn ion-icon {
    font-size: 2.2rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.app-btn-text span {
    font-size: 0.8rem;
}

.app-btn-text strong {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background: #050505;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-dim);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-content,
    .split-layout,
    .mechanic-cta-card {
        gap: 3rem;
    }
}

.hero-image .floating-image {
    position: absolute;
    width: 700px;
    max-width: unset;
    bottom: -450px;
    left: -100px;
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-wrap: wrap;
    }

    .hero-image .floating-image {
        position: absolute;
        width: 700px;
        max-width: unset;
        bottom: -450px;
        left: 112px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content,
    .split-layout,
    .mechanic-cta-card,
    .footer-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .hero {
        padding: 8rem 0 4rem;
        padding-top: 5rem;
    }

    .hero-image .floating-image {
        position: absolute;
        width: 400px;
        max-width: unset;
        top: 431px;
        z-index: -1;
        left: 78px;
    }

    .indicator {
        color: white;
    }

    .background-strips {
        position: absolute;
        top: 180px;
        left: 0;
        width: 100%;
        transform: rotate(58deg);
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

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

    .hero-text p {
        margin: 0 auto 2.5rem;
        font-size: 0.9rem;
    }

    .hero-actions,
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: -1;
    }

    .indicator {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .showcase-visual {
        order: -1;
    }

    .check-list li {
        justify-content: center;
    }

    .mechanic-cta-card {
        padding: 2rem;
    }

    .footer-info p {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

.legal-card .section {
    padding: 13px 5px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    padding: 1.5rem 0;
    z-index: 9999;
    transition: var(--transition);
    transform: translateY(0);
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(100px);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text p {
    color: var(--text-dim);
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

#decline-cookies {
    background: black
}