:root {
    --white: #fff;
    --silver: #A0A0A0;
    --blue: #22AEE7;
    --black: #1f1f1f;
    --black50: #949494;
    --black75: #323232;
    --yellow: #FDE900;
    --bg: #eee;
}

.header-wrapper {
    display: none;
}

body {
    overflow-x: hidden;
    color: var(--black);
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, #000000, transparent);
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

header nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

    header nav a {
        border: none;
        background: transparent;
        color: var(--white);
        font-size: 2rem;
    }

.landing {
    position: relative;
    height: 100vh;
}

    .landing .cta-1 {
        padding: 7px 20px;
        border: 1px solid var(--white);
        font-size: 1.1rem;
        color: var(--white);
        text-decoration: none;
        border-radius: 3px;
        transition: background-color .3s ease-in-out;
    }

        .landing .cta-1:hover {
            background-color: var(--white);
            color: var(--black);
        }

    .landing h1 {
        font-size: 5rem;
        color: var(--white);
        font-weight: 600;
        line-height: .9;
        position: relative;
        z-index: 5;
        margin-bottom: 3rem;
    }

        .landing h1 span {
            background-color: var(--blue);
            color: var(--black);
            position: relative;
            z-index: -1;
            padding: 3px 20px;
            border-radius: 5px;
            line-height: 1.2;
        }

    .landing .bg-image {
        position: absolute;
        z-index: -3;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.forensic-items {
    display: flex;
    gap: 1rem;
}

    .forensic-items .item {
        background-color: var(--white);
        padding: 2rem;
        border-radius: 5px;
    }

        .forensic-items .item .head {
            display: flex;
            align-items: flex-end;
            margin-bottom: 1rem;
            gap: 1rem;
        }

            .forensic-items .item .head h2 {
                font-size: 1.4rem;
                font-weight: 500;
                margin: 0;
            }

            .forensic-items .item p {
                font-size: .9rem;
                margin: 0;
            }

.bg {
    background-color: var(--black);
    color: var(--white);
}

.image-round {
    width: 100%;
    height: 469px;
    border-radius: 10px;
    object-fit: cover;
}

h2 {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

    h2 span {
        color: var(--silver);
    }

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .tags .tag {
        font-size: 1.2rem;
        font-weight: 700;
        background-color: var(--blue);
        padding: 3px 10px;
        border-radius: 2px;
    }

.mini {
    font-weight: 300;
    color: var(--silver);
    font-size: 1.25rem;
}

.bg .mini {
    color: var(--blue);
}

h3, h5 {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.1;
}

    h3 span, h5 span {
        color: var(--silver);
    }

.tech-desc {
    margin: 0;
}

.kit-items {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

    .kit-items .kit-item {
        background-color: var(--black75);
        border-radius: 5px;
        border: 1px solid var(--black50);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

        .kit-items .kit-item img {
            height: 51px;
            width: auto;
        }

        .kit-items .kit-item h4 {
            margin: 0;
            font-weight: 600;
            min-height: 58px;
        }

        .kit-items .kit-item p {
            margin: 0;
            font-size: .9rem;
        }

.db-register {
    width: calc(50% - .5rem);
    background-color: var(--black75);
    border-radius: 5px;
    border: 1px solid var(--black50);
    padding: 1.5rem;
}

    .db-register .text {
        padding-left: 1rem;
        position: relative;
    }

        .db-register .text::before {
            content: "";
            height: 100%;
            position: absolute;
            width: 2px;
            background-color: var(--blue);
            left: 0;
            top: 0;
        }

            .db-register .text h4 {
                font-size: 1.25rem;
            }

            .db-register .text p {
                font-size: .8rem;
                margin: 0;
            }

.how-items {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
}

    .how-items .how-item {
        background-color: var(--black);
        color: var(--white);
        border: 1px solid var(--black50);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
        border-radius: 3px;
    }

        .how-items .how-item .num {
            font-weight: 700;
            font-size: 5rem;
            color: var(--blue);
            opacity: .5;
            line-height: 1;
        }

        .how-items .how-item .title {
        font-size: 1.2rem;
        font-weight: 700;
        background-color: var(--blue);
        padding: 3px 10px;
        border-radius: 2px;
        color: var(--black);
        }

        .how-items .how-item p {
            font-size: .9rem;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            margin-bottom: 3rem;
        }

            .why-grid .why-item {
                border-right: 1px solid var(--black50);
                border-bottom: 1px solid var(--black50);
                padding: 1.5rem;
            }

                .why-grid .why-item:nth-child(even){
                    border-right: none;
                }

            .why-grid .why-item:nth-child(5), .why-grid .why-item:nth-child(6) {
                border-bottom: none;
            }

            .why-grid .why-item .title {
                position: relative;
                padding-left: 20px;
                margin-bottom: .5rem;
            }

                .why-grid .why-item .title::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    height: 10px;
                    width: 10px;
                    background-color: var(--blue);
                    border-radius: 50%;
                }

            .why-grid .why-item p {
                font-size: .8rem;
                margin: 0;
                color: var(--black50);
            }

h6 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

    h6 span {
        color: var(--silver);
    }

.trust-section a {
    color: var(--black);
    border: 2px solid var(--black);
    font-size: 1.1rem;
    padding: 7px 20px;
    border-radius: 3px;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 500;
    transition: background-color .3s ease-in-out;
}

    .trust-section a:hover {
        background-color: var(--black);
        color: var(--white);
    }

.bg-half {
    background-color: var(--black);
    position: relative;
    color: var(--white);
}

.bg-half::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%; /* starts from center of viewport */
    width: 50vw; /* extends to left edge */
    transform: translateX(-100%);
    background-color: var(--black);
    z-index: -1;
}

    .ride-text {
        padding-right: 100px;
    }

    .ride-text .title {
        font-size: 2.9rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 2rem;
    }

        .ride-text .title span {
            color: var(--silver);
        }

    .types {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        margin-bottom: 2rem;
    }

        .types .type {
            background-color: var(--black75);
            border: 1px solid var(--black50);
            padding: 5px 15px;
            border-radius: 20px;
        }

.info-items {
    display: flex;
    gap: 1rem;
}

    .info-items .info .big {
        font-size: 3rem;
        font-weight: 600;
        color: var(--blue);
    }

        .info-items .info span {
            color: var(--silver);
            font-size: .8rem;
            line-height: 1;
        }

.faqs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

    .faqs .faq-item {
        background-color: var(--bg);
        padding: 1rem;
    }

        .faqs .faq-item button {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            border: none;
            background: transparent;
            padding: 0;
            font-weight: 500;
            font-size: 1.1rem;
            text-align: left;;
        }

        .faqs .faq-item .text {
            font-size: .9rem;
            color: var(--silver);
            max-height: 0;
            overflow: hidden;
            transition: max-height .6s ease-in-out;
        }

        .faqs .faq-item.is-open .text {
            max-height: 200px;
            padding-top: 1rem;
        }

.banner {
    background-color: var(--yellow);
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

    .banner .bg-cover {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .banner .text {
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40%;
        margin: 0 auto;
    }

        .banner .text .title {
            color: var(--black);
                font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
        }

            .banner .text p {
                font-size: .9rem;
            }

            .banner .text .buttons {
                display: flex;
                gap: 1rem;
            }

                .banner .text .buttons a:first-child {
                    border: 2px solid var(--black);
                    background-color: var(--black);
                    color: var(--white);
                    text-decoration: none;
                    padding: 7px 20px;
                    font-weight: 500;
                    border-radius: 3px;
                }

                                .banner .text .buttons a:last-child {
                    border: 2px solid var(--black);
                    background-color: transparent;
                    color: var(--black);
                    text-decoration: none;
                    padding: 7px 20px;
                    font-weight: 500;
                    border-radius: 3px;
                }

/* ── Heading slide-up ────────────────────────────────────────────────────── */
.anim-heading-wrap {
  overflow: hidden;
}

.position-sticky .anim-heading--visible {
  transition-delay: 0.15s;
}

.anim-heading {
  display: block;
  transform: translateY(108%);
  transition: none; /* no transition until visible class is added */
  will-change: transform;
}

.anim-heading--visible {
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Optional: stagger if you have multiple headings close together */
.anim-heading:nth-child(2) { transition-delay: 0.12s; }
.anim-heading:nth-child(3) { transition-delay: 0.24s; }


/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .landing {
        height: 125vh;
    }
  .landing h1 { font-size: 3.5rem; }

  .forensic-items {
    flex-direction: column;
  }

  .kit-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-items {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid .why-item {
    border-right: none;
    border-bottom: 1px solid var(--black50);
  }

  .why-grid .why-item:last-child {
    border-bottom: none;
  }

  .db-register {
    width: 100%;
  }

  .ride-text {
    padding-right: 0;
  }

  .ride-text .title { font-size: 2rem; }

  .info-items {
    flex-wrap: wrap;
  }

  .bg-half::before {
    display: none;
  }

  .banner .text {
    width: 90%;
  }

  .banner .text .title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {

    .landing {
        height: 150vh;
    }
  .landing h1 { font-size: 3.5rem; }

  h2, h3, h5 { font-size: 2rem; }

  .kit-items {
    grid-template-columns: 1fr;
  }

  .banner .text {
    width: 100%;
    padding: 0 1rem;
  }

  .banner .text .buttons {
    flex-direction: column;
    width: 100%;
  }

  .banner .text .buttons a {
    text-align: center;
  }

  .image-round {
    height: 280px;
    margin-top: 2rem;
  }
}

/* ── Dealer pill ─────────────────────────────────────────────────────────── */
.dealer-pill {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.dealer-pill.visible {
    opacity: 1;
    transform: translateY(0);
}

.dealer-pill:hover {
    background-color: #e8d400;
}

/* ── Dealer overlay ──────────────────────────────────────────────────────── */
.dealer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dealer-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

/* ── Dealer modal ────────────────────────────────────────────────────────── */
.dealer-modal {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 420px;
    width: calc(100% - 2rem);
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dealer-overlay.visible .dealer-modal {
    transform: translateY(0) scale(1);
}

.dealer-modal h4 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--black);
}

.dealer-modal p {
    font-size: 0.9rem;
    color: var(--black50);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dealer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--black50);
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
}

.dealer-close:hover {
    color: var(--black);
}

.dealer-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.dealer-enquire {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--black);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dealer-enquire:hover {
    background-color: transparent;
    color: var(--black);
}

.dealer-nevermind {
    background: transparent;
    border: 2px solid var(--black50);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: border-color 0.2s ease;
}

.dealer-nevermind:hover {
    border-color: var(--black);
}

@media (max-width: 576px) {
    .dealer-pill {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
    }

    .dealer-modal {
        padding: 1.75rem;
    }

    .dealer-modal h4 {
        font-size: 1.4rem;
    }
}