/* ============================================================
   TRADEMARK INSURANCE — main.css
   Font: General Sans
   ============================================================ */

:root {
    --ti-red: #B10C1E;
    --ti-dark: #0F0F0F;
    --ti-body: #545454;
    --ti-muted: #6b7280;
    --ti-border: #e5e7eb;
    --ti-bg: #f5f3ee;
    --font-gs: 'General Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-inter);
    background-color: var(--ti-bg);
    scrollbar-color: var(--ti-red) #e5e7eb;
    scrollbar-width: thin;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--ti-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9a0a19;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.ti-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

/* ---- Section padding utilities ---- */

.stripe-3 {
    padding: 80px 0;
}

.overly {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 0;
    top: 0;
}

/* ============================================================
   HERO WRAPPER
   ============================================================ */

.ti-hero {
    background-color: var(--ti-bg);
    background-image: url('/lp/trademark-insurance/assets/img/banner-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
        overflow: hidden;
    position: relative;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.ti-nav {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    max-width: 1600px;
    margin: 20px auto 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.ti-nav__wrap {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ti-nav__logo img {
    height: 44px;
    width: auto;
    display: block;
}

.ti-nav__right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ti-nav__phone {
    font-family: var(--font-inter);
    font-size: calc(16px + (18 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 500;
    color: var(--ti-dark);
    text-decoration: none;
    letter-spacing: -0.1px;
    transition: color 0.18s ease;
}

.ti-nav__phone:hover {
    color: var(--ti-red);
}

.ti-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ti-red);
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.18s ease;
    white-space: nowrap;
    box-shadow: inset 0 0 0 0 #000000;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-in-out 0.5s;
}

.bnr-btn-width{
    padding: 8px 20px;
    width: 300px;
    display: flex;
    justify-content: center;
}

.ti-btn-primary:hover {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    box-shadow: inset 400px 50px 0 0 #000000;
}

.ti-btn-primary__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   BANNER SECTION
   ============================================================ */

.ti-banner {
    padding: 80px 0 100px;
    min-height: 580px;
    position: relative;
}

/* .ti-banner__wrap replaced by Bootstrap .ti-container > .row */

/* ---- Left column ---- */

.ti-banner__left {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 60px;
}

.ti-banner__heading {
    font-family: var(--font-gs);
    font-size: calc(28px + (46 - 28) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    line-height: 1.5;
    letter-spacing: -0.6px;
    margin: 0 0 20px;
}

.ti-banner__desc {
    font-family: var(--font-inter);
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-body);
    line-height: 1.75;
    margin: 0 0 28px;
}

.ti-banner__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ti-banner__list li {
    font-family: var(--font-inter);
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-dark);
    line-height: 1.3;
}

/* .ti-banner__btn styles unified into .ti-btn-primary */

/* ---- Right column ---- */

.ti-banner__right {
    padding-top: 20px;
    padding-bottom: 20px;
}

.tm-slider-section {
    background: #fff;
}

/* ============================================================
   FORM CARD
   ============================================================ */


.mycode {
    min-width: 120px;
}

.title-area > h2 > span{
line-height: 1.25;
}

.pricing-card:hover h3.pricing-plan-name{
    color: var(--red);
}

.right-rating-box .contentArea p {
    font-size: 14px;
}

@media (max-width: 460px) {
    .phone-field-container {
        flex-direction: column !important;
    }

    .ban-form select {
        height: auto;
    }

    .phone-field-container .country-select-container {
        width: 100% !important;
    }

    .mycode {
        min-width: 100% !important;
    }

    .phone-field-container .contact-phone {
        width: 100% !important;
        padding: 16px 10px !important;
    }
}

.gap-2 {
    gap: 0.5rem;
}

.flex {
    display: flex;
}

.form-control {
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    appearance: auto !important;
}

.error-field {
    border: 1px solid #CC0000 !important;
}

.ban-form select {
    height: 52px;
}


.ti-form-card {
    background: #F5F5F5;
    border-radius: 16px;
    /* box-shadow: 0 8px 48px rgba(0, 0, 0, 0.10); */
    border: 1px solid #e5e5e5;
    padding: 30px 35px 6px;
}

.ti-form-card__title {
    font-family: var(--font-gs);
    font-size: calc(22px + (40 - 22) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    margin: 0 0 8px;
    line-height: 1.25;
}

.popup-form-heading{
    font-size: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
}

.ti-form-card__sub {
    font-family: var(--font-inter);
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-muted);
    margin: 0 0 22px;
    line-height: 1.6;
}

/* ---- Form layout ---- */

.ti-form-card .contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ti-form-card .form-group {
    margin: 0;
}

/* ---- Input wrapper with icon ---- */

.ti-field-wrap {
    position: relative;
}

.ti-field-wrap .form-control {
    padding-right: 46px;
}

.ti-field-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.ti-field-icon--top {
    top: 18px;
    transform: none;
}

/* ---- Form controls ---- */

.ti-form-card .form-control {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    color: var(--ti-dark);
    background: #ffffff;
    border: 1px solid var(--ti-border);
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.18s ease;
    margin-bottom: 0px !important;
}

.ti-form-card .form-control:focus {
    border-color: var(--ti-red);
    box-shadow: 0 0 0 3px rgba(177, 12, 30, 0.08);
}

.ti-form-card .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-family: var(--font-inter);
}

.ti-form-card textarea.form-control {
    height: 100px;
    padding: 14px 46px 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

/* ---- Phone field ---- */

.ti-form-card .phone-field-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ti-form-card .country-select-container {
    flex: 0 0 auto;
}

.ti-form-card .contact-phone {
    flex: 1;
    min-width: 0;
}

.ti-form-card select.form-control {
    height: 52px;
    padding: 0 12px;
    cursor: pointer;
}

/* ---- Hidden ASP TextBox ---- */

.ti-asp-hidden {
    display: none !important;
}

/* ---- Submit button ---- */

.ti-submit-btn {
    display: block;
    width: 100%;
    height: 52px;
    background: var(--ti-red);
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s ease;
    letter-spacing: 0.1px;
    --bs-btn-active-bg: var(--ti-red);
    --bs-btn-active-border-color: var(--ti-red);
    --bs-btn-active-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 177, 12, 30;
    transition: background 0.18s ease;
    white-space: nowrap;
    box-shadow: inset 0 0 0 0 #000000;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-in-out 0.5s;
}

.ti-submit-btn:hover {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    box-shadow: inset 400px 50px 0 0 #000000;
}

.btn-check:checked + .ti-submit-btn,
.ti-submit-btn.active,
.ti-submit-btn.show,
.ti-submit-btn:first-child:active,
:not(.btn-check) + .ti-submit-btn:active {
    background-color: var(--ti-red);
    border-color: var(--ti-red);
    color: #ffffff;
    outline: none;
    box-shadow: none;
}

/* ============================================================
   WHY TRADEMARK INSURANCE SECTION
   ============================================================ */

.ti-why {
    background: #ffffff;
}


.ti-why__heading {
    font-family: var(--font-gs);
    font-size: calc(24px + (46 - 24) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    line-height: 1.3;
    margin: 0 0 24px;
}

.ti-why__desc {
    font-family: var(--font-inter);
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-body);
    line-height: 1.75;
    margin: 0 0 30px;
}

.ti-why__right {
    padding-top: 10px;
}

.ti-why__card {
    background: #FFF8F8;
    border-radius: 16px;
    padding: 40px 44px;
}

.ti-why__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ti-why__list li {
    font-family: var(--font-inter);
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-dark);
    line-height: 1.4;
}

/* ============================================================
   WHAT TRADEMARK INSURANCE CAN COVER
   ============================================================ */

.ti-cover {
    background: #ffffff;
}


.ti-cover__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.ti-cover__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.ti-cover__content {
    padding-left: 20px;
}

.ti-cover__heading {
    font-family: var(--font-gs);
    font-size: calc(24px + (46 - 24) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    line-height: 1.3;
    margin: 0 0 20px;
}

.ti-cover__list {
        list-style: disc;
    padding-left: 20px;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ti-cover__list li {
    font-family: var(--font-inter);
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-body);
    line-height: 1.4;
}


/* ============================================================
         CALL TO ACTION
         ============================================================ */


.cta-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.cta-content {
    padding: 0 10px;
}

.cta-content h4 {
    color: #fff;
    font-family: var(--font-gs);
    font-size: calc(24px + (44 - 24) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
}

.cta-content p {
        color: #F5F5F5;
    font-family: var(--font-inter);
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 300;
    line-height: 1.5;
    padding: 20px 0;
}

.ins-cta-btn {
    display: inline-flex;
    background-color: #ffff;
    color: #000000;
}

.ins-cta-btn .ti-btn-primary__icon {
    background: #b10c1e !important;
}

.ins-cta-btn .ti-btn-primary__icon {
    background: #b10c1e;
}


/* ============================================================
   OUR IP INSURANCE POLICIES
   ============================================================ */

.ti-policies {
    background: #ffffff;
}

.ti-policies__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-inter);
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.ti-policies__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--ti-dark);
    flex-shrink: 0;
}

.ti-policies__heading {
    font-family: var(--font-gs);
    font-size: calc(24px + (40 - 24) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    line-height: 1.25;
    margin: 0 0 40px;
}

.ti-policies__items {
    display: flex;
    flex-direction: column;
}

.ti-policy-item {
    display: flex;
    gap: 40px;
    padding-top: 10px;
}

.ti-policy-item__icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ti-policy-item__icon {
    width: 50px;
    height: 60px;
    flex-shrink: 0;
}

.ti-policy-item__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ti-policy-item__connector {
    flex: 1;
    width: 0;
    border-left: 2px dashed var(--ti-red);
    margin: 8px 0;
    min-height: 40px;
}

.ti-policy-item__body {
    padding-bottom: 36px;
    flex: 1;
}

.ti-policy-item--last .ti-policy-item__body {
    padding-bottom: 0;
}

.ti-policy-item__title {
        font-family: var(--font-gs);
    font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    line-height: 1.3;
    margin: 0 0 34px;
}

.ti-policy-item__for {
    font-family: var(--font-inter);
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-body);
    line-height: 1.6;
    margin: 0 0 8px;
}

.ti-policy-item__for strong {
    color: #0F0F0F;
}

.ti-policy-item__desc {
    font-family: var(--font-inter);
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-body);
    line-height: 1.75;
    margin: 0;
}

.ti-policy-item__desc strong {
    color: #0F0F0F;
}

.ti-policies__right {
    display: flex;
    align-items: stretch;
}

.ti-policies__img-wrap {
    width: 100%;
    height: 100%;
}

.ti-policies__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ============================================================
   QUOTE MODAL
   ============================================================ */

.ti-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ti-quote-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.ti-quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.80);
    cursor: pointer;
}

.ti-quote-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 16px;
    transform: translateY(24px);
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.ti-quote-modal.is-open .ti-quote-modal__dialog {
    transform: translateY(0);
}

.ti-quote-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.ti-quote-modal__close:hover {
    background: #e5e7eb;
}

.ti-quote-modal .ti-form-card {
    border-radius: 12px;
    margin: 0;
}

body.ti-modal-open {
    overflow: hidden;
}



/* ---------- Base font variables ---------- */
:root {
    --font-heading: 'General Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --red:   #B10C1E;
    --dark:  #0F0F0F;
    --mid:   #545454;
    --light: #6b7280;
    --border: #e5e7eb;
    --bg-card: #ffffff;
    --bg-dark: #222222;
}

/* ---------- Section wrapper ---------- */
.pricing-section {
    background: #ffffff;
    /* padding: 80px 0 96px; */
    font-family: var(--font-body);
}

.pricing-container {
    max-width: 980px;
}




/* ---------- Global paragraph font size (fluid) ---------- */
p {
    font-size: clamp(14px, 1.5vw, 18px);
}


/* ---------- Header ---------- */
.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-inter);
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: var(--ti-dark);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.pricing-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--mid);
    flex-shrink: 0;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 600;
    line-height: 1.18;
    color: var(--dark);
    margin: 0 auto 40px;
    max-width: 100%;
    white-space: normal;
    letter-spacing: -0.5px;
}

.pricing-desc {
    font-family: var(--font-inter);
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--ti-body);
    line-height: 1.7;
    margin: 0;
}


/* ---------- Individual card ---------- */
.pricing-card {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    border-color: rgba(177, 12, 30, 0.5);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* ---------- Card top (name / sub / price) ---------- */
.pricing-card-top {
    padding: 28px 28px 24px;
    border-bottom: 1.5px solid var(--border);
    background: #ffffff;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover .pricing-card-top {
    border-bottom-color: var(--red);
    background: #F5F5F5;
}

.pricing-plan-name {
    font-family: var(--font-heading);
    font-size: clamp(18px, 1.5vw, 28px) !important;
    font-weight: 600;
    color: #0F0F0F;
    margin: 0 0 8px;
    line-height: 1.2;
}

.pricing-plan-sub {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--light);
    margin: 0 0 20px;
    line-height: 1.55;
    padding-right: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    color: var(--red);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-period {
    font-family: var(--font-body);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 400;
    color: var(--light);
}

/* ---------- Card features ---------- */
.pricing-card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 38px 28px;
    background: #F5F5F5;
    transition: background 0.25s ease;
}

.pricing-card:hover .pricing-card-features {
    background: var(--bg-dark);
}

/* ---------- Feature list ---------- */
.pricing-features-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.55;
    color: #0F0F0F;
    transition: color 0.25s ease;
}

.pricing-card:hover .pricing-features-list li {
    color: #d1d5db;
}


.pricing-check {
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
}

/* ---------- Buttons ---------- */
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    box-sizing: border-box;
}

/* Outline button (Starter & Premium) */
.pricing-btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover .pricing-btn-outline {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.pricing-card:hover .pricing-btn-outline svg path {
    stroke: #ffffff;
}

.pricing-btn-outline:hover {
    background: #8e0918;
    border-color: #8e0918;
    color: #ffffff;
}

.pricing-btn-outline:hover svg path {
    stroke: #ffffff;
}

/* Solid red button (Growth / featured) */
.pricing-btn-solid {
    background: var(--red);
    color: #ffffff;
    border: 1.5px solid var(--red);
}

.pricing-btn-solid:hover {
    background: #8e0918;
    border-color: #8e0918;
    color: #ffffff;
}

/* ---------- Responsive ---------- */
/* @media (max-width: 860px) {
    .pricing-section {
        padding: 60px 0 72px;
    }
} */

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

.cta-banner-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



.cta-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.cta-banner-overlay {
    position: relative;
    z-index: 1;
}

.cta-banner-card {
    background: #F0F0F0;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    top: 120px;
    position: relative;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 600;
    line-height: 1.28;
    color: var(--dark);
    margin: 0 0 14px;
}

.cta-banner-desc {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--light);
    margin: 0 0 22px;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s ease;
    align-self: center;
}

.cta-banner-btn:hover {
    background: #8e0918;
    color: #ffffff;
}



/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */

.testimonial-section {
    padding: clamp(80px, 12vw, 180px) 0 90px;
    background: #f5f5f5;
}

.testimonial-inner {
    align-items: center;
}

/* --- Circle badge --- */
.testimonial-badge {
    position: relative;
    width: clamp(220px, 28vw, 380px);
    height: clamp(220px, 28vw, 380px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-badge-ring {
    display: none;
}

.testimonial-circle-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin-slow 18s linear infinite;
    transform-origin: center center;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.testimonial-quote-icon {
    position: relative;
    z-index: 1;
    transform: scale(1.6);
}

.testimonial-quote-icon .commas-icon {
    width: 50px;
    height: 50px;
}

/* --- Quote content --- */
.testimonial-content {
    padding-left: 48px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    visibility: hidden;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: calc(16px + (34 - 16) * (100vw - 320px) / (1920 - 320));
    /* font-size: clamp(20px, 1.8vw, 34px); */
    font-weight: 400;
    line-height: 1.65;
    color: var(--dark);
    margin: 0 0 28px;
    border: none;
    padding: 0;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-right: 60px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: clamp(20px, 1.8vw, 34px);
    font-weight: 600;
    color: var(--red);
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--light);
}

/* --- Dots --- */
.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
    position: absolute;
    right: 30px;
    bottom: 46px;
}

.testimonial-dot {
    display: inline-block;
    height: 6px;
    border-radius: 0;
    background: #d1d5db;
    width: 30px;
    transition: background 0.3s;
}

.testimonial-dot:first-child {
    border-radius: 6px 0 0 6px;
}

.testimonial-dot:last-child {
    border-radius: 0 6px 6px 0;
}

.testimonial-dot--active {
    background: var(--dark);
}

.testimonial-dot--mid {
    background: #d1d5db;
}



/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #111111 url('/lp/trademark-insurance/assets/img/footerbg.webp') center center / cover no-repeat;
    padding: 36px 0;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer-copy {
    font-family: var(--font-body);
    font-size: clamp(11px, 1.2vw, 20px);
    color: #ffffff;
}

.site-footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer-links a {
    font-family: var(--font-body);
    font-size: clamp(11px, 1.2vw, 20px);
    color: #ffffff;
    text-decoration: none;
    transition: color 0.18s ease;
}

.site-footer-links a:hover {
    color: #d1d5db;
}

.site-footer-divider {
    color: #444444;
    font-size: 14px;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1400px) {
    .ti-nav {
        max-width: 1320px;
        margin: 20px 20px 0;
    }

    .ti-banner__left {
        padding-right: 36px;
    }

    .ti-policy-item__title {
        margin: 0 0 20px;
    }

    .ti-policies__heading {
        margin: 0 0 30px;
    }

}

@media (max-width: 1200px) {
    .ti-container {
        padding: 0 28px;
    }

    .ti-banner {
        padding: 40px 0 50px;
    }

    .stripe-3 {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {

    .cta-section {
        padding: 60px 0;
    }   

    .ti-policies__img {
        display: none;
    }

    .cta-banner-card {
        top: 0 !important;
    }

    .cta-banner-section {
        padding: 30px 0;
    }

    .testimonial-section {
        padding: clamp(40px, 4vw, 180px) 0 40px !important;
    }
    
}

@media (max-width: 767px) {

      .testimonial-quote-icon .commas-icon {
        width: 30px;
        height: 30px;
    }

    .testimonial-content {
        padding-left: 0;
        padding-top: 24px;
        text-align: center;
    }
    /* .testimonial-author-row {
        flex-direction: column;
        gap: 20px;
        padding: 0px;
    } */
    .testimonial-badge {
        margin: 0 auto;
    }

    .testimonial-author {
        align-items: center;
    }

    .testimonial-dots {
        justify-content: center;
    }

    .cta-banner-section {
        min-height: unset;
        padding: 40px 0;
    }

    .cta-banner-card {
        padding: 28px 20px;
    }

    .ti-banner {
        padding: 30px 0 30px;
        min-height: auto;
    }

    .ti-form-card {
        padding: 28px 28px 24px;
    }
}

@media (max-width: 600px) {
    .ti-nav__phone {
        display: none;
    }

    .ti-container {
        padding: 0 16px;
        overflow:hidden;
    }

    .ti-banner {
        padding: 48px 0 60px;
    }

    .ti-form-card {
        padding: 24px 18px 20px;
    }
}

@media (max-width: 575px) {

    .testimonial-dots {
        left: 0px;
        bottom: 0px;
        justify-content: start;
    }

    .testimonial-quote-icon .commas-icon {
        width: 25px;
        height: 25px;
    }

    .site-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .testimonial-dot {
    height: 4px;
    width: 30px !important;
}

    .cta-banner-section {
        padding: 30px 0 !important;
    }

    .cta-banner-card {
        padding: 20px 10px !important;
    }

    .testimonial-quote {
    margin: 0 0 10px;
}

    .site-footer {
    padding: 20px 0;
}

    .pricing-header {
    margin-bottom: 20px;
}

    .pricing-title {
    margin: 0 auto 20px;
}

    .ti-nav {
    max-width: 580px;
    margin: 20px 10px 0;
}

.ti-banner {
    padding: 10px 0;
}

.ti-banner__heading {
    line-height: 1.3;
    margin: 0 0 6px;
}

.ti-banner__desc {
    margin: 0 0 20px;
}

.ti-banner__list {
    padding-left: 16px;
    margin: 0 0 20px;
}

.ti-form-card {
    padding: 20px 12px 4px;
}

.stripe-3 {
    padding: 30px 0;
}

.ti-why__heading {
    margin: 0 0 10px;
}

.ti-why__card {
    padding: 20px;
}

.cta-section {
    padding: 30px 0;
}

.cta-section p {
    padding: 4px 0;
}

.bnr-btn-width {
    width: 260px;
}

.ti-btn-primary {
    padding: 8px 12px;
}

.ti-policy-item {
    gap: 10px;
}

.ti-policies__heading {
    margin: 0 0 10px;
}

.ti-policy-item__title {
    margin: 0 0 10px;
}

.ti-policy-item__icon {
    width: 41px;
    height: 41px;
}

.ti-policy-item__body {
    padding-bottom: 14px;
}
}

@media (max-width: 380px) {
    /* .ti-nav__right {
        display: none;
    } */

    .ti-btn-primary {
        padding: 6px 8px;
        font-size: 14px;
    }

    .ti-btn-primary__icon {
        width: 28px;
        height: 28px;
    }

    .ti-nav__logo img {
        height: 36px;
    }

    .ti-quote-modal__close {
        top: 1px;
        right: 3px;
        width: 30px;
        height: 30px;
    }

}
