﻿.v3-hero {
    position: relative;
    padding: 36px 0 0;
    background: linear-gradient(180deg, #F3FBFB 0%, #FFFFFF 70%);
    overflow: hidden;
}

.v3-hero__main {
    padding: 0;
}

.v3-hero__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(18px, 2.5vw, 40px);
    padding-right: clamp(18px, 2.5vw, 40px);
}

.v3-hero__row {
    --bs-gutter-x: 1.75rem;
}

.v3-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.v3-hero__glow--one {
    width: 480px;
    height: 480px;
    top: -180px;
    left: -160px;
    background: rgba(2, 189, 189, .16);
}

.v3-hero__glow--two {
    width: 560px;
    height: 560px;
    bottom: -260px;
    right: -200px;
    background: rgba(0, 92, 92, .12);
}

.v3-hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(2, 189, 189, .18) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 0%, transparent 75%);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

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

.v3-hero__content {
    max-width: 560px;
}

@media (min-width: 1200px) {
    .v3-hero__content {
        max-width: none;
    }
}

.v3-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px 9px 11px;
    border-radius: 999px;
    background: rgba(2, 189, 189, .08);
    border: 1px solid rgba(2, 189, 189, .25);
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.v3-hero__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(2, 189, 189, .15);
    color: var(--thm-primary);
    font-size: 12px;
}

.v3-hero__title {
    font-size: clamp(2.65rem, 4.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.5px;
    color: var(--thm-black);
    margin-bottom: 26px;
}

.v3-hero__title span {
    display: block;
    color: var(--thm-primary);
}

.v3-hero__text {
    font-size: clamp(17px, 1.55vw, 21px);
    line-height: 1.65;
    color: var(--thm-gray);
    max-width: 100%;
    margin-bottom: 36px;
}

.v3-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.v3-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 300ms ease;
    border: 1px solid transparent;
}

.v3-btn--primary {
    background: var(--thm-primary);
    color: #fff;
}

.v3-btn--primary:hover {
    background: var(--thm-extra);
    color: #fff;
    transform: translateY(-2px);
}

.v3-btn--dark {
    background: var(--thm-black);
    color: #fff;
}

.v3-btn--dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.v3-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.v3-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--thm-black);
}

.v3-hero__trust-item i {
    color: var(--thm-primary);
    font-size: 18px;
}

/* Hero intro animations */
@keyframes v3HeroInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes v3HeroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes v3HeroGridIn {
    from {
        opacity: 0;
    }

    to {
        opacity: .5;
    }
}

@keyframes v3HeroGlobeIn {
    from {
        opacity: 0;
        transform: scale(0.84) translateY(32px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes v3HeroFloatIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.v3-hero__glow {
    opacity: 0;
    animation: v3HeroFadeIn 1.1s ease forwards;
}

.v3-hero__glow--two {
    animation-delay: 180ms;
}

.v3-hero__grid {
    opacity: 0;
    animation: v3HeroGridIn 1.2s ease 120ms forwards;
}

.v3-hero__badge,
.v3-hero__title,
.v3-hero__text,
.v3-hero__actions,
.v3-hero__trust {
    opacity: 0;
    animation: v3HeroInUp 780ms cubic-bezier(.22, 1, .36, 1) forwards;
}

.v3-hero__badge {
    animation-delay: 100ms;
}

.v3-hero__title {
    animation-delay: 220ms;
}

.v3-hero__text {
    animation-delay: 340ms;
}

.v3-hero__actions {
    animation-delay: 460ms;
}

.v3-hero__trust {
    animation-delay: 580ms;
}

@media (min-width: 992px) {
    .v3-hero__title {
        font-size: clamp(3rem, 4.8vw, 4.5rem);
    }

    .v3-hero__text {
        font-size: 21px;
    }

    .v3-hero__trust-item {
        font-size: 16px;
    }

    .v3-hero__trust-item i {
        font-size: 19px;
    }
}

/* Globe + floating cards */
.v3-hero__globe-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.v3-hero__globe-stage {
    position: relative;
    width: 100%;
    max-width: min(100%, 680px);
    margin: 0 auto;
}

.v3-hero__globe-orbit {
    position: relative;
    width: 100%;
}

.v3-hero__globe-stage,
.v3-hero__globe-orbit,
.v3-hero__globe-visual,
.v3-hero__globe-canvas {
    overflow: visible;
    background: transparent;
}

.v3-hero__globe-visual {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    opacity: 0;
    animation: v3HeroGlobeIn 1.05s cubic-bezier(.22, 1, .36, 1) 280ms forwards;
    will-change: transform, opacity;
}

.v3-hero__globe-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    padding-top: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 189, 189, .24) 0%, rgba(2, 189, 189, .06) 50%, transparent 72%);
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

.v3-hero__globe-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto;
    cursor: grab;
    touch-action: none;
}

.v3-hero__globe-canvas:active {
    cursor: grabbing;
}

.v3-hero__globe-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    outline: none;
    background: transparent !important;
}

@keyframes v3Float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.v3-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 15px 35px rgba(16, 24, 40, .12);
    white-space: nowrap;
    opacity: 0;
    will-change: transform, opacity;
}

.v3-float-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 15px;
    flex-shrink: 0;
}

.v3-float-card__icon--teal {
    background: rgba(2, 189, 189, .12);
    color: var(--thm-primary);
}

.v3-float-card__icon--dark {
    background: rgba(25, 30, 36, .08);
    color: var(--thm-black);
}

.v3-float-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--thm-gray);
    line-height: 1.4;
}

.v3-float-card__value {
    font-size: 14px;
    font-weight: 700;
    color: var(--thm-black);
    line-height: 1.3;
}

.v3-float-card--public {
    top: 6%;
    left: 4%;
    animation:
        v3HeroFloatIn 700ms cubic-bezier(.22, 1, .36, 1) 700ms both,
        v3Float 4.5s ease-in-out 1.4s infinite;
}

.v3-float-card--social {
    top: 12%;
    right: 2%;
    animation:
        v3HeroFloatIn 700ms cubic-bezier(.22, 1, .36, 1) 840ms both,
        v3Float 4.5s ease-in-out 1.54s infinite;
}

.v3-float-card--financial {
    bottom: 20%;
    left: 2%;
    animation:
        v3HeroFloatIn 700ms cubic-bezier(.22, 1, .36, 1) 980ms both,
        v3Float 4.5s ease-in-out 1.68s infinite;
}

.v3-float-card--darkweb {
    bottom: 10%;
    right: 4%;
    animation:
        v3HeroFloatIn 700ms cubic-bezier(.22, 1, .36, 1) 1120ms both,
        v3Float 4.5s ease-in-out 1.82s infinite;
}

/* Stats bar */
.v3-stats {
    position: relative;
    z-index: 2;
    background: var(--thm-extra);
    padding: 20px 0;
    margin-top: 0;
}

.v3-stats__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
}

.v3-stats__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 14px 10px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    border-radius: 0;
    transition: all 300ms ease;
    cursor: default;
}

.v3-stats__item:last-child {
    border-right: none;
}

.v3-stats__value {
    font-size: 34px;
    font-weight: 800;
    color: var(--thm-primary);
    line-height: 1;
    transition: color 300ms ease;
}

.v3-stats__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.35;
    transition: color 300ms ease;
}

.v3-stats__item:hover {
    background: #fff;
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
    z-index: 1;
    border-right-color: transparent;
}

.v3-stats__item:hover .v3-stats__value {
    color: var(--thm-extra);
}

.v3-stats__item:hover .v3-stats__label {
    color: var(--thm-black);
}

@media (min-width: 1400px) {
    .v3-hero__container {
        max-width: 1560px;
        padding-left: 36px;
        padding-right: 36px;
    }

    .v3-hero__row {
        --bs-gutter-x: 2rem;
    }

    .v3-hero__globe-visual,
    .v3-hero__globe-canvas {
        max-width: 680px;
    }
}

@media (max-width: 991px) {
    .v3-hero {
        padding: 28px 0 0;
        text-align: center;
    }

    .v3-hero__title {
        font-size: 46px;
    }

    .v3-hero__text {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .v3-hero__actions,
    .v3-hero__trust {
        justify-content: center;
    }

    .v3-hero__globe-stage {
        margin-top: 40px;
        max-width: 460px;
    }

    .v3-hero__globe-visual,
    .v3-hero__globe-canvas {
        max-width: 480px;
    }

    .v3-stats__row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .v3-stats__item {
        flex: 0 0 auto;
        min-width: 130px;
    }
}

/* Tablet portrait â€” iPad / Surface Pro 7 (912Ã—1368) and similar */
@media (min-width: 768px) and (max-width: 991px) {
    .v3-hero {
        padding: 20px 0 12px;
    }

    .v3-hero__container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .v3-hero__row {
        --bs-gutter-y: 1.5rem;
    }

    .v3-hero__content {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .v3-hero__badge {
        margin-bottom: 18px;
    }

    .v3-hero__title {
        font-size: clamp(2.35rem, 5vw, 2.85rem);
        margin-bottom: 18px;
    }

    .v3-hero__text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 26px;
    }

    .v3-hero__actions {
        gap: 12px;
        margin-bottom: 24px;
    }

    .v3-hero__trust {
        gap: 14px 28px;
        justify-content: center;
    }

    .v3-hero__trust-item {
        font-size: 14px;
    }

    .v3-hero__globe-col {
        padding-top: 4px;
    }

    .v3-hero__globe-stage {
        margin-top: 16px;
        max-width: min(92vw, 580px);
        padding: 0 20px 8px;
    }

    .v3-hero__globe-orbit {
        padding: 8px 0 16px;
    }

    .v3-hero__globe-visual,
    .v3-hero__globe-canvas {
        max-width: 100%;
    }

    .v3-float-card {
        padding: 10px 14px;
        gap: 8px;
    }

    .v3-float-card__icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .v3-float-card__label {
        font-size: 10px;
    }

    .v3-float-card__value {
        font-size: 13px;
    }

    .v3-float-card--public {
        top: 7%;
        left: 5%;
    }

    .v3-float-card--social {
        top: 9%;
        right: 3%;
    }

    .v3-float-card--financial {
        bottom: 20%;
        left: 3%;
    }

    .v3-float-card--darkweb {
        bottom: 10%;
        right: 5%;
    }
}

/* Surface Pro 7 portrait (~912px) â€” tighter two-column hero */
@media (min-width: 880px) and (max-width: 991px) {
    .v3-hero {
        padding: 16px 0 8px;
    }

    .v3-hero__row {
        --bs-gutter-x: 1.25rem;
        --bs-gutter-y: 0;
        align-items: center !important;
    }

    .v3-hero__row > .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .v3-hero {
        text-align: left;
    }

    .v3-hero__content {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .v3-hero__badge {
        margin-bottom: 14px;
        font-size: 11px;
        padding: 7px 16px 7px 9px;
    }

    .v3-hero__title {
        font-size: clamp(1.85rem, 3.2vw, 2.35rem);
        margin-bottom: 14px;
        line-height: 1.08;
    }

    .v3-hero__text {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .v3-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 18px;
    }

    .v3-btn {
        padding: 13px 22px;
        font-size: 11px;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .v3-hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .v3-hero__trust-item {
        font-size: 12px;
    }

    .v3-hero__trust-item i {
        font-size: 15px;
    }

    .v3-hero__globe-col {
        padding-top: 0;
    }

    .v3-hero__globe-stage {
        margin-top: 0;
        max-width: 100%;
        padding: 0 4px 0 0;
    }

    .v3-hero__globe-orbit {
        padding: 12px 8px 8px;
    }

    .v3-float-card {
        padding: 8px 11px;
    }

    .v3-float-card__icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 8px;
    }

    .v3-float-card__label {
        font-size: 9px;
    }

    .v3-float-card__value {
        font-size: 11px;
    }

    .v3-float-card--public {
        top: 4%;
        left: 2%;
    }

    .v3-float-card--social {
        top: 6%;
        right: 2%;
    }

    .v3-float-card--financial {
        bottom: 22%;
        left: 2%;
    }

    .v3-float-card--darkweb {
        bottom: 8%;
        right: 2%;
    }
}

@media (max-width: 575px) {
    .v3-float-card {
        padding: 8px 12px;
    }

    .v3-float-card__icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .v3-float-card__label {
        font-size: 9px;
    }

    .v3-float-card__value {
        font-size: 12px;
    }

    .v3-stats__value {
        font-size: 28px;
    }

    .v3-stats__label {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3-hero__glow,
    .v3-hero__grid,
    .v3-hero__badge,
    .v3-hero__title,
    .v3-hero__text,
    .v3-hero__actions,
    .v3-hero__trust,
    .v3-hero__globe-visual,
    .v3-float-card {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .v3-hero__grid {
        opacity: .5;
    }
}

/* How It Works */
.v3-hiw {
    position: relative;
    padding: clamp(72px, 8vw, 110px) 0 clamp(40px, 4vw, 56px);
    background: #f0f7f6;
    overflow: hidden;
}

.v3-hiw__arc {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(2, 189, 189, .12);
    border-radius: 50%;
    pointer-events: none;
    animation: v3HiwArcPulse 8s ease-in-out infinite;
}

.v3-hiw__arc::before {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(2, 189, 189, .08);
    border-radius: 50%;
}

@keyframes v3HiwArcPulse {
    0%, 100% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.04); opacity: 1; }
}

.v3-hiw__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(18px, 2.5vw, 40px);
    padding-right: clamp(18px, 2.5vw, 40px);
    position: relative;
    z-index: 1;
}

.v3-hiw__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.v3-hiw__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--thm-primary);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.v3-hiw.is-visible .v3-hiw__label {
    opacity: 1;
    transform: translateY(0);
}

.v3-hiw__title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.4px;
    color: var(--thm-black);
    margin: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease 120ms, transform 700ms cubic-bezier(.22, 1, .36, 1) 120ms;
}

.v3-hiw.is-visible .v3-hiw__title {
    opacity: 1;
    transform: translateY(0);
}

.v3-hiw__steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.v3-hiw__step {
    position: relative;
    padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.v3-hiw.is-visible .v3-hiw__step:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.v3-hiw.is-visible .v3-hiw__step:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 380ms; }
.v3-hiw.is-visible .v3-hiw__step:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 560ms; }

.v3-hiw__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 12%;
    right: 0;
    width: 1px;
    height: 76%;
    background: linear-gradient(180deg, transparent, rgba(2, 189, 189, .18) 20%, rgba(2, 189, 189, .18) 80%, transparent);
}

.v3-hiw__step-num {
    position: absolute;
    top: 8px;
    left: clamp(16px, 2vw, 28px);
    font-size: clamp(5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(2, 189, 189, .07);
    pointer-events: none;
    user-select: none;
    transition: color 600ms ease, transform 600ms ease;
}

.v3-hiw__step:hover .v3-hiw__step-num {
    color: rgba(2, 189, 189, .11);
    transform: scale(1.03);
}

.v3-hiw__step-inner {
    position: relative;
    z-index: 1;
}

.v3-hiw__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid rgba(2, 189, 189, .35);
    background: rgba(2, 189, 189, .06);
    color: var(--thm-primary);
    font-size: 18px;
    margin-bottom: 22px;
    transition: all 350ms ease;
}

.v3-hiw__step:hover .v3-hiw__icon {
    background: rgba(2, 189, 189, .14);
    border-color: rgba(2, 189, 189, .55);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 189, 189, .15);
}

.v3-hiw__icon--pulse {
    animation: v3HiwIconPulse 2.4s ease-in-out infinite;
}

@keyframes v3HiwIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(2, 189, 189, .25); }
    50% { box-shadow: 0 0 0 8px rgba(2, 189, 189, 0); }
}

.v3-hiw__step-title {
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--thm-black);
    margin-bottom: 14px;
    max-width: 280px;
}

.v3-hiw__step-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--thm-gray);
    margin: 0;
    max-width: 300px;
}

/* Step 3 â€” highlighted card */
.v3-hiw__step--highlight {
    padding: clamp(20px, 2vw, 28px);
}

.v3-hiw__step--highlight::after {
    display: none;
}

.v3-hiw__card {
    position: relative;
    height: 100%;
    padding: clamp(32px, 3.5vw, 48px) clamp(28px, 2.5vw, 36px);
    border-radius: 20px;
    background: linear-gradient(145deg, #003d3d 0%, var(--thm-extra) 100%);
    overflow: hidden;
    transition: transform 450ms cubic-bezier(.22, 1, .36, 1), box-shadow 450ms ease;
}

.v3-hiw__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(2, 189, 189, .18) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 450ms ease;
}

.v3-hiw__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.v3-hiw__step--highlight:hover .v3-hiw__card {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 61, 61, .35);
}

.v3-hiw__step--highlight .v3-hiw__step-num {
    color: rgba(255, 255, 255, .06);
    left: clamp(20px, 2vw, 32px);
}

.v3-hiw__step--highlight:hover .v3-hiw__step-num {
    color: rgba(255, 255, 255, .09);
}

.v3-hiw__step--highlight .v3-hiw__icon {
    border-color: rgba(2, 189, 189, .5);
    background: rgba(2, 189, 189, .12);
    color: #6ef0ea;
}

.v3-hiw__step--highlight .v3-hiw__step-title,
.v3-hiw__step--highlight .v3-hiw__step-text {
    color: #fff;
}

.v3-hiw__step--highlight .v3-hiw__step-text {
    opacity: .82;
}

.v3-hiw__card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
    transform: skewX(-20deg);
    animation: v3HiwShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes v3HiwShimmer {
    0% { left: -100%; }
    40%, 100% { left: 150%; }
}

/* Tablet landscape / small laptop */
@media (max-width: 1199px) {
    .v3-hiw__header {
        margin-bottom: 44px;
    }

    .v3-hiw__step {
        padding: clamp(24px, 2.5vw, 36px) clamp(18px, 2vw, 28px);
    }

    .v3-hiw__step-title {
        max-width: none;
    }

    .v3-hiw__step-text {
        max-width: none;
    }

    .v3-hiw__step-num {
        font-size: clamp(4rem, 7vw, 5.5rem);
    }
}

/* Tablet portrait â€” 2 cols + full-width highlight */
@media (min-width: 768px) and (max-width: 991px) {
    .v3-hiw {
        padding: clamp(56px, 7vw, 80px) 0 clamp(32px, 3.5vw, 48px);
    }

    .v3-hiw__steps {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .v3-hiw__step:nth-child(1)::after {
        top: 12%;
        bottom: auto;
        right: 0;
        left: auto;
        width: 1px;
        height: 76%;
        background: linear-gradient(180deg, transparent, rgba(2, 189, 189, .18) 20%, rgba(2, 189, 189, .18) 80%, transparent);
    }

    .v3-hiw__step:nth-child(2)::after {
        display: none;
    }

    .v3-hiw__step--highlight {
        grid-column: 1 / -1;
        padding: 32px 0 0;
        margin-top: 8px;
        border-top: 1px solid rgba(2, 189, 189, .12);
    }

    .v3-hiw__step--highlight::after {
        display: none;
    }
}

/* Mobile & small tablet â€” single column */
@media (max-width: 767px) {
    .v3-hiw {
        padding: clamp(48px, 10vw, 64px) 0 clamp(32px, 3.5vw, 40px);
    }

    .v3-hiw__arc {
        top: -80px;
        left: -80px;
        width: 220px;
        height: 220px;
    }

    .v3-hiw__header {
        margin-bottom: 36px;
        padding: 0 4px;
    }

    .v3-hiw__title {
        font-size: clamp(1.65rem, 6vw, 2.1rem);
    }

    .v3-hiw__steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .v3-hiw__step {
        padding: 28px 8px;
        text-align: center;
    }

    .v3-hiw__step:not(:last-child)::after {
        top: auto;
        bottom: 0;
        right: 8%;
        left: 8%;
        width: 84%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(2, 189, 189, .18) 20%, rgba(2, 189, 189, .18) 80%, transparent);
    }

    .v3-hiw__step-num {
        top: 4px;
        left: 50%;
        transform: translateX(-50%);
        font-size: clamp(3.5rem, 14vw, 5rem);
    }

    .v3-hiw__step:hover .v3-hiw__step-num {
        transform: translateX(-50%) scale(1.03);
    }

    .v3-hiw__step-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .v3-hiw__step-title {
        max-width: 340px;
    }

    .v3-hiw__step-text {
        max-width: 400px;
    }

    .v3-hiw__step--highlight {
        padding: 28px 0 0;
        text-align: left;
    }

    .v3-hiw__step--highlight .v3-hiw__step-num {
        left: clamp(16px, 4vw, 24px);
        transform: none;
    }

    .v3-hiw__step--highlight:hover .v3-hiw__step-num {
        transform: scale(1.03);
    }

    .v3-hiw__step--highlight .v3-hiw__step-inner {
        align-items: flex-start;
    }

    .v3-hiw__card {
        padding: clamp(28px, 6vw, 36px) clamp(22px, 5vw, 28px);
        border-radius: 16px;
    }

    .v3-hiw__card::after {
        border-radius: 16px;
    }
}

/* Small phones */
@media (max-width: 575px) {
    .v3-hiw {
        padding: 40px 0 32px;
    }

    .v3-hiw__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .v3-hiw__label {
        font-size: 11px;
        letter-spacing: .1em;
    }

    .v3-hiw__header {
        margin-bottom: 28px;
    }

    .v3-hiw__step {
        padding: 24px 0;
    }

    .v3-hiw__icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .v3-hiw__step-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .v3-hiw__step-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .v3-hiw__step-num {
        font-size: 3.25rem;
    }

    .v3-hiw__step--highlight {
        padding-top: 20px;
    }

    .v3-hiw__card {
        padding: 24px 20px;
    }

    /* Disable hover lift on touch-sized screens */
    .v3-hiw__step--highlight:hover .v3-hiw__card {
        transform: none;
        box-shadow: none;
    }

    .v3-hiw__step:hover .v3-hiw__icon {
        transform: none;
        box-shadow: none;
    }
}

/* Very small screens */
@media (max-width: 374px) {
    .v3-hiw__title {
        font-size: 1.5rem;
    }

    .v3-hiw__step-title {
        font-size: 1rem;
    }

    .v3-hiw__step-text {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3-hiw__arc,
    .v3-hiw__icon--pulse,
    .v3-hiw__card-shimmer {
        animation: none;
    }

    .v3-hiw__label,
    .v3-hiw__title,
    .v3-hiw__step {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Key Features â€” tighter spacing after How It Works */
.key-features .inner-padding {
    padding-top: clamp(48px, 5vw, 72px);
    padding-bottom: clamp(80px, 8vw, 100px);
}

/* Who It's For */
.v3-wif {
    position: relative;
    padding: clamp(72px, 8vw, 110px) 0;
    background: linear-gradient(180deg, #f8fbfb 0%, #eef6f5 100%);
    overflow: hidden;
}

.v3-wif::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(2, 189, 189, .07) 0%, transparent 70%);
    pointer-events: none;
}

.v3-wif__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(18px, 2.5vw, 40px);
    padding-right: clamp(18px, 2.5vw, 40px);
}

.v3-wif__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.v3-wif__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--thm-primary);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.v3-wif.is-visible .v3-wif__label {
    opacity: 1;
    transform: translateY(0);
}

.v3-wif__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.4px;
    color: var(--thm-black);
    margin: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease 120ms, transform 700ms cubic-bezier(.22, 1, .36, 1) 120ms;
}

.v3-wif.is-visible .v3-wif__title {
    opacity: 1;
    transform: translateY(0);
}

.v3-wif__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(2, 189, 189, .14);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.v3-wif__card {
    position: relative;
    padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
    background: #fff;
    border-right: 1px solid rgba(2, 189, 189, .12);
    border-bottom: 1px solid rgba(2, 189, 189, .12);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 550ms ease, transform 550ms cubic-bezier(.22, 1, .36, 1), background 300ms ease;
}

.v3-wif.is-visible .v3-wif__card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 180ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 280ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 380ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 580ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 680ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 780ms; }
.v3-wif.is-visible .v3-wif__card:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 880ms; }

.v3-wif__card:nth-child(3n) {
    border-right: none;
}

.v3-wif__card:nth-child(n+7) {
    border-bottom: none;
}

.v3-wif__card:hover {
    background: rgba(2, 189, 189, .03);
}

.v3-wif__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--thm-primary);
    font-size: 22px;
    transition: transform 350ms ease, color 350ms ease;
}

.v3-wif__card:hover .v3-wif__icon {
    transform: translateY(-2px);
    color: var(--thm-extra);
}

.v3-wif__card-title {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.v3-wif__card-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--thm-gray);
    margin: 0;
}

@media (max-width: 991px) {
    .v3-wif__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v3-wif__card:nth-child(3n) {
        border-right: 1px solid rgba(2, 189, 189, .12);
    }

    .v3-wif__card:nth-child(2n) {
        border-right: none;
    }

    .v3-wif__card:nth-child(n+4) {
        border-bottom: 1px solid rgba(2, 189, 189, .12);
    }

    .v3-wif__card:nth-child(n+7) {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .v3-wif {
        padding: clamp(48px, 10vw, 64px) 0;
    }

    .v3-wif__header {
        margin-bottom: 32px;
    }

    .v3-wif__title {
        font-size: clamp(1.55rem, 5.5vw, 1.85rem);
    }

    .v3-wif__grid {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .v3-wif__card {
        border-right: none !important;
        border-bottom: 1px solid rgba(2, 189, 189, .12) !important;
        padding: 28px 24px;
    }

    .v3-wif__card:last-child {
        border-bottom: none !important;
    }

    .v3-wif__icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .v3-wif__card-text {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3-wif__label,
    .v3-wif__title,
    .v3-wif__card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Pricing */
.v3-pricing {
    position: relative;
    padding: clamp(72px, 8vw, 110px) 0;
    background: #fff;
    overflow: hidden;
}

.v3-pricing__container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding-left: clamp(18px, 2.5vw, 40px);
    padding-right: clamp(18px, 2.5vw, 40px);
}

.v3-pricing__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.v3-pricing__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--thm-primary);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.v3-pricing.is-visible .v3-pricing__label {
    opacity: 1;
    transform: translateY(0);
}

.v3-pricing__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.4px;
    color: var(--thm-black);
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease 120ms, transform 700ms cubic-bezier(.22, 1, .36, 1) 120ms;
}

.v3-pricing.is-visible .v3-pricing__title {
    opacity: 1;
    transform: translateY(0);
}

.v3-pricing__subtitle {
    margin: 0;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
    color: var(--thm-gray);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease 220ms, transform 700ms cubic-bezier(.22, 1, .36, 1) 220ms;
}

.v3-pricing.is-visible .v3-pricing__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.v3-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(2, 189, 189, .14);
    border-radius: 4px;
    background: #fff;
    overflow: visible;
}

.v3-pricing__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(32px, 3.5vw, 44px) clamp(20px, 2.5vw, 28px);
    background: #fff;
    border-right: 1px solid rgba(2, 189, 189, .12);
    opacity: 0;
    transform: translateY(36px);
    transition: background 400ms ease, box-shadow 400ms ease, border-color 400ms ease, color 400ms ease, transform 400ms cubic-bezier(.22, 1, .36, 1);
    z-index: 1;
}

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

.v3-pricing.is-visible .v3-pricing__card {
    animation: v3PricingCardIn 650ms cubic-bezier(.22, 1, .36, 1) forwards;
}

.v3-pricing.is-visible .v3-pricing__card:nth-child(1) {
    animation-delay: 280ms;
}

.v3-pricing.is-visible .v3-pricing__card:nth-child(2) {
    animation-delay: 420ms;
}

.v3-pricing.is-visible .v3-pricing__card:nth-child(3) {
    animation-delay: 560ms;
}

.v3-pricing__card:last-child {
    border-right: none;
}

.v3-pricing__card--featured {
    border: 2px solid var(--thm-primary);
    margin: -1px;
    z-index: 2;
}

.v3-pricing__badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    background: var(--thm-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom-left-radius: 4px;
    transition: background 400ms ease, color 400ms ease;
}

.v3-pricing__tier {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--thm-gray);
    margin-bottom: 14px;
    transition: color 400ms ease;
}

.v3-pricing__card--featured .v3-pricing__tier {
    color: var(--thm-primary);
}

.v3-pricing__range {
    margin: 0 0 24px;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--thm-black);
    transition: color 400ms ease;
}

.v3-pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.v3-pricing__amount {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--thm-black);
    transition: color 400ms ease;
}

.v3-pricing__card--featured .v3-pricing__amount,
.v3-pricing__card--featured .v3-pricing__unit {
    color: var(--thm-primary);
}

.v3-pricing__unit {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    font-weight: 600;
    color: var(--thm-gray);
    transition: color 400ms ease;
}

.v3-pricing__price--custom .v3-pricing__amount {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    color: var(--thm-primary);
}

.v3-pricing__local {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--thm-gray);
    transition: color 400ms ease;
}

.v3-pricing__card:hover {
    transform: translateY(-10px) scale(1.03);
    background: linear-gradient(155deg, #003d3d 0%, var(--thm-extra) 100%);
    box-shadow: 0 24px 48px rgba(0, 61, 61, .28);
    border-color: transparent;
    z-index: 3;
}

.v3-pricing__card:hover .v3-pricing__tier,
.v3-pricing__card:hover .v3-pricing__range,
.v3-pricing__card:hover .v3-pricing__amount,
.v3-pricing__card:hover .v3-pricing__unit,
.v3-pricing__card:hover .v3-pricing__local {
    color: #fff;
}

.v3-pricing__card:hover .v3-pricing__badge {
    background: rgba(255, 255, 255, .16);
    color: #6ef0ea;
}

.v3-pricing__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: clamp(28px, 3.5vw, 36px);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 650ms ease 680ms,
        transform 650ms cubic-bezier(.22, 1, .36, 1) 680ms;
}

.v3-pricing.is-visible .v3-pricing__actions {
    opacity: 1;
    transform: translateY(0);
}

.v3-pricing__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 240px;
    max-width: 100%;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--thm-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: background 300ms ease, box-shadow 300ms ease, color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.v3-pricing__cta:hover {
    background: var(--thm-extra);
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 92, 92, .25);
    transform: translateY(-2px);
}

.v3-pricing__cta--secondary {
    background: transparent;
    border-color: rgba(0, 92, 92, .28);
    color: var(--thm-extra);
}

.v3-pricing__cta--secondary:hover {
    background: var(--thm-extra);
    border-color: var(--thm-extra);
    color: #fff;
}

@media (max-width: 991px) {
    .v3-pricing__grid {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .v3-pricing__card {
        border-right: none;
        border-bottom: 1px solid rgba(2, 189, 189, .12);
    }

    .v3-pricing__card:last-child {
        border-bottom: none;
    }

    .v3-pricing__card--featured {
        margin: 0;
        order: -1;
    }
}

@media (max-width: 575px) {
    .v3-pricing {
        padding: clamp(48px, 10vw, 64px) 0;
    }

    .v3-pricing__actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .v3-pricing__cta {
        width: 100%;
        max-width: 260px;
        padding: 12px 24px;
        font-size: 12px;
    }

    .v3-pricing__card:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3-pricing__label,
    .v3-pricing__title,
    .v3-pricing__subtitle,
    .v3-pricing__actions {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .v3-pricing__card {
        opacity: 1;
        transform: none;
        animation: none !important;
        transition: background 400ms ease, box-shadow 400ms ease, color 400ms ease, border-color 400ms ease;
    }

    .v3-pricing__card:hover {
        transform: none;
    }

    .v3-pricing__cta:hover {
        transform: none;
    }
}

/* FAQ */
.v3-faq {
    position: relative;
    padding: clamp(72px, 8vw, 110px) 0;
    background: #f0f7f6;
    overflow: hidden;
}

.v3-faq__container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding-left: clamp(18px, 2.5vw, 40px);
    padding-right: clamp(18px, 2.5vw, 40px);
}

.v3-faq__header {
    text-align: center;
    margin-bottom: clamp(32px, 4vw, 44px);
}

.v3-faq__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--thm-primary);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.v3-faq.is-visible .v3-faq__label {
    opacity: 1;
    transform: translateY(0);
}

.v3-faq__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.4px;
    color: var(--thm-black);
    margin: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease 120ms, transform 700ms cubic-bezier(.22, 1, .36, 1) 120ms;
}

.v3-faq.is-visible .v3-faq__title {
    opacity: 1;
    transform: translateY(0);
}

.v3-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(28px, 3.5vw, 40px);
}

.v3-faq__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(2, 189, 189, .22);
    background: #fff;
    color: var(--thm-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    transition: all 250ms ease;
    white-space: nowrap;
}

.v3-faq__tab:hover {
    border-color: rgba(2, 189, 189, .45);
    background: rgba(2, 189, 189, .04);
}

.v3-faq__tab.is-active {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
    color: var(--thm-black);
    font-weight: 700;
}

.v3-faq__panel {
    display: none;
}

.v3-faq__panel.is-active {
    display: block;
}

.v3-faq__accordion {
    border-top: 1px solid rgba(2, 189, 189, .14);
}

.v3-faq__item {
    border-bottom: 1px solid rgba(2, 189, 189, .14);
}

.v3-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 0;
    border: none;
    background: transparent;
    text-align: left;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--thm-black);
    cursor: pointer;
    transition: color 250ms ease;
}

.v3-faq__question:hover {
    color: var(--thm-extra);
}

.v3-faq__toggle {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--thm-primary);
}

.v3-faq__toggle::before,
.v3-faq__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    border-radius: 1px;
    transition: transform 300ms ease, opacity 300ms ease;
}

.v3-faq__toggle::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.v3-faq__toggle::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.v3-faq__item.is-open .v3-faq__toggle::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

.v3-faq__answer {
    display: none;
    padding: 0 0 22px;
}

.v3-faq__item.is-open .v3-faq__answer {
    display: block;
}

.v3-faq__answer p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--thm-gray);
}

.v3-faq__answer p:last-child {
    margin-bottom: 0;
}

.v3-faq__answer a {
    color: var(--thm-primary);
    font-weight: 600;
    text-decoration: none;
}

.v3-faq__answer a:hover {
    text-decoration: underline;
}

.v3-faq__list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 15px;
    line-height: 1.7;
    color: var(--thm-gray);
}

.v3-faq__list li + li {
    margin-top: 10px;
}

.v3-faq__list--ordered {
    list-style: decimal;
}

.v3-faq__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(36px, 4vw, 48px);
    padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 36px);
    border: 1px solid rgba(2, 189, 189, .18);
    border-radius: 4px;
    background: #fff;
}

.v3-faq__cta-title {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--thm-black);
    margin: 0 0 6px;
}

.v3-faq__cta-meta {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-gray);
}

.v3-faq__cta-meta a {
    color: var(--thm-gray);
    text-decoration: none;
}

.v3-faq__cta-meta a:hover {
    color: var(--thm-primary);
}

.v3-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 15px 28px;
    border-radius: 999px;
    background: var(--thm-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    transition: all 300ms ease;
    white-space: nowrap;
}

.v3-faq__cta-btn:hover {
    background: var(--thm-extra);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .v3-faq__tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        margin-left: -4px;
        margin-right: -4px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .v3-faq__tab {
        font-size: 13px;
        padding: 10px 16px;
    }

    .v3-faq__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .v3-faq__cta-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3-faq__label,
    .v3-faq__title {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Closing CTA */
.v3-closing-cta .cta-one__title {
    margin-bottom: 18px;
}

.v3-closing-cta .cta-one__sub-title {
    max-width: 720px;
    margin: 0 auto 40px;
    padding-bottom: 0;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, .88);
}

.v3-closing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.v3-closing-cta__actions .cta-one__btn {
    margin: 0;
}

.v3-closing-cta__btn--secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
}

.v3-closing-cta__btn--secondary:hover {
    background-color: #fff;
    color: var(--thm-black);
    border-color: #fff;
}

@media (max-width: 575px) {
    .v3-closing-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .v3-closing-cta__actions .cta-one__btn {
        width: 100%;
        text-align: center;
    }
}
