
[x-cloak] {
    display: none !important;
}



/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/

/* Safety Permit Styles - mobile-first */
:root {
    /* Brand core */
    --navy: #0A4D82; /* Safety Blue (primary) */
    --teal: #07345F; /* Deep Safety Blue for shadows/gradients */
    --sky: #E5F1FA; /* Light blue background / chips */
    --orange: #F16523; /* Safety Orange (accent / primary CTA) */
    /* Neutrals */
    --gray: #F5F7FA;
    --ink: #0F2435;
    --white: #ffffff;
}


* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
    color: var(--ink);
    background: var(--gray)
}

.container {
    width: min(1100px,92%);
    margin-inline: auto
}

/* Header */
.site-header {
    background: linear-gradient(90deg, #07345F 0%, var(--navy) 60%, #0A4D82 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    letter-spacing: .2px
}

.logo {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--orange);
    color: #fff;
    font-weight: 900
}

.brand-text {
    font-size: 1.05rem;
    text-transform: uppercase
}

.nav-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    display: block
}

.nav-links {
    display: none;
    gap: 1.2rem
}

    .nav-links a {
        color: #dfe9ef;
        text-decoration: none;
        font-weight: 600
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 4%;
        top: 54px;
        background: rgba(0,0,0,.6);
        backdrop-filter: blur(6px);
        padding: 10px 14px;
        border-radius: 10px
    }

        .nav-links.open a {
            padding: .35rem .5rem
        }

/* Hero */
.hero {
    background: linear-gradient(180deg, #07345F 0%, var(--navy) 60%, #F4894E 100%);
    color: var(--white);
}

.hero-inner {
    padding: 64px 0;
    text-align: center
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin: 0 0 12px
}

.hero p {
    opacity: .95;
    margin: 0 0 18px
}

.btn {
    display: inline-block;
    border-radius: 10px;
    padding: .9rem 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    cursor: pointer
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(241,101,35,.35);
}


.btn-ghost {
    background: #062538;
    color: #e6f0f6
}

.btn:hover {
    transform: translateY(-1px)
}

/* Sections */
.section {
    padding: 56px 0;
    background: var(--gray)
}

.section-title {
    font-size: 1.6rem;
    margin: 0 0 18px;
    text-align: center;
    color: var(--navy)
}

/* Cards grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06)
}

.card-icon {
    font-size: 1.4rem;
    background: var(--sky); /* now #E5F1FA */
    color: var(--navy); /* brand blue */
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    margin-bottom: 8px;
    font-weight: 700;
}


.card h3 {
    margin: 0 0 6px
}

/* Pricing */
.pricing {
    background: linear-gradient(180deg, #07345F 0%, var(--navy) 100%);
    color: #eaf4f8;
}

    .pricing .section-title {
        color: #fff
    }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px
}

.price-card {
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    position: relative
}

    .price-card .price {
        font-size: 2rem;
        font-weight: 800;
        margin: 10px 0 6px;
        color: var(--navy);
    }

    .price-card .badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--orange);
        color: #fff;
        font-size: .7rem;
        font-weight: 800;
        padding: .25rem .5rem;
        border-radius: 999px;
    }

    .price-card.featured {
        outline: 3px solid var(--orange); /* was teal */
    }

    .price-card ul {
        list-style: disc;
        padding-left: 18px;
        margin: 6px 0 14px
    }

.cta-wide {
    margin-top: 22px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    color: #fff;
}

    .cta-wide h3 {
        margin: 0 0 10px
    }

/* Contact */
.contact .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06)
}

.contact label {
    display: grid;
    gap: 6px;
    font-weight: 600
}

.contact input, .contact textarea {
    border: 1px solid #cfe1ea;
    border-radius: 10px;
    padding: .8rem .9rem;
    font-size: 1rem
}

.contact label.full {
    grid-column: 1/-1
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: #cde0ea
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 22px 0
}

.footer-links a {
    color: #cde0ea;
    text-decoration: none;
    margin: 0 .4rem
}

/* Larger screens */
@media (min-width: 780px) {
    .brand-text {
        font-size: 1.1rem
    }

    .nav-toggle {
        display: none
    }

    .nav-links {
        display: flex
    }

        .nav-links.open {
            all: unset;
            display: flex;
            gap: 1.2rem
        }

    .hero-inner {
        padding: 96px 0
    }

    .hero h1 {
        font-size: 3rem
    }

    .card-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .pricing-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between
    }
}
