:root {
    --green: #0b7b0b;
    --green-dark: #0f7a37;
    --deep: #052e16;
    --deep-2: #031f13;
    --mint: #eafaf0;
    --light: #f8fafc;
    --border: #e5e7eb;
    --text: #0f172a;
    --muted: #64748b;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter", sans-serif !important; */

    font-family: "Panamera-Medium" !important;
}
body {
    font-family: "Inter", sans-serif;
    background: #f3f4f6;
    color: var(--text);
}
h1 {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -1.5px;
}
h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.25);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid var(--green);
    color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: #fff;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    h2 {
        font-size: 24px;
    }
    p {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 30px;
    }
    /* .btn {
        width: 100%;
        justify-content: center;
    } */
}

/* hero section */
/* HERO SECTION */

.spenthub-hero {
    padding: 40px 0;
    background: #f7f7f7;
    font-family: "Space Grotesk", sans-serif;
    overflow: hidden;
}
.hero-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.hero-left {
    width: 50%;
}
.hero-title span {
    color: #1f6f5c;
    font-family: "Inter", sans-serif;
}
.hero-sub {
    font-size: 18px;
    color: #5c6663;
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.6;
}
.hero-points {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}
.hero-points li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #25302d;
    position: relative;
    padding-left: 20px;
}
.hero-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1f6f5c;
    font-weight: bold;
}
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}
.hero-btn {
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}
.hero-btn.primary {
    background: #0b7b0b;
    color: white;
}
.hero-btn.primary:hover {
    background: red;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hero-btn.secondary {
    border: 1px solid #1f6f5c;
    color: #1f6f5c;
}
.hero-btn.secondary:hover {
    background: #1f6f5c;
    color: white;
}
.floating-tags {
    position: relative;
    min-height: 80px;
}
.tags {
    position: absolute;
    animation: pulse 6s infinite;
}
.tag {
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
}
.tag1 {
    left: 20px;
    top: 10px;
}
.tag-ai {
    background: #c9d8f0;
    transform: rotate(-16deg);
    left: 40px;
}
.tag2 {
    left: 220px;
    top: 10px;
}
.tag-faceless {
    background: #ffb17a;
    transform: rotate(18deg);
}
.tag3 {
    bottom: -20px;
    left: 120px;
}
.tag-remote {
    background: #ffd34f;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.floating-stars {
    position: relative;
}

.star {
    animation: starRotate 12s linear infinite;
    position: absolute;
    width: clamp(22px, 3vw, 40px);
}
.star1 {
    animation-duration: 10s;
    left: -10px;
    top: 0px;
}
.star2 {
    animation-duration: 14s;
    left: -70px;
    top: -280px;
}
.star3 {
    animation-duration: 18s;
    right: 20px;
    top: -80px;
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-right {
    width: 50%;
    background-image: url("/media/new/spenthub/67127426de22175efb37039c_Hero Image.png");
    background-size: cover;
    background-position: center;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.floating-card {
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    transform-origin: center;
}
.floating-card img {
    width: 30px;
}
.floating-card h4 {
    font-size: 28px;
    color: #1f6f5c;
    margin: 0 !important;
}
.floating-card p {
    font-size: 14px;
    color: #5c6663;
    font-weight: 300;
    margin: 0 !important;
}
.floating-card1 {
    top: 0px;
    left: 0px;
    animation: floatHorizontal1 6s ease-in-out infinite;
}
.floating-card2 {
    bottom: 10px;
    left: -20px;
    animation: floatVertical 5s ease-in-out infinite;
}
.floating-card3 {
    bottom: -20px;
    right: 10px;
    animation: floatHorizontal2 7s ease-in-out infinite;
}
.hero-img {
    width: 100%;
    border-radius: 24px;
}

@keyframes floatHorizontal1 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes floatVertical {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes floatHorizontal2 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0px);
    }
}

@media (max-width: 992px) {
    .spenthub-hero {
        padding: 40px 24px;
    }
    .hero-grid {
        flex-direction: column;
        gap: 48px;
    }
    .hero-left,
    .hero-right {
        width: 100%;
    }
    .hero-right {
        min-height: 340px;
        border-radius: 20px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: auto;
    }
    .star1 {
        left: -10px;
        top: 20px;
    }
    .star2 {
        left: -20px;
        top: -160px;
    }
    .star3 {
        right: 20px;
        top: -80px;
    }
    .floating-card1 {
        top: -10px;
        left: 20px;
    }
    .floating-card2 {
        bottom: 20px;
        left: 10px;
    }
    .floating-card3 {
        bottom: -10px;
        right: 20px;
    }
}
@media (max-width: 600px) {
    .spenthub-hero {
        padding: 32px 16px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-sub {
        font-size: 15px;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    .hero-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    .star {
        width: 20px;
    }
    .star1 {
        left: -5px;
        top: 10px;
    }
    .star2 {
        left: -10px;
        top: -120px;
    }
    .star3 {
        right: 10px;
        top: -60px;
    }
    .floating-card {
        padding: 8px;
    }
    .floating-card h4 {
        font-size: 18px;
    }
    .floating-card p {
        font-size: 12px;
    }
    .floating-card1 {
        top: -10px;
        left: 8px;
    }
    .floating-card2 {
        bottom: 90px;
        left: 0;
    }
    .floating-card3 {
        bottom: -190px;
        right: 8px;
    }
}

/* hero ends */

/* GREEN STRIP */
.green-strip {
    background: #0f7a37;
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-size: 13px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .green-strip {
        font-size: 12px;
        padding: 18px 16px;
        min-height: auto;
    }
}

/* what-is-spenthub-section */
.what-is-spenthub-section {
    margin: 100px 0;
}
.what-is-spenthub-section p {
    text-transform: capitalize;
}
.two-col {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.image-large {
    width: 50%;
    border-radius: 3px;
    background-image: url("/media/new/spenthub/how-it-works-image-ebznuQpK.png");
    background-size: cover;
    background-position: center;
}
.image-large img {
    width: 40px;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    animation: floatVertical 8s ease-in-out infinite;
}
.small-floating {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    text-align: center;
}
.what-is-spenthub-content {
    width: 50%;
}
.feature-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 12px;
}
.campus-title {
    text-align: center;
    margin-top: 70px;
    font-weight: 700;
    color: #475569;
}
.campus-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.campus-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .what-is-spenthub-section {
        margin: 60px 0;
    }
    .two-col {
        flex-direction: column;
        gap: 32px;
    }
    .image-large {
        width: 100%;
        min-height: 260px;
        border-radius: 16px;
    }
    .what-is-spenthub-content {
        width: 100%;
    }
    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .campus-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* what-is-spenthub-section ends */

/* DARK THEME SECTION */
.dark {
    padding: 100px 10px;
    background: linear-gradient(180deg, #064e3b, #021b13);
    color: #fff;
}
.dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.dark p {
    color: #d1fae5;
}
.dark-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dark-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
    border-radius: 12px;
}
.dark img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.steps {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media (max-width: 768px) {
    .dark {
        padding: 70px 24px;
    }
    .dark-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dark img {
        border-radius: 16px;
    }
}
@media (max-width: 480px) {
    .dark {
        padding: 56px 16px;
    }
    .dark-item {
        padding: 14px 16px;
    }
    .steps {
        margin-top: 36px;
    }
}

/* HOW IT WORKS STYLING */
.how-section {
    padding: 60px 24px;
    background: #f5f3ee;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a7a6e;
    margin-bottom: 12px;
    text-align: center;
}
.how-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 44px;
}
.how-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    max-width: 70%;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    min-height: 480px;
}
.how-left {
    flex: 1;
    padding: 40px 36px;
    background: #faf9f6;
    display: flex;
    flex-direction: column;
}
.step-counter {
    font-size: 0.78rem;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}
.step-sub {
    font-size: 1.5rem;
    color: #3f3f3f;
    margin-bottom: 28px;
}
.step-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.step-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #e5e3dc;
    font-size: 0.93rem;
    font-weight: 500;
    color: #222;
}
.step-option:hover {
    background: #1d4d33;
    border-color: #1d4d33;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    background: #1d4d33;
    color: #fff;
}
.step-option.active .step-icon {
    background: #e8b84b;
}
.how-next-btn {
    align-self: flex-end;
    margin-top: 28px;
    background: #e8b84b;
    color: #111;
    border: none;
    border-radius: 100px;
    padding: 13px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.how-right {
    width: 45%;
    flex-shrink: 0;
    background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80");
    background-size: cover;
    background-position: center top;
}

@media (max-width: 1024px) {
    .how-card {
        max-width: 90%;
    }
}
@media (max-width: 768px) {
    .how-card {
        max-width: 100%;
        min-height: auto;
        flex-direction: column;
    }
    .how-right {
        width: 100%;
        height: 260px;
    }
    .how-left {
        padding: 32px 24px;
    }
    .step-sub {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .how-section {
        padding: 48px 16px;
    }
    .how-heading {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }
    .step-title {
        font-size: 1.05rem;
    }
    .step-option {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    .how-next-btn {
        align-self: stretch;
        justify-content: center;
    }
}

/* HOW IT WORKS STYLING ENDS */

/* AVAILABLE COURSES SECTION */
.courses-section {
    padding: 80px 24px;
    background: #f5f3ee;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cs-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a7a6e;
    margin-bottom: 12px;
    text-align: center;
}
.cs-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #111;
    text-align: center;
    line-height: 1.2;
    max-width: 540px;
    margin-bottom: 12px;
}
.cs-subtext {
    font-size: 0.92rem;
    color: #888;
    text-align: center;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 56px;
}
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    width: 100%;
}
.cs-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}
.cs-card-top {
    background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80")
        center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.dark-overlay {
    background-color: rgba(0, 0, 0, 0.508);
    padding: 36px 32px 28px;
}
.cs-card-top::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.cs-card-top::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(75, 232, 203, 0.18);
    border: 1px solid rgba(255, 254, 251, 0.35);
    color: #c1ffde;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.cs-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 10px 10px 12px rgba(41, 103, 72, 0.603);
}
.cs-card-title span {
    color: #c1ffde;
}
.cs-card-desc {
    color: white;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.cs-card-bottom {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cs-topics-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
}
.cs-topics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.cs-topic {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #333;
    font-weight: 500;
}
.cs-topic-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.cs-cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b7b0b;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s;
}
.cs-cta:hover {
    background: #dc3545;
    color: white;
}
.cs-note {
    margin-top: 48px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 28px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.cs-note-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cs-note-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
}
.cs-note-text strong {
    color: #1d4d33;
}

@media (max-width: 768px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }
    .cs-card-title {
        font-size: 1.4rem;
    }
    .dark-overlay {
        padding: 28px 22px;
    }
    .cs-card-bottom {
        padding: 24px 22px 28px;
    }
    .cs-note {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .courses-section {
        padding: 56px 16px;
    }
    .cs-cta {
        align-self: stretch;
        justify-content: center;
    }
}

/* AVAILABLE COURSES SECTION ENDS */

/* {{-- Membership Benefits --}} */
.spenthub-section {
    padding: 70px 24px;
    background: #fff;
    font-family: "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}
.sh-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a7a6e;
    margin-bottom: 12px;
    text-align: center;
}
.sh-heading {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111;
    text-align: center;
    line-height: 1.2;
    max-width: 560px;
    margin-bottom: 48px;
}
.sh-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1040px;
    width: 100%;
    margin-bottom: 24px;
}
.sh-cat-card {
    background: #f5f3ee;
    border-radius: 16px;
    padding: 28px 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.sh-cat-card:hover {
    background: #dffaeb;
}
.sh-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
}
.sh-cat-card.active .sh-cat-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}
.sh-cat-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}
.sh-cat-card.active h3 {
    color: #fff;
}
.sh-cat-card p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.55;
}
.sh-cat-card.active p {
    color: rgba(255, 255, 255, 0.75);
}
.sh-progress-wrap {
    max-width: 1040px;
    width: 100%;
    background: #f5f3ee;
    border-radius: 16px;
    padding: 36px 48px;
    margin-bottom: 24px;
}
.sh-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.sh-steps-line {
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    height: 3px;
    background: #ddd;
    z-index: 0;
}
.sh-steps-line-fill {
    height: 100%;
    width: 55%;
    background: #1d4d33;
    border-radius: 3px;
}
.sh-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}
.sh-step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.sh-step.done .sh-step-dot {
    background: #1d4d33;
    border-color: #1d4d33;
    color: #fff;
}
.sh-step-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
}
.sh-step.done .sh-step-label {
    color: #1d4d33;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .sh-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 780px) {
    .spenthub-section {
        padding: 56px 16px;
        min-height: auto;
    }
    .sh-heading {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    .sh-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .sh-progress-wrap {
        padding: 28px 16px;
        overflow-x: auto;
    }
    .sh-steps {
        min-width: 500px;
    }
    .sh-step-label {
        font-size: 0.68rem;
    }
}
@media (max-width: 480px) {
    .sh-cards-row {
        grid-template-columns: 1fr;
    }
    .sh-cat-card {
        padding: 20px 18px;
    }
}

/* {{-- Membership Benefits Ends --}} */

/* TESTIMONIALS MARQUEE STYLING */
.testi-section {
    padding: 80px 0 60px;
    background: #edf0eb;
    font-family: "Segoe UI", sans-serif;
    overflow: hidden;
}
.testi-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 60px;
}
.testi-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.1;
}
.testi-header p {
    font-size: 0.98rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.testi-row {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    cursor: grab;
}
.testi-row.dragging {
    cursor: grabbing;
}
.testi-row::before,
.testi-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.testi-row::before {
    left: 0;
    background: linear-gradient(to right, #edf0eb, transparent);
}
.testi-row::after {
    right: 0;
    background: linear-gradient(to left, #edf0eb, transparent);
}
.testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.row-left .testi-track {
    animation: scrollLeft 35s linear infinite;
}
.row-right .testi-track {
    animation: scrollRight 35s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 32px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #ddd;
}
.testi-name {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
}
.testi-handle {
    font-size: 0.83rem;
    color: #888;
}
.testi-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .testi-header h2 {
        font-size: 2rem;
    }
    .testi-card {
        width: 300px;
        padding: 22px 20px 26px;
    }
    .testi-avatar {
        width: 46px;
        height: 46px;
    }
    .testi-row::before,
    .testi-row::after {
        width: 60px;
    }
}
@media (max-width: 480px) {
    .testi-section {
        padding: 56px 0 40px;
    }
    .testi-header {
        margin-bottom: 36px;
    }
    .testi-card {
        width: 260px;
    }
}

/* TESTIMONIALS MARQUEE STYLING ENDS */

/* PRICING SECTION */
.pricing-section {
    padding: 90px 24px;
    background: #fff;
    font-family: "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a7a6e;
    margin-bottom: 12px;
    text-align: center;
}
.pricing-heading {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #111;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 64px;
}
.pricing-card {
    max-width: 780px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
}
.pricing-left {
    background: #1d4d33;
    padding: 52px 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.pricing-left::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.pricing-left::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.pricing-plan-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8b84b;
    margin-bottom: 10px;
}
.pricing-plan-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}
.pricing-plan-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    line-height: 1.5;
}
.pricing-amount {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.pricing-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}
.pricing-number {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.pricing-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    padding-left: 2px;
}
.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #6ae84b;
    color: #111;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 16px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: auto;
    width: max-content;
    position: relative;
    z-index: 1;
    transition:
        background 0.2s,
        transform 0.2s;
}
.pricing-cta:hover {
    background: #dc3545;
    transform: translateY(-2px);
    color: white;
}
.pricing-right {
    background: #f5f3ee;
    padding: 52px 40px;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pricing-features-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 24px;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.pricing-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1d4d33;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-check svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pricing-feature-text {
    font-size: 0.88rem;
    color: #333;
    font-weight: 500;
    line-height: 1.45;
}
.pricing-note {
    margin-top: 28px;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 16px;
    }
    .pricing-card {
        flex-direction: column;
    }
    .pricing-right {
        width: 100%;
        padding: 36px 28px;
    }
    .pricing-left {
        padding: 40px 28px;
    }
    .pricing-number {
        font-size: 3rem;
    }
    .pricing-heading {
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .pricing-number {
        font-size: 2.4rem;
    }
    .pricing-plan-name {
        font-size: 1.3rem;
    }
    .pricing-cta {
        width: 100%;
        justify-content: center;
    }
}

/* PRICING SECTION ENDS */

/* Powered by Spent Academy */
.powered {
    background: linear-gradient(180deg, #064e3b, #021b13);
    color: #fff;
    padding: 100px 24px;
}
.powered-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.powered img {
    width: 100%;
}
.powered p {
    color: white;
    font-size: 1.3rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .powered {
        padding: 70px 24px;
    }
    .powered-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .powered p {
        font-size: 1.05rem;
    }
    .powered img {
        border-radius: 16px;
    }
}
@media (max-width: 480px) {
    .powered {
        padding: 56px 16px;
    }
    .powered p {
        font-size: 0.95rem;
    }
}

/* Powered by Spent Academy ends */

/* CTA SECTION */
.cta {
    background: radial-gradient(rgb(255, 255, 255), #e8fff3);
    text-align: center;
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}
.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.cta p {
    font-size: 20px;
    color: black;
}

@media (max-width: 768px) {
    .cta {
        padding: 80px 24px;
        min-height: auto;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .cta {
        padding: 60px 16px;
    }
}

/* CTA SECTION Ends */
