﻿:root {
    --smx-accent: #7EB3FF;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HERO */
.hero-full {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    background: var(--smx-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(105deg, rgba(18,42,82,.97) 0%, rgba(27,58,107,.85) 45%, rgba(0,0,0,.4) 100%);
}

.eyebrow-white {
    font-family: 'Oswald',sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

.hero-title-xl {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: .92;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

    .hero-title-xl em {
        color: var(--smx-accent);
        font-style: normal;
        display: block;
    }

    .hero-title-xl span {
        color: var(--smx-orange);
    }

.hero-sub-xl {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
}

    .hero-sub-xl strong {
        color: rgba(255,255,255,.9);
        font-weight: 500;
    }

    .hero-sub-xl .dimmed {
        color: rgba(255,255,255,.4);
    }

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

    .hero-trust-item::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--smx-accent);
        flex-shrink: 0;
    }

    .hero-trust-item.orange::before {
        background: var(--smx-orange);
    }

/* Hero cards */
.hero-cards {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    overflow: hidden;
}

.hcard {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: rgba(18,42,82,.6);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .2s;
    text-decoration: none;
}

    .hcard:last-child {
        border-bottom: none;
    }

    .hcard:hover {
        background: rgba(46,92,168,.5);
    }

.hcard-icon {
    width: 36px;
    height: 36px;
    background: rgba(126,179,255,.12);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--smx-accent);
    margin-top: 2px;
}

.hcard-label {
    font-family: 'Oswald', sans-serif;
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: .2rem;
}

.hcard-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.hcard-sub {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin-top: .1rem;
}

.hours-inline {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    margin-top: .4rem;
}

.hi {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
}

    .hi strong {
        color: rgba(255,255,255,.65);
        font-weight: 500;
    }

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--smx-light);
    border-bottom: 1px solid var(--smx-border);
    padding: .6rem 2.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--smx-muted);
}

    .breadcrumb-bar a {
        color: var(--smx-blue);
        text-decoration: none;
    }

        .breadcrumb-bar a:hover {
            text-decoration: underline;
        }

/* Page layout */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 5rem;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 4.5rem;
    align-items: start;
}

/* Section headers */
.section-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--smx-blue-mid);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

    .section-eyebrow::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: var(--smx-orange);
        flex-shrink: 0;
    }

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--smx-blue);
    line-height: .95;
    margin-bottom: 2rem;
    letter-spacing: -.5px;
}

    .section-title em {
        color: var(--smx-orange);
        font-style: normal;
    }

/* Machine tabs */
.interest-label {
    font-family: 'Oswald', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--smx-muted);
    margin-bottom: .65rem;
    display: block;
}

.machine-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 2rem;
}

.machine-tab {
    font-family: 'Oswald', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border: 1px solid var(--smx-border);
    background: #fff;
    color: #555;
    cursor: pointer;
    border-radius: 2px;
    transition: all .15s;
}

    .machine-tab:hover {
        border-color: var(--smx-blue-mid);
        color: var(--smx-blue);
    }

    .machine-tab.active {
        background: var(--smx-blue);
        border-color: var(--smx-blue);
        color: #fff;
    }

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    margin-bottom: 1.1rem;
}

label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--smx-muted);
    margin-bottom: .4rem;
}

    label .req {
        color: var(--smx-orange);
        margin-left: 2px;
    }

input, select, textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--smx-border);
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    padding: .7rem .9rem;
    border-radius: 3px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}

    input::placeholder, textarea::placeholder {
        color: #bbb;
    }

    input:focus, select:focus, textarea:focus {
        border-color: var(--smx-blue-mid);
        box-shadow: 0 0 0 3px rgba(46,92,168,.1);
    }

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.5rem;
}

textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: 1.25rem;
}

    .consent-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 3px;
        accent-color: var(--smx-blue);
        cursor: pointer;
    }

.consent-text {
    font-size: .78rem;
    color: var(--smx-muted);
    line-height: 1.55;
}

    .consent-text a {
        color: var(--smx-blue-mid);
    }

.submit-btn {
    width: 100%;
    background: var(--smx-blue);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    padding: 1rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background .2s, transform .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

    .submit-btn:hover {
        background: var(--smx-blue-mid);
        color:white;
    }

    .submit-btn:active {
        transform: scale(.99);
    }


/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-block {
    background: var(--smx-light);
    border: 1px solid var(--smx-border);
    border-radius: 4px;
    overflow: hidden;
}

.why-block-header {
    background: var(--smx-blue);
    padding: 1rem 1.5rem;
}

    .why-block-header h3 {
        font-family: 'Oswald', sans-serif;
        font-size: .95rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #fff;
    }

.why-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--smx-border);
}

    .why-item:last-child {
        border-bottom: none;
    }

.why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--smx-accent);
    flex-shrink: 0;
    margin-top: 5px;
}

    .why-dot.orange {
        background: var(--smx-orange);
    }

.why-name {
    font-family: 'Oswald', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--smx-blue);
    margin-bottom: .2rem;
}

.why-desc {
    font-size: .78rem;
    color: var(--smx-muted);
    line-height: 1.55;
}

.response-card {
    background: var(--smx-blue);
    border-radius: 4px;
    padding: 1.5rem;
}

    .response-card h4 {
        font-family: 'Oswald', sans-serif;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: rgba(255,255,255,.5);
        margin-bottom: .75rem;
    }

.response-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

    .response-row:last-child {
        border-bottom: none;
    }

.response-day {
    font-family: 'Oswald', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

.response-time {
    font-family: 'Oswald', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
}

    .response-time.good {
        color: var(--smx-accent);
    }

    .response-time.maybe {
        color: var(--smx-orange);
    }

    .response-time.closed {
        color: rgba(255,255,255,.3);
        font-weight: 400;
    }

/* Map */
.map-strip {
    border-top: 3px solid var(--smx-blue);
    position: relative;
    overflow: hidden;
    background: var(--smx-blue-dark);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    height: 100%;
    background: linear-gradient(to right, var(--smx-blue-dark) 65%, transparent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
}

.map-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--smx-accent);
    margin-bottom: .6rem;
}

.map-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: .6rem;
}

.map-addr {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Oswald', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: var(--smx-orange);
    padding: .5rem 1.1rem;
    border-radius: 3px;
    transition: opacity .2s;
}

    .map-btn:hover {
        opacity: .85;
    }

iframe.map {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
    filter: grayscale(60%) opacity(.65);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.a {
    animation: fadeUp .55s ease both;
}

.d1 {
    animation-delay: .1s;
}

.d2 {
    animation-delay: .2s;
}

.d3 {
    animation-delay: .3s;
}
