:root {
    --navy: #071f3b;
    --navy-2: #0b2b50;
    --green: #12c982;
    --green-2: #00a96b;
    --text: #102033;
    --muted: #607086;
    --line: #dce5ee;
    --bg: #f6f9fc;
    --white: #fff;
    --shadow: 0 24px 60px rgba(7, 31, 59, .15)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white)
}

a {
    color: inherit;
    text-decoration: none
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 70px);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand img {
    width: 3.5rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 5px solid var(--navy);
    border-radius: 50%;
    color: var(--green);
    font-weight: 900
}

.brand strong {
    font-size: 28px;
    letter-spacing: -1px;
    color: var(--navy)
}

.brand strong span,
.hero h1 span,
.section-heading .eyebrow,
.eyebrow {
    color: var(--green)
}

.brand small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-top: -3px
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 600
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: white;
    box-shadow: 0 14px 30px rgba(18, 201, 130, .25)
}

.btn-outline {
    border-color: var(--line);
    background: white
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .35);
    color: white;
    background: rgba(255, 255, 255, .08)
}

.btn-large {
    padding: 16px 22px
}

.nav-toggle {
    display: none
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);    
    align-items: stretch;    
    padding: 0 0 0 70px;
    background: linear-gradient(135deg, var(--navy), #041326);
    color: white;
    overflow: hidden;
    min-height: 780px;
}

.hero-content {
    padding-right: 20px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
    font-size: 13px
}

.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    margin: 12px 0 22px;
    letter-spacing: -3px
}

.hero-text {
    font-size: 20px;
    line-height: 1.6;
    color: #d8e4ef;
    max-width: 760px
}

.hero-actions,
.trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.trust-row {
    margin-top: 34px
}

.trust-row div {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    min-width: 165px
}

.trust-row small {
    display: block;
    color: #b8c8d8;
    margin-top: 5px
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 100%;
    align-self: stretch;

    background-image:
        url("assets/yard_main.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            #061930 0%,
            rgba(7,31,59,0.95) 8%,
            rgba(7,31,59,0.65) 18%,
            rgba(7,31,59,0) 35%
        ),
        linear-gradient(
            to top,
            #041326 0%,
            rgba(4,19,38,0.85) 10%,
            rgba(4,19,38,0) 30%
        );

    pointer-events: none;
}

.yard-grid {
    position: absolute;
    inset: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    opacity: .9
}

.yard-grid span {
    border-radius: 12px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2)
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--navy);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow)
}

.floating-card small {
    display: block;
    color: var(--muted);
    margin-top: 4px
}

.card-a {
    left: 28px;
    bottom: 34px
}

.card-b {
    right: 28px;
    top: 34px
}

.stats {
    margin: -34px clamp(20px, 5vw, 70px) 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy);
    color: white;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.stats article {
    padding: 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.stats article:last-child {
    border-right: 0
}

.stats strong {
    display: block;
    font-size: 28px
}

.stats span {
    color: #bed0df
}

.section {
    padding: 86px clamp(20px, 5vw, 70px)
}

.section-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 42px
}

.section-heading h2,
.dark-panel h2,
.demo h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    margin: 10px 0 12px;
    color: var(--navy)
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.feature {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(7, 31, 59, .06)
}

.feature span {
    font-size: 30px
}

.feature h3 {
    color: var(--navy);
    margin: 14px 0 10px
}

.feature ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8
}

.dark-panel {
    margin: 0 clamp(20px, 5vw, 70px);
    padding: 48px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 38px;
    align-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy), #041326);
    color: white
}

.dark-panel h2 {
    color: white
}

.dark-panel p {
    color: #cbd8e4;
    line-height: 1.7
}

.mini-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px
}

.mini-features span {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08)
}

.dashboard-mockup {
    min-height: 450px;
    background-image: url('assets/ok_campa_laptop_mobile_small.png');
    background-clip: padding-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;    
}

.sidebar,
.map,
.phone {
    border-radius: 16px;
    background: rgba(255, 255, 255, .11)
}

.map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px
}

.map i {
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(18, 201, 130, .25);
    font-style: normal;
    font-weight: 800
}

.phone {
    padding: 18px;
    background: white;
    color: var(--navy);
    align-self: center
}

.phone small {
    display: block;
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    background: var(--bg);
    color: var(--muted)
}

.process {
    background: var(--bg)
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.steps article {
    background: white;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid var(--line)
}

.steps b {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: white
}

.steps p {
    color: var(--muted);
    line-height: 1.6
}

.demo {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
    padding: 80px clamp(20px, 5vw, 70px);
    background: var(--navy);
    color: white
}

.demo h2 {
    color: white
}

.demo p {
    color: #cbd8e4;
    line-height: 1.7
}

.contact-form {
    background: white;
    color: var(--text);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.contact-form h3 {
    margin-top: 0;
    color: var(--navy);
    font-size: 26px
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-top: 14px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 15px;
    font: inherit
}

.contact-form textarea {
    resize: vertical
}

.contact-form button {
    width: 100%;
    margin-top: 18px
}

.form-note {
    font-size: 13px !important;
    color: var(--muted)
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 34px clamp(20px, 5vw, 70px);
    background: #f9fbfd;
    border-top: 1px solid var(--line)
}

.footer nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-weight: 700
}

.steps-carousel {
    position: relative;
}

.steps-nav,
.steps-dots {
    display: none;
}


.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.step-icon {
    /* font-size: 28px;
    line-height: 1; */
    color: var(--green);
    font-size: 42px !important;
}


@media(max-width:980px) {
    .nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 74px;
        flex-direction: column;
        align-items: stretch;
        background: white;
        padding: 18px;
        border-radius: 18px;
        box-shadow: var(--shadow)
    }

    .nav.open {
        display: flex
    }

    .nav-toggle {
        display: block;
        border: 0;
        background: var(--navy);
        color: white;
        border-radius: 10px;
        padding: 10px 12px
    }

    .hero,
    .dark-panel,
    .demo {
        grid-template-columns: 1fr
    }

    .stats,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        padding: 52px 20px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-visual {
        min-height: 320px;
        border-radius: 20px;
    }
}

@media(max-width:640px) {
    .site-header {
        padding: 14px 18px
    }

    .brand strong {
        font-size: 22px
    }

    .hero {
        padding: 26px 20px
    }

    .trust-row {
        display: none;
    }

    .hero-visual{
        display: none;
    }

    .stats,
    .feature-grid,
    .steps {
        grid-template-columns: 1fr
    }

    .stats {
        margin: 0;
        border-radius: 0
    }

    .stats article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .dark-panel {
        margin: 0;
        border-radius: 0;
        padding: 34px 20px
    }

    .dashboard-mockup {
        grid-template-columns: 1fr;
        min-height: 250px;
    }

    .sidebar {
        display: none
    }

    .demo {
        padding: 52px 20px
    }

    .section {
        padding: 58px 20px
    }

     .steps-carousel {
        overflow: hidden;
        padding-bottom: 36px;
    }

    .steps {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .steps::-webkit-scrollbar {
        display: none;
    }

    .steps article {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin-right: 0;
    }

    .steps-nav {
        display: grid;
        place-items: center;
        position: absolute;
        top: 80%;
        transform: translateY(-50%);
        z-index: 2;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: var(--navy);
        color: white;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        box-shadow: var(--shadow);
    }   

    .steps-prev {
        left: 6px;
    }

    .steps-next {
        right: 6px;
    }

    .steps-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .steps-dots button {
        width: 9px;
        height: 9px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--line);
        cursor: pointer;
    }

    .steps-dots button.active {
        background: var(--green);
    }
}

.brand img {
    width: 3.5rem;
}