/* PROMISE — 6 PILLAR CARDS */
.promise-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 44px;
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mini-stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 18px 16px;
    text-align: center;
    transition: all .25s var(--ease);
    cursor: default;
}

.mini-stat:hover {
    border-color: var(--sage-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.ms-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.ms-val {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--plum-700);
}

.ms-lbl {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 3px;
}

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

.pillar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 0;
    overflow: hidden;
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.pillar-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pillar-top {
    height: 80px;
    display: flex;
    align-items: flex-end;
    padding: 0 26px 18px;
    position: relative;
}

.pillar-num {
    position: absolute;
    right: 18px;
    top: 8px;
    font-family: var(--display);
    font-size: 48px;
    font-weight: 700;
    opacity: .07;
    line-height: 1;
    color: var(--plum-700);
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.pillar-body {
    padding: 20px 26px 26px;
}

.pillar-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--gray-600);
}

.pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--blush-100);
    border-radius: var(--r-pill);
    padding: 5px 12px;
}

.pillar-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
}

/* ============================= QUALITY — DARK SPLIT ============================= */
.quality-wrap {
    background: linear-gradient(160deg, var(--plum-950), var(--plum-900));
    border-radius: var(--r-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.quality-wrap::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 300px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 238, 192, .06), transparent 70%);
    pointer-events: none;
}

.q-left {
    padding: 52px 48px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 1;
}

.q-right {
    padding: 52px 48px;
    position: relative;
    z-index: 1;
}

.q-checklist {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qc-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(94, 238, 192, .1);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all .22s var(--ease);
}

.qc-item:hover {
    background: rgba(94, 238, 192, .06);
    border-color: rgba(94, 238, 192, .25);
    transform: translateX(4px);
}

.qc-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--plum-950);
}

.qc-dot .icon {
    width: 13px;
    height: 13px;
    stroke-width: 2.5;
}

.qc-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.qc-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.q-cert {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--sage-500);
    border-radius: var(--r-md);
    padding: 14px 22px;
}

.q-cert-num {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    color: var(--plum-950);
    line-height: 1;
}

.q-cert-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--plum-950);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.q-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.qp-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.qp-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(94, 238, 192, .1);
    border: 1px solid rgba(94, 238, 192, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all .25s var(--ease);
}

.qp-item:hover .qp-icon {
    background: rgba(94, 238, 192, .18);
    transform: scale(1.08) rotate(-6deg);
}

.qp-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.qp-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.7;
}

.q-metrics {
    margin-top: 40px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(94, 238, 192, .15);
    border-radius: 14px;
    padding: 20px 22px 16px;
}

.q-metrics-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sage-400);
    margin-bottom: 16px;
}

.q-metric-row {
    margin-bottom: 13px;
}

.q-metric-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 5px;
}

.q-metric-pct {
    color: var(--sage-400);
    font-weight: 800;
}

.q-bar {
    height: 5px;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    overflow: hidden;
}

.q-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--sage-500);
}

.q-metrics-footer {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    letter-spacing: .03em;
}

/* ============================= TIMELINE ============================= */
.tl-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.tl-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}

.tl-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-700), var(--sage-500), var(--plum-700));
    z-index: 0;
}

.tl-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.tl-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum-800), var(--plum-950));
    border: 3px solid var(--sage-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 22px;
    box-shadow: 0 4px 16px rgba(29, 219, 149, .18);
    transition: all .28s var(--ease);
    cursor: default;
}

.tl-node .icon {
    width: 20px;
    height: 20px;
    stroke: var(--sage-400);
}

.tl-step:hover .tl-node {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(29, 219, 149, .3);
}

.tl-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 16px 14px;
    transition: all .25s var(--ease);
}

.tl-step:hover .tl-card {
    border-color: var(--sage-500);
    box-shadow: var(--shadow-sm);
}

.tl-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--blush-100);
    padding: 3px 9px;
    border-radius: var(--r-pill);
    display: inline-block;
    margin-bottom: 7px;
}

.tl-card h4 {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 5px;
}

.tl-card p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============================= TRUST BENTO ============================= */
.trust-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
}

.trust-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-bento-row2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 18px;
    margin-top: 18px;
}

.tb {
    border-radius: var(--r-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all .28s var(--ease);
    cursor: default;
}

.tb:hover {
    transform: translateY(-5px);
}

.tb-dark {
    background: linear-gradient(160deg, var(--plum-950), var(--plum-900));
}

.tb-dark:hover {
    box-shadow: 0 18px 42px rgba(45, 10, 53, .4);
}

.tb-plum {
    background: linear-gradient(135deg, var(--plum-800), var(--plum-700));
}

.tb-plum:hover {
    box-shadow: 0 18px 42px rgba(122, 31, 110, .3);
}

.tb-sage {
    background: linear-gradient(135deg, var(--sage-600), var(--sage-500));
}

.tb-sage:hover {
    box-shadow: 0 18px 42px rgba(29, 219, 149, .25);
}

.tb-white {
    background: var(--white);
    border: 1.5px solid var(--line);
}

.tb-white:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sage-500);
}

.tb-navy {
    background: linear-gradient(135deg, #1a3a5c, #1a5276);
}

.tb-navy:hover {
    box-shadow: 0 18px 42px rgba(26, 82, 118, .3);
}

.tb-ico {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.tb-stat-big {
    font-family: var(--display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.tb-ttl {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 7px;
}

.tb-desc {
    font-size: 13px;
    line-height: 1.65;
}

.tb-dark .tb-stat-big,
.tb-plum .tb-stat-big {
    color: var(--sage-400);
}

.tb-dark .tb-ttl,
.tb-plum .tb-ttl,
.tb-navy .tb-ttl {
    color: #fff;
}

.tb-dark .tb-desc,
.tb-plum .tb-desc,
.tb-navy .tb-desc {
    color: rgba(255, 255, 255, .5);
}

.tb-sage .tb-ttl {
    color: var(--plum-950);
}

.tb-sage .tb-desc {
    color: rgba(45, 10, 53, .65);
}

.tb-sage .tb-stat-big {
    color: var(--plum-950);
}

.tb-white .tb-ttl {
    color: var(--ink-900);
}

.tb-white .tb-desc {
    color: var(--gray-600);
}

.tb-navy .tb-stat-big {
    color: var(--sage-400);
}

/* ============================= TESTIMONIALS ============================= */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
    align-items: start;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .28s var(--ease);
    cursor: default;
}

.testi-card:nth-child(2) {
    margin-top: 32px;
}

.testi-card:nth-child(3) {
    margin-top: 16px;
}

.testi-card:hover {
    border-color: var(--sage-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: var(--display);
    font-size: 80px;
    line-height: 1;
    color: var(--blush-100);
    font-weight: 700;
    pointer-events: none;
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.t-star {
    font-size: 13px;
    color: var(--sage-500);
}

.t-text {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.78;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.t-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin-bottom: 14px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum-800), var(--plum-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.t-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-900);
}

.t-loc {
    font-size: 11.5px;
    color: var(--gray-600);
}

.t-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    color: var(--plum-700);
    background: var(--blush-100);
    border-radius: var(--r-pill);
    padding: 3px 9px;
    margin-top: 3px;
}

/* ============================= PLEDGE ============================= */
.pledge-outer {
    background: var(--white);
    border: 2px solid var(--sage-500);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.pledge-outer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 219, 149, .06), transparent 70%);
    pointer-events: none;
}

.pledge-header {
    text-align: center;
    padding: 52px 48px 36px;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 1;
}

.pledge-seal {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--plum-800), var(--sage-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 28px rgba(122, 31, 110, .3);
    animation: sealPulse 3s ease-in-out infinite;
}

@keyframes sealPulse {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(122, 31, 110, .3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(29, 219, 149, .4);
    }
}

.pledge-header h2 {
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 10px;
    line-height: 1.1;
}

.pledge-header h2 span {
    color: var(--plum-700);
}

.pledge-header p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.72;
    max-width: 620px;
    margin: 0 auto 24px;
}

.btn-plum-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage-500);
    color: var(--plum-950);
    padding: 13px 28px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(29, 219, 149, .3);
    transition: all .22s var(--ease);
}

.btn-plum-solid:hover {
    background: var(--sage-400);
    color: var(--plum-950);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(29, 219, 149, .45);
}

.pledge-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pledge-item {
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    position: relative;
    transition: all .25s var(--ease);
    cursor: default;
}

.pledge-item:last-child {
    border-right: none;
}

.pledge-item:hover {
    background: var(--blush-100);
}

.pledge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-700), var(--sage-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.pledge-item:hover::before {
    transform: scaleX(1);
}

.pi-icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.pi-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 6px;
}

.pi-sub {
    font-size: 12.5px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============================= FAQ ============================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 40px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--white);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--sage-500);
}

.faq-item.open {
    border-color: var(--plum-700);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    color: var(--ink-900);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s;
}

.faq-q:hover,
.faq-item.open .faq-q {
    color: var(--plum-700);
}

.q-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease), background .3s var(--ease);
}

.q-toggle .icon {
    width: 13px;
    height: 13px;
}

.faq-item.open .q-toggle {
    transform: rotate(45deg);
    background: var(--sage-500);
    color: var(--plum-950);
    border-color: var(--sage-500);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-a p {
    padding: 14px 20px 18px;
    font-size: 13.5px;
    line-height: 1.72;
    color: var(--gray-600);
    padding-left: 20px;
    border-left: 3px solid var(--sage-500);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 8px;
    margin-bottom: 18px;
}

/* ============================= CONTACT BAND ============================= */
.contact-band {
    background: linear-gradient(160deg, var(--plum-900) 0%, var(--plum-700) 100%);
    padding: 64px 88px;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.contact-band-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cb-text h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-top: 8px;
}

.cb-text h2 em {
    font-style: italic;
    color: var(--sage-400);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cc-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .25s var(--ease);
}

.cc-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(4px);
}

.cc-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--sage-500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-950);
    flex-shrink: 0;
}

.cc-icon-wrap .icon {
    width: 19px;
    height: 19px;
}

.cc-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.cc-val {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.contact-band-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--sage-500);
    color: var(--plum-950);
    font-weight: 700;
    font-size: 13.5px;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn-gold:hover {
    background: var(--sage-400);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(29, 219, 149, .3);
    color: black;
}

.btn-outline-white {
    border: 1.4px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    transition: all .25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

/* ============================= FOOTER ============================= */
footer.site {
    background: linear-gradient(160deg, var(--plum-950), var(--plum-900));
    color: #e6dbe0;
    padding: 72px 24px 0;
}

.footer-top {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #c6b3bc;
    margin-top: 14px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.fs-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all .25s var(--ease);
}

.fs-btn:hover {
    background: var(--sage-500);
    color: var(--plum-950);
}

.footer-news {
    margin-top: 24px;
}

.footer-news p {
    font-size: 13px;
    color: #c6b3bc;
    margin-bottom: 10px;
}

.fn-row {
    display: flex;
    gap: 0;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .08);
    padding: 5px;
}

.fn-row input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    padding: 10px 14px;
}

.fn-row input::placeholder {
    color: #a98fa0;
}

.fn-row button {
    background: var(--sage-500);
    color: var(--plum-950);
    font-weight: 700;
    font-size: 12.5px;
    padding: 10px 18px;
    border-radius: var(--r-pill);
    transition: background .25s var(--ease);
}

.fn-row button:hover {
    background: var(--sage-400);
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col ul a {
    font-size: 13.5px;
    color: #c6b3bc;
    transition: color .25s var(--ease);
}

.footer-col ul a:hover {
    color: var(--sage-400);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #c6b3bc;
    margin-bottom: 13px;
    line-height: 1.5;
}

.footer-contact-item .icon {
    width: 15px;
    height: 15px;
    color: var(--sage-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.pay-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.pay-chip {
    background: rgba(255, 255, 255, .08);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #c6b3bc;
}

.footer-badges {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ft-badge {
    background: rgba(94, 238, 192, .06);
    border: 1px solid rgba(94, 238, 192, .14);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(230, 219, 224, .65);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 26px 0;
    font-size: 12.5px;
    color: #a98fa0;
}

.footer-bottom a {
    color: #a98fa0;
    transition: color .2s;
}

.footer-bottom a:hover {
    color: var(--sage-400);
}

/* ============================= BACK TO TOP ============================= */
.to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--plum-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s var(--ease);
    z-index: 90;
}

.to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.to-top:hover {
    background: var(--sage-500);
    color: var(--plum-950);
}

.to-top .icon {
    width: 18px;
    height: 18px;
}