:root {
    --footer-navy: #111111;
    --footer-gray: #484848;
    --footer-gray-light: #9ca3af;
    --footer-border: #e5e7eb;
    --footer-bg: #ffffff;
    --brand-red: #E65100;
    --header-text: #484848;
    --brand-gold: #FF7043;
    --navy-deep: #000000;
    --paper: #fafafa;
    --ink: #1a1a1a;
    --radius: 4px;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.12);
    --font-display: "Joan", Georgia, "Times New Roman", serif;
    --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--footer-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--footer-navy);
    margin: 0 0 0.75rem;
}

p {
    margin: 0 0 1rem;
    color: var(--footer-gray);
}

.container {
    width: 100%;
    max-width: 1180px !important;
    margin-inline: auto;
    padding-inline: 1rem;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

.lp-btn--red {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 10px 24px rgba(230, 81, 0, 0.28);
}

.lp-btn--red:hover {
    background: #BF360C;
    color: #fff;
}

.lp-btn--navy {
    background: var(--footer-navy);
    color: #fff;
}

.lp-btn--navy:hover {
    background: var(--navy-deep);
    color: #fff;
}

.lp-btn--gold {
    background: var(--brand-red);
    color: #fff;
}

.lp-btn--gold:hover {
    background: #BF360C;
    color: #fff;
}

.lp-btn--white {
    background: #fff;
    color: var(--footer-navy);
    border-color: #fff;
}

.lp-btn--white:hover {
    background: var(--paper);
    color: var(--footer-navy);
}

.lp-btn--block {
    width: 100%;
}

.lp-btn--lg {
    min-height: 54px;
    padding-inline: 2rem;
    font-size: 1rem;
}


.lp-brand-mark {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0.01em;
    margin-bottom: 0.65rem;
}

.lp-brand-mark--light {
    color: var(--brand-red);
}

.lp-section-head {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.lp-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.lp-section-head--light h2,
.lp-section-head--light p {
    color: #fff;
}

.lp-section-head--light p {
    opacity: 0.85;
}

.lp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.lp-bullets {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0 0;
}

.lp-bullets li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--footer-gray);
}

.lp-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-gold));
}

.lp-bullets--light li {
    color: rgba(255, 255, 255, 0.9);
}

/* Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 81, 0, 0.2);
}

.lp-header .row {
    min-height: 84px;
}

.lp-header .col-lg-6:first-child {
    display: flex;
    align-items: center;
}

.lp-header .col-lg-6:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lp-header__brand img {
    width: auto;
    height: 48px;
    max-width: min(280px, 55vw);
}

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lp-header__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.92rem;
}

.lp-header__link i {
    color: var(--brand-red);
}

.lp-header__link:hover {
    color: var(--brand-gold);
}

/* Hero */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 4.5rem;
    background:
        linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(20, 20, 20, 0.82) 48%, rgba(0, 0, 0, 0.78) 100%),
        url("../images/hero-banner.webp") center/cover no-repeat;
    color: #fff;
    min-height: min(92vh, 860px);
    display: flex;
    align-items: center;
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 80% 20%, rgba(230, 81, 0, 0.15), transparent 60%),
        radial-gradient(ellipse 45% 40% at 15% 85%, rgba(230, 81, 0, 0.1), transparent 55%);
    pointer-events: none;
}

.lp-hero .container {
    position: relative;
    z-index: 1;
}

.lp-hero__content {
    max-width: 34rem;
}

.lp-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    animation: riseIn 0.8s ease both;
}

.lp-hero h1 span {
    color: var(--brand-red);
}

.lp-hero__lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 36rem;
    font-size: 1.02rem;
    animation: riseIn 0.9s ease 0.08s both;
}

.lp-hero__ctas {
    animation: riseIn 1s ease 0.14s both;
}

/* Hero form panel */
.lp-hero-form {
    max-width: 450px;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(230, 81, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    animation: riseIn 0.9s ease 0.12s both;
}

.lp-hero-form h2 {
    text-align: center;
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    margin-bottom: 1.15rem;
}

.lp-hero-form h2 span {
    color: var(--brand-red);
}

.lp-hero-form__field,
.lp-hero-form__row {
    margin-bottom: 0.7rem;
}

.lp-hero-form__field select,
.lp-hero-form__field input,
.lp-hero-form__row input {
    width: 100%;
    display: block;
    max-width: 100%;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    border: 0;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
}

.lp-hero-form__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    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 fill='%23484848' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 12px 8px;
    padding-right: 2.2rem;
    cursor: pointer;
}

.lp-hero-form__field select:invalid,
.lp-hero-form__field select option[disabled] {
    color: var(--footer-gray-light);
}

.lp-hero-form__field select option {
    color: var(--ink);
}

.lp-hero-form__services {
    margin: 0.85rem 0 1rem;
}

.lp-hero-form__services p {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.lp-hero-form__services p span {
    color: var(--brand-red);
}

.lp-hero-form__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
}

.lp-hero-form__checks label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    cursor: pointer;
}

.lp-hero-form__checks input {
    accent-color: var(--brand-red);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.lp-hero-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.lp-hero-form .lp-btn--block {
    margin-top: 0.35rem;
    border-radius: 6px;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Expertise */
.lp-expertise {
    padding: 4.5rem 0;
    background: var(--paper);
}

.lp-expertise__media {
    position: relative;
    max-width: 520px;
    margin-inline: auto;
}

.lp-expertise__media img {
    margin-inline: auto;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(230, 81, 0, 0.12));
}

.lp-expertise__content h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

/* Mid CTA */
.lp-mid-cta {
    padding: 1rem 0 4rem;
}

.lp-mid-cta__inner {
    padding: clamp(2rem, 4vw, 3.25rem);
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(26, 26, 26, 0.9)),
        url("../images/service-bg-opt.webp") center/cover;
    color: #fff;
    text-align: center;
}

.lp-mid-cta__copy {
    max-width: 720px;
    margin-inline: auto;
}

.lp-mid-cta__copy h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.lp-mid-cta__copy p {
    color: rgba(255, 255, 255, 0.88);
}

.lp-mid-cta__copy .lp-hero__ctas {
    justify-content: center;
}

/* Services nav tabs */
.lp-services-tabs {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 38, 100, 0.04), transparent 70%),
        #fff;
    position: relative;
}

.lp-services-tabs .lp-section-head {
    max-width: 820px;
}

.lp-services-tabs .lp-section-head h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    color: var(--footer-navy);
}

.lp-services-tabs .lp-section-head h2 span {
    color: var(--brand-gold);
    position: relative;
}

.lp-services-tabs .lp-section-head p {
    font-size: 1.02rem;
    color: var(--footer-gray);
}

.tabs_inner {
    position: relative;
}

.tabs_inner .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    margin: 0 auto 2.75rem;
    max-width: 1020px;
    padding: 0.85rem;
    background: linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
    border: 1px solid var(--footer-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tabs_inner .nav-tabs .nav-item {
    margin: 0;
}

.tabs_inner .nav-tabs .nav-link {
    position: relative;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
    color: var(--footer-navy);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.65rem 1.15rem;
    line-height: 1.25;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.tabs_inner .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.tabs_inner .nav-tabs .nav-link:hover {
    color: var(--footer-navy);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 38, 100, 0.12);
    transform: translateY(-1px);
}

.tabs_inner .nav-tabs .nav-link:hover::after {
    width: 55%;
}

.tabs_inner .nav-tabs .nav-link.active {
    background: var(--footer-navy);
    border-color: var(--footer-navy);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 38, 100, 0.22);
}

.tabs_inner .nav-tabs .nav-link.active::after {
    width: 70%;
    bottom: 4px;
    background: var(--brand-gold);
}

.tabs_inner .tab-content {
    padding: 0.5rem 0 0;
}

.tabs_inner .tab-pane {
    animation: tabFade 0.35s ease;
}

@keyframes tabFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.author_tabs_img {
    position: relative;
    max-width: 500px;
    margin-inline: auto;
}

.author_tabs_img::before {
    content: "";
    position: absolute;
    inset: 12% 8% 8% 12%;
    background: radial-gradient(circle at 40% 40%, rgba(227, 167, 47, 0.2), transparent 65%);
    z-index: 0;
    filter: blur(10px);
    pointer-events: none;
}

.author_tabs_img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(0, 38, 100, 0.14));
    transition: transform 0.45s ease;
}

.tab-pane.show .author_tabs_img img {
    animation: imgPop 0.5s ease both;
}

@keyframes imgPop {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.author_tabs_content {
    padding-inline: 0.5rem;
}

.author_tabs_content h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--footer-navy);
    position: relative;
    display: inline-block;
    padding-bottom: 0.55rem;
}

.author_tabs_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
}

.author_tabs_content h2 span {
    color: var(--brand-gold);
}

.author_tabs_content p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--footer-gray);
    max-width: 36rem;
    margin-top: 0.85rem;
}

.global_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.global_btn .lp-btn {
    min-width: 160px;
}

/* Testimonials */
.lp-testimonials {
    padding: 4.5rem 0 3.5rem;
    background: var(--paper);
    overflow: visible;
}

.lp-testimonials .lp-section-head {
    margin-bottom: 2rem;
}

.testimonial-slider-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1rem 0.5rem;
    box-sizing: border-box;
}

.testimonial-slider {
    width: 100%;
    padding: 8px 4px 2.75rem;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonial-slider .swiper-wrapper {
    align-items: stretch;
    display: flex;
}

.testimonial-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--footer-border);
    border-top: 3px solid var(--brand-gold);
    border-radius: 4px;
    padding: 1.75rem;
    height: 100%;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 28px rgba(0, 38, 100, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 38, 100, 0.1);
}

.testimonial-card__stars {
    display: block;
    margin: 0 0 1rem;
    line-height: 0;
}

.testimonial-card__stars img {
    width: 110px;
    height: auto;
    display: block;
}

.testimonial-card__text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 1.25rem;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    width: 100%;
    padding-top: 0.85rem;
    border-top: 1px solid var(--footer-border);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(227, 167, 47, 0.45);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card__info {
    flex: 1;
    min-width: 0;
}

.testimonial-card__name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--footer-navy);
    margin: 0 0 0.15rem;
}

.testimonial-card__role {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--footer-gray);
    margin: 0;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--footer-navy);
    opacity: 0.25;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--brand-red);
    opacity: 1;
    width: 22px;
    border-radius: 999px;
}

/* Ready */
.lp-ready {
    position: relative;
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 38, 100, 0.05), transparent 55%),
        radial-gradient(ellipse 35% 30% at 50% 0%, rgba(227, 167, 47, 0.07), transparent 50%),
        #fff;
    color: var(--ink);
    overflow: hidden;
}

.lp-ready::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    width: min(320px, 42vw);
    height: min(320px, 42vw);
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 30% 30%, rgba(214, 3, 2, 0.06), transparent 55%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M40 160c20-40 55-70 90-85 8-3 16 5 12 13-18 35-48 62-82 82-7 4-16-2-14-11 3-14 6-28 9-41z' stroke='%23002664' stroke-opacity='0.12' stroke-width='2'/%3E%3Cpath d='M118 78c18-8 36-6 48 8' stroke='%23E3A72F' stroke-opacity='0.35' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.lp-ready .container {
    position: relative;
    z-index: 1;
}

.lp-ready__content {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
}

.lp-ready h2 {
    color: var(--footer-navy);
    font-size: clamp(1.7rem, 3.2vw, 2.55rem);
    line-height: 1.25;
    margin-bottom: 1.15rem;
}

.lp-ready h2 span {
    color: var(--brand-gold);
}

.lp-ready__lead {
    position: relative;
    max-width: 40rem;
    margin: 0 auto 1.75rem;
    padding: 0 0 0 1rem;
    border-left: 3px solid var(--brand-gold);
    color: var(--footer-gray);
    font-size: 1.02rem;
    line-height: 1.7;
    text-align: left;
}

.lp-ready__subhead {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--footer-navy);
    margin: 0 auto 1.25rem;
    max-width: 44rem;
}

.lp-ready__list {
    list-style: none;
    margin: 0 auto 1.75rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.5rem;
    max-width: 44rem;
    text-align: left;
}

.lp-ready__list li {
    position: relative;
    padding-left: 1.85rem;
    color: var(--footer-gray);
    font-size: 0.98rem;
    line-height: 1.55;
}

.lp-ready__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: rgba(227, 167, 47, 0.15);
    box-shadow: inset 0 0 0 1.5px var(--brand-gold);
}

.lp-ready__list li::after {
    content: "";
    position: absolute;
    left: 0.32rem;
    top: 0.55rem;
    width: 0.35rem;
    height: 0.55rem;
    border: solid var(--brand-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lp-ready__list strong {
    color: var(--footer-navy);
    font-weight: 600;
}

.lp-ready__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Dual cards */
.lp-dual {
    padding: 4rem 0;
}

.lp-dual__card {
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--footer-border);
    background: #fff;
    border-left: 4px solid var(--brand-red);
}

.lp-dual__card--navy {
    background: var(--footer-navy);
    border-left-color: var(--brand-gold);
}

.lp-dual__card--navy h3,
.lp-dual__card--navy p {
    color: #fff;
}

.lp-dual__card h3 {
    font-size: 1.45rem;
}

.lp-dual__card .lp-btn {
    margin-top: 0.5rem;
}

/* FAQ */
.lp-faq {
    padding: 4rem 0 4.5rem;
    background: var(--paper);
}

.lp-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.lp-accordion__item {
    background: #fff;
    border: 1px solid var(--footer-border);
}

.lp-accordion__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--footer-navy);
    cursor: pointer;
}

.lp-accordion__btn i {
    color: var(--brand-red);
    transition: transform 0.25s ease;
}

.lp-accordion__item.is-open .lp-accordion__btn i {
    transform: rotate(45deg);
}

.lp-accordion__panel {
    display: none;
    padding: 0 1.25rem 1.2rem;
}

.lp-accordion__item.is-open .lp-accordion__panel {
    display: block;
}

.lp-accordion__panel p {
    margin: 0;
}

/* Final CTA */
.lp-final-cta {
    padding: 4.75rem 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(230, 81, 0, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 80%, rgba(230, 81, 0, 0.12), transparent 50%),
        linear-gradient(160deg, var(--navy-deep), var(--footer-navy) 55%, #2a2a2a);
}

.lp-final-cta__copy {
    max-width: 34rem;
}

.lp-final-cta h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    margin-bottom: 1rem;
}

.lp-final-cta__copy > p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.lp-final-cta__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.lp-final-cta__points li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lp-final-cta__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-gold));
}

.lp-final-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--brand-red);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    padding: clamp(1.35rem, 3vw, 1.85rem);
    max-width: 480px;
    margin-inline: auto;
}

.lp-final-form h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--footer-navy);
    margin: 0 0 0.35rem;
}

.lp-final-form__sub {
    color: var(--footer-gray);
    font-size: 0.92rem;
    margin-bottom: 1.15rem;
}

.lp-final-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.lp-final-form__field {
    margin-bottom: 0.75rem;
}

.lp-final-form__field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--footer-navy);
    margin-bottom: 0.3rem;
}

.lp-final-form__field input,
.lp-final-form__field select,
.lp-final-form__field textarea {
    width: 100%;
    display: block;
    max-width: 100%;
    min-height: 44px;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--footer-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-final-form__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    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 fill='%232f3d58' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 12px 8px;
    padding-right: 2.2rem;
    cursor: pointer;
}

.lp-final-form__field textarea {
    min-height: 90px;
    resize: vertical;
}

.lp-final-form__field input:focus,
.lp-final-form__field select:focus,
.lp-final-form__field textarea:focus {
    border-color: var(--footer-navy);
    box-shadow: 0 0 0 3px rgba(0, 38, 100, 0.12);
}

.lp-final-form .lp-btn--block {
    margin-top: 0.35rem;
}

/* Bottom banner */
.lp-bottom-banner {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid var(--footer-border);
}

.lp-bottom-banner__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

.lp-bottom-banner h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.lp-bottom-banner__meta {
    display: grid;
    gap: 0.45rem;
    color: var(--footer-gray);
    font-size: 0.95rem;
}

.lp-bottom-banner__meta a {
    color: var(--footer-navy);
    font-weight: 600;
}

.lp-bottom-banner__meta a:hover {
    color: var(--brand-red);
}

/* Footer */
.lp-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
}

.lp-footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.5rem 0 1.5rem;
}

.lp-footer__logo {
    width: auto;
    height: 72px;
    max-width: 240px;
}

.lp-footer__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.lp-footer__contact {
    display: flex;
    gap: 0.75rem;
    max-width: 280px;
    color: var(--footer-gray);
}

.lp-footer__contact i {
    color: var(--brand-red);
    margin-top: 0.25rem;
}

.lp-footer__contact span {
    display: block;
    font-size: 0.8rem;
    color: var(--footer-gray-light);
}

.lp-footer__contact strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--footer-navy);
    line-height: 1.4;
}

.lp-footer__disclaimer {
    font-size: 0.8rem;
    color: var(--footer-gray-light);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--footer-border);
}

.lp-footer__bottom {
    background: var(--footer-navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 1rem 0;
}

.lp-footer__bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.lp-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
}

.lp-footer__bottom ul {
    display: flex;
    gap: 1.25rem;
}

.lp-footer__bottom a {
    color: #fff;
    font-size: 0.88rem;
}

.lp-footer__bottom a:hover {
    color: var(--brand-red);
}

/* Popup */
.overlay-bg-new-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 100050;
}

.popupform-main-new-popup {
    position: fixed;
    inset: 0;
    z-index: 100051;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    cursor: pointer;
}

.popupform-main-new-popup.active {
    display: flex !important;
}

.popup-main-box {
    width: min(440px, 100%);
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    margin: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    cursor: default;
}

.lp-popup {
    position: relative;
    background: #fff;
    padding: 1.75rem;
    border-top: 4px solid var(--brand-red);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 767px) {
    .popupform-main-new-popup {
        padding: 0.5rem;
        align-items: center;
    }

    .popup-main-box {
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
        margin: auto;
    }

    .lp-popup {
        padding: 0.9rem 0.85rem 0.75rem;
    }

    .lp-popup__brand {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }

    .lp-popup__head h3 {
        font-size: 1.1rem;
        margin-bottom: 0.15rem;
    }

    .lp-popup__sub {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }

    .lp-popup__form .lp-field {
        margin: 0 0 0.45rem;
    }

    .lp-popup__form label {
        margin: 0 0 0.2rem;
        font-size: 0.75rem;
    }

    .lp-popup__form input,
    .lp-popup__form select,
    .lp-popup__form textarea {
        min-height: 36px;
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }

    .lp-popup__form textarea {
        min-height: 52px;
    }

    .lp-popup__form button {
        position: sticky;
        bottom: 0;
        z-index: 3;
        min-height: 42px;
        margin-top: 0.35rem;
        box-shadow:
            0 -10px 16px rgba(255, 255, 255, 0.95),
            0 6px 14px rgba(214, 3, 2, 0.2);
    }
}

.lp-popup .close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--footer-gray);
    cursor: pointer;
}

.lp-popup__brand {
    color: var(--brand-red);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.lp-popup__head h3 {
    font-size: 1.45rem;
}

.lp-popup__sub {
    font-size: 0.9rem;
}

.lp-popup__form .lp-field {
    display: block;
    width: 100%;
    clear: both;
    margin: 0 0 0.85rem;
}

.lp-popup__form input,
.lp-popup__form select,
.lp-popup__form textarea {
    width: 100% !important;
    max-width: 100%;
    display: block !important;
    float: none !important;
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--footer-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-popup__form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    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 fill='%232f3d58' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 36px;
    cursor: pointer;
}

.lp-popup__form input:focus,
.lp-popup__form select:focus,
.lp-popup__form textarea:focus {
    border-color: var(--footer-navy);
    box-shadow: 0 0 0 3px rgba(0, 38, 100, 0.12);
}

.lp-popup__form label {
    display: block;
    width: 100%;
    margin: 0 0 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--footer-navy);
}

.lp-popup__form textarea {
    min-height: 90px;
    resize: vertical;
}

.lp-popup__form button {
    width: 100%;
    margin-top: 1rem;
    min-height: 48px;
    border: 0;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
}

.lp-popup__form button:hover {
    background: #BF360C;
}

body.o-hidden {
    overflow: hidden;
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9990;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
    padding: 0.45rem 0.55rem calc(0.45rem + env(safe-area-inset-bottom));
    gap: 0.45rem;
}

.mobile-cta-bar__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.55rem 0.75rem;
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.mobile-cta-bar__btn i {
    font-size: 0.9rem;
}

.mobile-cta-bar__btn--call {
    background: linear-gradient(135deg, var(--footer-navy), #2a2a2a);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.mobile-cta-bar__btn--signup {
    background: linear-gradient(135deg, var(--brand-red), #BF360C);
    box-shadow: 0 8px 16px rgba(230, 81, 0, 0.25);
}

.mobile-cta-bar__btn:active {
    transform: scale(0.98);
    filter: brightness(0.96);
}

.mobile-cta-bar__or {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--footer-navy);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 4px rgba(227, 167, 47, 0.35),
        0 6px 14px rgba(0, 26, 68, 0.18);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 767px) {
    .mobile-cta-bar {
        display: flex;
    }
}

/* Keep sticky mobile CTAs under the quote modal */
body:has(.popupform-main-new-popup.active) .mobile-cta-bar {
    display: none !important;
}

/* Legal pages */
.lp-legal-hero {
    padding: 3.5rem 0 2.5rem;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(230, 81, 0, 0.12), transparent 55%),
        linear-gradient(160deg, var(--navy-deep), var(--footer-navy) 55%, #2a2a2a);
    color: #fff;
    text-align: center;
}

.lp-legal-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-gold);
}

.lp-legal-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.85rem;
}

.lp-legal-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
}

.lp-legal {
    padding: 3.5rem 0 4.5rem;
    background: #fff;
}

.lp-legal__content {
    max-width: 820px;
    margin-inline: auto;
}

.lp-legal__intro {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--footer-gray);
}

.lp-legal__section {
    margin-bottom: 2rem;
}

.lp-legal__section h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    margin-bottom: 0.75rem;
    color: var(--footer-navy);
}

.lp-legal__section p {
    margin-bottom: 0.85rem;
}

.lp-legal__section ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--footer-gray);
}

.lp-legal__section li {
    margin-bottom: 0.45rem;
}

.lp-legal__contact {
    padding: 1.25rem 1.35rem;
    background: var(--paper);
    border-left: 4px solid var(--brand-red);
}

.lp-legal__contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-legal__contact li {
    margin-bottom: 0.35rem;
    color: var(--footer-gray);
}

.lp-legal__contact a {
    color: var(--brand-red);
    font-weight: 600;
}

.lp-legal__contact a:hover {
    color: #BF360C;
}

.lp-legal__back {
    margin-top: 2.5rem;
    text-align: center;
}
