:root {
    --bg-color: oklch(25% 0.01 250);
    --accent-color: oklch(85% 0.25 140);
    --text-main: oklch(98% 0.005 140);
    --text-dim: oklch(70% 0.01 250);
    --surface-color: oklch(40% 0.01 150);
    --transition-main: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    --max-gradient: linear-gradient(135deg, #6e45e0 0%, #8856f1 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.accent {
    color: var(--accent-color);
}

/* --- MOBILE CTA --- */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: none;
}

.cta-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    padding: 1.2rem;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

/* --- CURSOR & DEBRIS --- */
#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}

#cursor.active {
    width: 50px;
    height: 50px;
}

#debris-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.debris {
    position: absolute;
    background-color: var(--surface-color);
    opacity: 0.6;
    border-radius: 2px;
}

/* --- HEADER & NAV --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(37, 37, 45, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-color);
}

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

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

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

.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-main);
}

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

.nav-phone-item {
    display: flex;
    align-items: center;
}

.nav-phone {
    background: var(--accent-color);
    color: var(--bg-color) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-main);
    position: absolute;
    left: 0;
    transition: var(--transition-main);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--surface-color);
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.trust-flex {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- HERO --- */
.hero {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        var(--bg-color) 20%, 
        rgba(37, 37, 45, 0.6) 60%, 
        rgba(37, 37, 45, 0.3) 100%
    );
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: var(--surface-color);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-main);
    max-width: 600px;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0.9;
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-main);
    transform: skewX(-10deg);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: skewX(-10deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* --- MAX BUTTONS --- */
.btn-max {
    background: var(--max-gradient);
    color: white !important;
    font-weight: 900;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    display: inline-block;
    transition: var(--transition-main);
    box-shadow: 0 10px 20px rgba(110, 69, 224, 0.3);
    text-align: center;
}

.btn-max:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(110, 69, 224, 0.5);
}

.btn-max-lg {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

.btn-max-sm {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* --- SERVICES --- */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

.service-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    border-top: 8px solid var(--accent-color);
    transition: var(--transition-main);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: oklch(45% 0.01 250);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.card-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

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

.card-list li .check {
    color: var(--accent-color);
    font-weight: 900;
}

.service-cta {
    text-align: center;
    margin-top: 4rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.btn-link-large {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition-main);
}

.btn-link-large:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* --- COMPARISON --- */
.comparison {
    padding: 100px 0;
    background: oklch(20% 0.01 250);
    position: relative;
    z-index: 2;
}

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

.comp-card {
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition-main);
}

.comp-card.bad {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.2);
    opacity: 0.8;
}

.comp-card.good {
    background: rgba(0, 255, 0, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(133, 255, 133, 0.1);
}

.comp-header {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.comp-list {
    list-style: none;
}

.comp-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.comp-item:last-child {
    border-bottom: none;
}

/* --- ADVANTAGES --- */
.advantages {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.adv-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--surface-color);
    transition: var(--transition-main);
    position: relative;
}

.adv-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.adv-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--surface-color);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
}

.adv-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.adv-card p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* --- PROCESS --- */
.process {
    padding: 100px 0;
    background: oklch(20% 0.01 250);
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.step p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* --- PRICING --- */
.pricing {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.price-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-main);
    border: 1px solid transparent;
}

.price-card.featured {
    border-color: var(--accent-color);
    background: oklch(42% 0.01 150);
    transform: scale(1.05);
}

.price-header {
    margin-bottom: 2rem;
}

.price-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.price-value {
    font-size: clamp(1.2rem, 6vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.price-features li .check {
    color: var(--accent-color);
    font-weight: 900;
}

/* --- FLEET --- */
.fleet {
    padding: 100px 0;
    background: oklch(20% 0.01 250);
    position: relative;
    z-index: 2;
}

.fleet-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.fleet-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.fleet-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.fleet-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid var(--surface-color);
}

/* --- GUARANTEE --- */
.guarantee {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.guarantee-box {
    background: var(--surface-color);
    padding: 4rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    border-left: 10px solid var(--accent-color);
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.guarantee-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 800px;
}

.guarantee-badge {
    background: var(--accent-color);
    color: var(--bg-color);
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 0;
    background: oklch(20% 0.01 250);
    position: relative;
    z-index: 2;
}

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

.test-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--surface-color);
    transition: var(--transition-main);
}

.test-card:hover {
    border-color: var(--accent-color);
}

.test-user {
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.test-rating {
    margin-top: 1.5rem;
    color: #ffcc00;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: oklch(15% 0.01 250);
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-color);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-main);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-main);
}

.faq-question:hover {
    background: oklch(45% 0.01 250);
}

.faq-arrow {
    transition: var(--transition-main);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-dim);
}

.faq-item.open .faq-answer>p {
    padding-bottom: 1.5rem;
}

.faq-item.open .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

/* --- GEOGRAPHY --- */
.geography {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.geo-item {
    padding: 2rem;
    border: 1px solid var(--surface-color);
    border-radius: 15px;
    transition: var(--transition-main);
}

.geo-item:hover {
    border-color: var(--accent-color);
}

.geo-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 900;
}

.geo-item p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-color), #000);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-box {
    background: var(--surface-color);
    padding: 4rem 2rem;
    border-radius: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

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

.cta-box p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.main-footer {
    padding: 4rem 0;
    background: #111;
    text-align: center;
    border-top: 1px solid var(--surface-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.2rem;
}

.footer-max {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-main);
}

.footer-max:hover {
    color: var(--text-main);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .fleet-wrapper, .comp-grid {
        grid-template-columns: 1fr;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
        border-top: 1px solid var(--surface-color);
    }

    .nav-menu.open {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .fleet-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -1px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cta-box h2 {
        font-size: 1.8rem;
    }
}
