* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #101827;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 32rem),
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 28rem),
        #f5f7fb;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 24, 39, 0.08);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #111827;
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    letter-spacing: -0.04em;
    font-size: 1rem;
}

.brand small {
    color: #667085;
    font-size: 0.78rem;
    margin-top: -2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #344054;
    font-weight: 700;
    font-size: 0.92rem;
}

.main-nav a:hover {
    background: #eef2f7;
    color: #101827;
}

.main-nav .nav-cta {
    color: #ffffff;
    background: var(--primary);
}

.main-nav .nav-cta:hover {
    background: #020617;
    color: #ffffff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #101827;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 5px auto;
    border-radius: 10px;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 24, 39, 0.98), rgba(31, 41, 55, 0.96)),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px);
    color: #ffffff;
    padding-top: 104px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -180px -10%;
    height: 320px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: skewY(-4deg);
    opacity: 0.22;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.showcase-copy h2,
.faq-intro h2,
.contact-card h2 {
    margin: 14px 0 18px;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero h1 {
    font-size: clamp(2.7rem, 8vw, 5.9rem);
    max-width: 780px;
}

.hero p {
    color: #d0d5dd;
    font-size: 1.08rem;
    max-width: 660px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #111827;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
}

.btn-whatsapp {
    color: #ffffff;
    background: #16a34a;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
    max-width: 640px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: #ffffff;
    font-size: 1.22rem;
}

.hero-stats span {
    color: #98a2b3;
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.dashboard-card {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin-left: auto;
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
        #111827;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.dash-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
    font-weight: 800;
}

.pulse {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.8s infinite;
}

.speedometer {
    position: relative;
    width: 260px;
    height: 150px;
    margin: 48px auto 36px;
    border-radius: 260px 260px 0 0;
    background:
        radial-gradient(circle at bottom, #111827 0 42%, transparent 43%),
        conic-gradient(from 270deg, var(--secondary), var(--accent), #22c55e, transparent 0);
    overflow: hidden;
}

.speedometer::after {
    content: "";
    position: absolute;
    inset: 20px 20px 0;
    border-radius: 220px 220px 0 0;
    background: #111827;
}

.speedometer span {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #ffffff;
}

.needle {
    position: absolute;
    z-index: 4;
    width: 110px;
    height: 4px;
    background: var(--accent);
    left: 50%;
    bottom: 0;
    transform-origin: left center;
    transform: rotate(-24deg);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.7);
}

.diagnostic-list {
    display: grid;
    gap: 12px;
}

.diagnostic-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.07);
    color: #d0d5dd;
}

.diagnostic-list strong {
    color: var(--accent);
}

.floating-card {
    position: absolute;
    z-index: 3;
    width: 190px;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    color: #101827;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card span {
    color: #667085;
    font-size: 0.88rem;
    margin-top: 4px;
}

.floating-card.one {
    left: 0;
    top: 70px;
}

.floating-card.two {
    right: 0;
    bottom: 76px;
}

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 26px 22px;
    border-right: 1px solid #e5e7eb;
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 1.05rem;
}

.trust-grid span {
    color: #667085;
    font-size: 0.92rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.section-heading h2,
.about-copy h2,
.showcase-copy h2,
.faq-intro h2,
.contact-card h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.section-heading p,
.about-copy p,
.showcase-copy p,
.faq-intro p,
.contact-card p {
    color: #667085;
    font-size: 1.02rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.process-card,
.testimonial-card,
.faq-item,
.contact-card,
.feature-tile {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 50px rgba(16, 24, 39, 0.06);
}

.service-card {
    padding: 26px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: #111827;
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 900;
}

.service-card h3,
.process-card h3 {
    margin: 18px 0 8px;
    font-size: 1.2rem;
}

.service-card p,
.process-card p,
.testimonial-card p {
    color: #667085;
    margin-bottom: 0;
}

.about {
    background: #ffffff;
}

.about-grid,
.showcase-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 54px;
}

.garage-scene {
    min-height: 430px;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), transparent),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 46px),
        #111827;
    box-shadow: 0 26px 70px rgba(16, 24, 39, 0.2);
}

.garage-light {
    position: absolute;
    top: 46px;
    left: 50%;
    width: 180px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 60px rgba(250, 204, 21, 0.65);
}

.car-body {
    position: absolute;
    left: 50%;
    bottom: 110px;
    width: min(320px, 78%);
    height: 95px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 90px 120px 30px 30px;
}

.car-body::before {
    content: "";
    position: absolute;
    width: 48%;
    height: 48px;
    top: -32px;
    left: 25%;
    border-radius: 70px 70px 8px 8px;
    background: #fbbf24;
}

.wheel {
    position: absolute;
    bottom: -22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #030712;
    border: 10px solid #374151;
}

.wheel.left {
    left: 42px;
}

.wheel.right {
    right: 42px;
}

.tool-panel {
    position: absolute;
    right: 26px;
    top: 110px;
    display: grid;
    gap: 10px;
}

.tool-panel span {
    width: 46px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.check-list span {
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.process {
    background:
        linear-gradient(135deg, #101827, #1f2937);
    color: #ffffff;
}

.process .section-heading p {
    color: #d0d5dd;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}

.process-card span {
    color: var(--accent);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
}

.process-card p {
    color: #d0d5dd;
}

.showcase {
    background: #f8fafc;
}

.feature-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-tile {
    min-height: 150px;
    padding: 22px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(250, 204, 21, 0.08)),
        #ffffff;
}

.feature-tile.large {
    grid-row: span 2;
    min-height: 316px;
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.3), transparent 16rem),
        linear-gradient(135deg, #111827, #374151);
    color: #ffffff;
}

.feature-tile.wide {
    grid-column: span 2;
}

.feature-tile span {
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.feature-tile strong {
    margin-top: 8px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.testimonials {
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
    border-radius: 28px;
}

.testimonial-card p {
    font-size: 1.02rem;
}

.testimonial-card strong {
    display: block;
    margin-top: 18px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 22px;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 900;
    color: #101827;
    cursor: pointer;
}

.faq-item button::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f2f4f7;
    color: #101827;
}

.faq-item.active button::after {
    content: "–";
    background: var(--secondary);
    color: #ffffff;
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: #667085;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

.contact {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 28rem),
        #101827;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
    align-items: center;
    padding: 38px;
    border-radius: 36px;
    background: #ffffff;
}

.contact-actions {
    margin-top: 0;
    justify-content: flex-end;
}

.contact-link {
    display: block;
    min-width: 230px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.contact-link span,
.contact-link strong {
    display: block;
}

.contact-link span {
    color: #667085;
    font-size: 0.85rem;
}

.contact-link strong {
    margin-top: 4px;
    word-break: break-word;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #16a34a;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(22, 163, 74, 0.32);
}

.site-footer {
    background: #070b12;
    color: #ffffff;
    padding: 32px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid p,
.footer-grid span {
    color: #98a2b3;
}

.footer-grid span {
    display: block;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 980px) {
    .section-pad {
        padding: 68px 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 76px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 28px 70px rgba(16, 24, 39, 0.18);
        border: 1px solid #e5e7eb;
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 440px;
    }

    .dashboard-card {
        margin: 0 auto;
    }

    .services-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        display: grid;
    }

    .footer-grid span {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding-top: 78px;
    }

    .hero-stats,
    .services-grid,
    .testimonial-grid,
    .process-grid,
    .trust-grid,
    .feature-board {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .trust-grid div:last-child {
        border-bottom: 0;
    }

    .hero-visual {
        min-height: 500px;
    }

    .floating-card {
        position: relative;
        width: auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 12px auto 0;
        max-width: 430px;
    }

    .speedometer {
        width: 220px;
        height: 128px;
    }

    .feature-tile.large,
    .feature-tile.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 170px;
    }

    .garage-scene {
        min-height: 340px;
    }

    .contact-card {
        padding: 26px;
        border-radius: 28px;
    }

    .contact-link,
    .btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        font-size: 0.88rem;
    }
}