/* ============================================
   style_public.css — Modern Public Pages v2.0
   Brand Orange: #D4A840
   Dark Navy: #1a1a2e
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --ds-accent: var(--tier-primary, #D4A840);
    --ds-accent-bg: var(--tier-primary-bg, rgba(212,168,64,0.1));
    --brand-orange: var(--ds-accent);
    --brand-orange-dark: var(--tier-primary-dark, #b8912e);
    --brand-orange-light: var(--ds-accent-bg);
    --dark-navy: #1a1a2e;
    --dark-navy-light: #16213e;
    --text-dark: #1a1a2e;
    --text-body: #444;
    --text-muted: #888;
    --bg-light: #f8f9fc;
    --bg-white: #fff;
    --success-green: #2ecc71;
    --info-blue: #3498db;
    --danger-red: #e74c3c;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 var(--ds-accent-bg, rgba(212,168,64,0.4)); }
    50%      { box-shadow: 0 0 0 15px var(--ds-accent-bg, rgba(212,168,64,0)); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%      { transform: translateY(-15px) rotate(1deg); }
    66%      { transform: translateY(8px) rotate(-1deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%      { transform: translateY(-25px) scale(1.05); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes scrollWheel {
    0%   { opacity: 0; transform: translateY(0); }
    40%  { opacity: 1; }
    80%  { opacity: 0; transform: translateY(8px); }
    100% { opacity: 0; }
}
@keyframes ripple {
    0%   { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes slideConnector {
    from { width: 0; }
    to   { width: 100%; }
}
@keyframes revealUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(30px, -50px) scale(1.1); }
    50%  { transform: translate(-20px, -80px) scale(0.95); }
    75%  { transform: translate(40px, -30px) scale(1.05); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(-40px, 30px) scale(1.05); }
    50%  { transform: translate(30px, 60px) scale(0.9); }
    75%  { transform: translate(-50px, -20px) scale(1.1); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(50px, 20px) scale(0.95); }
    50%  { transform: translate(-30px, -40px) scale(1.1); }
    75%  { transform: translate(20px, 50px) scale(1); }
}
@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}

/* ---------- Scroll Reveal ---------- */
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Global Overrides ---------- */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
}

.section-padding {
    padding: 80px 0;
}

/* ---------- Section Tag ---------- */
.section-tag {
    display: inline-block;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.pub-bg-dark .section-tag {
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
}

/* ---------- HEADER — Modern Glassmorphism ---------- */

/* Override base style.css header rules */
header#main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 16px 0;
    background-color: transparent;
    margin-bottom: 0;
    box-shadow: none;
}
header#main-header .container {
    width: 100%;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
/* Kill old style.css nav-item and nav-link rules inside our header */
header#main-header .nav-item {
    display: none;
}
header#main-header .nav-item a.nav-link,
header#main-header .nav-item a.nav-link:before {
    display: none;
}
header#main-header .header-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--tier-primary-light, #ff9a56), var(--brand-orange));
    opacity: 0;
    transition: opacity var(--transition);
}
header#main-header.header-scrolled .header-accent-line {
    opacity: 1;
}
header#main-header.header-scrolled {
    background: black !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    padding: 10px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
header#main-header .navbar {
    padding: 0;
}
header#main-header .navbar-brand img,
header#main-header .navbar .navbar-brand img {
    transition: opacity var(--transition);
    max-height: 90px;
    width: auto;
}
header#main-header .navbar .navbar-brand {
    padding: 0;
    margin: 0;
}
header#main-header .navbar-brand {
    display: flex;
    align-items: center;
}
header#main-header .navbar-brand .logo-text {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1;
}
header#main-header .navbar-brand .logo-text-white {
    color: #fff;
}
header#main-header .navbar-brand .logo-text-dark {
    color: var(--brand-orange);
    display: none;
}
header#main-header .navbar-brand .logo-white {
    display: block;
}
header#main-header .navbar-brand .logo-dark {
    display: none;
    filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(1638%) hue-rotate(3deg) brightness(98%) contrast(96%);
}
header#main-header.header-scrolled .navbar-brand .logo-white,
header#main-header.header-scrolled .navbar-brand .logo-text-white {
    display: block;
}
header#main-header.header-scrolled .navbar-brand .logo-dark,
header#main-header.header-scrolled .navbar-brand .logo-text-dark {
    display: none;
}

/* Nav menu (desktop) */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.nav-menu-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    position: relative;
    transition: color var(--transition);
    display: inline-block;
}
.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-menu-link:hover {
    color: #fff;
    text-decoration: none;
}
.nav-menu-link:hover::after {
    width: calc(100% - 40px);
}
header#main-header.header-scrolled .nav-menu-link {
    color: rgba(255,255,255,0.9);
}
header#main-header.header-scrolled .nav-menu-link:hover {
    color: #fff;
}

/* CTA pill button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--ds-accent-bg, rgba(212,168,64,0.3));
    letter-spacing: 0.3px;
}
.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--ds-accent-bg, rgba(212,168,64,0.45));
}
.nav-cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.nav-cta-btn:hover i {
    transform: translateX(3px);
}

/* Hamburger button */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 10001;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}
header#main-header.header-scrolled .hamburger-line {
    background: #fff;
}
.nav-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

/* Mobile drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: black;
    z-index: 10001;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
}
.mobile-nav-drawer.open {
    right: 0;
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-brand {
    display: flex;
    align-items: center;
}
.mobile-nav-brand img {
    max-height: 32px;
}
.mobile-nav-brand .logo-text {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.5px;
}
.mobile-nav-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav-close:hover {
    background: var(--brand-orange);
}
.mobile-nav-links {
    list-style: none;
    padding: 16px 0;
    margin: 0;
}
.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
}
.mobile-nav-drawer.open .mobile-nav-links li {
    animation: mobileNavSlideIn 0.3s ease forwards;
}
.mobile-nav-drawer.open .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-drawer.open .mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-drawer.open .mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-drawer.open .mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }

@keyframes mobileNavSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}
.mobile-nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-left-color: var(--brand-orange);
    padding-left: 28px;
}
.mobile-nav-links a i {
    width: 20px;
    text-align: center;
    color: var(--brand-orange);
    font-size: 15px;
}
.mobile-nav-cta {
    padding: 16px 24px;
}
.mobile-nav-cta .nav-cta-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}
.mobile-nav-donor {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* Dark header pages (FAQ, legal, how-it-works) — always white bg */
.darkheader header#main-header {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.darkheader header#main-header .nav-menu-link {
    color: var(--text-dark);
}
.darkheader header#main-header .nav-menu-link:hover {
    color: var(--brand-orange);
}
.darkheader header#main-header .navbar-brand .logo-white,
.darkheader header#main-header .navbar-brand .logo-text-white {
    display: none;
}
.darkheader header#main-header .navbar-brand .logo-dark,
.darkheader header#main-header .navbar-brand .logo-text-dark {
    display: block;
}
.darkheader .hamburger-line {
    background: var(--dark-navy);
}

/* Auth page header — white logos, dark glass on scroll */
.auth_page header#main-header .navbar-brand .logo-white,
.auth_page header#main-header .navbar-brand .logo-text-white {
    display: block;
}
.auth_page header#main-header .navbar-brand .logo-dark,
.auth_page header#main-header .navbar-brand .logo-text-dark {
    display: none;
}
.auth_page header#main-header.header-scrolled {
    background: black !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.auth_page header#main-header.header-scrolled .navbar-brand .logo-white,
.auth_page header#main-header.header-scrolled .navbar-brand .logo-text-white {
    display: block;
}
.auth_page header#main-header.header-scrolled .navbar-brand .logo-dark,
.auth_page header#main-header.header-scrolled .navbar-brand .logo-text-dark {
    display: none;
}
.auth_page header#main-header.header-scrolled .nav-menu-link {
    color: rgba(255,255,255,0.9);
}
.auth_page header#main-header.header-scrolled .nav-menu-link:hover {
    color: var(--brand-orange);
}
.auth_page header#main-header.header-scrolled .hamburger-line {
    background: #fff;
}
.auth_page header#main-header.header-scrolled .header-accent-line {
    opacity: 0;
}

/* Responsive: show hamburger on mobile */
@media (max-width: 991.98px) {
    .nav-hamburger {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    header#main-header .navbar {
        position: relative;
    }
}

/* ---------- FIX: Override scroll__over/under for full-page layout ---------- */
.home_page .scroll__over {
    margin-bottom: 0;
    box-shadow: none;
}
.home_page .scroll__under {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
}

/* ---------- HOME HERO ---------- */
.home_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home_hero_video_wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.home_hero_video_wrap::after {
    display: none;
}

/* Hero Logo */
.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}

/* Hero Welcome Box (referrer) */
.hero-welcome-box {
    margin-bottom: 20px;
    text-align: center;
}
.hero-welcome-text {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
}
.hero-welcome-name {
    color: #fff;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 4px 0;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.hero-welcome-key {
    color: #d4a843;
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0 0;
    letter-spacing: 1px;
}

/* Hero Main Title */
h1.hero-main-title {
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-size: 46px !important;
    white-space: nowrap;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
    color: #fff !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    text-align: center;
    text-transform: none !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* Join Now Button */
.hero-join-btn {
    display: inline-block;
    background: #d4a843;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.hero-join-btn:hover {
    background: #c49a3a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.4);
}

/* Referrer info — frosted glass badge (matches hub hero-referrer-badge) */
.home_hero_cnt p.hero-referrer-info,
.hero-referrer-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: normal;
    border: 1px solid rgba(255,255,255,0.12);
    margin: 0;
    margin-bottom: 0;
    animation: referrerFadeIn 0.5s ease;
}
.hero-referrer-info strong {
    color: var(--tier-primary-light, hsl(41 50% 65%));
    font-weight: 700;
}
.hero-referrer-info .hero-referrer-key {
    color: var(--tier-primary-light, hsl(41 50% 65%));
    font-weight: 700;
}
@keyframes referrerFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Already a member link */
.hero-login-link,
.home_hero_cnt p.hero-login-link {
    color: rgba(255,255,255,0.7);
    font-size: 12px !important;
    margin-top: 4px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 400;
}
.hero-login-link a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.hero-login-link a:hover {
    color: rgba(255,255,255,0.9);
}

/* 25th Anniversary Badge (inline next to title) */
.hero-section-v2 .home_hero_cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center !important;
}
.hero-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0 auto 6px;
}
.hero-anniversary-inline {
    width: auto !important;
    height: 108px !important;
    max-height: 108px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 12px hsla(38,70%,60%,0.5));
    flex-shrink: 0;
}
.home_hero_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Orbs */
.hero-orbs {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}
.hero-orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--ds-accent-bg, rgba(212,168,64,0.5)) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52,152,219,0.4) 0%, transparent 70%);
    bottom: 15%;
    left: -3%;
    animation: orbFloat2 15s ease-in-out infinite;
}
.hero-orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46,204,113,0.3) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: orbFloat3 10s ease-in-out infinite;
}

.home_hero_cnt_wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 150px 24px 8px;
}
.home_hero_cnt_wrap::before {
    display: none;
}
.home_hero_cnt_wrap::after {
    display: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

/* Gradient Animated Hero Text */
.hero-gradient-text {
    font-family: 'Noah', sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff 40%, #ff9a56 60%, var(--brand-orange) 80%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    text-shadow: none;
    min-height: 1.05em;
}
.home_hero_cnt h1 {
    font-family: 'Noah', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 48px;
    min-height: 1.4em;
}

/* Typing cursor */
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.typing-cursor {
    animation: cursorBlink 0.7s infinite;
    font-weight: 300;
    color: var(--brand-orange);
    -webkit-text-fill-color: var(--brand-orange);
}
.home_hero_cnt p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

/* Hero Button Group */
.hero-section-v2 .hero-btn-group {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
    animation: fadeInUp 0.8s ease 0.35s both;
}

/* Play Button with Ripple */
.pub-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.pub-play-btn:hover {
    background: linear-gradient(135deg, var(--brand-orange-dark), #c04e15);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--ds-accent-bg, rgba(212,168,64,0.45));
    color: #fff;
    text-decoration: none;
}
.pub-play-btn i {
    font-size: 18px;
}
.play-btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}
.pub-play-btn:hover .play-btn-ripple {
    animation: ripple 0.8s ease-out;
}

/* Secondary Hero Button */
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all var(--transition);
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}
.hero-btn-secondary i {
    transition: transform var(--transition);
}
.hero-btn-secondary:hover i {
    transform: translateX(4px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.5s both;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}
.hero-scroll-indicator span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- STATS TICKER BAR ---------- */
.stats-ticker {
    background: var(--dark-navy);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.stats-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--info-blue), var(--success-green), var(--brand-orange));
    background-size: 300% 100%;
    animation: gradientShift 4s ease infinite;
}
.stats-ticker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stats-ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}
.stats-ticker-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand-orange);
    flex-shrink: 0;
}
.stats-ticker-value {
    font-family: 'Noah', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stats-ticker-suffix {
    font-family: 'Noah', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-orange);
}
.stats-ticker-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ---------- BOTTOM NAV LINKS (below hero) ---------- */
.scroll__under .bottom_sec_root {
    background: var(--dark-navy);
    padding: 30px 0;
}
.bottom_nav_list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}
.bottom_nav_list li a {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}
.bottom_nav_list li a:hover {
    color: var(--brand-orange);
}
.bottom_nav_list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.bottom_nav_list li a:hover::after {
    transform: scaleX(1);
}

/* ---------- HOME FEATURE SECTIONS ---------- */
.pub-section {
    padding: 110px 0;
    position: relative;
}
.pub-section.pub-bg-light {
    background: var(--bg-light);
}
.pub-section.pub-bg-dark {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    color: #fff;
}
.pub-section-title {
    text-align: center;
    margin-bottom: 65px;
}
.pub-section-title h2 {
    font-family: 'Noah', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.pub-bg-dark .pub-section-title h2 {
    color: #fff;
}
.pub-section-title p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.pub-bg-dark .pub-section-title p {
    color: rgba(255,255,255,0.7);
}

/* Feature Cards */
.pub-feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 45px 30px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.pub-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.pub-feature-card:hover .pub-feature-icon {
    animation: iconBounce 0.5s ease;
}

/* Feature Card Glow */
.feature-card-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.pub-feature-card:hover .feature-card-glow {
    opacity: 0.3;
}
.feature-card-glow.orange { background: var(--brand-orange); }
.feature-card-glow.blue   { background: var(--info-blue); }
.feature-card-glow.green  { background: var(--success-green); }
.feature-card-glow.navy   { background: var(--dark-navy); }

.pub-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    transition: all var(--transition);
}
.pub-feature-icon.orange { background: var(--brand-orange-light); color: var(--brand-orange); }
.pub-feature-icon.blue   { background: rgba(52,152,219,0.1); color: var(--info-blue); }
.pub-feature-icon.green  { background: rgba(46,204,113,0.1); color: var(--success-green); }
.pub-feature-icon.navy   { background: rgba(26,26,46,0.08); color: var(--dark-navy); }

.pub-feature-card:hover .pub-feature-icon.orange { background: var(--brand-orange); color: #fff; box-shadow: 0 8px 20px var(--ds-accent-bg, rgba(212,168,64,0.3)); }
.pub-feature-card:hover .pub-feature-icon.blue   { background: var(--info-blue); color: #fff; box-shadow: 0 8px 20px rgba(52,152,219,0.3); }
.pub-feature-card:hover .pub-feature-icon.green  { background: var(--success-green); color: #fff; box-shadow: 0 8px 20px rgba(46,204,113,0.3); }
.pub-feature-card:hover .pub-feature-icon.navy   { background: var(--dark-navy); color: #fff; box-shadow: 0 8px 20px rgba(26,26,46,0.3); }

.pub-feature-card h4 {
    font-family: 'Noah', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pub-feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ---------- STEP CONNECTOR ---------- */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    flex-shrink: 0;
    margin-top: -30px;
    color: var(--brand-orange);
    font-size: 16px;
    opacity: 0.4;
}
.step-connector-line {
    display: none;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5) !important;
}

/* CTA Section */
.pub-cta {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 50%, #0f3460 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pub-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.pub-cta-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--ds-accent-bg, rgba(212,168,64,0.18)) 0%, transparent 70%);
    top: -20%;
    right: -5%;
    animation: orbFloat1 15s ease-in-out infinite;
}
.pub-cta-orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(52,152,219,0.12) 0%, transparent 70%);
    bottom: -15%;
    left: -3%;
    animation: orbFloat2 12s ease-in-out infinite;
}
.pub-cta h2 {
    font-family: 'Noah', sans-serif;
    font-size: 44px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}
.pub-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 45px;
    position: relative;
}

/* CTA Button Group */
.cta-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.pub-cta .pub-btn,
.pub-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.pub-btn-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.pub-cta .pub-btn:hover,
.pub-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--ds-accent-bg, rgba(212,168,64,0.45));
    color: #fff;
    text-decoration: none;
}
.pub-btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid rgba(255,255,255,0.3);
}
.pub-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* ---------- SOCIAL PROOF SECTION ---------- */
.pub-section-social-proof {
    padding: 80px 0;
}
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.social-proof-item {
    text-align: center;
    padding: 30px 20px;
}
.social-proof-item i {
    font-size: 36px;
    color: var(--brand-orange);
    margin-bottom: 20px;
    display: block;
}
.social-proof-item h4 {
    font-family: 'Noah', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.social-proof-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* ---------- FEATURED RIBBON ---------- */
.featured-ribbon {
    position: absolute;
    top: 16px;
    right: -35px;
    background: linear-gradient(135deg, var(--brand-orange), #ff9a56);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px var(--ds-accent-bg, rgba(212,168,64,0.3));
}

/* ---------- HOW IT WORKS PAGE ---------- */
.htw-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-navy);
}
.htw-hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.htw-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(26,26,46,0.6) 0%, rgba(26,26,46,0.8) 100%);
    z-index: 2;
}
.htw-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}
.htw-hero-content h1 {
    font-family: 'Noah', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}
.htw-hero-content p {
    font-size: 20px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Section */
.htw-step-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}
.htw-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.htw-step-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), #ff9a56);
    color: #fff;
    font-family: 'Noah', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px var(--ds-accent-bg, rgba(212,168,64,0.3));
}
.htw-step-card h4 {
    font-family: 'Noah', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.htw-step-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Level Cards (Pricing) */
.pub-level-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.pub-level-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 50px 34px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}
.pub-level-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.pub-level-card.featured {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    transform: scale(1.05);
    border-color: var(--brand-orange);
}
.pub-level-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.pub-level-badge {
    display: inline-block;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.pub-level-card.featured .pub-level-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.pub-level-card h3 {
    font-family: 'Noah', sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.pub-level-card.featured h3 {
    color: #fff;
}
.pub-level-card .level-label {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.pub-level-card.featured .level-label {
    color: rgba(255,255,255,0.8);
}
.pub-level-card .level-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
}
.pub-level-card.featured .level-row {
    border-color: rgba(255,255,255,0.15);
}
.level-row .label {
    color: var(--text-muted);
    font-weight: 500;
}
.pub-level-card.featured .level-row .label {
    color: rgba(255,255,255,0.75);
}
.level-row .value {
    font-family: 'Noah', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}
.pub-level-card.featured .level-row .value {
    color: #fff;
}
.pub-level-card .pub-btn-card {
    display: inline-block;
    margin-top: 28px;
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition);
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    box-shadow: 0 6px 20px var(--ds-accent-bg, rgba(212,168,64,0.25));
}
.pub-level-card .pub-btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--ds-accent-bg, rgba(212,168,64,0.4));
    text-decoration: none;
    color: #fff;
}
.pub-level-card.featured .pub-btn-card {
    background: #fff;
    color: var(--brand-orange);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.pub-level-card.featured .pub-btn-card:hover {
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--brand-orange-dark);
}
.level-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 18px 0;
}
.pub-level-card.featured .level-divider {
    background: rgba(255,255,255,0.15);
}
.level-highlight {
    color: #2ecc71 !important;
    font-weight: 700;
}
.pub-level-card.featured .level-highlight {
    color: #7dffb3 !important;
}
.level-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.level-features li {
    padding: 7px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}
.level-features li i {
    color: #2ecc71;
    font-size: 13px;
    flex-shrink: 0;
}
.pub-level-card.featured .level-features li {
    color: rgba(255,255,255,0.85);
}
.pub-level-card.featured .level-features li i {
    color: #7dffb3;
}
.levels-note {
    max-width: 750px;
    margin: 45px auto 0;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 22px 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid var(--brand-orange);
}
.levels-note p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
.levels-note i.fa-info-circle {
    color: var(--brand-orange);
    margin-right: 4px;
}

/* ---------- Payment Logos Strip ---------- */
.payment-logos-strip {
    padding: 35px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.payment-logos-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 600;
}
.payment-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: opacity var(--transition), transform var(--transition);
}
.payment-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.payment-logo i {
    font-size: 32px;
    color: var(--text-dark);
}
.payment-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    border-radius: 8px;
}
.payment-logo span {
    font-size: 11px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- Even Forever Section ---------- */
.even-visual {
    max-width: 700px;
    margin: 0 auto;
}
.even-timeline {
    position: relative;
    padding-left: 40px;
}
.even-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-orange), #2ecc71, #f1c40f);
    border-radius: 3px;
}
.even-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}
.even-step-marker {
    position: absolute;
    left: -40px;
    top: 24px;
}
.even-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 15px var(--ds-accent-bg, rgba(212,168,64,0.3));
    position: relative;
    z-index: 2;
}
.even-step-icon.icon-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}
.even-step-icon.icon-green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}
.even-step-icon.icon-gold {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    box-shadow: 0 4px 15px rgba(241,196,15,0.3);
}
.even-step-content {
    background: #fff;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    flex: 1;
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow var(--transition), transform var(--transition);
}
.even-step-content:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(4px);
}
.even-step-content h4 {
    font-family: 'Noah', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.even-step-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}
.even-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}
.even-step-tag.tag-red {
    background: rgba(231,76,60,0.1);
    color: #e74c3c;
}
.even-step-tag.tag-orange {
    background: var(--ds-accent-bg, rgba(212,168,64,0.1));
    color: var(--brand-orange);
}
.even-step-tag.tag-green {
    background: rgba(46,204,113,0.1);
    color: #27ae60;
}
.even-step-tag.tag-gold {
    background: rgba(241,196,15,0.1);
    color: #d4a20a;
}

/* ---------- IC Diagram Section ---------- */
.pub-section-ic-diagram {
    overflow: hidden;
}
.section-tag.light {
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    color: var(--brand-orange);
}
.ic-diagram-wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.ic-tree {
    margin-bottom: 40px;
}
.ic-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.ic-node {
    width: 100px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 14px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.4s ease;
}
.ic-node i {
    font-size: 20px;
    color: #fff;
}
.ic-node span {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}
.ic-node em {
    font-style: normal;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.ic-you {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    border-color: var(--brand-orange);
    box-shadow: 0 4px 20px var(--ds-accent-bg, rgba(212,168,64,0.4));
    width: 110px;
}
.ic-level1 {
    border-color: #3498db;
    background: rgba(52,152,219,0.15);
}
.ic-level2 {
    border-color: #2ecc71;
    background: rgba(46,204,113,0.1);
    width: 90px;
    padding: 10px 6px 8px;
}
.ic-level2 i { font-size: 16px; }
.ic-level2 span { font-size: 12px; }

/* IC Connectors */
.ic-connectors {
    display: flex;
    justify-content: center;
    height: 40px;
    position: relative;
}
.ic-connectors-1 {
    width: 200px;
    margin: 0 auto;
}
.ic-connectors-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 10px;
    background: rgba(255,255,255,0.3);
}
.ic-connectors-1 .ic-line-left,
.ic-connectors-1 .ic-line-right {
    position: absolute;
    top: 10px;
    width: 50%;
    height: 2px;
    background: rgba(255,255,255,0.3);
}
.ic-connectors-1 .ic-line-left {
    left: 0;
}
.ic-connectors-1 .ic-line-left::after,
.ic-connectors-1 .ic-line-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 28px;
    background: rgba(255,255,255,0.3);
}
.ic-connectors-1 .ic-line-left::after { left: 0; }
.ic-connectors-1 .ic-line-right { right: 0; }
.ic-connectors-1 .ic-line-right::after { right: 0; }

.ic-connectors-2 {
    width: 500px;
    margin: 0 auto;
    height: 35px;
}
.ic-connectors-2 .ic-line-l1,
.ic-connectors-2 .ic-line-l2,
.ic-connectors-2 .ic-line-r1,
.ic-connectors-2 .ic-line-r2 {
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.2);
}
.ic-connectors-2 .ic-line-l1 { left: 15%; }
.ic-connectors-2 .ic-line-l2 { left: 35%; }
.ic-connectors-2 .ic-line-r1 { right: 35%; }
.ic-connectors-2 .ic-line-r2 { right: 15%; }

/* IC Animation */
.ic-diagram-wrap .ic-node {
    opacity: 0;
    transform: scale(0.7);
}
.ic-diagram-wrap .ic-you {
    opacity: 1;
    transform: scale(1);
}
.ic-diagram-wrap.ic-animated .ic-node {
    opacity: 1;
    transform: scale(1);
}
.ic-diagram-wrap.ic-animated .ic-node[data-ic-delay="1"] { transition-delay: 0.4s; }
.ic-diagram-wrap.ic-animated .ic-node[data-ic-delay="2"] { transition-delay: 0.7s; }
.ic-diagram-wrap.ic-animated .ic-node[data-ic-delay="3"] { transition-delay: 1.1s; }
.ic-diagram-wrap.ic-animated .ic-node[data-ic-delay="4"] { transition-delay: 1.3s; }
.ic-diagram-wrap.ic-animated .ic-node[data-ic-delay="5"] { transition-delay: 1.5s; }
.ic-diagram-wrap.ic-animated .ic-node[data-ic-delay="6"] { transition-delay: 1.7s; }

.ic-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.ic-result-box {
    background: rgba(46,204,113,0.1);
    border: 2px solid rgba(46,204,113,0.3);
    border-radius: 16px;
    padding: 20px 30px;
    display: inline-block;
}
.ic-result-icon {
    font-size: 28px;
    color: #2ecc71;
    margin-bottom: 6px;
}
.ic-result-box h4 {
    color: #2ecc71;
    font-family: 'Noah', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.ic-result-box p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}
.ic-arrow-cycle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    animation: spinSlow 3s linear infinite;
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---------- Earnings Calculator ---------- */
.calc-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.calc-controls {
    margin-bottom: 30px;
}
.calc-group {
    margin-bottom: 24px;
}
.calc-group label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.calc-cycle-val {
    display: inline-block;
    background: var(--brand-orange);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 6px;
}
.calc-level-btns {
    display: flex;
    gap: 10px;
}
.calc-level-btn {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition);
}
.calc-level-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}
.calc-level-btn.active {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 15px var(--ds-accent-bg, rgba(212,168,64,0.3));
}
.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #e8e8e8;
    outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    cursor: pointer;
    box-shadow: 0 2px 8px var(--ds-accent-bg, rgba(212,168,64,0.4));
}
.calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    cursor: pointer;
    border: none;
}
.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}
.calc-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 16px;
}
.calc-result-item {
    text-align: center;
}
.calc-result-item.highlight {
    background: rgba(46,204,113,0.08);
    border-radius: 10px;
    padding: 10px;
}
.calc-result-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
    margin-bottom: 6px;
}
.calc-result-value {
    display: block;
    font-family: 'Noah', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}
.calc-result-green {
    color: #2ecc71;
}
.calc-disclaimer {
    font-size: 13px;
    color: #999;
    margin: 0;
    text-align: center;
}
.calc-disclaimer i {
    color: var(--brand-orange);
}

/* ---------- Who Is This For (Personas) ---------- */
.persona-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
    height: 100%;
}
.persona-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
.persona-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--ds-accent-bg, rgba(212,168,64,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--brand-orange);
    transition: all var(--transition);
}
.persona-icon.icon-blue {
    background: rgba(52,152,219,0.1);
    color: #3498db;
}
.persona-icon.icon-green {
    background: rgba(46,204,113,0.1);
    color: #2ecc71;
}
.persona-card:hover .persona-icon {
    transform: scale(1.1);
}
.persona-card h4 {
    font-family: 'Noah', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.persona-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.testimonial-stars {
    margin-bottom: 16px;
}
.testimonial-stars i {
    color: #f1c40f;
    font-size: 15px;
    margin-right: 2px;
}
.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}
.testimonial-author span {
    font-size: 13px;
    color: #999;
}

/* ---------- Testimonial Carousel ---------- */
.testimonial-slider-wrap {
    position: relative;
}
.testimonial-carousel .testimonial-card {
    margin-bottom: 10px;
    height: auto;
}
.testimonial-carousel .owl-stage-outer {
    padding: 10px 0 20px;
}
.testimonial-carousel .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    gap: 8px;
}
.testimonial-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff !important;
    border: 2px solid #e0e0e0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark) !important;
    font-size: 14px !important;
    transition: all var(--transition);
    cursor: pointer;
}
.testimonial-carousel .owl-nav button:hover {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
    transform: scale(1.05);
}
.testimonial-carousel .owl-nav button span {
    display: none;
}
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.testimonial-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}
.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: block;
    transition: all var(--transition);
}
.testimonial-carousel .owl-dot.active span {
    background: var(--brand-orange);
    transform: scale(1.2);
}

/* ---------- Scroll To Top Button ---------- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ds-accent, #D4A840), #d4591a);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px var(--ds-accent-bg, rgba(212,168,64,0.35));
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--ds-accent-bg, rgba(212,168,64,0.5));
}
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ---------- Contact Section ---------- */
.contact-info h2 {
    font-family: 'Noah', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.contact-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 20px;
    flex-shrink: 0;
}
.contact-item-icon.icon-blue {
    background: rgba(52,152,219,0.1);
    color: #3498db;
}
.contact-item-icon.icon-green {
    background: rgba(46,204,113,0.1);
    color: #2ecc71;
}
.contact-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.contact-item p {
    font-size: 14px;
    color: #888;
    margin: 0;
}
.contact-cta-card {
    background: linear-gradient(135deg, var(--dark-navy), var(--dark-navy-light));
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    color: #fff;
}
.contact-cta-icon {
    font-size: 36px;
    color: var(--brand-orange);
    margin-bottom: 16px;
}
.contact-cta-card h3 {
    font-family: 'Noah', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-cta-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}


/* Benefit Lists */
.pub-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pub-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.5;
}
.pub-benefit-list li i {
    color: var(--brand-orange);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Info Boxes */
.htw-info-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border-left: 4px solid var(--brand-orange);
}
.htw-info-box h3 {
    font-family: 'Noah', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.htw-info-box p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ---------- FAQ PAGE ---------- */
.pub-faq-section {
    padding: 60px 0 80px;
}
.pub-faq-header {
    text-align: center;
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    color: #fff;
    margin-bottom: 0;
}
.pub-faq-header h1 {
    font-family: 'Noah', sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
}
.pub-faq-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* FAQ Accordion */
.pub-faq-accordion .card {
    border: none;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.pub-faq-accordion .card:hover {
    box-shadow: var(--shadow-md);
}
.pub-faq-accordion .card-header {
    background: var(--bg-white);
    border-bottom: none;
    padding: 0;
}
.pub-faq-accordion .card-header h5 {
    margin: 0;
}
.pub-faq-accordion .card-header .btn-link {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
    white-space: normal;
    border: none;
}
.pub-faq-accordion .card-header .btn-link:hover {
    color: var(--brand-orange);
    text-decoration: none;
}
.pub-faq-accordion .card-header .btn-link:not(.collapsed) {
    color: var(--brand-orange);
    background: var(--ds-accent-bg, rgba(212,168,64,0.04));
}
.pub-faq-accordion .card-header .btn-link .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    margin-right: 16px;
}
.pub-faq-accordion .card-header .btn-link:not(.collapsed) .num {
    background: var(--brand-orange);
    color: #fff;
}
.pub-faq-accordion .card-header .btn-link #icon {
    margin-left: auto;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.pub-faq-accordion .card-header .btn-link #icon i {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}
.pub-faq-accordion .card-header .btn-link:not(.collapsed) #icon i {
    color: var(--brand-orange);
}
.pub-faq-accordion .card-body {
    padding: 5px 24px 24px 72px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
}
.pub-faq-accordion .card-body p {
    margin-bottom: 10px;
}

/* ---------- AUTH PAGES ---------- */
.auth_page_main {
    min-height: 100vh;
    background: none !important;
    background-image: none !important;
    position: relative;
    padding: 0 !important;
}
.auth_page_main::before {
    display: none;
}
.auth_page_main:after {
    display: none !important;
}
.auth_page .auth_page_main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.auth_form_sec .auth_form_sec_ {
    border-radius: var(--radius-lg) !important;
    border: none !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 35px 30px !important;
}
.login-form-title h5 {
    font-family: 'Noah', sans-serif !important;
    color: var(--text-dark) !important;
}
.auth_form_sec .form-control:hover,
.auth_form_sec .form-control:focus {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 5px 2px var(--ds-accent-bg, rgba(212,168,64,0.15)) !important;
}
.auth_form_sec .btn-sec .btn {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark)) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 8px 20px -8px var(--ds-accent-bg, rgba(212,168,64,0.5)) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all var(--transition) !important;
}
.auth_form_sec .btn-sec .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px var(--ds-accent-bg, rgba(212,168,64,0.6)) !important;
}
.auth_form_sec .btn-sec p a {
    color: var(--brand-orange) !important;
    font-weight: 500;
}
/* Reset Password & Login Key pages */
.auth_reset_page .btn,
.login_one_time_key .btn,
.reset_password_submit,
.set_password_submit,
.login_withkey_submit {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark)) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px -8px var(--ds-accent-bg, rgba(212,168,64,0.5)) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}
.auth_reset_page .btn:hover,
.login_one_time_key .btn:hover,
.reset_password_submit:hover,
.set_password_submit:hover,
.login_withkey_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px var(--ds-accent-bg, rgba(212,168,64,0.6)) !important;
}
.form_5050cf_inr {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.payment-form-head {
    background: linear-gradient(135deg, var(--dark-navy), var(--dark-navy-light)) !important;
    padding: 20px !important;
}
.payment-form-head .fm_title {
    color: #fff !important;
    font-family: 'Noah', sans-serif !important;
}
.register_form_div {
    border-color: var(--brand-orange) !important;
}
.auth_form_sec .confirm_form_div .btn_section .btn#confirm-proceed {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark)) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 8px 20px -8px var(--ds-accent-bg, rgba(212,168,64,0.5)) !important;
}
.payment-step-two .btn,
.auth_form_sec #cc-payment-form .payment-btn .btn,
.auth_form_sec .confirm_form_div .btn_section .btn.dash_btn {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark)) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 8px 20px -8px var(--ds-accent-bg, rgba(212,168,64,0.5)) !important;
}

/* ---------- FOOTER — Modern Multi-Section ---------- */

/* Footer CTA Strip */
.footer-cta {
    background: black;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--ds-accent-bg, rgba(212,168,64,0.12)), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-cta-text h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
}
.footer-cta-text p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin: 0;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--ds-accent-bg, rgba(212,168,64,0.35));
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--ds-accent-bg, rgba(212,168,64,0.5));
}
.footer-cta-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}
.footer-cta-btn:hover i {
    transform: translateX(4px);
}

/* Auth pages: hide CTA */
.auth_page .footer-cta {
    display: none;
}

/* Main Footer Body */
.footer-main {
    background: black;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}
.footer-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--tier-primary-light, #ff9a56), var(--brand-orange));
}
.footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.footer-orb--1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--ds-accent-bg, rgba(212,168,64,0.06)), transparent 70%);
    top: -80px;
    left: -60px;
}
.footer-orb--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52,152,219,0.05), transparent 70%);
    bottom: -60px;
    right: -40px;
}
.footer-brand-logo img {
    max-height: 36px;
    margin-bottom: 16px;
}
.footer-brand-desc {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social-icon:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--ds-accent-bg, rgba(212,168,64,0.35));
}
.footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.25s ease;
    transform: translateY(-50%);
    border-radius: 2px;
}
.footer-links a:hover {
    color: var(--brand-orange);
    padding-left: 16px;
}
.footer-links a:hover::before {
    width: 10px;
}
.footer-connect-text {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 500;
}
.footer-badge i {
    color: var(--brand-orange);
    font-size: 11px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 18px 0;
}
.site-footer .footer-bottom {
    background: black;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-bottom-links a:hover {
    color: var(--brand-orange);
}

/* Footer responsive */
@media (max-width: 767.98px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-cta-text h3 {
        font-size: 22px;
    }
    .footer-col {
        margin-bottom: 32px;
    }
    .footer-brand-desc {
        max-width: 100%;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Override base style.css footer rules */
footer.footer.site-footer,
footer.site-footer,
footer.footer,
.pub-footer {
    display: block !important;
    -webkit-box-align: initial;
    align-items: initial;
    -webkit-box-pack: initial;
    justify-content: initial;
    margin: 0 !important;
    border-top: none !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    background: none !important;
}
footer.site-footer ul {
    padding: 0;
    margin: 0;
}
footer.site-footer li {
    display: list-item;
}
footer.site-footer .footer-links li {
    display: block;
    margin-left: 0;
}
footer.site-footer .footer-links li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    font-weight: 400;
}
footer.site-footer .footer-links li a:hover {
    color: var(--brand-orange) !important;
}
footer.site-footer .footer_copy_rights {
    width: auto;
    padding: 0;
}
footer.site-footer .footer-social-icon:hover {
    color: #fff !important;
}

/* ---------- HOW IT WORKS SECTIONS OVERRIDES ---------- */
.how_it_sec_root {
    padding: 70px 0;
}
.how_it_sec_root .section-title h2 {
    font-family: 'Noah', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
}
.how_it_sec_root p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
}
.how_it_sec_root .sub_head {
    font-family: 'Noah', sans-serif;
    font-size: 24px;
    color: var(--text-dark);
}
.how_it_sec_root .btn_line,
.how_it_sec_root .btn {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition);
}
.how_it_sec_root .btn_line:hover,
.how_it_sec_root .btn:hover {
    background: var(--brand-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--ds-accent-bg, rgba(212,168,64,0.35));
}
.brand_bg_gray {
    background: var(--bg-light) !important;
}
.how_it_sec_root svg.bi {
    width: 22px;
    height: 22px;
    color: var(--brand-orange);
    margin-right: 8px;
    flex-shrink: 0;
}
.htw_icon_box {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--brand-orange);
    transition: all var(--transition);
}
.htw_icon_box:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.htw_icon_box h2 {
    font-family: 'Noah', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 8px;
}
.how_it_section_7 ul {
    list-style: none;
    padding: 0;
}
.how_it_section_7 ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 16px;
}

/* Price / Benefits section */
.price_sec {
    padding: 70px 0;
}
.price_sec_benefits__ {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.price_sec_benefits__ h2 {
    font-family: 'Noah', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.price_sec_benefits__ h3 {
    font-family: 'Noah', sans-serif;
    font-size: 18px;
    color: var(--brand-orange);
    margin-top: 20px;
}
.price_sec_benefits__ ul {
    list-style: none;
    padding: 0;
}
.price_sec_benefits__ li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price_sec_benefits__ svg.bi {
    width: 20px;
    height: 20px;
    color: var(--brand-orange);
    flex-shrink: 0;
}

/* Promo Block */
.promo_block {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%) !important;
    color: #fff;
    padding: 70px 0;
}
.promo_block h2 {
    font-family: 'Noah', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.promo_block h3 {
    font-family: 'Noah', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
}
.promo_block img {
    max-width: 200px;
    margin-bottom: 25px;
}
.promo_block .btn {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all var(--transition);
}
.promo_block .btn:hover {
    background: var(--brand-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--ds-accent-bg, rgba(212,168,64,0.4));
}

/* Getting Started section */
.how_it_section_9 .easy_step_box__ {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}
.how_it_section_9 .easy_step_box__:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.how_it_section_9 .easy_step_box__ img {
    width: 60px;
    margin-bottom: 15px;
}
.how_it_section_9 .easy_step_box__ h4 {
    font-family: 'Noah', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ---------- GRADIENT HERO (No Video) ---------- */
.home_hero--gradient {
    background: linear-gradient(135deg, #0a0a1a 0%, var(--dark-navy) 30%, #0f3460 60%, #1a1a2e 100%);
}
.home_hero--gradient .home_hero_video_wrap {
    display: none;
}
.hero-mesh {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, var(--ds-accent-bg, rgba(212,168,64,0.08)) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(52,152,219,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(46,204,113,0.05) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite;
}
@keyframes meshShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.hero-grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-orb--4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--ds-accent-bg, rgba(212,168,64,0.25)) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation: orbFloat1 8s ease-in-out infinite reverse;
}

/* Hero Referrer */
.hero-referrer {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease 0.25s both;
}
.hero-referrer strong {
    color: var(--brand-orange);
}

/* Hero Play Button (inline style) */
.hero-play-btn {
    background: transparent !important;
    padding: 0 !important;
    gap: 14px !important;
    animation: none !important;
}
.hero-play-btn:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}
.play-btn-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.play-btn-circle i {
    font-size: 16px !important;
    margin-left: 3px;
}
.hero-play-btn:hover .play-btn-circle {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    box-shadow: 0 0 30px var(--ds-accent-bg, rgba(212,168,64,0.4));
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
    animation: fadeInUp 0.8s ease 0.5s both;
    flex-wrap: wrap;
}
.hero-trust span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}
.hero-trust span i {
    color: var(--ds-accent-bg, rgba(212,168,64,0.6));
    font-size: 14px;
}

/* Large Primary Button */
.pub-btn-lg {
    padding: 18px 48px !important;
    font-size: 18px !important;
}

/* ---------- STATS TICKER ICON COLORS ---------- */
.stats-ticker-icon.icon-blue {
    background: rgba(52,152,219,0.12);
    color: var(--info-blue);
}
.stats-ticker-icon.icon-green {
    background: rgba(46,204,113,0.12);
    color: var(--success-green);
}
.stats-ticker-icon.icon-purple {
    background: rgba(155,89,182,0.12);
    color: #9b59b6;
}

/* ---------- INCOME FLOW SECTION ---------- */
.income-visual {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.income-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 700px;
    padding: 30px 0;
}
.income-flow-step {
    text-align: center;
    flex: 0 0 auto;
}
.income-flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 14px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.income-flow-icon.icon-blue {
    background: rgba(52,152,219,0.1);
    color: var(--info-blue);
}
.income-flow-icon.icon-green {
    background: rgba(46,204,113,0.1);
    color: var(--success-green);
}
.income-flow-icon.icon-orange {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
}
.income-flow-step:hover .income-flow-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
}
.income-flow-label {
    font-family: 'Noah', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.income-flow-desc {
    font-size: 14px;
    color: var(--text-muted);
}
.income-flow-arrow {
    font-size: 22px;
    color: var(--brand-orange);
    opacity: 0.4;
    padding: 0 10px;
    margin-top: -30px;
}

/* ---------- STEPS TIMELINE ---------- */
.steps-timeline {
    position: relative;
}
.steps-timeline-line {
    display: none;
}
@media (min-width: 768px) {
    .steps-timeline-line {
        display: block;
        position: absolute;
        top: 50px;
        left: 16.66%;
        right: 16.66%;
        height: 3px;
        background: linear-gradient(90deg, var(--brand-orange), var(--info-blue), var(--success-green));
        border-radius: 2px;
        opacity: 0.2;
        z-index: 0;
    }
}

/* ---------- FAQ PREVIEW ---------- */
.faq-preview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-preview-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.faq-preview-item:hover {
    box-shadow: var(--shadow-md);
}
.faq-preview-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition), background var(--transition);
    user-select: none;
}
.faq-preview-q:hover {
    color: var(--brand-orange);
}
.faq-preview-q i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform var(--transition), color var(--transition);
    flex-shrink: 0;
}
.faq-preview-item.open .faq-preview-q {
    color: var(--brand-orange);
    background: var(--ds-accent-bg, rgba(212,168,64,0.04));
}
.faq-preview-item.open .faq-preview-q i {
    transform: rotate(180deg);
    color: var(--brand-orange);
}
.faq-preview-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-preview-item.open .faq-preview-a {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-preview-a p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Text Link Button */
.pub-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition);
}
.pub-btn-text:hover {
    color: var(--brand-orange-dark);
    text-decoration: none;
}
.pub-btn-text i {
    transition: transform var(--transition);
}
.pub-btn-text:hover i {
    transform: translateX(4px);
}

/* ---------- SOCIAL PROOF SECTION ---------- */
.pub-section-social-proof {
    padding: 100px 0;
}

/* ---------- SOCIAL PROOF ICONS ---------- */
.social-proof-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.social-proof-icon i {
    font-size: 26px;
    color: var(--brand-orange);
}
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.social-proof-item {
    text-align: center;
    padding: 30px 20px;
}
.social-proof-item h4 {
    font-family: 'Noah', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.social-proof-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0;
}

/* ---------- MODERN COOKIE CONSENT ---------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 16px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-consent--visible {
    transform: translateY(0);
}
.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark-navy);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}
.cookie-consent-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand-orange);
}
.cookie-consent-text {
    flex: 1;
}
.cookie-consent-text strong {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}
.cookie-consent-text p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn-accept {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--ds-accent-bg, rgba(212,168,64,0.35));
}
.cookie-btn-settings {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}
.cookie-btn-settings:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    header .nav-link {
        color: var(--text-dark);
        padding: 12px 18px !important;
        font-size: 15px;
    }
    .home_hero_cnt h1,
    .hero-gradient-text {
        font-size: 50px;
    }
    .hero-main-title {
        font-size: 50px;
    }
    .hero-anniversary-inline {
        width: 80px;
    }
    .pub-section-title h2 {
        font-size: 30px;
    }
    .pub-level-card {
        min-width: 100%;
    }
    .pub-level-card.featured {
        transform: scale(1);
    }
    .pub-level-card.featured:hover {
        transform: translateY(-8px);
    }
    .htw-hero-content h1 {
        font-size: 36px;
    }
    .pub-faq-header h1 {
        font-size: 32px;
    }
    .pub-cta h2 {
        font-size: 30px;
    }
    .bottom_nav_list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    header .navbar-collapse {
        background: #fff;
        border-radius: var(--radius-sm);
        margin-top: 10px;
        padding: 15px;
        box-shadow: var(--shadow-md);
    }
    .stats-ticker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .step-connector {
        display: none !important;
    }
    .income-flow {
        min-width: 550px;
        gap: 6px;
    }
    .income-flow-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
    .cookie-consent-inner {
        flex-wrap: wrap;
    }
    .cookie-consent-text {
        flex: 1 1 60%;
    }
    .calc-results {
        grid-template-columns: repeat(2, 1fr);
    }
    .ic-connectors-2 { width: 400px; }
    .ic-node { width: 85px; padding: 10px 8px 8px; }
    .ic-you { width: 95px; }
    .ic-level2 { width: 75px; }
    .ic-row { gap: 20px; }
    .payment-logos-row { gap: 25px; }
}
@media (max-width: 767px) {
    .home_hero_cnt h1,
    .hero-gradient-text {
        font-size: 38px;
        letter-spacing: -1px;
    }
    header#main-header .navbar-brand img,
    header#main-header .navbar .navbar-brand img {
        max-height: 55px;
    }
    h1.hero-main-title {
        font-size: 28px !important;
        white-space: normal !important;
        margin-right: 0 !important;
    }
    .hero-title-row {
        flex-direction: column;
        gap: 10px;
    }
    .hero-anniversary-inline {
        height: 90px !important;
        width: auto !important;
    }
    .pub-section {
        padding: 60px 0;
    }
    .section-padding {
        padding: 50px 0;
    }
    .pub-faq-header {
        padding: 100px 0 30px;
    }
    .pub-faq-accordion .card-header .btn-link {
        padding: 15px 16px;
        font-size: 15px;
    }
    .pub-faq-accordion .card-body {
        padding: 5px 16px 20px 48px;
    }
    .pub-faq-accordion .card-header .btn-link .num {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
        margin-right: 12px;
    }
    .auth_form_sec {
        padding: 20px 0 !important;
    }
    .stats-ticker-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stats-ticker-value {
        font-size: 26px;
    }
    .stats-ticker-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .hero-btn-group {
        flex-direction: column;
        align-items: center;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .pub-cta {
        padding: 70px 0;
    }
    .pub-cta h2 {
        font-size: 28px;
    }
    .cta-btn-group {
        flex-direction: column;
        align-items: center;
    }
    .pub-section-levels .pub-level-cards {
        gap: 20px;
    }
    .featured-ribbon {
        font-size: 10px;
        top: 12px;
        right: -38px;
    }
    .income-flow {
        min-width: 100%;
        flex-direction: column;
        gap: 5px;
    }
    .income-flow-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 0;
    }
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .social-proof-item {
        padding: 20px 10px;
    }
    .social-proof-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    .social-proof-icon i {
        font-size: 20px;
    }
    .social-proof-item h4 {
        font-size: 16px;
    }
    .social-proof-item p {
        font-size: 13px;
    }
    .pub-section-social-proof {
        padding: 60px 0;
    }
    .pub-feature-card {
        padding: 30px 22px 28px;
        margin-bottom: 16px;
    }
    .htw-step-card {
        padding: 35px 22px;
        margin-bottom: 16px;
    }
    .pub-section-title {
        margin-bottom: 40px;
    }
    .pub-section-title h2 {
        font-size: 28px;
    }
    .pub-level-card {
        padding: 35px 24px;
    }
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    .hero-trust {
        gap: 16px;
    }
    .hero-trust span {
        font-size: 11px;
    }
    .pub-btn-lg {
        padding: 14px 36px !important;
        font-size: 16px !important;
    }
    footer.footer .footer_copy_rights {
        padding: 0;
    }
    /* Payment logos mobile */
    .payment-logos-row { gap: 20px; }
    .payment-logo i { font-size: 26px; }
    .payment-logo-text { font-size: 20px; width: 34px; height: 34px; }
    /* Even Forever mobile */
    .even-timeline { padding-left: 30px; }
    .even-step-marker { left: -30px; }
    .even-step-icon { width: 34px; height: 34px; font-size: 13px; }
    .even-step-content { padding: 18px 20px; }
    .even-step-content h4 { font-size: 16px; }
    .even-step-content p { font-size: 14px; }
    /* IC Diagram mobile */
    .ic-connectors-2 { width: 100%; }
    .ic-row { gap: 8px; flex-wrap: wrap; justify-content: center; }
    .ic-node { width: 70px; padding: 8px 4px 6px; border-radius: 10px; }
    .ic-you { width: 80px; }
    .ic-level2 { width: 65px; }
    .ic-node i { font-size: 14px; }
    .ic-node span { font-size: 11px; }
    .ic-node em { font-size: 8px; }
    .ic-connectors { display: none; }
    .ic-result { flex-direction: column; }
    .ic-result-box { padding: 16px 20px; }
    /* Calculator mobile */
    .calc-card { padding: 24px 20px; }
    .calc-level-btns { flex-direction: column; }
    .calc-results { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .calc-result-value { font-size: 20px; }
    /* Personas mobile */
    .persona-card { margin-bottom: 16px; padding: 30px 22px; }
    /* Testimonials mobile */
    .testimonial-card { margin-bottom: 16px; }
    /* Contact mobile */
    .contact-cta-card { margin-top: 30px; padding: 30px 22px; }
    .contact-info h2 { font-size: 26px; }
}
@media (max-width: 480px) {
    .home_hero_cnt h1,
    .hero-gradient-text {
        font-size: 32px;
    }
    h1.hero-main-title {
        font-size: 24px !important;
    }
    .hero-anniversary-inline {
        height: 120px !important;
    }
    .stats-ticker {
        padding: 25px 0;
    }
    .stats-ticker-item {
        gap: 10px;
    }
    .stats-ticker-label {
        font-size: 11px;
    }
    .social-proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .social-proof-item p {
        font-size: 12px;
    }
    .income-flow-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
        border-radius: 16px;
    }
    .income-flow-label {
        font-size: 15px;
    }
    .income-flow-desc {
        font-size: 13px;
    }
}

/* ============================================
   HOW IT WORKS — Enhanced Steps Row
   ============================================ */
.htw-steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}
.htw-steps-row .htw-step-card {
    flex: 1;
    max-width: 340px;
}
.htw-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
    color: var(--brand-orange);
    font-size: 18px;
    opacity: 0.35;
    margin-top: -30px;
}
@media (max-width: 767px) {
    .htw-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .htw-steps-row .htw-step-card {
        max-width: 100%;
    }
    .htw-step-connector {
        transform: rotate(90deg);
        width: auto;
        margin-top: 0;
        height: 30px;
    }
}

/* HTW Info Box Highlight Variant */
.htw-info-box-highlight {
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
}
.htw-info-box-highlight:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.htw-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.htw-info-icon i {
    font-size: 24px;
    color: var(--brand-orange);
}

/* HTW Mobius Image */
.htw-mobius-img {
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}
.htw-mobius-img:hover {
    transform: scale(1.03);
}

/* HTW Automated Grid */
.htw-auto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.htw-auto-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.htw-auto-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.htw-auto-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.htw-auto-icon i {
    font-size: 22px;
    color: var(--brand-orange);
}
.htw-auto-item h4 {
    font-family: 'Noah', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.htw-auto-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .htw-auto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .htw-auto-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   AUTH PAGES — Full-Page Immersive Layout
   Premium glass-morphism card, animated
   gradient background, floating orbs
   ============================================ */

/* ---------- Auth Keyframe Animations ---------- */

@keyframes authGradientShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 50%; }
    50%  { background-position: 100% 0%; }
    75%  { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes authOrbFloat1 {
    0%   { transform: translate(0px,   0px)   scale(1); }
    25%  { transform: translate(40px, -30px)  scale(1.08); }
    50%  { transform: translate(20px,  50px)  scale(0.94); }
    75%  { transform: translate(-30px, 20px)  scale(1.04); }
    100% { transform: translate(0px,   0px)   scale(1); }
}

@keyframes authOrbFloat2 {
    0%   { transform: translate(0px,   0px)   scale(1); }
    30%  { transform: translate(-50px, 30px)  scale(1.1); }
    60%  { transform: translate(30px,  -40px) scale(0.92); }
    100% { transform: translate(0px,   0px)   scale(1); }
}

@keyframes authOrbFloat3 {
    0%   { transform: translate(0px,  0px)   scale(1); }
    20%  { transform: translate(60px, 20px)  scale(1.06); }
    55%  { transform: translate(-20px, 60px) scale(0.95); }
    80%  { transform: translate(10px, -30px) scale(1.03); }
    100% { transform: translate(0px,  0px)   scale(1); }
}

@keyframes authCardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(48px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes authFormFadeIn {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes authPulseGlow {
    0%, 100% {
        box-shadow:
            0 0 0 0 var(--ds-accent-bg, rgba(212,168,64,0)),
            0 4px 20px var(--ds-accent-bg, rgba(212,168,64,0.25));
    }
    50% {
        box-shadow:
            0 0 0 8px var(--ds-accent-bg, rgba(212,168,64,0.08)),
            0 4px 28px var(--ds-accent-bg, rgba(212,168,64,0.45));
    }
}

@keyframes authShimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

@keyframes authBadgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.04); opacity: 0.9; }
}

@keyframes authParticle {
    0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ---------- Outer Wrapper — becomes the full-page scene ---------- */

.auth-split-layout {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Multi-stop gradient that slowly shifts */
    background: linear-gradient(
        135deg,
        #0a0a1a 0%,
        #0f1628 20%,
        #1a1a2e 40%,
        #0d2347 60%,
        #0f3460 80%,
        #0a0a1a 100%
    );
    background-size: 400% 400%;
    animation: authGradientShift 20s ease infinite;
    padding: 100px 24px 60px;
}

/* ---------- Animated background layer (repurposed brand panel) ---------- */

.auth-brand-panel {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Noise/grain texture overlay for depth */
.auth-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 30%, var(--ds-accent-bg, rgba(212,168,64,0.12)) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(52,152,219,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 50% 10%, rgba(46,204,113,0.06) 0%, transparent 50%);
    animation: authGradientShift 30s ease infinite reverse;
    background-size: 400% 400%;
}

/* Subtle grid-dot pattern */
.auth-brand-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

/* Floating orbs */
.auth-brand-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.auth-brand-orb--1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle at 40% 40%, var(--ds-accent-bg, rgba(212,168,64,0.30)) 0%, var(--ds-accent-bg, rgba(212,168,64,0.10)) 40%, transparent 70%);
    top: -140px;
    left: -100px;
    animation: authOrbFloat1 18s ease-in-out infinite;
}

.auth-brand-orb--2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at 60% 60%, rgba(52,152,219,0.22) 0%, rgba(15,52,96,0.14) 45%, transparent 70%);
    bottom: -120px;
    right: -80px;
    animation: authOrbFloat2 22s ease-in-out infinite;
}

/* Third hidden orb for richness — added via .auth-brand-orbs sibling */
.auth-brand-orbs::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(46,204,113,0.12) 0%, transparent 65%);
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
    animation: authOrbFloat3 26s ease-in-out infinite;
}

/* ---------- Brand content — now overlaid above the glass card ---------- */

.auth-brand-content {
    display: none; /* Hidden — content folded into card header area */
}

/* ---------- Glass-morphism Form Card ---------- */

.auth-form-panel {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;

    /* Frosted glass */
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    box-shadow:
        0 8px 40px rgba(0,0,0,0.45),
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset;

    padding: 48px 48px 40px;
    animation: authCardSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    min-height: 0;
    overflow: visible;
}

/* Subtle top-edge highlight line */
.auth-form-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), var(--ds-accent-bg, rgba(212,168,64,0.30)), rgba(255,255,255,0.22), transparent);
    border-radius: 1px;
}

/* Glow ring beneath card on hover */
.auth-form-panel::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: transparent;
    border: 1px solid var(--ds-accent-bg, rgba(212,168,64,0));
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    pointer-events: none;
    z-index: -1;
}
.auth-form-panel:focus-within::after {
    border-color: var(--ds-accent-bg, rgba(212,168,64,0.18));
    box-shadow: 0 0 60px var(--ds-accent-bg, rgba(212,168,64,0.10));
}

/* Wider signup variant */
.auth-form-panel-wide {
    max-width: 80%;
    padding: 44px 48px 40px;
}

/* ---------- intl-tel-input overrides for auth pages ---------- */
.auth-form-panel .iti {
    width: 100%;
}
.auth-form-panel .iti__flag-container {
    z-index: 2;
}
.auth-form-panel .iti__selected-flag {
    background: rgba(255,255,255,0.08);
    border-radius: 10px 0 0 10px;
    padding: 0 10px;
}
.auth-form-panel .iti--separate-dial-code .iti__selected-flag {
    background: rgba(255,255,255,0.08);
}
.auth-form-panel .iti__country-list {
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    z-index: 10;
}
.auth-form-panel .iti__country-list .iti__country:hover,
.auth-form-panel .iti__country-list .iti__country--highlight {
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
}
.auth-form-panel .iti__country-list .iti__divider {
    border-bottom-color: rgba(255,255,255,0.1);
}
.auth-form-panel .iti__dial-code {
    color: rgba(255,255,255,0.7);
}
.auth-form-panel .iti input[type="tel"] {
    padding-left: 90px;
}

/* ---------- Container inside panel ---------- */

.auth-form-panel .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* ---------- Brand badge — appears above form title ---------- */

.auth-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    border: 1px solid var(--ds-accent-bg, rgba(212,168,64,0.30));
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: authBadgePulse 3s ease-in-out infinite, authFormFadeIn 0.5s ease 0.1s both;
}

.auth-brand-badge i {
    color: var(--brand-orange);
    font-size: 13px;
    animation: authPulseGlow 2.5s ease-in-out infinite;
    border-radius: 50%;
}

/* ---------- Brand features list (shown in header area of card) ---------- */

.auth-brand-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 28px;
    animation: authFormFadeIn 0.5s ease 0.25s both;
}

.auth-brand-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.60);
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 7px 12px;
    white-space: nowrap;
}

.auth-brand-feature i {
    color: var(--brand-orange);
    font-size: 11px;
    flex-shrink: 0;
}

/* ---------- Inner form container ---------- */

.auth-form-panel .auth_form_sec .auth_form_sec_ {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

/* Reset old register_form_div white background inside new auth panel */
.auth-form-panel .register_form_div,
.auth-form-panel .signup_form_div,
.auth-form-panel .register_form_div_inr {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Fix old register_section styling inside new auth panel */
.auth-form-panel .register_section {
    background: transparent !important;
}
.auth-form-panel .register_section input,
.auth-form-panel .register_section .form-control {
    width: 100% !important;
}
.auth-form-panel .register_section label,
.auth-form-panel .register_section .form-group i {
    color: rgba(255,255,255,0.5) !important;
}
.auth-form-panel .register_section .form_title h2,
.auth-form-panel .reg_sub_title {
    color: #fff !important;
}
.auth-form-panel .register_section .form_title h2:after {
    background: var(--ds-accent, #D4A840);
}

/* Checkboxes and radio labels */
.auth-form-panel .activity_label span,
.auth-form-panel .activity_label label,
.auth-form-panel .check_confirm label,
.auth-form-panel .check_confirm .checkbox label {
    color: rgba(255,255,255,0.75) !important;
}

/* Donor name display */
.auth-form-panel #signup_form .donor_name {
    color: var(--ds-accent, #D4A840) !important;
}
.auth-form-panel #signup_form .donor_name span {
    color: rgba(255,255,255,0.7) !important;
}

/* ---------- Form title ---------- */

.auth-form-panel .login-form-title {
    margin-bottom: 28px;
    animation: authFormFadeIn 0.5s ease 0.2s both;
}

.auth-form-panel .login-form-title h5 {
    font-family: 'Noah', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px;
}

.auth-form-panel .login-form-title p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.50) !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

/* ---------- Form groups & labels ---------- */

.auth-form-panel .auth_form_sec .form-group {
    animation: authFormFadeIn 0.45s ease both;
    margin-bottom: 20px;
}

/* Stagger each form-group child */
.auth-form-panel .auth_form_sec .form-group:nth-child(1) { animation-delay: 0.30s; }
.auth-form-panel .auth_form_sec .form-group:nth-child(2) { animation-delay: 0.38s; }
.auth-form-panel .auth_form_sec .form-group:nth-child(3) { animation-delay: 0.46s; }
.auth-form-panel .auth_form_sec .form-group:nth-child(4) { animation-delay: 0.54s; }
.auth-form-panel .auth_form_sec .form-group:nth-child(5) { animation-delay: 0.62s; }

.auth-form-panel .auth_form_sec label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.65) !important;
    margin-bottom: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
}

/* ---------- Input groups & inputs ---------- */

.auth-form-panel .auth_form_sec .input-group {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}

/* Password toggle button */
.auth-form-panel .auth-pass-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 2px;
    z-index: 2;
    transition: color 0.25s ease;
    line-height: 1;
}
.auth-form-panel .auth-pass-toggle:hover {
    color: var(--ds-accent, #D4A840);
}
.auth-form-panel .auth-pass-toggle:focus {
    outline: none;
    color: var(--ds-accent, #D4A840);
}
/* Extra right padding on password input so text doesn't go under the eye icon */
.auth-form-panel .auth_form_sec .input-group .form-control.auth-pass-input {
    padding-right: 42px;
}

.auth-form-panel .auth_form_sec .input-group span {
    height: 50px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.10);
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: rgba(255,255,255,0.40);
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    /* Override old style_loginform.css absolute positioning */
    position: relative !important;
    z-index: auto !important;
    padding: 0 !important;
}

.auth-form-panel .auth_form_sec input.form-control,
.auth-form-panel .auth_form_sec select.form-control {
    height: 50px;
    background: rgba(255,255,255,0.07) !important;
    border: 1.5px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 16px;
    /* Override old style_loginform.css z-index that causes text overlap */
    z-index: auto !important;
}

/* When input follows an icon span */
.auth-form-panel .auth_form_sec .input-group span + input.form-control,
.auth-form-panel .auth_form_sec .input-group span + select.form-control {
    border-left: none !important;
    border-radius: 0 12px 12px 0 !important;
    padding-left: 12px;
}

.auth-form-panel .auth_form_sec input.form-control::placeholder {
    color: rgba(255,255,255,0.22) !important;
}

.auth-form-panel .auth_form_sec input.form-control:focus,
.auth-form-panel .auth_form_sec input.form-control:hover,
.auth-form-panel .auth_form_sec select.form-control:focus {
    background: rgba(255,255,255,0.11) !important;
    border-color: var(--ds-accent-bg, rgba(212,168,64,0.55)) !important;
    box-shadow: 0 0 0 3px var(--ds-accent-bg, rgba(212,168,64,0.12)), 0 0 20px var(--ds-accent-bg, rgba(212,168,64,0.08)) !important;
    outline: none !important;
    color: #fff !important;
    z-index: auto !important;
}

/* Icon glows when sibling input is focused */
.auth-form-panel .auth_form_sec .input-group:focus-within span {
    background: var(--ds-accent-bg, rgba(212,168,64,0.12));
    border-color: var(--ds-accent-bg, rgba(212,168,64,0.45));
    color: var(--brand-orange);
}

/* Select option styling */
.auth-form-panel .auth_form_sec select.form-control option {
    background: #1a1a2e;
    color: #fff;
}

/* ---------- Error labels ---------- */

.auth-form-panel .auth_form_sec label.error {
    font-size: 12px !important;
    color: #ff6b6b !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
    display: block;
    animation: authFormFadeIn 0.2s ease both;
}

/* ---------- reCAPTCHA fit ---------- */

.auth-form-panel .g-recaptcha {
    transform-origin: left center;
    display: inline-block;
}

/* ---------- OR divider ---------- */

.auth-form-panel .division {
    position: relative;
    text-align: center;
    margin: 20px 0;
    animation: authFormFadeIn 0.45s ease 0.55s both;
}

.auth-form-panel .division::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.auth-form-panel .division span {
    background: transparent;
    padding: 0 16px;
    color: rgba(255,255,255,0.30);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ---------- Forgot password ---------- */

.auth-form-panel .auth_form_sec .forgot-pass {
    font-size: 13px !important;
    color: var(--ds-accent-bg, rgba(212,168,64,0.85)) !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    text-decoration: none !important;
    float: right;
    padding: 0 !important;
    line-height: inherit !important;
    transition: color 0.2s ease;
}

.auth-form-panel .auth_form_sec .forgot-pass:hover {
    color: var(--brand-orange) !important;
    text-decoration: underline !important;
}

/* ---------- Submit / primary buttons ---------- */

.auth-form-panel .btn-sec {
    animation: authFormFadeIn 0.45s ease 0.60s both;
}

.auth-form-panel .auth_form_sec .btn-sec .btn,
.auth-form-panel .auth_form_sec .btn-sec .login_submit,
.auth-form-panel .login_submit,
.auth-form-panel .join-submit {
    height: 52px !important;
    width: 100%;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    border: none !important;

    /* Gradient with shimmer layer */
    background: linear-gradient(
        135deg,
        var(--brand-orange) 0%,
        #e8551a 40%,
        var(--brand-orange) 60%,
        #f8813a 100%
    ) !important;
    background-size: 200% auto !important;
    color: #fff !important;

    box-shadow:
        0 4px 20px var(--ds-accent-bg, rgba(212,168,64,0.35)),
        0 1px 0 rgba(255,255,255,0.15) inset !important;

    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: authPulseGlow 3s ease-in-out infinite;
}

/* Shimmer sweep on hover */
.auth-form-panel .auth_form_sec .btn-sec .btn::before,
.auth-form-panel .auth_form_sec .btn-sec .login_submit::before,
.auth-form-panel .login_submit::before,
.auth-form-panel .join-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255,255,255,0.18) 50%,
        transparent 80%
    );
    background-size: 200% auto;
    animation: authShimmer 3s linear infinite;
    pointer-events: none;
}

.auth-form-panel .auth_form_sec .btn-sec .btn:hover,
.auth-form-panel .auth_form_sec .btn-sec .login_submit:hover,
.auth-form-panel .login_submit:hover,
.auth-form-panel .join-submit:hover {
    background-position: right center !important;
    box-shadow:
        0 8px 30px var(--ds-accent-bg, rgba(212,168,64,0.50)),
        0 1px 0 rgba(255,255,255,0.20) inset !important;
    transform: translateY(-2px) !important;
}

/* Loading state */
.auth-form-panel .login_submit.loading,
.auth-form-panel .join-submit.loading {
    pointer-events: none;
    opacity: 0.78;
}

/* ---------- Bottom links below form ---------- */

.auth-form-panel .btn-sec p {
    font-size: 14px;
    color: rgba(255,255,255,0.40);
    margin-top: 8px;
    margin-bottom: 4px;
}

.auth-form-panel .btn-sec p a,
.auth-form-panel .btn-sec a {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-form-panel .btn-sec p a:hover,
.auth-form-panel .btn-sec a:hover {
    color: var(--brand-orange) !important;
    text-decoration: underline !important;
}

/* ---------- Social proof stats bar (below card) ---------- */

.auth-split-layout .auth-social-proof {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    color: rgba(255,255,255,0.30);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    animation: authFormFadeIn 0.6s ease 0.9s both;
    z-index: 10;
}

.auth-split-layout .auth-social-proof span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-split-layout .auth-social-proof span strong {
    color: rgba(255,255,255,0.55);
    font-weight: 700;
}

.auth-split-layout .auth-social-proof .divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.12);
}

/* ---------- Registration sub-titles ---------- */

.auth-form-panel .reg_sub_title {
    font-family: 'Noah', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.55) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0 10px 14px;
    border-left: 3px solid var(--brand-orange);
    margin-top: 24px;
    margin-bottom: 16px;
}

/* ---------- Activity label radios/checkboxes ---------- */

.auth-form-panel .activity_label {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 16px;
}

.auth-form-panel .activity_label span {
    font-weight: 600;
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 8px;
}

.auth-form-panel .activity_label input[type="radio"],
.auth-form-panel .activity_label input[type="checkbox"] {
    accent-color: var(--brand-orange);
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.auth-form-panel .activity_label label {
    color: rgba(255,255,255,0.70) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer;
    vertical-align: middle;
}

/* ---------- Override auth page main wrapper ---------- */

.auth-split-layout .auth_page_main {
    background: none !important;
}

.auth_page_main:has(.auth-split-layout) {
    padding: 0 !important;
}

.auth_page .footer {
    background: rgba(10,10,26,0.80) !important;
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin: 0;
    position: relative;
    z-index: 10;
}
.auth_page .footer .footer_copy_rights_txt p,
.auth_page .footer .footer_link_3 li a {
    color: rgba(255,255,255,0.40) !important;
}
.auth_page .footer .footer_link_3 li a:hover {
    color: var(--brand-orange) !important;
}

/* ---------- Nav on auth pages ---------- */

.auth_page header .collapse.navbar-collapse {
    display: flex !important;
}

.auth_page header {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    padding: 12px 0 !important;
}

.auth_page header.header-scrolled {
    background: black !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3) !important;
    padding: 8px 0 !important;
}

.auth_page header .nav-link {
    color: rgba(255,255,255,0.70) !important;
    font-size: 15px !important;
    padding: 10px 18px !important;
    transition: color 0.2s ease;
}

.auth_page header .nav-link:hover {
    color: #fff !important;
}

/* Show white logo, hide dark logo on auth pages */
.auth_page header .navbar-brand .logo-white,
.auth_page header .navbar-brand .logo-text-white {
    display: block !important;
}
.auth_page header .navbar-brand .logo-dark,
.auth_page header .navbar-brand .logo-text-dark {
    display: none !important;
}
.auth_page header.header-scrolled .navbar-brand .logo-white,
.auth_page header.header-scrolled .navbar-brand .logo-text-white {
    display: block !important;
}
.auth_page header.header-scrolled .navbar-brand .logo-dark,
.auth_page header.header-scrolled .navbar-brand .logo-text-dark {
    display: none !important;
}
.auth_page header .navbar-brand img {
    height: 40px;
    width: auto;
}

/* Hamburger icon stays white */
.auth_page header .mob-nav__icon-line {
    background: rgba(255,255,255,0.8) !important;
}

/* ---------- Payment form sections inside card — stay readable ---------- */

.auth-form-panel .form_5050cf,
.auth-form-panel .step-three-creditcard {
    color: rgba(255,255,255,0.80);
}

.auth-form-panel .form_5050cf .form-control,
.auth-form-panel .step-three-creditcard .form-control {
    background: rgba(255,255,255,0.09) !important;
    border: 1.5px solid rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

.auth-form-panel .form_5050cf .form-control:focus,
.auth-form-panel .step-three-creditcard .form-control:focus {
    background: rgba(255,255,255,0.13) !important;
    border-color: var(--ds-accent-bg, rgba(212,168,64,0.55)) !important;
    box-shadow: 0 0 0 3px var(--ds-accent-bg, rgba(212,168,64,0.12)) !important;
}

.auth-form-panel .form_5050cf label,
.auth-form-panel .step-three-creditcard label {
    color: rgba(255,255,255,0.55) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form-panel .payment-form-head .fm_title {
    color: #fff !important;
}

.auth-form-panel .token-order-label,
.auth-form-panel .token-order-amount {
    color: rgba(255,255,255,0.70);
}

/* ---------- Alert messages inside card ---------- */

.auth-form-panel .alert-danger {
    background: rgba(231,76,60,0.15) !important;
    border: 1px solid rgba(231,76,60,0.30) !important;
    color: #ff8b8b !important;
    border-radius: 10px !important;
}

.auth-form-panel .alert-success {
    background: rgba(46,204,113,0.12) !important;
    border: 1px solid rgba(46,204,113,0.28) !important;
    color: #6dffa3 !important;
    border-radius: 10px !important;
}

/* ---------- Responsive: tablet (≤ 991px) ---------- */

@media (max-width: 991px) {
    .auth-split-layout {
        padding: 90px 20px 80px;
        align-items: flex-start;
        min-height: 100vh;
    }

    .auth-form-panel {
        max-width: 100%;
        padding: 36px 32px 32px;
    }

    .auth-form-panel-wide {
        max-width: 100%;
        padding: 32px 28px 28px;
    }

    .auth_page header .collapse.navbar-collapse {
        display: none !important;
        background: rgba(10,10,26,0.95);
        backdrop-filter: blur(20px);
        padding: 16px 20px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .auth_page header .collapse.navbar-collapse.show {
        display: block !important;
    }

    .auth_page header .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .auth-brand-orb--1 {
        width: 380px;
        height: 380px;
    }

    .auth-brand-orb--2 {
        width: 300px;
        height: 300px;
    }
}

/* ---------- Responsive: mobile (≤ 767px) ---------- */

@media (max-width: 767px) {
    .auth-split-layout {
        padding: 80px 16px 70px;
    }

    .auth-form-panel {
        padding: 28px 22px 26px;
        border-radius: 18px;
    }

    .auth-form-panel-wide {
        padding: 24px 18px 22px;
    }

    .auth-form-panel .login-form-title h5 {
        font-size: 26px !important;
    }

    .auth-form-panel .login-form-title p {
        font-size: 14px !important;
    }

    .auth-form-panel .auth_form_sec input.form-control,
    .auth-form-panel .auth_form_sec select.form-control {
        height: 46px;
        font-size: 14px;
    }

    .auth-form-panel .auth_form_sec .input-group span {
        height: 46px;
        width: 42px;
    }

    .auth-form-panel .auth_form_sec .btn-sec .btn,
    .auth-form-panel .auth_form_sec .btn-sec .login_submit,
    .auth-form-panel .login_submit,
    .auth-form-panel .join-submit {
        height: 48px !important;
        font-size: 15px !important;
    }

    .auth-brand-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .auth-brand-features {
        gap: 6px 14px;
    }

    .auth-brand-feature {
        font-size: 12px;
    }

    .auth-split-layout .auth-social-proof {
        gap: 16px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
        bottom: 16px;
    }

    /* Stack registration form columns on mobile */
    .auth-form-panel-wide .row.row_column {
        flex-direction: column;
    }

    .auth-form-panel-wide .row.row_column > [class*="col-"] {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .auth-brand-orb--1 {
        width: 260px;
        height: 260px;
        filter: blur(60px);
    }

    .auth-brand-orb--2 {
        width: 200px;
        height: 200px;
        filter: blur(55px);
    }
}

/* ============================================================
   SIGNUP FORM — ACTIVITY SECTION REDESIGN
   Overrides style_loginform.css legacy rules for the activity
   section so it matches the dark glass design language.
   ============================================================ */

/* --- Section heading: "LICENSING FEE:" / "ROYALTY LEVELS:" ---
   The old loginform rule sets font-size:20px; font-family:Noah.
   Reset to a compact uppercase label, matching reg_sub_title. */
.auth-form-panel .activity_label > span:first-child,
.auth-form-panel .activity_label_multi > span:first-child {
    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.45) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.1px !important;
    display: block !important;
    margin-bottom: 12px !important;
}

/* --- Outer card container for each activity block --- */
.auth-form-panel .activity_label.choose_fee,
.auth-form-panel .activity_label.activity_label_multi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 18px 20px 16px;
    margin-bottom: 14px;
}

/* --- Custom radio button: hide native, draw pill card --- */
.auth-form-panel .activity_label.choose_fee input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* The visible radio pill is built as a label peer.
   We target the <label> that immediately follows the <input>. */
.auth-form-panel .activity_label.choose_fee label[for="qf_09f99b"],
.auth-form-panel .activity_label.choose_fee label[for="qf_09f99a"] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1.5px solid rgba(255,255,255,0.10) !important;
    border-radius: 10px !important;
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
    position: relative !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
}

/* Orange dot pseudo-element sits left of the price text */
.auth-form-panel .activity_label.choose_fee label[for="qf_09f99b"]::before,
.auth-form-panel .activity_label.choose_fee label[for="qf_09f99a"]::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.20);
    background: transparent;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/* Checked state: fill the dot, highlight the pill */
.auth-form-panel .activity_label.choose_fee input[type="radio"]:checked + label[for="qf_09f99b"],
.auth-form-panel .activity_label.choose_fee input[type="radio"]:checked + label[for="qf_09f99a"],
.auth-form-panel .activity_label.choose_fee input[type="radio"]:checked ~ label {
    background: var(--ds-accent-bg, rgba(212,168,64,0.12)) !important;
    border-color: var(--ds-accent-bg, rgba(212,168,64,0.45)) !important;
    color: #fff !important;
}

.auth-form-panel .activity_label.choose_fee input[type="radio"]:checked + label::before,
.auth-form-panel .activity_label.choose_fee input[type="radio"]:checked ~ label::before {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 3px var(--ds-accent-bg, rgba(212,168,64,0.18)) !important;
}

/* Hover state on radio label */
.auth-form-panel .activity_label.choose_fee label:hover {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,255,255,0.18) !important;
    color: #fff !important;
}

/* --- Royalty levels: custom checkbox cards ---
   Each fieldset wraps one checkbox+label pair.
   The old rule sets fieldset width:15% inline-block — override. */
.auth-form-panel .activity_label_custom fieldset {
    display: block !important;
    width: auto !important;
    vertical-align: unset !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Three-column grid for the three level cards */
.auth-form-panel #activity_label_custom {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    margin-top: 0 !important;
}

/* Hide the last error div from the grid flow */
.auth-form-panel #activity_label_custom .donation-level-status {
    grid-column: 1 / -1;
}

/* Hide native checkbox */
.auth-form-panel .activity_label_custom fieldset input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Custom checkbox card */
.auth-form-panel .activity_label_custom fieldset label {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 10px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1.5px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px !important;
    color: rgba(255,255,255,0.60) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
    text-align: center !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    min-height: 72px !important;
    position: relative !important;
}

/* Small checkmark indicator in top-right corner, hidden by default */
.auth-form-panel .activity_label_custom fieldset label::after {
    content: '\f058'; /* fa-check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    color: transparent;
    position: absolute;
    top: 8px;
    right: 10px;
    transition: color 0.2s ease;
}

/* Checked: turn card orange-tinted, show check icon */
.auth-form-panel .activity_label_custom fieldset input[type="checkbox"]:checked + label {
    background: var(--ds-accent-bg, rgba(212,168,64,0.14)) !important;
    border-color: var(--ds-accent-bg, rgba(212,168,64,0.50)) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px var(--ds-accent-bg, rgba(212,168,64,0.18)) !important;
}

.auth-form-panel .activity_label_custom fieldset input[type="checkbox"]:checked + label::after {
    color: var(--brand-orange) !important;
}

/* Hover on checkbox card */
.auth-form-panel .activity_label_custom fieldset label:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.20) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

/* --- Disclaimer text below royalty levels --- */
.auth-form-panel .activity_label_multi .span_last {
    display: block !important;
    font-size: 11.5px !important;
    font-family: inherit !important;
    color: rgba(255,255,255,0.35) !important;
    line-height: 1.55 !important;
    margin-top: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
}

/* --- Registration column gutters — a bit more breathing room --- */
.auth-form-panel-wide .auth_form_sec.auth_reg_form_sec .col-md-4,
.auth-form-panel-wide .auth_form_sec.auth_reg_form_sec .col-md-6 {
    padding: 0 7px !important;
}

.auth-form-panel-wide .auth_form_sec.auth_reg_form_sec .row_column {
    padding: 0 0 !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
}

/* --- btn-sec spacing above the Join button --- */
.auth-form-panel .btn-sec {
    margin-top: 6px;
}

/* ============================================================
   SIGNUP FORM — RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* Tablet: keep 2-column grid for royalty cards */
@media (max-width: 767px) {
    .auth-form-panel-wide {
        padding: 24px 20px 22px;
    }

    .auth-brand-features {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .auth-form-panel #activity_label_custom {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .auth-form-panel .activity_label_custom fieldset label {
        font-size: 13px !important;
        min-height: 60px !important;
        padding: 10px 6px !important;
    }
}

/* Very small screens: stack royalty cards 1-column */
@media (max-width: 400px) {
    .auth-brand-features {
        grid-template-columns: 1fr;
    }

    .auth-form-panel #activity_label_custom {
        grid-template-columns: 1fr !important;
    }
}

/* ---------- Reduced-motion override ---------- */

@media (prefers-reduced-motion: reduce) {
    .auth-split-layout,
    .auth-brand-orb--1,
    .auth-brand-orb--2,
    .auth-brand-orbs::after,
    .auth-brand-panel::before,
    .auth-brand-badge,
    .auth-form-panel {
        animation: none !important;
    }
    .auth-form-panel {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   LEGAL PAGES (terms, privacy, guarantee, disclaimer)
   ============================================================ */

.legal-hero {
    position: relative;
    background: black;
    padding: 140px 0 70px;
    text-align: center;
    overflow: hidden;
}

.legal-hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.legal-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.legal-hero-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--brand-orange);
    top: -100px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.legal-hero-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--info-blue);
    bottom: -80px;
    left: -80px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.12));
    color: var(--brand-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid var(--ds-accent-bg, rgba(212,168,64,0.2));
}

.legal-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.legal-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 0 80px;
    background: var(--bg-light);
    position: relative;
}
.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(26,26,46,0.03), transparent);
    pointer-events: none;
}

.legal-content-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}
.legal-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--tier-primary-light, #ff9a56), var(--brand-orange));
    border-radius: 0 0 4px 4px;
}

.legal-revision {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.06));
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--ds-accent-bg, rgba(212,168,64,0.12));
    margin-bottom: 32px;
}

.legal-content-card h3 {
    display: none;
}

/* ---------- Legal Two-Column Layout with Sticky Sidebar TOC ---------- */
.legal-layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.legal-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    /* custom thin scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--ds-accent-bg, rgba(212,168,64,0.2)) transparent;
}
.legal-sidebar::-webkit-scrollbar { width: 4px; }
.legal-sidebar::-webkit-scrollbar-track { background: transparent; }
.legal-sidebar::-webkit-scrollbar-thumb { background: var(--ds-accent-bg, rgba(212,168,64,0.2)); border-radius: 4px; }
.legal-main {
    flex: 1;
    min-width: 0;
}
/* Card adjusts to fill the main area */
.legal-layout .legal-content-card {
    max-width: 100%;
}
/* Widen the content container for sidebar layout */
.legal_page .legal-content > .container {
    max-width: 1200px;
}

/* Sidebar TOC card */
.legal-toc {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    position: relative;
}
.legal-toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-orange), #ff9a56);
    border-radius: 2px 0 0 2px;
}
.legal-toc-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}
.legal-toc-header i {
    color: var(--brand-orange);
    font-size: 13px;
}
.legal-toc-list {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
    margin: 0;
}
.legal-toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 2px;
    display: block;
}
.legal-toc-list li a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text-body);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
    line-height: 1.4;
    background: transparent !important;
    background-size: 0 !important;
    border-left: 2px solid transparent;
}
.legal-toc-list li a::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-orange);
    background: var(--ds-accent-bg, rgba(212,168,64,0.08));
    min-width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: static;
    width: auto;
}
.legal-toc-list li a:hover {
    background: var(--ds-accent-bg, rgba(212,168,64,0.04)) !important;
    color: var(--brand-orange);
}
.legal-toc-list li.active a {
    background: var(--ds-accent-bg, rgba(212,168,64,0.06)) !important;
    color: var(--brand-orange);
    font-weight: 600;
    border-left-color: var(--brand-orange);
}
.legal-toc-list li.active a::before {
    background: var(--brand-orange);
    color: #fff;
}

/* Mobile TOC toggle button */
.legal-toc-mobile-toggle {
    display: none;
    position: sticky;
    top: 70px;
    z-index: 100;
    margin: 0 auto 16px;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    color: var(--dark-navy);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.legal-toc-mobile-toggle i {
    color: var(--brand-orange);
    margin-right: 6px;
}
.legal-toc-mobile-toggle.active {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
}
.legal-toc-mobile-toggle.active i {
    color: #fff;
}

@media (max-width: 991px) {
    .legal-layout {
        flex-direction: column;
    }
    .legal-sidebar {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 50vh;
        z-index: 99;
        background: #fff;
        border-radius: 0;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: 0;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    .legal-sidebar.mobile-open {
        transform: translateY(0);
    }
    .legal-sidebar .legal-toc {
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 20px 24px;
    }
    .legal-sidebar .legal-toc::before {
        display: none;
    }
    .legal-toc-mobile-toggle {
        display: inline-flex;
        align-items: center;
    }
    .legal_page .legal-content > .container {
        max-width: 100%;
    }
}

/* Section heading paragraphs (bold-only paragraphs act as section titles) */
.legal-content-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
    word-wrap: break-word;
}

/* Bold text that starts a paragraph = section heading style */
.legal-content-card p > b:first-child,
.legal-content-card p > strong:first-child {
    color: var(--dark-navy);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: inline;
}

/* Section-title paragraphs with IDs (set by JS) get extra visual weight */
.legal-content-card > p[id^="section-"] {
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
    scroll-margin-top: 100px;
}
.legal-content-card > p[id="section-0"] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.legal-content-card > p[id^="section-"] > b:first-child,
.legal-content-card > p[id^="section-"] > strong:first-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-navy);
    position: relative;
}

/* Pure section-title paragraphs (only bold, no other text) — block display */
.legal-content-card > p:not(:first-of-type) > b:only-child,
.legal-content-card > p:not(:first-of-type) > strong:only-child {
    display: block;
    font-size: 19px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-top: 20px;
    padding-top: 28px;
    padding-bottom: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.legal-content-card > p:not(:first-of-type) > b:only-child::before,
.legal-content-card > p:not(:first-of-type) > strong:only-child::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), #ff9a56);
    border-radius: 2px;
}

.legal-content-card p b,
.legal-content-card p strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Numbered items (1. 2. 3. etc.) */
.legal-content-card p:not(:first-of-type) {
    position: relative;
}

/* Links */
.legal-content-card a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
    background: linear-gradient(to right, var(--brand-orange), var(--brand-orange)) no-repeat left bottom;
    background-size: 0% 2px;
    padding-bottom: 1px;
}
.legal-content-card a:hover {
    color: var(--brand-orange-dark);
    background-size: 100% 2px;
    text-decoration: none;
}


@media (max-width: 767px) {
    .legal-hero {
        padding: 120px 0 50px;
    }
    .legal-hero h1 {
        font-size: 28px;
    }
    .legal-hero p {
        font-size: 15px;
    }
    .legal-content-card {
        padding: 32px 24px;
        border-radius: var(--radius-lg);
    }
    .legal-content-card::before {
        left: 20px;
        right: 20px;
    }
    .legal-content-card > p:not(:first-of-type) > b:only-child,
    .legal-content-card > p:not(:first-of-type) > strong:only-child {
        font-size: 17px;
    }
}


/* ============================================
   Shared Public Page Hero
   ============================================ */
.pub-page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pub-page-hero .container { position: relative; z-index: 2; }
.pub-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}
.pub-hero-orb--1 {
    width: 400px; height: 400px;
    background: var(--brand-orange);
    top: -100px; right: -80px;
    animation: orbFloat1 20s ease-in-out infinite;
}
.pub-hero-orb--2 {
    width: 300px; height: 300px;
    background: var(--info-blue);
    bottom: -80px; left: -60px;
    animation: orbFloat2 25s ease-in-out infinite;
}
.pub-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    color: var(--brand-orange);
    font-size: 28px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}
.pub-page-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease 0.1s both;
}
.pub-page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* ============================================
   Contact Page
   ============================================ */
.pub-contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-contact-info-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease both;
}
.pub-contact-info-card:nth-child(2) { animation-delay: 0.1s; }
.pub-contact-info-card:nth-child(3) { animation-delay: 0.2s; }
.pub-contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.pub-contact-info-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 16px;
}
.pub-contact-info-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.pub-contact-info-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}
.pub-contact-faq-link {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.06));
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 14px;
    animation: fadeInUp 0.5s ease 0.3s both;
}
.pub-contact-faq-link i {
    color: var(--brand-orange);
    margin-right: 8px;
}
.pub-contact-faq-link a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}
.pub-contact-faq-link a:hover { text-decoration: underline; }

.pub-contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease 0.15s both;
}
.pub-contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.pub-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pub-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8ecf1;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    background: #fff;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.pub-form-input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px var(--ds-accent-bg, rgba(212,168,64,0.1));
}
.pub-form-input::placeholder { color: #bbb; }
textarea.pub-form-input { resize: vertical; min-height: 120px; }
select.pub-form-input { cursor: pointer; }

.pub-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}
.pub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--ds-accent-bg, rgba(212,168,64,0.35));
    color: #fff;
    text-decoration: none;
}
.pub-btn i { margin-right: 8px; }
.pub-btn-full { width: 100%; }

/* ============================================
   About Page
   ============================================ */
.pub-about-mission {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-about-mission-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease both;
}
.pub-about-mission-card h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.pub-about-mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 12px;
}
.pub-about-feature {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.pub-about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.pub-about-feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.pub-about-feature span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Stats strip */
.pub-about-stats {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    padding: 60px 0;
}
.pub-about-stat {
    animation: fadeInUp 0.6s ease both;
}
.pub-about-stat:nth-child(2) { animation-delay: 0.1s; }
.pub-about-stat:nth-child(3) { animation-delay: 0.2s; }
.pub-about-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 4px;
}
.pub-about-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values */
.pub-about-values {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-about-values h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
}
.pub-about-value-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}
.pub-about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pub-about-value-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.pub-about-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pub-about-value-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Testimonials Page
   ============================================ */
.pub-testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease both;
}
.pub-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pub-testimonial-quote-icon {
    color: var(--brand-orange);
    font-size: 28px;
    margin-bottom: 16px;
    opacity: 0.6;
}
.pub-testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    flex: 1;
    margin-bottom: 0;
}
.pub-testimonial-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}
.pub-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pub-testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.pub-testimonial-info strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}
.pub-testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}
.pub-testimonial-stars {
    margin-top: 14px;
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
}

/* ============================================
   Responsive: Contact / About / Testimonials
   ============================================ */
@media (max-width: 768px) {
    .pub-page-hero {
        padding: 120px 0 50px;
    }
    .pub-page-hero h1 {
        font-size: 28px;
    }
    .pub-page-hero p {
        font-size: 15px;
    }
    .pub-contact-section,
    .pub-about-mission,
    .pub-about-values,
    .pub-testimonials-section {
        padding: 50px 0;
    }
    .pub-contact-form-card {
        padding: 28px 20px;
    }
    .pub-about-mission-card {
        padding: 28px 20px;
    }
    .pub-about-mission-card h2,
    .pub-about-values h2 {
        font-size: 24px;
    }
    .pub-about-stats {
        padding: 40px 0;
    }
    .pub-about-stat-number {
        font-size: 28px;
    }
}


/* ============================================
   Sitemap Page
   ============================================ */
.pub-sitemap-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-sitemap-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease both;
}
.pub-sitemap-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.pub-sitemap-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.pub-sitemap-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.pub-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pub-sitemap-list li {
    margin-bottom: 10px;
}
.pub-sitemap-list li a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 6px 0;
}
.pub-sitemap-list li a i {
    width: 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
}
.pub-sitemap-list li a:hover {
    color: var(--brand-orange);
    padding-left: 6px;
}
.pub-sitemap-list li a:hover i {
    color: var(--brand-orange);
}

/* ============================================
   Compensation Page
   ============================================ */
.pub-comp-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-comp-heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
}
.pub-comp-subtext {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 8px auto 0;
}

/* 50/50 Split Visual */
.pub-comp-split-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease both;
}
.pub-comp-split-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.pub-comp-split-half {
    flex: 1;
    padding: 28px;
    text-align: center;
    border-radius: var(--radius-md);
}
.pub-comp-split-you {
    background: var(--ds-accent-bg, rgba(212,168,64,0.06));
}
.pub-comp-split-upline {
    background: rgba(52,152,219,0.06);
}
.pub-comp-split-pct {
    display: block;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 4px;
}
.pub-comp-split-you .pub-comp-split-pct { color: var(--brand-orange); }
.pub-comp-split-upline .pub-comp-split-pct { color: var(--info-blue); }
.pub-comp-split-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pub-comp-split-half p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}
.pub-comp-split-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 20px;
}

/* Level Cards */
.pub-comp-levels {
    padding: 80px 0;
    background: #fff;
}
.pub-comp-level-card {
    background: #fff;
    border: 2px solid #e8ecf1;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    animation: fadeInUp 0.6s ease both;
}
.pub-comp-level-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-orange);
}
.pub-comp-level-featured {
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-md);
}
.pub-comp-level-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pub-comp-level-badge {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.pub-comp-level-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.pub-comp-level-detail {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pub-comp-level-card hr {
    border-color: #eee;
    margin: 16px 0;
}
.pub-comp-level-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.pub-comp-level-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pub-comp-level-features li i {
    color: var(--success-green);
    font-size: 13px;
}

/* Income Center Visual */
.pub-comp-ic-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease both;
}
.pub-comp-ic-visual {
    text-align: center;
    margin-bottom: 32px;
}
.pub-comp-ic-you {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
}
.pub-comp-ic-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pub-comp-ic-node {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    min-width: 120px;
}
.pub-comp-ic-node i {
    display: block;
    font-size: 20px;
    color: var(--info-blue);
    margin-bottom: 6px;
}
.pub-comp-ic-node span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.pub-comp-ic-node small {
    display: block;
    font-size: 11px;
    color: var(--brand-orange);
    font-weight: 600;
}
.pub-comp-ic-node--sm {
    min-width: 70px;
    padding: 12px 14px;
}
.pub-comp-ic-node--sm i {
    font-size: 16px;
    color: var(--text-muted);
}
.pub-comp-ic-info {
    border-top: 1px solid #eee;
    padding-top: 24px;
}
.pub-comp-ic-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.pub-comp-ic-info-item > i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.pub-comp-ic-info-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.pub-comp-ic-info-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   Support Page
   ============================================ */
.pub-support-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-support-topic-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    height: 100%;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease both;
}
.pub-support-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.pub-support-topic-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.pub-support-topic-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pub-support-topic-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.pub-support-topic-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-orange);
}
.pub-support-topic-link i { margin-left: 4px; transition: var(--transition); }
.pub-support-topic-card:hover .pub-support-topic-link i { margin-left: 8px; }

.pub-support-issue-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease both;
}
.pub-support-issue-card:hover {
    box-shadow: var(--shadow-md);
}
.pub-support-issue-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.pub-support-issue-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.pub-support-issue-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}
.pub-support-issue-body a {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-orange);
    text-decoration: none;
}
.pub-support-issue-body a:hover { text-decoration: underline; }

.pub-support-contact {
    padding: 0 0 80px;
    background: var(--bg-light);
}
.pub-support-contact-card {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.pub-support-contact-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pub-support-contact-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
}

/* ============================================
   Events Page
   ============================================ */
.pub-events-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-events-empty {
    text-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease both;
}
.pub-events-empty-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}
.pub-events-empty h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pub-events-empty p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}
.pub-event-type-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}
.pub-event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pub-event-type-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.pub-event-type-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pub-event-type-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Blog Page
   ============================================ */
.pub-blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}
.pub-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pub-blog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.pub-blog-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.pub-blog-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-orange);
    background: var(--brand-orange-light);
    padding: 4px 12px;
    border-radius: 20px;
}
.pub-blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.pub-blog-card-date i { margin-right: 4px; }
.pub-blog-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.pub-blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   Responsive: New Pages
   ============================================ */
@media (max-width: 768px) {
    .pub-sitemap-section,
    .pub-comp-section,
    .pub-comp-levels,
    .pub-support-section,
    .pub-events-section,
    .pub-blog-section {
        padding: 50px 0;
    }
    .pub-comp-heading {
        font-size: 24px;
    }
    .pub-comp-split-row {
        flex-direction: column;
    }
    .pub-comp-split-divider {
        padding: 12px 0;
        transform: rotate(90deg);
    }
    .pub-comp-split-card {
        padding: 24px;
    }
    .pub-comp-level-amount {
        font-size: 32px;
    }
    .pub-comp-ic-card {
        padding: 24px;
    }
    .pub-comp-ic-node {
        min-width: 100px;
    }
    .pub-support-issue-card {
        flex-direction: column;
        gap: 12px;
    }
    .pub-support-contact-card {
        padding: 28px;
        text-align: center;
    }
    .pub-support-contact-card .text-lg-right {
        text-align: center !important;
    }
    .pub-events-empty {
        padding: 40px 24px;
    }
}


/* ============================================
   Donate Page — Step Cards
   ============================================ */
.pub-donate-step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}
.pub-donate-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pub-donate-step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}
.pub-donate-step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pub-donate-step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}


/* ============================================
   Challenges Page
   ============================================ */
.pub-challenges-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-challenge-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}
.pub-challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pub-challenge-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.pub-challenge-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.pub-challenge-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}
.pub-challenge-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.pub-challenge-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 16px;
}
.pub-challenge-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}
.pub-challenge-meta div {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pub-challenge-meta div i {
    width: 16px;
    text-align: center;
    color: var(--brand-orange);
    font-size: 12px;
}
.pub-challenge-meta div strong {
    color: var(--text-dark);
}

/* ============================================
   Success Stories Page
   ============================================ */
.pub-stories-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.pub-story-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease both;
}
.pub-story-card:hover {
    box-shadow: var(--shadow-md);
}
.pub-story-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}
.pub-story-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pub-story-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pub-story-meta span {
    font-size: 13px;
    color: var(--text-muted);
}
.pub-story-meta span i {
    width: 16px;
    text-align: center;
    margin-right: 6px;
    color: var(--brand-orange);
}
.pub-story-headline {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.pub-story-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}
.pub-story-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ds-accent-bg, rgba(212,168,64,0.08));
    color: var(--brand-orange);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}
.pub-story-highlight i {
    font-size: 13px;
}

/* ============================================
   Discounts Page
   ============================================ */
.pub-discounts-featured {
    padding: 80px 0 40px;
    background: var(--bg-light);
}
.pub-discount-featured-card {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}
.pub-discount-featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}
.pub-discount-featured-tag {
    display: inline-block;
    background: var(--ds-accent-bg, rgba(212,168,64,0.2));
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pub-discount-featured-card h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.pub-discount-featured-card > .row > div > p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.pub-discount-featured-perks {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pub-discount-featured-perks li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pub-discount-featured-perks li i {
    color: var(--success-green);
}
.pub-discount-featured-cta {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 28px;
}
.pub-discount-featured-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.pub-discount-featured-save {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 4px;
}
.pub-discount-featured-sublabel {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.pub-discounts-section {
    padding: 40px 0 80px;
    background: var(--bg-light);
}
.pub-discount-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    animation: fadeInUp 0.6s ease both;
}
.pub-discount-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pub-discount-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.pub-discount-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.pub-discount-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pub-discount-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.pub-discount-card-detail {
    background: var(--bg-light);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}
.pub-discount-card-detail strong {
    color: var(--text-dark);
}

/* ============================================
   Responsive: Challenges / Stories / Discounts
   ============================================ */
@media (max-width: 768px) {
    .pub-challenges-section,
    .pub-stories-section,
    .pub-discounts-section {
        padding: 50px 0;
    }
    .pub-discounts-featured {
        padding: 50px 0 20px;
    }
    .pub-discount-featured-card {
        padding: 28px;
    }
    .pub-discount-featured-card h2 {
        font-size: 22px;
    }
    .pub-discount-featured-ribbon {
        display: none;
    }
    .pub-story-card {
        padding: 28px;
    }
    .pub-story-headline {
        font-size: 18px;
    }
    .pub-story-avatar {
        width: 64px; height: 64px;
        font-size: 22px;
    }
}

/* ============================================
   Referral Welcome Bar
   ============================================ */
.referral-welcome-bar {
    background: black;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    animation: rwbSlideDown 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
@keyframes rwbSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.rwb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.rwb-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
}
.rwb-text i {
    color: var(--brand-orange);
    font-size: 16px;
}
.rwb-text strong {
    color: #fff;
}
.rwb-key {
    background: var(--ds-accent-bg, rgba(212,168,64,0.2));
    color: var(--brand-orange);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.rwb-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff !important;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.rwb-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--ds-accent-bg, rgba(212,168,64,0.4));
    text-decoration: none;
    color: #fff !important;
}
.rwb-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    transition: color 0.2s ease;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.rwb-close:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 767px) {
    .referral-welcome-bar {
        padding: 8px 40px 8px 8px;
        font-size: 12px;
    }
    .rwb-inner {
        gap: 8px;
    }
    .rwb-text {
        font-size: 12px;
    }
    .rwb-cta {
        font-size: 11px;
        padding: 4px 12px;
    }
    .rwb-close {
        right: 6px;
    }
}

/* ============================================
   Referral Page — Hero
   ============================================ */
.ref-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    text-align: center;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.ref-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    z-index: 0;
}
.ref-hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.ref-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.ref-hero-orb--1 {
    width: 400px; height: 400px;
    background: var(--brand-orange);
    top: -100px; right: -100px;
    animation: heroOrbFloat 8s ease-in-out infinite;
}
.ref-hero-orb--2 {
    width: 300px; height: 300px;
    background: var(--info-blue);
    bottom: -80px; left: -80px;
    animation: heroOrbFloat 10s ease-in-out infinite reverse;
}
@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(30px, -20px); }
}
.ref-hero-inner {
    position: relative;
    z-index: 2;
}
.ref-hero-badge {
    display: inline-block;
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    color: var(--brand-orange);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: welcomeFadeIn 0.6s ease both;
}
.ref-hero-badge i {
    margin-right: 6px;
}
.ref-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    animation: welcomeFadeIn 0.6s ease 0.1s both;
}
.ref-hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    animation: welcomeFadeIn 0.6s ease 0.2s both;
}
.ref-hero-sub strong {
    color: var(--brand-orange);
    font-size: 20px;
}
.ref-hero-cta {
    animation: welcomeFadeIn 0.6s ease 0.3s both;
}
.ref-hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
    animation: welcomeFadeIn 0.6s ease 0.4s both;
}
.ref-hero-trust span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ref-hero-trust i {
    color: var(--brand-orange);
}

@media (max-width: 767px) {
    .ref-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .ref-hero h1 {
        font-size: 32px;
    }
    .ref-hero-sub {
        font-size: 15px;
    }
    .ref-hero-sub strong {
        font-size: 17px;
    }
    .ref-hero-trust {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   404 Error Page
   ============================================ */
.error-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.error-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    z-index: 0;
}
.error-hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.error-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}
.error-hero-orb--1 {
    width: 350px; height: 350px;
    background: var(--brand-orange);
    top: -80px; right: -60px;
    animation: heroOrbFloat 8s ease-in-out infinite;
}
.error-hero-orb--2 {
    width: 280px; height: 280px;
    background: var(--danger-red);
    bottom: -60px; left: -60px;
    animation: heroOrbFloat 10s ease-in-out infinite reverse;
}
.error-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.error-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    color: var(--brand-orange);
    font-size: 32px;
    margin-bottom: 24px;
    animation: welcomeFadeIn 0.5s ease both;
}
.error-code {
    font-size: 120px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: welcomeFadeIn 0.5s ease 0.1s both;
}
.error-title {
    color: rgba(255,255,255,0.9);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    animation: welcomeFadeIn 0.5s ease 0.2s both;
}
.error-text {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 32px;
    animation: welcomeFadeIn 0.5s ease 0.3s both;
}
.error-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: welcomeFadeIn 0.5s ease 0.4s both;
}
.error-btn-group .pub-btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}
.error-btn-group .pub-btn-outline:hover {
    border-color: #fff;
    color: #fff;
}
.error-links {
    animation: welcomeFadeIn 0.5s ease 0.5s both;
}
.error-links span {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}
.error-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}
.error-links a:hover {
    color: var(--brand-orange);
}

@media (max-width: 767px) {
    .error-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .error-code {
        font-size: 80px;
    }
    .error-title {
        font-size: 22px;
    }
    .error-btn-group {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   Mobile: Donate Step Cards
   ============================================ */
@media (max-width: 767px) {
    .pub-donate-step-card {
        padding: 24px 20px;
    }
    .pub-donate-step-num {
        width: 44px; height: 44px;
        font-size: 18px;
    }
    .pub-donate-step-card h4 {
        font-size: 16px;
    }
}

/* ============================================
   Mobile: Sitemap Cards
   ============================================ */
@media (max-width: 767px) {
    .pub-sitemap-card {
        padding: 24px 20px;
    }
    .pub-sitemap-card-icon {
        width: 40px; height: 40px;
        font-size: 17px;
    }
    .pub-sitemap-card h3 {
        font-size: 16px;
    }
    .pub-sitemap-list li a {
        font-size: 13px;
    }
}

/* ============================================
   Mobile: Blog Cards
   ============================================ */
@media (max-width: 767px) {
    .pub-blog-card {
        padding: 22px 18px;
    }
    .pub-blog-card-icon {
        width: 38px; height: 38px;
        font-size: 16px;
    }
    .pub-blog-card-title {
        font-size: 15px;
    }
    .pub-blog-card-excerpt {
        font-size: 13px;
    }
}

/* ============================================
   Mobile: Testimonial Cards
   ============================================ */
@media (max-width: 767px) {
    .pub-testimonial-card {
        padding: 24px 20px;
    }
    .pub-testimonial-quote-icon {
        font-size: 22px;
    }
    .pub-testimonial-text {
        font-size: 14px;
    }
    .pub-testimonial-name {
        font-size: 15px;
    }
    .pub-testimonial-role {
        font-size: 12px;
    }
}

/* ============================================
   Mobile: Challenge Cards
   ============================================ */
@media (max-width: 767px) {
    .pub-challenge-card {
        padding: 22px 18px;
    }
    .pub-challenge-header {
        gap: 12px;
    }
    .pub-challenge-icon {
        width: 44px; height: 44px;
        font-size: 18px;
    }
    .pub-challenge-card h4 {
        font-size: 16px;
    }
    .pub-challenge-card p {
        font-size: 13px;
    }
    .pub-challenge-footer {
        font-size: 12px;
    }
}

/* ===================================================================
   FOUNDER PAGE
   =================================================================== */

/* --- Hero --- */
.founder-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    text-align: center;
}
.founder-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.founder-hero > .container {
    position: relative;
    z-index: 3;
}
.founder-hero-orbs .founder-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}
.founder-hero-orb--1 {
    width: 400px; height: 400px;
    background: var(--ds-accent, #D4A840);
    top: -100px; right: -100px;
}
.founder-hero-orb--2 {
    width: 300px; height: 300px;
    background: #3498db;
    bottom: -80px; left: -80px;
}
.founder-hero-orb--3 {
    width: 200px; height: 200px;
    background: #2ecc71;
    top: 50%; left: 60%;
}
.founder-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.founder-hero-img-wrap {
    position: relative;
    flex-shrink: 0;
}
.founder-hero-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--ds-accent-bg, rgba(212,168,64,0.5));
    position: relative;
    z-index: 2;
}
.founder-hero-img-ring {
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border-radius: 50%;
    border: 2px dashed var(--ds-accent-bg, rgba(212,168,64,0.3));
    animation: founderRingSpin 20s linear infinite;
}
@keyframes founderRingSpin {
    to { transform: rotate(360deg); }
}
.founder-hero-text {
    text-align: left;
    color: #fff;
}
.founder-hero-badge {
    display: inline-block;
    background: var(--ds-accent-bg, rgba(212,168,64,0.15));
    color: var(--ds-accent, #D4A840);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.founder-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #fff, var(--ds-accent, #D4A840));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.founder-hero-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.founder-hero-quote {
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 20px;
    max-width: 420px;
    line-height: 1.6;
}
.founder-hero-socials {
    display: flex;
    gap: 10px;
}
.founder-hero-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.founder-hero-socials a:hover {
    background: var(--ds-accent, #D4A840);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--ds-accent-bg, rgba(212,168,64,0.4));
}

/* --- Roles --- */
.founder-roles {
    padding: 60px 0;
    background: #fff;
}
.founder-role-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: #f8f9fb;
    transition: all 0.3s ease;
}
.founder-role-card:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.founder-role-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ds-accent-bg, rgba(212,168,64,0.1)), var(--ds-accent-bg, rgba(212,168,64,0.05)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--ds-accent, #D4A840);
}
.founder-role-card span {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

/* --- Bio --- */
.founder-bio {
    padding: 60px 0;
    background: #f4f6f9;
}
.founder-bio-card {
    background: #fff;
    border-radius: 18px;
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.founder-bio-card h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}
.founder-bio-card h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-bio-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.founder-blockquote {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 28px 32px;
    border-radius: 14px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin: 24px 0;
    position: relative;
}
.founder-blockquote i {
    color: var(--ds-accent, #D4A840);
    margin-right: 8px;
    font-size: 20px;
}

/* --- Timeline --- */
.founder-timeline {
    padding: 80px 0;
    background: #fff;
}
.founder-timeline h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
}
.founder-timeline h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-timeline-track {
    position: relative;
    padding-left: 60px;
}
.founder-timeline-track::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ds-accent, #D4A840), #3498db, #2ecc71);
}
.founder-tl-item {
    position: relative;
    margin-bottom: 40px;
}
.founder-tl-dot {
    position: absolute;
    left: -44px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ds-accent, #D4A840);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--ds-accent-bg, rgba(212,168,64,0.2));
    z-index: 2;
}
.founder-tl-year {
    position: absolute;
    left: -112px;
    top: 2px;
    font-weight: 800;
    font-size: 16px;
    color: var(--ds-accent, #D4A840);
    width: 55px;
    text-align: right;
}
.founder-tl-content {
    background: #f8f9fb;
    padding: 24px 28px;
    border-radius: 14px;
    transition: all 0.3s ease;
}
.founder-tl-content:hover {
    background: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transform: translateX(4px);
}
.founder-tl-content h4 {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.founder-tl-content h4 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 8px;
}
.founder-tl-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.founder-tl-item--highlight .founder-tl-content {
    background: linear-gradient(135deg, var(--ds-accent-bg, rgba(212,168,64,0.06)), var(--ds-accent-bg, rgba(212,168,64,0.02)));
    border-left: 3px solid var(--ds-accent, #D4A840);
}
.founder-tl-item--highlight .founder-tl-dot {
    width: 18px;
    height: 18px;
    left: -46px;
    top: 4px;
    box-shadow: 0 0 0 4px var(--ds-accent-bg, rgba(212,168,64,0.3));
}

/* --- Achievements --- */
.founder-achievements {
    padding: 80px 0;
    background: #f4f6f9;
}
.founder-achievements h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
}
.founder-achievements h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-achievement-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.founder-achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
.founder-achievement-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ds-accent, #D4A840), #e85d0f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}
.founder-achievement-card h4 {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.founder-achievement-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Philosophy --- */
.founder-philosophy {
    padding: 80px 0;
    background: #fff;
}
.founder-philosophy-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
}
.founder-philosophy-inner {
    padding: 48px;
}
.founder-philosophy-inner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}
.founder-philosophy-inner h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-philosophy-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}
.founder-philosophy-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--ds-accent-bg, rgba(212,168,64,0.3));
    line-height: 1;
    min-width: 48px;
}
.founder-philosophy-item h5 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}
.founder-philosophy-item p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.founder-signature {
    max-width: 180px;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* --- Stats Counter --- */
.founder-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.founder-stat-item {
    padding: 24px 16px;
}
.founder-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--ds-accent, #D4A840);
    line-height: 1.1;
    margin-bottom: 6px;
}
.founder-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- Letter from the Founder --- */
.founder-letter {
    padding: 80px 0;
    background: #f4f6f9;
}
.founder-letter-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: 0 auto;
}
.founder-letter-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 28px 40px;
    text-align: center;
}
.founder-letter-header i {
    font-size: 32px;
    color: var(--ds-accent, #D4A840);
    margin-bottom: 10px;
    display: block;
}
.founder-letter-header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.founder-letter-body {
    padding: 44px 48px;
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    font-family: Georgia, 'Times New Roman', serif;
}
.founder-letter-greeting {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.founder-letter-body p {
    margin-bottom: 16px;
}
.founder-letter-closing {
    margin-top: 28px;
    font-style: italic;
    color: #888;
}
.founder-letter-signature {
    max-width: 160px;
    margin: 12px 0 8px;
    opacity: 0.85;
}
.founder-letter-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 17px;
    margin-bottom: 2px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.founder-letter-title {
    color: #888;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Photo Gallery --- */
.founder-gallery {
    padding: 80px 0;
    background: #fff;
}
.founder-gallery h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
}
.founder-gallery h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.founder-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}
.founder-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.founder-gallery-item:hover img {
    transform: scale(1.08);
}
.founder-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.founder-gallery-overlay i {
    font-size: 28px;
    color: #fff;
}
.founder-gallery-item:hover .founder-gallery-overlay {
    opacity: 1;
}

/* --- Lightbox --- */
.founder-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.founder-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.founder-lightbox img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.founder-lightbox.active img {
    transform: scale(1);
}
.founder-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.founder-lightbox-close:hover {
    opacity: 1;
}

/* --- Video Embeds --- */
.founder-videos {
    padding: 80px 0;
    background: #f4f6f9;
}
.founder-videos h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
}
.founder-videos h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-video-embed {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.founder-video-embed:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.founder-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.founder-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.founder-video-info {
    padding: 16px 20px;
}
.founder-video-info h5 {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
}
.founder-video-info h5 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 6px;
}
.founder-video-info p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- Connect Section --- */
.founder-connect {
    padding: 80px 0;
    background: #fff;
}
.founder-connect-card {
    background: #f8f9fb;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid #e8ecf1;
}
.founder-connect-card h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.founder-connect-card h2 i {
    color: var(--ds-accent, #D4A840);
    margin-right: 10px;
}
.founder-connect-card > .row > .col-lg-7 > p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.founder-connect-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.founder-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.founder-connect-btn--website {
    background: linear-gradient(135deg, var(--ds-accent, #D4A840), #e85d0f);
    color: #fff;
}
.founder-connect-btn--website:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--ds-accent-bg, rgba(212,168,64,0.35));
    color: #fff;
}
.founder-connect-btn--contact {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}
.founder-connect-btn--contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,26,46,0.35);
    color: #fff;
}
.founder-connect-btn--blog {
    background: #fff;
    color: #1a1a2e;
    border: 1px solid #ddd;
}
.founder-connect-btn--blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    color: #1a1a2e;
}
.founder-connect-socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.founder-connect-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    text-decoration: none;
    transition: all 0.3s ease;
}
.founder-connect-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-color: var(--ds-accent, #D4A840);
}
.founder-connect-social i {
    font-size: 20px;
    color: var(--ds-accent, #D4A840);
    width: 24px;
    text-align: center;
}
.founder-connect-social span {
    color: #1a1a2e;
    font-weight: 500;
    font-size: 13px;
}

/* --- Founder Mobile --- */
@media (max-width: 768px) {
    .founder-hero {
        padding: 100px 0 60px;
    }
    .founder-hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .founder-hero-text {
        text-align: center;
    }
    .founder-hero h1 {
        font-size: 32px;
    }
    .founder-hero-quote {
        max-width: 100%;
    }
    .founder-hero-socials {
        justify-content: center;
    }
    .founder-hero-img {
        width: 160px;
        height: 160px;
    }
    .founder-stat-number {
        font-size: 30px;
    }
    .founder-stat-label {
        font-size: 11px;
    }
    .founder-bio-card {
        padding: 28px 20px;
    }
    .founder-blockquote {
        padding: 20px;
        font-size: 16px;
    }
    .founder-timeline-track {
        padding-left: 40px;
    }
    .founder-tl-year {
        position: static;
        display: block;
        margin-bottom: 4px;
        text-align: left;
        font-size: 14px;
    }
    .founder-timeline-track::before {
        left: 14px;
    }
    .founder-tl-dot {
        left: -33px;
    }
    .founder-tl-item--highlight .founder-tl-dot {
        left: -35px;
    }
    .founder-tl-content {
        padding: 18px 16px;
    }
    .founder-tl-content h4 {
        font-size: 16px;
    }
    .founder-philosophy-inner {
        padding: 28px 20px;
    }
    .founder-philosophy-item {
        gap: 12px;
    }
    .founder-philosophy-num {
        font-size: 24px;
        min-width: 36px;
    }
    .founder-letter-body {
        padding: 28px 24px;
    }
    .founder-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .founder-connect-card {
        padding: 28px 20px;
    }
    .founder-connect-links {
        flex-direction: column;
    }
    .founder-connect-socials {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }
}

/* ==============================================
   V2 REDESIGN — Hero + Tier Cards (Public Pages)
   ============================================== */

/* --- btn-gold (3D chrome tier button) --- */
.btn-gold {
    background: var(--tier-gradient, linear-gradient(180deg, hsl(41,50%,68%) 0%, hsl(39,55%,52%) 50%, hsl(35,55%,40%) 100%));
    color: var(--tier-text-on-gradient, hsl(35,30%,10%));
    transition: all 0.15s ease;
    box-shadow: 0 4px 0 var(--tier-primary-dark, hsl(35,55%,30%)), 0 6px 12px var(--tier-primary-bg, hsla(35,55%,30%,0.4)), inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.btn-gold:hover {
    background: var(--tier-gradient, linear-gradient(180deg, hsl(42,52%,72%) 0%, hsl(40,58%,55%) 50%, hsl(36,58%,43%) 100%));
    transform: translateY(-1px);
    box-shadow: 0 5px 0 var(--tier-primary-dark, hsl(35,55%,30%)), 0 8px 16px var(--tier-primary-bg, hsla(35,55%,30%,0.5)), inset 0 1px 0 rgba(255,255,255,0.4);
    color: var(--tier-text-on-gradient, hsl(35,30%,10%));
    text-decoration: none;
    filter: brightness(1.08);
}
.btn-gold:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--tier-primary-dark, hsl(35,55%,30%)), 0 2px 4px var(--tier-primary-bg, hsla(35,55%,30%,0.3)), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* --- Tier gradient utilities --- */
.gold-gradient {
    background: var(--tier-gradient, linear-gradient(135deg, hsl(41,50%,65%), hsl(39,55%,52%), hsl(35,55%,40%), hsl(41,48%,60%)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-chrome-bg {
    background: var(--tier-gradient, linear-gradient(135deg, hsl(41,50%,65%), hsl(39,55%,52%), hsl(35,55%,40%)));
}

/* --- Hero Section V2 --- */
.hero-section-v2 {
    position: relative;
}
.hero-v2-logo-img {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: 1001;
    height: 72px;
    width: auto;
    filter: drop-shadow(0 0 16px var(--tier-primary-bg, hsla(38,70%,60%,0.4)));
}
.hero-v2-nav {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 1001;
    display: flex;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    gap: 1rem;
}
.hero-v2-nav a {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.hero-v2-nav a + a::before {
    content: '|';
    margin-right: 1rem;
    color: rgba(255,255,255,0.3);
}
.hero-v2-nav a:hover {
    color: var(--ds-accent-light, #fff);
}
.hero-section-v2 .hero-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em;
    line-height: 1 !important;
    margin-bottom: 0 !important;
    color: #fff !important;
    text-shadow: none !important;
}
.hero-join-btn-v2 {
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: none;
    text-decoration: none;
    margin-top: 0.25rem;
}

/* --- "Cooperative Crowdfunding is..." Section --- */
.how-section {
    background: #fff;
    padding: 80px 24px 60px;
    text-align: center;
}
.how-section .container {
    max-width: 720px;
}
.how-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.how-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}
.how-section .tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--brand-orange);
    margin-top: 1.25rem;
    letter-spacing: -0.01em;
}

/* --- Tier Cards Section --- */
.tier-cards-section {
    background: #fff;
    padding: 128px 24px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
.tier-cards-heading {
    text-align: center;
    margin-bottom: 64px;
}
.tier-cards-heading h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 60px;
    font-weight: 700 !important;
    color: hsl(0,0%,8%);
    letter-spacing: -0.02em;
    line-height: 1;
}
.tier-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
}
.tier-card {
    background: #fff;
    border: 1px solid hsl(0,0%,90%);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}
.tier-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.tier-card-accent {
    width: 48px;
    height: 4px;
    border-radius: 99px;
    margin-bottom: 32px;
}
.tier-card-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700 !important;
    color: hsl(0,0%,8%);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.tier-card-levels {
    color: hsla(0,0%,45%,0.6);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0.025em;
    margin-bottom: 32px;
}
.tier-card-btn {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}
.tier-card-btn:hover {
    filter: brightness(1.1);
    color: #fff;
    text-decoration: none;
}

/* Tier cards footer */
.tier-cards-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}
.tier-cards-footer > p {
    color: hsl(0,0%,45%);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}
.tier-cards-footer > p a {
    color: hsl(0,0%,8%);
    font-weight: 500;
}
.tier-cards-footer > p a:hover {
    text-decoration: underline;
}

/* How It Works link card */
.tier-how-it-works {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid hsl(0,0%,90%);
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    color: hsl(0,0%,8%);
    font-weight: 400;
}
.tier-how-it-works:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
    text-decoration: none;
    color: hsl(0,0%,8%);
}
.tier-hiw-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tier-gradient, linear-gradient(135deg, hsl(41,50%,65%), hsl(39,55%,52%), hsl(35,55%,40%)));
    flex-shrink: 0;
}
.tier-hiw-text {
    text-align: left;
}
.tier-hiw-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.tier-hiw-text small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: hsl(0,0%,45%);
}
.tier-hiw-arrow {
    color: hsl(0,0%,60%);
    transition: transform 0.2s ease;
    margin-left: 8px;
}
.tier-how-it-works:hover .tier-hiw-arrow {
    transform: translateX(4px);
}

/* Video controls hide (cross-browser) */
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
video::-moz-media-controls {
    display: none !important;
}

/* Responsive */
@media (max-width: 767px) {
    .tier-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tier-cards-heading h2 {
        font-size: 32px;
    }
    .tier-cards-section {
        padding: 60px 0;
    }
    .tier-card {
        padding: 28px 24px;
    }
    .hero-v2-logo-img {
        top: 0.5rem;
        left: 1rem;
        height: 48px;
    }
    .hero-v2-nav {
        top: 0.75rem;
        right: 1rem;
        gap: 0.5rem;
    }
    .hero-v2-nav a {
        font-size: 0.75rem;
    }
    .tier-how-it-works {
        padding: 12px 20px;
        gap: 10px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .tier-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .tier-card {
        padding: 28px 20px;
    }
}
