/* ========== CSS VARIABLES ========== */
:root {
    --ch-teal: #14b8a6;
    --ch-teal-dk: #0f766e;
    --ch-teal-darker: #134e4a;
    --ch-yellow: #fbbf24;
    --ch-yellow-dk: #f59e0b;
    --ch-dark-slate: #0f172a;
    --ch-slate: #1e293b;
    --ch-slate-muted: #475569;
    --ch-slate-light: #94a3b8;
    --ch-bg-light: #f8fafc;
    --ch-white: #ffffff;
    --ch-border: #e2e8f0;
    --ch-border-hover: rgba(20, 184, 166, 0.4);
    --red: var(--ch-teal);
    --red-dk: var(--ch-teal-dk);
    --amber: var(--ch-teal);
    --yellow: var(--ch-yellow);
    --black: var(--ch-bg-light);
    --dark: var(--ch-white);
    --card: var(--ch-white);
    --border: var(--ch-border);
    --text: var(--ch-dark-slate);
    --muted: var(--ch-slate-muted);
    --radius: 16px;
}

/* ========== BASE ========== */
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h5 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.section-pad {
    padding: 100px 0;
}

/* ========== NOISE TEXTURE OVERLAY ========== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ch-bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--ch-teal);
    border-radius: 3px;
}

/* ========== NAVBAR ========== */
#mainNav {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.3s ease;
    padding: 14px 0;
    z-index: 1000;
}

#mainNav.scrolled {
    padding: 10px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b 55%, #134e4a);
    box-shadow: 0 4px 40px rgba(15, 23, 42, 0.5);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ch-white) !important;
}

.navbar-brand .logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ch-teal);
    display: inline-block;
    margin-bottom: 4px;
}

.nav-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.86) !important;
    padding: 6px 16px !important;
    transition: color 0.15s ease, background-color 0.15s ease;
    border-radius: 0.6rem;
}

.nav-link:hover,
.nav-link.active {
    background: hsla(0, 0%, 100%, 0.06);
    color: var(--ch-teal) !important;
}

.btn-nav-order {
    background: var(--ch-teal);
    color: var(--ch-dark-slate) !important;
    border-radius: 0.85rem;
    padding: 8px 22px !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: background 0.15s, transform 0.15s;
}

.btn-nav-order:hover {
    background: var(--ch-teal-dk) !important;
    color: var(--ch-white) !important;
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 6px 10px;
    border-radius: 0.65rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248,250,252,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO ========== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a, #1e293b 54%, #134e4a);
    color: var(--ch-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, hsla(0, 0%, 100%, 0.2) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.15;
}

.hero-bg::after {
    content: '';
    position: absolute;
    background: rgba(20, 184, 166, 0.5);
    height: 22rem;
    width: 22rem;
    left: -7rem;
    top: -4rem;
    border-radius: 9999px;
    filter: blur(50px);
    opacity: 0.45;
}

.hero-bg::before {
    content: '';
    position: absolute;
    background: rgba(250, 204, 21, 0.3);
    bottom: -8rem;
    right: -8rem;
    height: 30rem;
    width: 30rem;
    border-radius: 9999px;
    filter: blur(50px);
    opacity: 0.45;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 9999px;
    padding: 6px 16px 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ch-teal);
    animation: pulse 2s infinite;
}

.hero-eyebrow .flag {
    width: 10x;
    height: 10px;
    border-radius: 50%;
    background: var(--ch-yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 1.2;
    /* more breathing room */
    letter-spacing: 0.01em;
    animation: fadeUp 0.6s 0.1s ease both;
    text-align: center;
    color: var(--ch-white);
    /* default color for INFINITE */
}

/* Bold serif stays solid white */
.hero-title .bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    /* puts INFINITE on its own line */
    line-height: 1.1;
    color: var(--ch-white);
    /* keep it solid */
}

/* Fancy cursive gets gradient accent */
.hero-title .elegant {
    font-family: 'Great Vibes', cursive;
    font-weight: 450;
    font-size: 10rem;
    line-height: 1.3;
    letter-spacing: 0;
    display: block;
    /* puts Live Limitless on its own line */
    background: linear-gradient(135deg, #2dd4bf, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* gradient shows through */
    margin-top: 0.5rem;
}


.hero-desc {
    font-size: 1.05rem;
    color: rgba(226, 232, 240, 0.82);
    max-width: 420px;
    margin-top: 20px;
    animation: fadeUp 0.6s 0.2s ease both;
}

/* ========== SECTION HEADINGS ========== */
.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ch-teal);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    color: var(--ch-dark-slate);
}

.section-title .yellow {
    color: var(--ch-yellow);
}

.section-title .red {
    color: var(--ch-teal);
}

/* ========== BUTTONS ========== */
.btn-primary-red {
    background: var(--ch-teal);
    color: var(--ch-dark-slate);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--ch-teal);
    border-radius: 0.85rem;
    padding: 14px 32px;
    cursor: pointer;
    position: relative;
    transition: background 0.15s, transform 0.15s, border-color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-red::before {
    animation: home-cta-pulse 2.8s ease-in-out infinite;
    border-radius: inherit;
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.45);
    content: "";
    inset: -4px;
    pointer-events: none;
    position: absolute;
}

.btn-primary-red:hover {
    background: var(--ch-teal-dk);
    border-color: var(--ch-teal-dk);
    color: var(--ch-white);
    transform: translateY(-2px);
}

.btn-primary-red:hover::before {
    animation: none;
    opacity: 0;
}

@keyframes home-cta-pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0;
    }
}

.btn-outline-light-custom {
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--ch-white);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 0.75rem;
    padding: 13px 28px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light-custom:hover {
    background: hsla(0, 0%, 100%, 0.16);
    border-color: hsla(0, 0%, 100%, 0.35);
    color: var(--ch-white);
}

/* ========== MISSION CARD ========== */
.mission-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--ch-bg-light);
    border: 1px solid var(--ch-border);
    border-radius: 1rem;
    padding: 20px 24px;
    height: 100%;
    transition: all 0.2s ease-in-out;
}

.mission-item:hover {
    background: var(--ch-white);
    border-color: var(--ch-teal);
    transform: scale(1.02);
    box-shadow: 0 8px 24px -10px rgba(20, 184, 166, 0.25);
}

.mission-icon {
    width: 54px;
    height: 54px;
    border-radius: 0.75rem;
    background: #ccfbf1;
    color: var(--ch-teal-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.mission-item:hover .mission-icon {
    transform: rotate(-10deg) scale(1.1);
    background: var(--ch-teal);
    color: var(--ch-white);
}

.mission-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ch-dark-slate);
    line-height: 1.4;
}


/* ========== PREMIUM MENU CARDS ========== */
#menu {
    background: var(--ch-bg-light);
}

.menu-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--ch-border);
    color: var(--ch-slate-muted);
    border-radius: 2rem;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ch-dark-slate);
    border-color: var(--ch-dark-slate);
    color: var(--ch-white);
}

.product-card {
    background: var(--ch-white);
    border-radius: 1.25rem;
    border: 1px solid var(--ch-border);
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1) !important;
    border-color: rgba(20, 184, 166, 0.3);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    padding: 1.25rem 1.25rem 0 1.25rem;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.4s ease;
}

.portrait-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.product-title {
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--ch-dark-slate);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--ch-slate-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--ch-dark-slate);
    letter-spacing: 0.03em;
}

.btn-add-cart {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ch-teal);
    color: var(--ch-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-cart:hover {
    background: var(--ch-teal-dk);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.product-footer {
    border-top: 1px solid var(--ch-border);
    padding-top: 1rem;
    text-align: center;
}

.read-more-link {
    color: var(--ch-slate-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    transition: color 0.2s ease;
}

.read-more-link i {
    transition: transform 0.2s ease;
}

.read-more-link:hover {
    color: var(--ch-teal);
}

.read-more-link:hover i {
    transform: translateX(4px);
}

/* ========== SPECIAL OFFER ========== */
#offer {
    background: var(--ch-white);
    position: relative;
    overflow: hidden;
}

.offer-card {
    background: linear-gradient(145deg, #0f172a, #1e293b 58%, #134e4a);
    border-radius: 1.25rem;
    padding: clamp(36px, 6vw, 64px);
    position: relative;
    overflow: hidden;
    color: var(--ch-white);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.3);
    filter: blur(55px);
}

.offer-tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--ch-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.offer-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--ch-white);
    font-weight: 800;
}

.offer-price-old {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.6);
    text-decoration: line-through;
    font-weight: 600;
}

.offer-price-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--ch-yellow);
    line-height: 1;
}

.countdown-box {
    display: inline-flex;
    gap: 12px;
    margin: 20px 0;
}

.countdown-unit {
    text-align: center;
    background: hsla(0, 0%, 100%, 0.09);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 0.85rem;
    padding: 10px 16px;
    min-width: 58px;
}

.countdown-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.72);
}

.offer-card .btn-primary-red {
    background: var(--ch-yellow);
    color: var(--ch-teal-darker);
    border: none;
    box-shadow: 0 4px 14px -5px rgba(251, 191, 36, 0.55);
}

.offer-card .btn-primary-red:hover {
    background: var(--ch-yellow-dk);
    box-shadow: 0 8px 22px -4px rgba(251, 191, 36, 0.7);
    color: var(--ch-teal-darker);
}

/* ================= TESTIMONIAL CARD ================= */

.testimonial-card-custom {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    height: 100%;
}

.testimonial-card-custom:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08),
        0 4px 14px rgba(0, 0, 0, 0.04);
}

/* ================= TOP SECTION ================= */

.testimonial-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 240px;
}

/* ================= BEFORE AFTER ================= */

.before-after-wrapper {
    display: flex;
    overflow: hidden;
}

.before-box,
.after-box {
    width: 50%;
    position: relative;
}

.before-box img,
.after-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= LABEL ================= */

.badge-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    color: #111;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================= PRODUCT SIDE ================= */

.product-side {
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
}

.product-side img {
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 14px;
}

.product-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    color: #111;
    margin: 0;
}

/* ================= BOTTOM SECTION ================= */

.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
}

/* ================= AVATAR ================= */

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ================= REVIEWER INFO ================= */

.reviewer-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.reviewer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 14px;
    color: #7b8794;
}

.reviewer-location i {
    color: #14b8a6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .testimonial-top {
        grid-template-columns: 1fr;
    }

    .before-after-wrapper {
        height: 220px;
    }

    .product-side {
        padding: 30px 20px;
    }

}

/* ========== CONTACT / FOOTER ========== */
.form-control-dark {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.6rem;
    color: #0f172a;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.form-control-dark:focus {
    background: #fff;
    border-color: var(--ch-teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

footer {
    background: #0f172a;
    padding: 60px 0 30px;
    color: var(--ch-white);
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #f8fafc;
}

.footer-brand span {
    color: var(--ch-teal) !important;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 0.6rem;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.15s ease;
}

.social-btn:hover {
    background: hsla(0, 0%, 100%, 0.1);
    border-color: rgba(45, 212, 191, 0.55);
    color: #2dd4bf;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.footer-divider {
    border-color: rgba(148, 163, 184, 0.22);
    margin: 40px 0 24px;
}

.footer-bottom {
    color: #94a3b8;
    font-size: 0.82rem;
}

/* ========== CART TOAST ========== */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border: 1px solid var(--ch-border);
    border-radius: 1rem;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    min-width: 280px;
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast-icon {
    font-size: 1.6rem;
}

.cart-toast-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ch-dark-slate);
}

.cart-toast-sub {
    font-size: 0.78rem;
    color: var(--ch-slate-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== BACK TO TOP ========== */
#backToTop {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ch-teal);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--ch-teal-dk);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .section-pad {
        padding: 70px 0;
    }

    .text-logo {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: var(--ch-white);
    }

    .text-logo .logo-main {
        font-size: 50px;
        font-weight: 900;
        line-height: 0.5;
        letter-spacing: 1.5px;
        margin-top: 2px;
    }

    .text-logo .logo-sub {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-top: 2px;
    }
}

.step-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--ch-teal) !important;
}

.card{
  background:#ffffff;
  border-radius:32px;
  overflow:hidden;
  position:relative;
  transition:0.35s ease;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}

.card-top{
  height:340px;
  background:
    linear-gradient(
      135deg,
      #041c3b 0%,
      #0a6d79 100%
    );
    
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
}

.profile-circle{
  width:260px;
  height:260px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  border:8px solid rgba(255,255,255,0.15);
}

.profile-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card-content{
  padding:35px 30px 40px;
  text-align:center;
}

.card-content h2{
  font-size:38px;
  line-height:1.1;
  color:#07162f;
  margin-bottom:18px;
  font-weight:800;
}

.role{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:#eef2ff;
  color:#0d9488;
  font-size:15px;
  font-weight:600;
  margin-bottom:28px;
}

.learn-btn{
  border:none;
  outline:none;

  padding:16px 34px;
  border-radius:60px;

  background:#ffffff;
  border:2px solid #e5e7eb;

  display:inline-flex;
  align-items:center;
  gap:12px;

  font-size:20px;
  font-weight:600;

  cursor:pointer;
  transition:0.3s ease;
}

.learn-btn span{
  transition:0.3s ease;
}

.learn-btn:hover{
  background:#07162f;
  color:#fff;
  border-color:#07162f;
}

.learn-btn:hover span{
  transform:translateX(6px);
}


/*==== INFINITE SCROLL MEMBERSHIPS ========== */
.membership-scroll-wrapper {
    margin-top: 2rem;
}

/* Stats row */
.affiliation-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 0 2rem 0;
    padding: 1rem 0.5rem;
    border-top: 1px solid #e9eef3;
    border-bottom: 1px solid #e9eef3;
    background: #fafcff;
    border-radius: 60px;
}
.affiliation-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    background: transparent;
}
.affiliation-stats .stat-item i {
    font-size: 1.7rem;
    color: #2c5282;
}
.affiliation-stats .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f2b3d;
    letter-spacing: -0.01em;
}
.affiliation-stats .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a627a;
    margin-left: 0.2rem;
}

/* Scroll container */
.scroll-container {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 1.2rem 0;
    cursor: grab;
}
.scroll-container:active {
    cursor: grabbing;
}
.scroll-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: infiniteScroll 32s linear infinite;
    backface-visibility: hidden;
}
.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

/* Affiliation card */
.affiliation-item {
    flex: 0 0 auto;
    width: 190px;
    margin: 0 1rem;
    background: white;
    border-radius: 1.8rem;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(203, 213, 225, 0.5);
}
.affiliation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px #cbd5e1;
    border-color: #bfd9ff;
}

/* Only images – no icons */
.affiliation-img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 0.6rem auto;
    display: block;
}

.affiliation-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    letter-spacing: -0.2px;
    margin-bottom: 0.25rem;
}
.affiliation-full {
    font-size: 0.7rem;
    color: #5b6e8c;
    font-weight: 500;
    line-height: 1.3;
    max-width: 160px;
    margin: 0 auto;
}

/* Trust note */
.trust-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #6c86a3;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #eef2f8;
    padding-top: 1.8rem;
}
.trust-note span i {
    margin-right: 0.3rem;
    color: #3b6e9e;
}

/* Animation */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 780px) {
    .affiliation-item {
        width: 155px;
        margin: 0 0.7rem;
        padding: 1rem 0.5rem;
    }
    .affiliation-name {
        font-size: 0.85rem;
    }
    .affiliation-img {
        width: 50px;
        height: 50px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .affiliation-stats {
        gap: 1.2rem;
    }
}
@media (max-width: 550px) {
    .affiliation-item {
        width: 135px;
        margin: 0 0.5rem;
    }
    .affiliation-img {
        width: 50px;
        height: 50px;
    }
    .scroll-track {
        animation-duration: 28s;
    }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-track {
        animation: none;
        overflow-x: auto;
    }
    .scroll-container {
        overflow-x: auto;
    }
}
