/********** Template CSS **********/
:root {
    --brand-navy: #011844;
    --brand-navy-mid: #021C4C;
    --brand-royal: #02296B;
    --brand-royal-deep: #01307D;
    --brand-shadow: #31456E;
    --brand-teal: #02736B;
    --brand-teal-mid: #037970;
    --brand-teal-light: #038777;
    --brand-success: #038F59;
    --brand-soft: #91ABBB;
    --brand-bg: #FBFCFE;
    --brand-surface: #FFFFFF;
    --primary: #02296B;
    --secondary: #037970;
    --light: #FBFCFE;
    --dark: #011844;
    --bs-primary: #02296B;
    --bs-secondary: #037970;
    --bs-success: #038F59;
    --bs-info: #037970;
    --bs-light: #FBFCFE;
    --bs-dark: #011844;
    --bs-body-bg: #FBFCFE;
    --bs-body-color: #31456E;
}

html,
body {
    overflow-x: hidden;
    background-color: var(--brand-bg);
    color: var(--brand-shadow);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

#about {
    padding-bottom: 4.8rem !important;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn.btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 54%, var(--brand-teal) 100%);
    border-color: transparent;
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-royal-deep) 58%, var(--brand-navy-mid) 100%);
}

.btn.btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.65rem !important;
    min-height: 3.2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    color: #FFFFFF;
    background: #038777;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 14px 30px rgba(3, 143, 89, .26);
}

.btn.btn-demo:hover {
    color: #FFFFFF;
    background: #038777;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn.btn-light {
    color: var(--brand-navy);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5FAFF 100%);
    border-color: rgba(1, 24, 68, .12);
}

.btn.btn-light:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 100%);
}

.btn.btn-nav-enter {
    color: var(--brand-navy);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(243, 247, 252, .96) 100%);
    background-clip: padding-box;
    border: 1px solid rgba(1, 24, 68, .10);
    box-shadow:
        0 10px 24px rgba(1, 24, 68, .12),
        inset 0 -1px 0 rgba(1, 24, 68, .04);
    position: relative;
    overflow: hidden;
}

.btn.btn-nav-enter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 41, 107, .05) 0%, rgba(3, 121, 112, .08) 100%);
    opacity: 0;
    transition: opacity .25s ease;
}

.btn.btn-nav-enter i,
.btn.btn-nav-enter span {
    position: relative;
    z-index: 1;
}

.btn.btn-nav-enter i {
    font-size: .95rem;
    color: var(--brand-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
    transition: transform .25s ease, color .25s ease;
}

.btn.btn-nav-enter:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 54%, var(--brand-teal) 100%);
    box-shadow:
        0 16px 30px rgba(1, 24, 68, .22),
        0 0 0 1px rgba(255, 255, 255, .08) inset;
    transform: translateY(-1px);
}

.btn.btn-nav-enter:hover::before {
    opacity: 1;
}

.btn.btn-nav-enter:hover i {
    color: #FFFFFF;
    transform: translateX(1px);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-weight: 500;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--brand-teal-light);
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--brand-teal-light);
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 330px;
    min-width: 210px;
    overflow: visible;
}

.navbar .navbar-brand img,
.navbar .navbar-brand .brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 44px;
    transition: .5s;
    object-fit: contain;
    transform: scale(1.32);
    transform-origin: left center;
}

.navbar .navbar-brand .brand-logo-light-bg {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(1.32);
}

.navbar .navbar-brand .brand-logo-dark-bg {
    opacity: 1;
}

.navbar .navbar-brand .brand-logo-mobile {
    display: none;
}

.sticky-top.navbar .navbar-brand img,
.sticky-top.navbar .navbar-brand .brand-logo {
    max-height: 44px;
    transform: scale(1.42);
}

.sticky-top.navbar .navbar-brand .brand-logo-dark-bg {
    opacity: 0;
}

.sticky-top.navbar .navbar-brand .brand-logo-light-bg {
    opacity: 1;
    transform: translateY(-50%) scale(1.42);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img,
    .navbar-light .navbar-brand .brand-logo {
        max-height: 38px;
        transform: scale(1.08);
    }

    .navbar .navbar-brand {
        max-width: 250px;
        min-width: 0;
    }

    .navbar .navbar-brand .brand-logo-dark-bg {
        opacity: 0;
    }

    .navbar .navbar-brand .brand-logo-light-bg {
        opacity: 1;
        transform: translateY(-50%) scale(1.08);
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .sticky-top.navbar .btn {
        color: var(--light);
        background: var(--primary);
        border-color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 9rem 0;
    background: none;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item,
.advanced-feature-item {
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}

.feature-item i,
.advanced-feature-item i {
    transition: .5s;
}

.feature-item .fa-edit,
.advanced-feature-item .fa-edit {
    color: var(--brand-teal) !important;
}

.feature-item .fa-sync,
.advanced-feature-item .fa-sync {
    color: var(--brand-teal) !important;
}

.feature-item .fa-draw-polygon,
.advanced-feature-item .fa-draw-polygon {
    color: var(--brand-teal) !important;
}

.advanced-feature-item .fa-laptop {
    color: var(--brand-teal) !important;
}

.advanced-feature-item .fa-draw-polygon {
    color: var(--brand-teal) !important;
}

.feature-item,
.advanced-feature-item {
    position: relative;
    overflow: hidden;
}

.feature-item:hover,
.advanced-feature-item:hover {
    transform: translateY(-6px);
}

.features-section {
    background:
        linear-gradient(180deg, rgba(251, 252, 254, 1) 0%, rgba(246, 249, 253, 1) 100%);
}

.features-intro {
    max-width: 760px;
}

.features-intro h2 {
    font-size: clamp(2rem, 2.7vw, 2.7rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.features-intro p {
    font-size: 1.04rem;
    line-height: 1.75;
    color: rgba(49, 69, 110, .92);
}

.features-grid {
    margin-top: .5rem;
}

.feature-card {
    height: 100%;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(49, 69, 110, .10);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
    box-shadow: 0 12px 30px rgba(1, 24, 68, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(3, 121, 112, .18);
    box-shadow: 0 18px 36px rgba(1, 24, 68, .10);
}

.feature-icon {
    width: 3.35rem;
    height: 3.35rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 55%, var(--brand-teal) 100%);
    box-shadow: 0 10px 20px rgba(1, 24, 68, .12);
}

.feature-icon i {
    font-size: 1.15rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: .75rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin-bottom: 0;
    color: rgba(49, 69, 110, .90);
    line-height: 1.72;
}

.features-cta {
    max-width: 860px;
    margin: 3rem auto 0;
}

.features-cta-copy {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(49, 69, 110, .92);
}


/*** Price ***/
.price-item {
    box-shadow: 0 20px 44px rgba(1, 24, 68, .08);
    transition: .45s cubic-bezier(0.32, 0.72, 0, 1);
}

.price-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(1, 24, 68, .12);
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 52%, var(--brand-teal) 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.hero-header {
    margin-bottom: -1px;
    padding: 10rem 0 6rem;
    min-height: calc(100vh + 1px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, rgba(1, 24, 68, .92) 0%, rgba(1, 24, 68, .81) 30%, rgba(2, 41, 107, .42) 58%, rgba(3, 121, 112, .20) 100%),
        url(../img/login-bg.webp) 86% center no-repeat;
    background-size: cover, cover;
    z-index: 0;
}

.hero-header > .container {
    position: relative;
    z-index: 1;
}

.hero-copy-block {
    display: flex;
    align-items: center;
    min-height: 34rem;
}

.hero-copy-inner {
    width: 100%;
    max-width: 100%;
    max-width: 38rem;
    padding-top: 1.15rem;
}

.hero-header h1 {
    font-size: clamp(2.74rem, 3.67vw, 3.53rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 25.5ch;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    text-shadow: 0 4px 22px rgba(1, 24, 68, .35);
}

.hero-header p {
    font-size: 1.04rem;
    line-height: 1.75;
    max-width: 54ch;
    margin-top: 1.44rem;
    margin-bottom: 1.44rem;
    margin-left: 0;
    margin-right: 0;
    text-align: justify;
    text-align-last: left;
}

.hero-header .btn-demo {
    box-shadow: 0 14px 30px rgba(3, 143, 89, .24);
}

.hero-benefits-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-benefits-panel {
    width: 100%;
    max-width: 31rem;
    padding: 1.35rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .045) 0%, rgba(255, 255, 255, .018) 100%);
    box-shadow: 0 10px 22px rgba(1, 24, 68, .08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-clip: padding-box;
}

.hero-benefits-eyebrow {
    color: var(--brand-teal-light);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-benefits-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: .95rem;
    color: rgba(255, 255, 255, .95);
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 600;
    text-shadow: 0 1px 8px rgba(1, 24, 68, .12);
}

.hero-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    color: var(--brand-teal-light);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(3, 121, 112, .16);
    box-shadow: 0 8px 14px rgba(1, 24, 68, .10);
}

.hero-benefit-icon i {
    font-size: 1rem;
}

.hero-header .row {
    width: 100%;
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 2rem;
}

.hero-header .img-fluid {
    max-height: 33.5rem;
    width: auto;
    margin-left: auto;
}

.about-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 28px;
}

.about-visual-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    padding-top: 10px;
}

.about-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 36rem;
    object-fit: cover;
    object-position: center center;
    margin-left: auto;
    margin-right: auto;
}

.about-benefit-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: .5rem;
}

.about-lead {
    max-width: 41rem;
    font-size: 1.08rem;
    line-height: 1.82;
    color: rgba(1, 24, 68, .92);
    text-wrap: pretty;
}

.about-lead span {
    display: block;
}

.about-lead span + span {
    margin-top: .7rem;
}

.about-whatsapp-btn {
    display: inline-flex;
    align-self: center;
    min-width: 16rem;
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .hero-header {
        min-height: auto;
        margin-bottom: -1px;
        padding: 7.5rem 0 5.5rem 0;
    }

    .hero-header::before {
        background:
            linear-gradient(180deg, rgba(1, 24, 68, .94) 0%, rgba(2, 41, 107, .78) 54%, rgba(3, 121, 112, .42) 100%),
            url(../img/login-bg.webp) 84% center no-repeat;
        background-size: cover, cover;
    }

    .hero-copy-block {
        display: block;
        min-height: 0;
    }

    .hero-copy-inner {
        max-width: none;
    }

    .hero-header h1,
    .hero-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits-block {
        justify-content: center;
    }

    .hero-benefits-panel {
        max-width: 100%;
    }

    .about-image {
        max-height: none;
    }

    .about-lead {
        max-width: none;
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .about-image-wrap {
        margin-top: 22px;
    }

    .about-whatsapp-btn {
        width: 100%;
        max-width: 18rem;
        justify-content: center;
    }
}

.bg-primary {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 54%, var(--brand-teal) 100%) !important;
}

.governance-check-circle {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 50%, var(--brand-teal) 100%) !important;
}

.overview-check-icon {
    color: var(--brand-teal-light) !important;
}

.navbar-toggler {
    border-color: rgba(251, 252, 254, .35);
    background: linear-gradient(135deg, rgba(1, 24, 68, .25) 0%, rgba(3, 121, 112, .25) 100%);
}

.navbar-light .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.faq-intro {
    max-width: 620px;
    margin-bottom: 2.4rem;
}

#faq {
    padding-top: 4.2rem !important;
}

.faq-intro p {
    color: rgba(1, 24, 68, .82);
    font-size: 1rem;
    line-height: 1.75;
}

.faq-accordion-wrap {
    max-width: 816px;
    padding: .35rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(2, 41, 107, .06) 0%, rgba(3, 121, 112, .05) 100%);
    box-shadow: 0 24px 48px rgba(1, 24, 68, .06);
}

.faq-accordion-wrap .accordion {
    display: grid;
    gap: 1rem;
}

.accordion-item {
    overflow: hidden;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(2, 41, 107, .08);
    box-shadow: 0 14px 28px rgba(1, 24, 68, .055);
}

.faq-accordion-wrap .accordion-item.mb-3 {
    margin-bottom: 0 !important;
}

.accordion-button {
    color: var(--brand-navy);
    background-color: var(--brand-surface);
    padding: 1.2rem 1.4rem;
    font-size: 1.03rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 1.6rem !important;
}

.accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 56%, var(--brand-teal) 100%);
    box-shadow: none;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
    border-color: rgba(3, 121, 112, .32);
    box-shadow: 0 0 0 .25rem rgba(3, 121, 112, .16);
}

.accordion-button::after {
    width: 2.35rem;
    height: 2.35rem;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 999px;
    background-color: rgba(2, 41, 107, .05);
    background-position: center;
    background-size: 16px;
    transform: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(13%) sepia(33%) saturate(3611%) hue-rotate(193deg) brightness(90%) contrast(101%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    background-color: rgba(255, 255, 255, .14);
}

.accordion-body {
    padding: 1.1rem 1.4rem 1.4rem;
    color: rgba(1, 24, 68, .9);
    font-size: .98rem;
    line-height: 1.75;
    border-top: 1px solid rgba(2, 41, 107, .06);
}

.contact-form-wrap {
    max-width: 760px;
}

@media (max-width: 991.98px) {
    .faq-accordion-wrap {
        max-width: 100%;
    }

    .contact-form-wrap {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .faq-intro {
        margin-bottom: 2rem;
    }

    .faq-accordion-wrap {
        padding: .2rem;
        border-radius: 1.4rem;
    }

    .faq-accordion-wrap .accordion {
        gap: .75rem;
    }

    .accordion-button {
        padding: 1rem 1.05rem;
        font-size: .98rem;
    }

    .accordion-button::after {
        width: 2rem;
        height: 2rem;
        margin-left: auto;
        background-size: 14px;
    }

    .accordion-body {
        padding: 1rem 1.05rem 1.15rem;
        font-size: .95rem;
        line-height: 1.7;
    }
}

.footer .btn.btn-link:hover {
    color: var(--brand-teal-light);
}


/*** Footer ***/
.footer {
    margin-top: 4.75rem;
    padding-top: 3rem;
    color: var(--brand-bg);
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 52%, var(--brand-teal) 100%);
}

.footer-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-brand-mark img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 96px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .7rem;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #858585;
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(251, 252, 254, .78);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: #FFFFFF;
}

.footer-copy {
    margin-bottom: 1rem;
    color: rgba(251, 252, 254, .86);
    line-height: 1.75;
}



.footer-nav-column .section-title,
.footer-nav-column .btn.btn-link {
    max-width: 260px;
}

.footer-brand-column {
    padding-left: .75rem;
    padding-right: .75rem;
}

.footer-terms-column {
    padding-left: .75rem;
    padding-right: .75rem;
}

.footer-company-column {
    padding-left: .75rem;
    padding-right: .75rem;
}

.footer-company-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-company-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    color: rgba(251, 252, 254, .88);
    line-height: 1.6;
    padding: .2rem 0;
}

.footer-company-row + .footer-company-row {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-company-name {
    color: #FFFFFF;
    font-size: 1.02rem;
    line-height: 1.45;
}

.footer-company-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    min-width: 1.6rem;
    height: 1.6rem;
    color: var(--brand-teal-light);
    opacity: .92;
}

.footer-company-row strong {
    color: #FFFFFF;
}

.footer-company-row span {
    color: rgba(251, 252, 254, .88);
}

.footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-legal-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    padding: .15rem 0;
    color: rgba(251, 252, 254, .88);
    text-align: left;
    border: 0;
    background: transparent;
    font-weight: 400;
}

.footer-legal-item:hover {
    color: #FFFFFF;
}

.footer-legal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    min-width: 1.6rem;
    height: 1.6rem;
    color: var(--brand-teal-light);
    opacity: .92;
}

.footer-legal-trigger {
    cursor: pointer;
    padding-left: 0;
}

.footer-legal-trigger:focus-visible {
    outline: 2px solid rgba(145, 171, 187, .8);
    outline-offset: 4px;
    border-radius: .5rem;
}

.terms-privacy-modal .modal-content {
    border: 1px solid rgba(1, 24, 68, .08);
    border-radius: 1.5rem;
    background: #FFFFFF;
    color: var(--brand-navy);
    box-shadow: 0 32px 80px rgba(1, 24, 68, .18);
}

.terms-privacy-modal .modal-header {
    position: relative;
    padding: 1.35rem 1.6rem 0;
}

.terms-privacy-modal .modal-body {
    padding: 0 1.6rem 1.7rem;
    line-height: 1.8;
}

.terms-privacy-modal h3 {
    margin-top: 1.3rem;
    margin-bottom: .45rem;
    color: var(--brand-navy);
    font-size: 1.03rem;
}

.terms-privacy-modal p {
    color: rgba(1, 24, 68, .86);
}

.terms-privacy-brand {
    width: 100%;
}

.terms-privacy-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .6rem;
}

.terms-privacy-brand-logo {
    height: 84px;
    width: auto;
}

.terms-privacy-lead {
    margin-bottom: 1rem;
}

.terms-privacy-lead p {
    margin-bottom: 0;
    color: rgba(1, 24, 68, .78);
}

.terms-privacy-modal .btn-close {
    position: absolute;
    top: 1.05rem;
    right: 1.05rem;
    opacity: .65;
    filter: none;
}

.terms-privacy-modal .btn-close:hover {
    opacity: 1;
}

.terms-privacy-modal a {
    color: var(--brand-teal);
    word-break: break-word;
}

.terms-privacy-modal a:hover {
    color: var(--brand-royal);
}

.terms-privacy-modal .modal-dialog-scrollable .modal-content {
    overflow: hidden;
}

.terms-privacy-modal .modal-body::-webkit-scrollbar {
    width: 10px;
}

.terms-privacy-modal .modal-body::-webkit-scrollbar-track {
    background: rgba(1, 24, 68, .06);
    border-radius: 999px;
}

.terms-privacy-modal .modal-body::-webkit-scrollbar-thumb {
    background: rgba(3, 121, 112, .55);
    border-radius: 999px;
}

.terms-privacy-modal .modal-body {
    scrollbar-color: rgba(3, 121, 112, .55) rgba(1, 24, 68, .06);
    scrollbar-width: thin;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
    color: rgba(251, 252, 254, .92);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .copyright a:hover {
    color: var(--brand-teal-light);
}

@media (max-width: 767.98px) {
    .footer-brand-mark {
        padding: .7rem 1rem;
        border-radius: 1.2rem;
    }

    .footer-brand-mark img {
        height: 64px;
    }

    .terms-privacy-modal .modal-header,
    .terms-privacy-modal .modal-body {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .terms-privacy-modal .btn-close {
        top: .9rem;
        right: .9rem;
    }

    .footer-nav-column {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-brand-column,
    .footer-terms-column,
    .footer-company-column {
        padding-left: 0;
        padding-right: 0;
    }
}

.plan-header-dark {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 58%, var(--brand-navy-mid) 100%);
}

.plan-header-accent {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-royal) 42%, var(--brand-teal) 100%);
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(2, 41, 107, .08);
    border-radius: 1.8rem !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(247, 250, 254, .98) 100%);
}

.price-card .plan-header-dark,
.price-card .plan-header-accent {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.price-card-featured {
    border-color: rgba(3, 121, 112, .18);
    box-shadow: 0 26px 60px rgba(2, 41, 107, .14);
}

.price-card-body {
    flex: 1 1 auto;
    gap: 0;
}

.plan-price-block {
    flex: 1 1 auto;
    min-height: 4.6rem;
    margin: 0 0 .55rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.plan-prefix-spacer {
    visibility: hidden;
    display: block;
    min-height: 1.25rem;
    margin-bottom: .35rem;
}

.plan-price {
    display: inline-block;
    line-height: 1;
}

.plan-price-period,
.plan-price-period-light {
    display: inline-block;
    margin-left: .35rem;
    font-size: .95rem;
    font-weight: 600;
}

.plan-price-period {
    color: var(--brand-teal-light);
}

.plan-price-period-light {
    color: var(--brand-teal-light);
}

.plan-price-light {
    color: var(--brand-teal-light) !important;
}

.plan-price-accent {
    color: var(--brand-teal-light) !important;
}

.plan-eyebrow,
.plan-storage,
.plan-prefix {
    font-size: .85rem;
    letter-spacing: .02em;
}

.plan-eyebrow {
    color: rgba(214, 227, 241, .86) !important;
}

.plan-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.05rem;
    padding: .42rem .9rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.plan-header-accent .plan-eyebrow-badge {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .10);
}

.plan-storage {
    color: rgba(225, 236, 247, .82) !important;
}

.plan-prefix {
    display: block;
    margin-bottom: .35rem;
    color: rgba(214, 227, 241, .86);
    font-weight: 600;
}

.price-card h4 {
    text-align: center;
    margin-bottom: 0;
}

.plan-highlight {
    min-height: 2.8rem;
    margin-bottom: 1.15rem;
    color: var(--brand-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .88rem;
}

.plan-list-title {
    margin-bottom: .9rem;
    color: var(--brand-navy);
    font-weight: 700;
    font-size: .92rem;
}

.plan-list-title-muted {
    color: var(--brand-shadow);
}

.plan-feature-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .85rem;
    padding: .85rem .95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(2, 41, 107, .05);
}

.plan-feature-row span {
    color: var(--brand-navy);
    line-height: 1.55;
}

.plan-feature-row-muted {
    background: rgba(145, 171, 187, .08);
    border-color: rgba(145, 171, 187, .12);
}

.plan-feature-row-muted span {
    color: rgba(49, 69, 110, .82);
}

.plan-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: rgba(3, 143, 89, .12);
    color: var(--brand-success) !important;
}

.plan-mute {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: rgba(145, 171, 187, .14);
    color: rgba(145, 171, 187, .92) !important;
}

.price-card-cta {
    width: 100%;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 14px 28px rgba(1, 24, 68, .16);
}

.price-card .btn-primary.price-card-cta {
    box-shadow: 0 16px 30px rgba(2, 41, 107, .22);
}

@media (max-width: 991.98px) {
    .price-card .plan-header-dark,
    .price-card .plan-header-accent {
        min-height: auto;
    }

    .plan-price-block {
        min-height: 0;
    }

    .plan-highlight {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    :root {
        --mobile-inline-space: 1.2rem;
        --mobile-inline-space-tight: 1rem;
    }

    .my-6 {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .py-6 {
        padding-top: 4.25rem;
        padding-bottom: 3.35rem;
    }

    #about {
        padding-bottom: 2.68rem !important;
    }

    #home,
    #about,
    #overview,
    #features,
    #pricing,
    #faq,
    #footer {
        scroll-margin-top: 5.25rem;
    }

    .navbar {
        padding: .85rem var(--mobile-inline-space) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .navbar-brand {
        max-width: 220px;
        min-height: 42px;
        display: flex;
        align-items: center;
        flex: 0 1 auto;
        margin-left: 0;
        margin-right: .5rem;
        padding-left: 0;
        justify-content: flex-start;
        align-self: center;
        transform: none;
    }

    .navbar-light .navbar-brand img,
    .navbar-light .navbar-brand .brand-logo {
        max-height: 34px;
        transform: scale(1);
    }

    .navbar .navbar-brand .brand-logo-dark-bg,
    .navbar .navbar-brand .brand-logo-light-bg {
        opacity: 0;
        pointer-events: none;
    }

    .navbar .navbar-brand .brand-logo-mobile {
        display: block;
        position: static;
        opacity: 1;
        width: auto;
        max-width: 100%;
        max-height: 46px;
        transform: scale(1.22);
        transform-origin: left center;
    }

    .navbar .navbar-brand .brand-logo-light-bg {
        transform: translateY(-50%) scale(1);
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 0;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(2, 115, 107, .24);
        background: linear-gradient(135deg, rgba(1, 24, 68, .94) 0%, rgba(2, 41, 107, .92) 58%, rgba(2, 115, 107, .9) 100%);
        box-shadow:
            0 14px 28px rgba(1, 24, 68, .18),
            inset 0 1px 0 rgba(255, 255, 255, .12);
    }

    .navbar-toggler:focus {
        box-shadow:
            0 0 0 .18rem rgba(3, 121, 112, .18),
            0 14px 28px rgba(1, 24, 68, .18);
    }

    .navbar .navbar-collapse {
        margin-top: .85rem;
        padding: .95rem;
        border-top: 0;
        border-radius: 1.2rem;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 34px rgba(1, 24, 68, .10);
    }

    .navbar .navbar-nav {
        gap: .15rem;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: .8rem 1rem;
        margin-right: 0;
        border-bottom: 1px solid rgba(1, 24, 68, .07);
        font-size: .98rem;
        line-height: 1.35;
        border-radius: .8rem;
        transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    }

    .navbar .navbar-nav .nav-link:last-child {
        border-bottom: 0;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link:focus-visible,
    .sticky-top.navbar .navbar-nav .nav-link:hover,
    .sticky-top.navbar .navbar-nav .nav-link:focus-visible {
        color: var(--brand-teal-light);
        background: rgba(3, 135, 119, .10);
        border-bottom-color: transparent;
        outline: none;
    }

    .navbar .navbar-nav .nav-link.active,
    .sticky-top.navbar .navbar-nav .nav-link.active {
        color: var(--brand-teal-light);
        background: transparent;
    }

    .navbar-light .navbar-toggler-icon {
        opacity: .98;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 247, 119, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.15' d='M4 7.5h22M4 15h22M4 22.5h22'/%3e%3c/svg%3e");
    }

    .hero-header {
        padding: 3rem 0 3.75rem 0;
    }

    .hero-header > .container,
    #about > .container,
    #overview > .container,
    #features > .container,
    #pricing > .container,
    #faq > .container,
    .footer > .container {
        padding-left: var(--mobile-inline-space);
        padding-right: var(--mobile-inline-space);
    }

    .hero-header .row,
    #about .row,
    #overview .row,
    #features .row,
    #pricing .row,
    .footer .row {
        --bs-gutter-x: 1rem;
    }

    .hero-copy-inner {
        padding-top: 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        text-align: center;
    }

    .hero-header h1 {
        max-width: 11.2em;
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.14;
        letter-spacing: -.035em;
        text-align: center;
        text-wrap: pretty;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-header p {
        max-width: 33ch;
        font-size: .98rem;
        line-height: 1.7;
        margin-top: 1rem;
        margin-bottom: 1.45rem;
        text-align: justify;
        text-align-last: center;
        text-wrap: pretty;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy-block .d-flex {
        justify-content: center !important;
    }

    .hero-copy-block .btn-demo,
    .about-whatsapp-btn,
    .price-card-cta,
    .footer .btn-demo,
    #accessRequestModal .btn-demo {
        display: flex;
        width: fit-content;
        max-width: 18.5rem;
        padding: .9rem 1.35rem !important;
        font-size: .96rem;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer .btn-demo,
    #accessRequestModal .btn-demo {
        max-width: 18.5rem;
    }

    .hero-benefits-block {
        margin-top: .85rem;
        justify-content: center;
        padding-left: .15rem;
        padding-right: .15rem;
    }

    .hero-benefits-panel {
        padding: 1.2rem 1.05rem;
        border-radius: 1.3rem;
        box-shadow: 0 16px 30px rgba(1, 24, 68, .12);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-benefits-list {
        gap: .75rem;
    }

    .hero-benefit-item {
        align-items: flex-start;
        gap: .8rem;
        font-size: .96rem;
        line-height: 1.45;
    }

    .hero-benefit-icon {
        width: 2.1rem;
        min-width: 2.1rem;
        height: 2.1rem;
        margin-top: .05rem;
    }

    .hero-benefit-icon i {
        font-size: .92rem;
    }

    #about,
    #overview,
    #pricing,
    #faq {
        overflow: hidden;
    }

    #about h2,
    #overview h2,
    #features h2,
    #pricing h2,
    #faq h2 {
        max-width: 11.2em;
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.18;
        letter-spacing: -.035em;
        text-align: center;
        text-wrap: pretty;
        margin-left: auto;
        margin-right: auto;
    }

    #about .row {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    #about .row > .col-lg-6,
    #about .about-visual-block {
        display: contents;
    }

    #about h2 {
        order: 1;
        margin-bottom: .9rem !important;
    }

    .about-image-wrap {
        order: 2;
        margin-top: 0;
        margin-bottom: .9rem;
    }

    .about-lead,
    #overview p,
    .features-intro p,
    .features-cta-copy,
    .faq-intro p,
    .footer-copy {
        font-size: .98rem;
        line-height: 1.72;
        text-align: left;
        text-wrap: pretty;
    }

    .about-lead {
        order: 3;
        margin-bottom: 1rem !important;
        text-align: justify;
        text-align-last: left;
    }

    .about-whatsapp-btn {
        order: 4;
        width: auto;
        max-width: 18.5rem;
        min-width: 0;
        padding: .9rem 1.35rem !important;
        margin: 0 auto 1.15rem;
        justify-content: center;
    }

    .about-benefit-title {
        font-size: 1.08rem;
        line-height: 1.35;
    }

    #about .d-flex.mb-4,
    #overview .d-flex.mb-4,
    #overview .d-flex.mb-0 {
        align-items: flex-start;
        gap: .95rem;
        padding: .1rem 0;
    }

    #about .btn-square,
    #overview .btn-square {
        width: 2.85rem;
        min-width: 2.85rem;
        height: 2.85rem;
    }

    #about .d-flex p,
    #overview .d-flex p {
        font-size: .95rem;
        line-height: 1.66;
    }

    #about .d-flex.mb-4:nth-of-type(1) {
        order: 5;
    }

    #about .d-flex.mb-4:nth-of-type(2) {
        order: 6;
    }

    #about .d-flex.mb-4:nth-of-type(3) {
        order: 7;
        margin-bottom: .25rem !important;
    }

    #about .ms-4,
    #overview .ms-4 {
        margin-left: 0 !important;
    }

    #overview .row {
        display: grid;
        grid-template-columns: 1fr;
        --bs-gutter-y: 2rem;
        row-gap: 1rem;
    }

    #overview .row > .col-lg-6 {
        display: contents;
    }

    #overview .row > .col-lg-6:last-child > h2 {
        order: 1;
        margin-bottom: .9rem !important;
    }

    #overview .row > .col-lg-6:first-child > img {
        order: 2;
        margin-bottom: .9rem;
    }

    #overview .row > .col-lg-6:last-child > p.mb-4 {
        order: 3;
        margin-bottom: 1rem !important;
        text-align: justify;
        text-align-last: left;
    }

    #overview .row > .col-lg-6:last-child > .d-flex.mb-4:nth-of-type(1) {
        order: 4;
    }

    #overview .row > .col-lg-6:last-child > .d-flex.mb-4:nth-of-type(2) {
        order: 5;
    }

    #overview .row > .col-lg-6:last-child > .d-flex.mb-0 {
        order: 6;
    }

    .features-intro {
        margin-bottom: 0;
    }

    .features-intro h2 {
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.18;
        letter-spacing: -.035em;
    }

    .features-intro p,
    .faq-intro p,
    #pricing .mx-auto.text-center p {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        margin-top: 1.15rem;
        --bs-gutter-y: 1rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1.15rem;
        box-shadow: 0 14px 28px rgba(1, 24, 68, .08);
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: .9rem;
    }

    .feature-card h3 {
        font-size: 1.05rem;
        margin-bottom: .65rem;
    }

    .feature-card p {
        font-size: .95rem;
        line-height: 1.68;
    }

    .features-cta {
        margin-top: 2.2rem;
    }

    #pricing .row {
        --bs-gutter-y: 1.25rem;
    }

    .price-card {
        border-radius: 1.45rem !important;
        box-shadow: 0 18px 36px rgba(1, 24, 68, .09);
    }

    .price-card .plan-header-dark,
    .price-card .plan-header-accent,
    .price-card-body {
        padding: 1.35rem !important;
    }

    .plan-price-block {
        margin-bottom: .35rem;
    }

    .plan-price {
        font-size: 2rem !important;
    }

    .plan-price-period,
    .plan-price-period-light {
        display: block;
        margin-left: 0;
        margin-top: .35rem;
    }

    .plan-highlight {
        margin-bottom: .95rem;
        font-size: .82rem;
        line-height: 1.45;
    }

    .plan-list-title {
        margin-bottom: .75rem;
    }

    .plan-feature-row {
        gap: .8rem;
        padding: .78rem .82rem;
        border-radius: .95rem;
    }

    .plan-feature-row span {
        font-size: .95rem;
        line-height: 1.5;
    }

    .plan-check,
    .plan-mute {
        width: 1.85rem;
        height: 1.85rem;
        min-width: 1.85rem;
    }

    .price-card-cta {
        margin-top: 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .faq-intro {
        margin-bottom: 1.65rem;
    }

    .faq-accordion-wrap {
        padding: .3rem;
        border-radius: 1.25rem;
    }

    .faq-accordion-wrap .accordion {
        gap: .8rem;
    }

    .accordion-item {
        border-radius: 1.2rem;
    }

    .accordion-button {
        min-height: 72px;
        padding: 1rem 3.8rem 1rem 1.05rem;
        font-size: .97rem;
        line-height: 1.45;
        align-items: center;
    }

    .accordion-button::after {
        position: absolute;
        right: 1rem;
    }

    .accordion-body {
        padding: 1rem 1.05rem 1.15rem;
        font-size: .95rem;
        line-height: 1.68;
    }

    .footer {
        margin-top: 3.25rem;
        padding-top: 2.1rem;
    }

    .footer .row {
        --bs-gutter-y: 2rem;
    }

    .footer-brand-mark {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem !important;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .footer-brand-mark img {
        height: 72px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: .6rem;
    }

    .footer-brand-column,
    .footer-terms-column,
    .footer-company-column {
        text-align: left;
    }

    .footer-brand-column {
        text-align: left;
    }

    .footer-brand-column p {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: .95rem;
        line-height: 1.65;
        display: flex;
        align-items: flex-start;
        gap: .75rem;
    }

    .footer-brand-column p i {
        width: 1.15rem;
        min-width: 1.15rem;
        margin-top: .18rem;
        margin-right: 0 !important;
        text-align: center;
        color: var(--brand-teal-light);
    }

    .footer-brand-column p,
    .footer-copy {
        margin-bottom: .8rem;
    }

    .footer-legal-list {
        gap: .55rem;
    }

    .footer-legal-item {
        align-items: flex-start;
        gap: .75rem;
        line-height: 1.5;
        font-size: .95rem;
    }

    .footer-legal-trigger {
        padding-top: .1rem;
    }

    .terms-privacy-modal .modal-dialog {
        margin: .75rem;
    }

    .terms-privacy-modal .modal-content {
        border-radius: 1.2rem;
    }

    .terms-privacy-brand-logo {
        height: 64px;
    }

    .terms-privacy-modal .modal-title {
        max-width: 82%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.25;
    }

    .terms-privacy-modal .modal-header {
        padding: 1.15rem 1rem 0;
    }

    .terms-privacy-modal .modal-body {
        padding: 0 1rem 1.25rem;
        line-height: 1.72;
    }

    .terms-privacy-modal h3 {
        font-size: 1rem;
    }
}

@media (max-width: 430.98px) {
    .hero-header > .container,
    #about > .container,
    #overview > .container,
    #features > .container,
    #pricing > .container,
    #faq > .container,
    .footer > .container {
        padding-left: var(--mobile-inline-space-tight);
        padding-right: var(--mobile-inline-space-tight);
    }

    .hero-header h1 {
        max-width: 9.3em;
    }

    .hero-benefits-panel,
    .feature-card,
    .price-card,
    .accordion-item {
        border-radius: 1.1rem !important;
    }

    .price-card .plan-header-dark,
    .price-card .plan-header-accent,
    .price-card-body {
        padding: 1.15rem !important;
    }

    .plan-feature-row {
        padding: .72rem .76rem;
    }
}

@media (max-width: 359.98px) {
    .navbar {
        padding-left: var(--mobile-inline-space-tight) !important;
        padding-right: var(--mobile-inline-space-tight) !important;
    }

    .navbar .navbar-brand {
        max-width: 188px;
    }

    .hero-header {
        padding-top: 2.7rem;
    }

    .hero-header h1 {
        font-size: clamp(1.72rem, 8.9vw, 2rem);
        max-width: 9em;
    }

    .hero-header p {
        max-width: 27ch;
    }

    .hero-header p,
    .about-lead,
    #overview p,
    .features-intro p,
    .features-cta-copy,
    .faq-intro p,
    .footer-copy,
    .plan-feature-row span,
    .accordion-body {
        font-size: .93rem;
    }

    .hero-benefits-panel,
    .feature-card,
    .price-card .plan-header-dark,
    .price-card .plan-header-accent,
    .price-card-body,
    .accordion-button,
    .accordion-body,
    .terms-privacy-modal .modal-body {
        padding-left: .9rem !important;
        padding-right: .9rem !important;
    }

    .accordion-button {
        padding-right: 3.5rem !important;
    }
}

