/* ════════════════════════════════════════════════════════════
   TOKENS + RESET — contact page (ct- prefix)
   ════════════════════════════════════════════════════════════ */

:root {
    --red: #DE253A;
    --red-h: #C41F32;
    --red-tint: #FBE9EB;
    --red-soft: rgba(222, 37, 58, .12);
    --black: #0A0A0A;
    --ink: #0E0E0F;
    --white: #FFFFFF;
    --g60: #565656;
    --g40: #8A8A8A;
    --g20: #D0D0D0;
    --g10: #E8E8E8;
    --g05: #F5F5F5;
    --g02: #F8F8F8;
    --green: #22C55E;
    --amber: #F59E0B;
    --fd: 'Sora', sans-serif;
    --fb: 'Instrument Sans', sans-serif;
    --fm: 'Roboto Mono', monospace;
    --px: 56px;
    --py: 96px;
    --cont: 1280px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}


body {
    font-family: var(--fb);
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

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

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

button {
    font-family: inherit
}

.wrap {
    max-width: var(--cont);
    margin: 0 auto;
    padding: 0 var(--px)
}

[data-r] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

[data-r].in {
    opacity: 1;
    transform: none
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--red)
}

.h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.08;
    color: var(--ink)
}

.h2 em {
    font-style: normal;
    color: var(--red)
}

/* ════════════════════════════════════════════════════════════
   BUTTONS — locked Trango pattern (matches homepage-v4)
   ════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 100px;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: none
}

.btn-lg {
    height: 56px;
    padding: 0 36px;
    font-size: 15px
}

.btn-sm {
    height: 40px;
    padding: 0 20px;
    font-size: 13px
}

.btn-p {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(222, 37, 58, .4);
    border-radius: 100px;
    gap: 4px;
    transition: border-color 600ms cubic-bezier(.23, 1, .32, 1), border-radius 600ms cubic-bezier(.23, 1, .32, 1), color 600ms cubic-bezier(.23, 1, .32, 1)
}

.btn-p:hover {
    border-color: transparent;
    color: #fff;
    border-radius: 12px
}

.btn-p:active {
    transform: scale(.95)
}

.btn-p .bc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: width 800ms cubic-bezier(.19, 1, .22, 1), height 800ms cubic-bezier(.19, 1, .22, 1), opacity 800ms cubic-bezier(.19, 1, .22, 1)
}

.btn-p:hover .bc {
    width: 300px;
    height: 300px;
    opacity: 1
}

.btn-p .bl {
    position: relative;
    z-index: 1;
    transform: translateX(-4px);
    transition: transform 800ms ease-out;
    padding: 0 8px;
}
.bl-submit{
    position: absolute;
    border: 0;
    font-size: 0;
    inset: 0;
    background: transparent;
}
.btn-text{
    z-index: 1;
}
.btn-p .wpcf7-spinner{
    position: absolute;
    left: 0;
}

.btn-sm.btn-p .bl {
    padding: 0 16px
}

.btn-p:hover .bl {
    transform: translateX(4px)
}

.btn-p .ba-l {
    position: absolute;
    left: -20%;
    z-index: 9;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition: left 800ms cubic-bezier(.34, 1.56, .64, 1), color 600ms ease
}

.btn-p:hover .ba-l {
    left: 18px;
    color: #fff
}

.btn-p .ba-r {
    position: absolute;
    right: 18px;
    z-index: 9;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition: right 800ms cubic-bezier(.34, 1.56, .64, 1), color 600ms ease
}

.btn-p:hover .ba-r {
    right: -20%;
    color: #fff
}

.btn-p .ba-l svg,
.btn-p .ba-r svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-p-w {
    color: #fff;
    border-color: rgba(255, 255, 255, .3)
}

.btn-p-w .ba-l,
.btn-p-w .ba-r {
    color: #fff
}

.btn-p-w:hover {
    color: #fff
}

.btn-p-w .bc {
    background: var(--red)
}

.btn-o {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--g20);
    border-radius: 100px;
    transition: background 200ms, border-color 200ms, transform 200ms
}

.btn-o:hover {
    background: var(--g05);
    border-color: var(--g40);
    transform: translateY(-2px)
}

.btn-o-w {
    color: rgba(255, 255, 255, .65);
    border-color: rgba(255, 255, 255, .2)
}

.btn-o-w:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    transform: translateY(-2px)
}

.btn-o .ba-l,
.btn-o .ba-r,
.btn-o-w .ba-l,
.btn-o-w .ba-r {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px
}

.btn-o .ba-l svg,
.btn-o .ba-r svg,
.btn-o-w .ba-l svg,
.btn-o-w .ba-r svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-o .ba-l,
.btn-o-w .ba-l {
    display: none
}


/* ════════════════════════════════════════════════════════════
   §1 HERO — dark typographic banner
   ════════════════════════════════════════════════════════════ */
.ct-hero {
    position: relative;
    background: #0A0A0A;
    color: #E8E8E8;
    padding: 132px 0 40px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 50% at 25% 35%, rgba(222, 37, 58, .14), transparent 70%);
    pointer-events: none
}

.ct-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(80% 60% at 30% 40%, #000, transparent 90%)
}

.ct-hero .wrap {
    position: relative;
    z-index: 2
}

.ct-hero-eyebrow {
    color: var(--red);
    margin-bottom: 14px
}

.ct-hero h1 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -.022em;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 14px;
    max-width: 820px
}

.ct-hero h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 60%, var(--red) 60%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding: 0 2px
}

.ct-hero-sub {
    font-family: var(--fb);
    font-size: 15.5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55;
    max-width: 720px;
    margin-bottom: 0
}

.ct-hero-sub strong {
    color: #fff;
    font-weight: 600
}

@media(max-width:640px) {
    .ct-hero {
        padding: 96px 0 32px
    }

    .ct-hero h1 {
        font-size: 26px
    }

    .ct-hero-sub {
        font-size: 14.5px
    }
}

/* ════════════════════════════════════════════════════════════
   §2 CONTACT FORM + METHODS SPLIT
   ════════════════════════════════════════════════════════════ */
.ct-body {
    padding: 56px 0 var(--py);
    background: #fff
}

.ct-split {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 36px;
    align-items: start
}

@media(max-width:960px) {
    .ct-split {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

/* Form panel */
.ct-form-panel {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 16px;
    padding: 38px 36px 34px
}

@media(max-width:640px) {
    .ct-form-panel {
        padding: 26px 22px 24px
    }
}

.ct-form-hd {
    margin-bottom: 26px
}

.ct-form-hd-e {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block
}

.ct-form-hd h2 {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 10px
}

.ct-form-hd p {
    font-family: var(--fb);
    font-size: 14.5px;
    color: var(--g60);
    line-height: 1.55
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media(max-width:560px) {
    .ct-form-row {
        grid-template-columns: 1fr
    }
}

.ct-field label {
    display: block;
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--g60);
    font-weight: 600;
    margin-bottom: 8px
}

.ct-field label .req {
    color: var(--red);
    margin-left: 2px
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid var(--g20);
    border-radius: 8px;
    font-family: var(--fb);
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .2s, background .2s, box-shadow .2s;
    line-height: 1.4
}

.ct-field textarea {
    resize: vertical;
    height: 120px;
    font-family: var(--fb)
}

.ct-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23565656' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(222, 37, 58, .1)
}

.ct-form-priv {
    margin-top: 6px;
    padding: 12px 14px;
    background: var(--g05);
    border-radius: 8px;
    font-family: var(--fm);
    font-size: 11px;
    color: var(--g60);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.ct-form-priv svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--red);
    margin-top: 1px
}

.ct-form-priv strong {
    color: var(--ink);
    font-weight: 600
}

.ct-form-err {
    display: none;
    font-family: var(--fm);
    font-size: 12px;
    color: #B23A33;
    margin-top: 2px;
    padding: 10px 12px;
    background: rgba(255, 95, 87, .06);
    border: 1px solid rgba(255, 95, 87, .2);
    border-radius: 6px
}

.ct-form-err.show {
    display: block
}

.ct-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px
}

.ct-form-thanks {
    display: none;
    padding: 32px 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(34, 197, 94, .06) 0%, rgba(34, 197, 94, .02) 100%);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 12px
}

.ct-form-thanks.show {
    display: block
}

.ct-form-thanks-icon {
    width: 56px;
    height: 56px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px
}

.ct-form-thanks h3 {
    font-family: var(--fd);
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -.018em;
    margin-bottom: 8px;
    line-height: 1.25
}

.ct-form-thanks p {
    font-family: var(--fb);
    font-size: 14.5px;
    color: var(--g60);
    line-height: 1.55;
    max-width: 420px;
    margin: 0 auto
}

/* Methods panel */
.ct-methods {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ct-methods-hd {
    margin-bottom: 8px
}

.ct-methods-hd-e {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block
}

.ct-methods-hd h2 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 8px
}

.ct-methods-hd p {
    font-family: var(--fb);
    font-size: 14px;
    color: var(--g60);
    line-height: 1.55
}

.ct-method {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 12px;
    transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
    width: 100%
}

.ct-method:hover {
    border-color: rgba(222, 37, 58, .35);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -18px rgba(14, 14, 15, .14)
}

.ct-method-icon {
    width: 44px;
    height: 44px;
    background: var(--g05);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: background .25s, color .25s
}

.ct-method:hover .ct-method-icon {
    background: var(--red);
    color: #fff
}

.ct-method-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ct-method-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.ct-method-l {
    font-family: var(--fm);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--g40)
}

.ct-method-v {
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.008em;
    line-height: 1.25
}

.ct-method-v small {
    display: block;
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 400;
    color: var(--g60);
    margin-top: 3px;
    letter-spacing: 0;
    text-transform: none
}

.ct-method-arrow {
    color: var(--g20);
    transition: color .25s, transform .25s
}

.ct-method-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ct-method:hover .ct-method-arrow {
    color: var(--red);
    transform: translateX(3px)
}

.ct-method-live::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
    animation: ctPulse 2s ease-in-out infinite
}

.ct-method-live {
    position: relative
}

/* ════════════════════════════════════════════════════════════
   §3 WHAT HAPPENS NEXT (3-step SLA timeline)
   ════════════════════════════════════════════════════════════ */
.ct-sla {
    padding: var(--py) 0;
    background: var(--g05);
    border-top: 1px solid var(--g10);
    border-bottom: 1px solid var(--g10)
}

.ct-sla-hd {
    max-width: 780px;
    margin-bottom: 44px
}

.ct-sla-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.65;
    margin-top: 16px;
    max-width: 640px
}

.ct-sla-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative
}

@media(max-width:820px) {
    .ct-sla-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }
}

.ct-sla-step {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 14px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative
}

.ct-sla-step:hover {
    border-color: rgba(222, 37, 58, .28);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px -22px rgba(14, 14, 15, .14)
}

.ct-sla-step-t {
    display: flex;
    align-items: center;
    gap: 10px
}

.ct-sla-step-n {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    color: var(--red);
    font-weight: 600;
    line-height: 1;
    padding: 4px 9px;
    background: var(--red-soft);
    border-radius: 999px
}

.ct-sla-step-sla {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--g60);
    letter-spacing: .06em;
    font-weight: 500
}

.ct-sla-step h3 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.018em;
    color: var(--ink);
    line-height: 1.25;
    margin: 0
}

.ct-sla-step p {
    font-family: var(--fb);
    font-size: 14px;
    color: var(--g60);
    line-height: 1.6;
    margin: 0
}

.ct-sla-step p strong {
    color: var(--ink);
    font-weight: 600
}

.ct-sla-step-time {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--g10);
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--g40);
    text-transform: uppercase;
    font-weight: 500
}

.ct-sla-step-time strong {
    color: var(--red);
    font-weight: 600
}

/* ════════════════════════════════════════════════════════════
   §4 TRUST STRIP (4 compact stats)
   ════════════════════════════════════════════════════════════ */
.ct-trust {
    padding: 56px 0;
    background: #0E0E0F;
    color: #fff;
    position: relative;
    overflow: hidden
}

.ct-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 50% at 50% 30%, rgba(222, 37, 58, .08), transparent 70%);
    pointer-events: none
}

.ct-trust .wrap {
    position: relative;
    z-index: 2
}

.ct-trust-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap
}

.ct-trust-i {
    flex: 1 1 0;
    min-width: 180px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.ct-trust-i:first-child {
    padding-left: 0
}

.ct-trust-i:last-child {
    border-right: 0;
    padding-right: 0
}

.ct-trust-i-l {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ct-trust-i-v {
    font-family: var(--fd);
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.028em;
    display: block;
    margin-bottom: 6px
}

.ct-trust-i-v small {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    margin-left: 2px;
    letter-spacing: 0
}

.ct-trust-i-d {
    font-family: var(--fm);
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .04em;
    line-height: 1.4;
    display: block;
    margin-top: 4px
}

@media(max-width:760px) {
    .ct-trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0
    }

    .ct-trust-i {
        padding: 0 16px;
        border-right: 1px solid rgba(255, 255, 255, .08)
    }

    .ct-trust-i:first-child,
    .ct-trust-i:nth-child(3) {
        padding-left: 0
    }

    .ct-trust-i:nth-child(2),
    .ct-trust-i:last-child {
        padding-right: 0;
        border-right: 0
    }

    .ct-trust-i-v {
        font-size: 28px
    }
}

/* ════════════════════════════════════════════════════════════
   §5 FAQ (details/summary — no schema)
   ════════════════════════════════════════════════════════════ */
.ct-faq {
    padding: var(--py) 0;
    background: #fff
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start
}

@media(max-width:880px) {
    .ct-faq-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

.ct-faq-hd h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -.022em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px
}

.ct-faq-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.ct-faq-hd p {
    font-family: var(--fb);
    font-size: 15px;
    color: var(--g60);
    line-height: 1.65;
    margin-bottom: 20px
}

.ct-faq-hd p a {
    color: var(--red);
    border-bottom: 1px solid rgba(222, 37, 58, .3);
    font-weight: 600
}

.ct-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ct-faq-item {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .25s
}

.ct-faq-item[open] {
    border-color: var(--red)
}

.ct-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    list-style: none;
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.005em;
    line-height: 1.4;
    transition: background .2s
}

.ct-faq-item summary::-webkit-details-marker {
    display: none
}

.ct-faq-item summary:hover {
    background: var(--g05)
}

.ct-faq-q {
    flex: 1
}

.ct-faq-i {
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--g20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 600;
    transition: all .2s;
    flex-shrink: 0
}

.ct-faq-item[open] .ct-faq-i {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: rotate(45deg)
}

.ct-faq-a {
    padding: 0 22px 22px;
    font-family: var(--fb);
    font-size: 14.5px;
    color: var(--g60);
    line-height: 1.7
}

.ct-faq-a p {
    margin-bottom: 10px
}

.ct-faq-a p:last-child {
    margin-bottom: 0
}

.ct-faq-a strong {
    color: var(--ink);
    font-weight: 600
}

.ct-faq-a a {
    color: var(--red);
    border-bottom: 1px solid rgba(222, 37, 58, .3);
    font-weight: 600
}

/* ════════════════════════════════════════════════════════════
   §6 FINAL CTA
   ════════════════════════════════════════════════════════════ */
.ct-final {
    padding: 80px 0;
    background: #0E0E0F;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.ct-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 50%, rgba(222, 37, 58, .14), transparent 70%);
    pointer-events: none
}

.ct-final .wrap {
    position: relative;
    z-index: 2;
    max-width: 820px
}

.ct-final .eyebrow {
    color: var(--red);
    margin-bottom: 18px
}

.ct-final h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    letter-spacing: -.024em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px
}

.ct-final h2 em {
    font-style: normal;
    color: var(--red)
}

.ct-final p {
    font-family: var(--fb);
    font-size: 16px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto
}

.ct-final-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.ct-final-nap {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-family: var(--fm);
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

.ct-final-nap strong {
    color: #fff;
    font-weight: 500;
    text-transform: none
}

.ct-final-nap a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}



/* ════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE + REDUCED MOTION
   ════════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
    :root {
        --px: 40px
    }
}

@media(max-width:640px) {
    :root {
        --px: 24px;
        --py: 64px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

@media print {

    .btn,
    .ct-methods {
        display: none !important
    }

    .ct-hero {
        background: #fff !important;
        color: #000 !important
    }
}