/* ==========================================================================
   Ad landing page styles.

   Deliberately self-contained and scoped under .lp — the main site's CSS dates
   from 2022 and its flex .container / fixed-percentage columns fight any modern
   layout. Everything here is namespaced so the other 27 pages are untouched.
   ========================================================================== */
/* ---------- Base reset (landing pages don't load the site's style.css) ---------- */

html {
    -webkit-text-size-adjust: 100%;
}

body.lp {
    margin: 0;
    background: #fff;
    font-size: 16px;
    text-align: left;
}

.lp img,
.lp svg {
    max-width: 100%;
    display: block;
}

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

.lp button {
    font: inherit;
}


.lp {
    --lp-ink: #14162b;
    --lp-body: #55586e;
    --lp-muted: #858799;
    --lp-brand: #4a5cf2;
    --lp-brand-dark: #3547d4;
    --lp-line: #e5e7f0;
    --lp-surface: #f6f7fb;
    --lp-radius: 16px;
    --lp-shadow: 0 18px 50px rgba(20, 22, 43, .10);
    --lp-max: 1180px;

    color: var(--lp-ink);
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

:where(.lp) :where(h1, h2, h3, p, ul, figure) {
    margin: 0;
}

:where(.lp) :where(ul) {
    padding: 0;
    list-style: none;
}


.lp__wrap {
    width: 100%;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 24px;
}

.lp__section {
    padding: 88px 0;
}

.lp__section--tight {
    padding: 64px 0;
}

.lp__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
}

.lp__h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-align: center;
}

.lp__sub {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--lp-body);
    font-size: 17px;
    text-align: center;
}

/* ---------- Top bar ---------- */

.lp-bar {
    border-bottom: 1px solid var(--lp-line);
    background: #fff;
}

.lp-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.lp-bar__logo {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.lp-bar__logo span {
    color: var(--lp-muted);
    font-weight: 400;
}

.lp-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lp-bar__phone {
    color: var(--lp-ink);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

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

/* ---------- Hero ---------- */

.lp-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #3f4fe0 0%, #5b6bf5 48%, #7b6ef0 100%);
    color: #fff;
}

/* Soft light bloom, keeps the flat brand blue from looking like a 2012 header. */
.lp-hero::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding: 76px 24px 84px;
}

.lp-hero h1 {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.lp-hero__lead {
    max-width: 30em;
    margin-top: 20px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
}

.lp-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 28px;
}

.lp-trust li {
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    font-size: 14px;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* ---------- Buttons ---------- */

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.lp-btn--primary {
    background: #fff;
    color: var(--lp-brand-dark);
    box-shadow: 0 10px 26px rgba(9, 12, 46, .22);
}

.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(9, 12, 46, .28);
}

.lp-btn--ghost {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.lp-btn--ghost:hover {
    background: rgba(255, 255, 255, .12);
}

.lp-btn--submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--lp-brand);
    color: #fff;
    font-size: 16px;
}

.lp-btn--submit:hover {
    background: var(--lp-brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(74, 92, 242, .34);
}

/* ---------- Form card ---------- */

.lp-form {
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(9, 12, 46, .26);
    color: var(--lp-ink);
}

.lp-form__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.lp-form__note {
    margin-top: 8px;
    color: var(--lp-body);
    font-size: 14.5px;
}

.lp-field {
    margin-top: 18px;
}

.lp-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-field input,
.lp-field select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1.5px solid var(--lp-line);
    border-radius: 11px;
    background: #fff;
    color: var(--lp-ink);
    font-family: inherit;
    font-size: 15.5px;
    transition: border-color .15s ease, box-shadow .15s ease;
    appearance: none;
}

.lp-field select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2355586e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.lp-field input::placeholder {
    color: #a9abbb;
}

.lp-field input:focus,
.lp-field select:focus {
    outline: none;
    border-color: var(--lp-brand);
    box-shadow: 0 0 0 4px rgba(74, 92, 242, .14);
}

.lp-form__submit {
    margin-top: 24px;
}

.lp-form__privacy {
    margin-top: 14px;
    color: var(--lp-muted);
    font-size: 12.5px;
    text-align: center;
}

/* ---------- Price strip ---------- */

.lp-prices {
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-surface);
}

.lp-prices__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0 24px;
    background: var(--lp-line);


}

.lp-price {
    padding: 26px 16px;
    background: var(--lp-surface);
    text-align: center;
}

.lp-price span {
    display: block;
    color: var(--lp-muted);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.lp-price strong {
    display: block;
    margin-top: 6px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.lp-price--accent strong {
    color: var(--lp-brand);
}

/* ---------- Audit cards ---------- */

.lp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-card {
    padding: 32px 28px;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}

.lp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow);
}

.lp-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(74, 92, 242, .10);
    color: var(--lp-brand);
}

.lp-card h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.lp-card ul {
    margin-top: 14px;
}

.lp-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    color: var(--lp-body);
    font-size: 15px;
    line-height: 1.5;
}

.lp-card li:last-child {
    margin-bottom: 0;
}

.lp-card li::before {
    content: "";
    position: absolute;
    top: .48em;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-brand);
    opacity: .55;
}

/* ---------- Steps ---------- */

.lp-steps {
    background: var(--lp-surface);
}

.lp-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-step {
    padding: 30px 28px;
    border-radius: var(--lp-radius);
    background: #fff;
}

.lp-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--lp-brand);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.lp-step h3 {
    font-size: 18px;
    font-weight: 700;
}

.lp-step p {
    margin-top: 8px;
    color: var(--lp-body);
    font-size: 15px;
}

/* ---------- Closing CTA ---------- */

.lp-final {
    background: linear-gradient(150deg, #3f4fe0 0%, #5b6bf5 55%, #7b6ef0 100%);
    color: #fff;
}

.lp-final .lp__h2 {
    color: #fff;
}

.lp-final .lp__sub {
    color: rgba(255, 255, 255, .86);
}

.lp-final__form {
    max-width: 560px;
    margin: 40px auto 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px 64px;
    }

    .lp-cards,
    .lp-steps__grid {
        grid-template-columns: 1fr;
    }

    .lp-prices__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp__section {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .lp__wrap,
    .lp-hero__inner,
    .lp-prices__grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .lp-form {
        padding: 24px 20px;
    }

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

    .lp-bar__inner {
        flex-wrap: wrap;
    }
}

/* ---------- Footer ---------- */

.lp-foot {
    padding: 44px 0;
    background: var(--lp-ink);
    color: rgba(255, 255, 255, .75);
}

.lp-foot__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 32px;
}

.lp-foot__logo {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.lp-foot__logo span {
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}

.lp-foot__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 26px;
    font-size: 14.5px;
}

.lp-foot__contacts a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

.lp-foot__contacts a:hover {
    color: #fff;
}

.lp-foot__copy {
    color: rgba(255, 255, 255, .45);
    font-size: 13.5px;
}

/* `.lp a { color }` (specificity 0,1,1) was overriding the button colour classes
   (0,1,0), which washed the ghost button out to brand blue on a blue hero. */
.lp a.lp-btn--primary {
    color: var(--lp-brand-dark);
}

.lp a.lp-btn--ghost {
    color: #fff;
}

.lp a.lp-bar__phone {
    color: var(--lp-ink);
}

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

/* A little more air between the headline and the supporting copy. */
.lp-hero__lead {
    margin-top: 22px;
}

.lp__sub {
    margin-top: 18px;
}

/* ---------- Top bar hours ---------- */

.lp-bar__hours {
    color: var(--lp-muted);
    font-size: 14px;
}

/* ---------- Stats bar ---------- */

.lp-stats {
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-surface);
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 34px;
    padding-bottom: 34px;
}

.lp-stat {
    text-align: center;
    border-right: 1px solid var(--lp-line);
}

.lp-stat:last-child {
    border-right: none;
}

.lp-stat strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--lp-brand);
}

.lp-stat span {
    display: block;
    margin-top: 4px;
    color: var(--lp-body);
    font-size: 14.5px;
}

/* ---------- Pain points ---------- */

.lp-pains {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 46px;
}

.lp-pain {
    display: flex;
    gap: 14px;
    padding: 24px 26px;
    border: 1px solid var(--lp-line);
    border-left: 3px solid #e5556b;
    border-radius: 12px;
    background: #fff;
}

.lp-pain__mark {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(229, 85, 107, .12);
    color: #d23a52;
    font-size: 13px;
    font-weight: 700;
}

.lp-pain p {
    color: var(--lp-body);
    font-size: 15.5px;
    line-height: 1.55;
}

.lp-pain strong {
    color: var(--lp-ink);
}

/* ---------- Services ---------- */

.lp-services {
    background: var(--lp-surface);
}

.lp-card__price {
    margin-top: 6px;
    color: var(--lp-brand);
    font-size: 15px;
    font-weight: 600;
}

.lp-card__price + ul {
    margin-top: 16px;
}

/* ---------- Work / portfolio ---------- */

.lp-work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.lp-work__item {
    display: block;
    overflow: hidden;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: #fff;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.lp-work__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow);
}

.lp-work__item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--lp-line);
}

.lp-work__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
}

.lp-work__meta strong {
    color: var(--lp-ink);
    font-size: 16px;
    font-weight: 600;
}

.lp-work__meta em {
    color: var(--lp-muted);
    font-size: 13.5px;
    font-style: normal;
}

/* ---------- Testimonials ---------- */

.lp-quotes {
    background: var(--lp-surface);
}

.lp-quotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.lp-quote {
    padding: 28px;
    border-radius: var(--lp-radius);
    background: #fff;
}

.lp-quote blockquote {
    margin: 0;
    color: var(--lp-body);
    font-size: 15.5px;
    line-height: 1.6;
}

.lp-quote blockquote::before {
    content: "“";
    display: block;
    margin-bottom: -14px;
    color: var(--lp-brand);
    font-size: 44px;
    line-height: 1;
}

.lp-quote figcaption {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--lp-line);
}

.lp-quote figcaption strong {
    display: block;
    font-size: 15px;
}

.lp-quote figcaption span {
    color: var(--lp-muted);
    font-size: 13.5px;
}

/* ---------- Risk reversal ---------- */

.lp-promise__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 44px;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    background: var(--lp-surface);
    max-width: calc(var(--lp-max) - 48px);
}

.lp-promise__title {
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 700;
    letter-spacing: -.02em;
}

.lp-promise__inner > div > p {
    margin-top: 14px;
    color: var(--lp-body);
    font-size: 16px;
}

.lp-promise__list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    color: var(--lp-ink);
    font-size: 15.5px;
}

.lp-promise__list li:last-child {
    margin-bottom: 0;
}

.lp-promise__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .1em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 92, 242, .12)
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath d='M2 6.4 4.8 9 10 3.2' stroke='%234a5cf2' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat center;
}

/* ---------- FAQ ---------- */

.lp-faq__list {
    max-width: 780px;
    margin: 44px auto 0;
}

.lp-faq__item {
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 12px;
}

.lp-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 16.5px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.lp-faq__item summary::-webkit-details-marker {
    display: none;
}

.lp-faq__item summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--lp-brand);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.lp-faq__item[open] summary::after {
    content: "–";
}

.lp-faq__item[open] summary {
    padding-bottom: 8px;
}

.lp-faq__item p {
    padding: 0 22px 20px;
    color: var(--lp-body);
    font-size: 15.5px;
    line-height: 1.6;
}

/* ---------- Responsive additions ---------- */

@media (max-width: 960px) {
    .lp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 0;
    }

    .lp-stat:nth-child(2) {
        border-right: none;
    }

    .lp-pains,
    .lp-work__grid,
    .lp-quotes__grid {
        grid-template-columns: 1fr;
    }

    .lp-promise__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .lp-bar__hours {
        display: none;
    }

    .lp-stat {
        border-right: none;
    }

    .lp-work__item img {
        height: 180px;
    }
}

/* ==========================================================================
   Site chrome (non-landing pages). Same visual language as the GTA offer.
   ========================================================================== */

.lp-sitebar {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid var(--lp-line);
    background: #fff;
}

.lp-sitebar__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.lp-sitebar__logo {
    flex: 0 0 auto;
    margin-right: auto;
    color: var(--lp-ink);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
}

.lp-sitebar__logo span {
    color: var(--lp-muted);
    font-weight: 400;
}

.lp a.lp-sitebar__logo {
    color: var(--lp-ink);
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 4px 22px;
}

.lp-nav a {
    color: var(--lp-ink);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.lp a.lp-nav a,
.lp .lp-nav a {
    color: var(--lp-ink);
}

.lp .lp-nav a:hover,
.lp .lp-nav a.is-active {
    color: var(--lp-brand);
}

.lp-sitebar__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-sitebar__phone {
    color: var(--lp-ink);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    white-space: nowrap;
}

.lp a.lp-sitebar__phone {
    color: var(--lp-ink);
}

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

.lp-btn--nav {
    padding: 10px 18px;
    background: var(--lp-brand);
    color: #fff;
    font-size: 14.5px;
    border-radius: 10px;
}

.lp a.lp-btn--nav {
    color: #fff;
}

.lp a.lp-btn--nav:hover {
    background: var(--lp-brand-dark);
}

.lp-nav__cta {
    display: none;
}

.lp-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.lp-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--lp-ink);
}

.lp-work__ph {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 210px;
    padding: 22px 20px;
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, .28), transparent 46%),
        linear-gradient(150deg, #3f4fe0 0%, #5b6bf5 48%, #7b6ef0 100%);
    color: #fff;
}

.lp-work__ph strong {
    font-size: 20px;
    font-weight: 700;
}

.lp-work__ph em {
    margin-top: 4px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-style: normal;
}

.lp-about {
    background: var(--lp-surface);
}

.lp-about__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}

.lp-about__photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: linear-gradient(150deg, #3f4fe0, #7b6ef0);
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.03em;
}

.lp-about__role {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--lp-brand);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.lp-about h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -.02em;
}

.lp-about p {
    margin-top: 14px;
    color: var(--lp-body);
    font-size: 16.5px;
    line-height: 1.65;
}

.lp-pagehero {
    padding: 56px 0 48px;
    background: linear-gradient(150deg, #3f4fe0 0%, #5b6bf5 48%, #7b6ef0 100%);
    color: #fff;
}

.lp-pagehero h1 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.lp-pagehero p {
    max-width: 36em;
    margin-top: 14px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
}

.lp-pagehero__errors {
    max-width: 36em;
    margin-top: 18px;
    padding-left: 1.15em;
    list-style: disc;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
}

.lp-pagehero__errors li + li {
    margin-top: 6px;
}

.lp-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: 13.5px;
}

.lp-crumb a {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
}

.lp a.lp-crumb a,
.lp .lp-crumb a {
    color: rgba(255, 255, 255, .88);
}

.lp-price-table {
    width: 100%;
    margin-top: 36px;
    border-collapse: collapse;
}

.lp-price-table th,
.lp-price-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--lp-line);
    text-align: left;
}

.lp-price-table th {
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.lp-price-table td {
    font-size: 15.5px;
}

.lp-price-table strong {
    color: var(--lp-brand);
}

.lp-contact {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: start;
}

.lp-contact__aside {
    padding: 32px 28px;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
}

.lp-contact__aside h2 {
    font-size: 20px;
    font-weight: 700;
}

.lp-contact__aside ul {
    margin-top: 18px;
}

.lp-contact__aside li {
    margin-bottom: 10px;
    color: var(--lp-body);
    font-size: 15.5px;
}

.lp-map {
    display: block;
    width: 100%;
    height: 280px;
    margin-top: 48px;
    border: 0;
    border-radius: var(--lp-radius);
}

.lp-foot__grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .9fr .7fr;
    gap: 32px;
    padding-bottom: 36px;
}

.lp-foot__blurb {
    max-width: 28em;
    margin-top: 12px;
    color: rgba(255, 255, 255, .6);
    font-size: 14.5px;
    line-height: 1.55;
}

.lp-foot__heading {
    margin-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.lp-foot__list li {
    margin-bottom: 8px;
}

.lp-foot__list a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.lp a.lp-foot__list a,
.lp .lp-foot__list a {
    color: rgba(255, 255, 255, .75);
}

.lp .lp-foot__list a:hover {
    color: #fff;
}

.lp-foot__copy {
    padding-top: 8px;
}

.lp-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.lp a.lp-btn--outline {
    border-color: var(--lp-line);
    color: var(--lp-ink);
    background: #fff;
}

.lp a.lp-btn--outline:hover {
    border-color: var(--lp-brand);
    color: var(--lp-brand);
}

.lp-article {
    padding: 56px 0 24px;
}

.lp-article__grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 48px;
    align-items: start;
}

.lp-article h1,
.lp .container h1,
.lp .container h1.left {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-align: left;
}

.lp-article p,
.lp .container p {
    margin-top: 14px;
    color: var(--lp-body);
    font-size: 16px;
    line-height: 1.65;
}

.lp-article ul,
.lp .container ul:not(.lp-nav):not(.lp-foot__contacts):not(.lp-foot__list):not(.lp-trust) {
    margin: 14px 0 0 1.1em;
    padding: 0;
    list-style: disc;
}

.lp-article li,
.lp .container ul:not(.lp-nav):not(.lp-foot__contacts):not(.lp-foot__list):not(.lp-trust) li {
    margin-bottom: 8px;
    color: var(--lp-body);
}

.lp .container .price {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--lp-surface);
    color: var(--lp-ink);
    font-weight: 600;
}

.lp a.card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    background: var(--lp-brand);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.lp a.card__button:hover {
    background: var(--lp-brand-dark);
}

.lp .container {
    width: 100%;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 48px 24px;
}

.lp .container:has(> .col-sm-8) {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 40px;
    align-items: start;
}

.lp .col-sm-8,
.lp .col-sm-4 {
    width: 100%;
    max-width: none;
}

.lp .breadcrumb {
    display: flex;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    color: var(--lp-muted);
    font-size: 13.5px;
}

.lp .table {
    width: 100%;
    border-collapse: collapse;
}

.lp .table th,
.lp .table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--lp-line);
    text-align: left;
}

@media (max-width: 960px) {
    .lp-about__inner,
    .lp-contact,
    .lp-article__grid,
    .lp .container:has(> .col-sm-8),
    .lp-foot__grid {
        grid-template-columns: 1fr;
    }

    .lp-sitebar__phone {
        display: none;
    }
}

@media (max-width: 820px) {
    .lp-menu-btn {
        display: flex;
        order: 2;
    }

    .lp-sitebar__cta {
        order: 3;
    }

    .lp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 18px;
        border-bottom: 1px solid var(--lp-line);
        background: #fff;
    }

    .lp-sitebar.is-open .lp-nav {
        display: flex;
    }

    .lp-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--lp-line);
    }

    .lp-sitebar__inner {
        flex-wrap: wrap;
        position: relative;
    }

    .lp-btn--nav {
        padding: 9px 14px;
        font-size: 13.5px;
    }

    .lp-sitebar__cta {
        display: none;
    }

    .lp-nav__cta {
        display: inline-flex;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        border-bottom: none;
        color: #fff;
    }

    .lp .lp-nav a.lp-nav__cta {
        color: #fff;
    }
}

.lp-pagehero .lp-hero__actions {
    margin-top: 28px;
}

.lp .container h2 {
    margin-top: 28px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: -.02em;
    text-align: left;
}

.lp .container img {
    border-radius: 12px;
}

.lp-work__item:nth-child(2) .lp-work__ph {
    background: linear-gradient(150deg, #1f2a44 0%, #3d4f73 100%);
}

.lp-work__item:nth-child(3) .lp-work__ph {
    background: linear-gradient(150deg, #c45c26 0%, #e8a05a 100%);
}

.lp-work__item:nth-child(4) .lp-work__ph {
    background: linear-gradient(150deg, #6b3d5c 0%, #c989b0 100%);
}
