/* ================================================
   Luxury Herbal Wellness - Premium Design System
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --green: #4f46e5;
    --green-deep: #3730a3;
    --green-light: #818cf8;
    --green-pale: #ede9fe;
    --dark: #0f0f1e;
    --dark-soft: #1e1b4b;
    --text: #1e1b2e;
    --text-muted: #6b7280;
    --cream: #f5f3ff;
    --white: #ffffff;
    --border: #e2e0f0;
    --gold: #a855f7;
    --gold-light: #c084fc;
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-deeper: #312e81;
    --accent: #06b6d4;
    --accent-warm: #0891b2;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
    --bg: #f5f3ff;
    --card-bg: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
    --shadow: 0 4px 20px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --shadow-glow: 0 0 30px rgba(79,70,229,.15);
    --transition: .35s cubic-bezier(.4,0,.2,1);
    --transition-bounce: .5s cubic-bezier(.68,-.55,.265,1.55);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; }
a { color: var(--green); transition: color var(--transition); text-decoration: none; }
a:hover { color: var(--green-deep); }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ---------- Animations ---------- */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn     { from { opacity:0; transform:scale(.92); } to { opacity:1; transform:scale(1); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight{ from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse       { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes float       { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes shimmer     { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes ripple      { from { transform:scale(0); opacity:.6; } to { transform:scale(4); opacity:0; } }
@keyframes bounceIn    { 0% { transform:scale(.3); opacity:0; } 50% { transform:scale(1.05); } 70% { transform:scale(.9); } 100% { transform:scale(1); opacity:1; } }
@keyframes scrollStrip { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }

/* Reveal animation (JS-driven) */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.float-anim { animation: float 4s ease-in-out infinite; }

/* ---------- Navbar ---------- */
.navbar {
    padding: .75rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(26,26,46,.7) !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: all var(--transition);
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(26,26,46,.95) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
    padding: .5rem 0;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #fff !important;
}
.navbar-brand .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: #fff;
    box-shadow: 0 4px 12px rgba(79,70,229,.3);
}
.navbar .nav-link {
    font-weight: 500;
    font-size: .88rem;
    padding: .5rem 1rem !important;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    color: rgba(255,255,255,.75) !important;
}
.navbar .nav-link:hover { background: rgba(255,255,255,.08); color: #fff !important; }
.navbar .nav-link.active { color: var(--gold) !important; }
.navbar .nav-link.active::after {
    content: ''; display: block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 2px auto 0;
}
.nav-btn {
    padding: .45rem 1.2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: .85rem !important;
    transition: all var(--transition) !important;
}
.nav-btn-outline {
    border: 1.5px solid rgba(255,255,255,.3) !important;
    color: #fff !important;
}
.nav-btn-outline:hover {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.6) !important;
    transform: translateY(-1px);
}
.nav-btn-glow {
    background: linear-gradient(135deg, var(--gold), #9333ea) !important;
    color: var(--dark) !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(168,85,247,.3);
}
.nav-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168,85,247,.4);
}

/* ---------- Section Common ---------- */
.section       { padding: 6rem 0; }
.section-sm    { padding: 4rem 0; }
.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .75rem;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: .5rem;
}
.section-title::after { display: none; }
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.divider {
    width: 50px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}
.divider-left { margin-left: 0; }

/* ---------- HERO ---------- */
:root {
    --navbar-h: 62px;   /* fixed navbar height — adjust if navbar size changes */
}
.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--dark) 0%, #1e1b4b 50%, var(--dark-soft) 100%);
    overflow: hidden;
    padding: 5rem 0 4rem;
    margin-top: var(--navbar-h);   /* push hero below fixed navbar — full image visible */
}
.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
    pointer-events: none;
}
.hero-bg-circle.c1 { width: 600px; height: 600px; background: var(--green); top: -200px; right: -100px; }
.hero-bg-circle.c2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; }
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { color: #fff; }
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 1.5rem;
}
.hero-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.hero-stat .lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.45);
    margin-top: .15rem;
}

/* Hero image card */
.hero-image-wrap { position: relative; }
.hero-image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.hero-image-card img { width: 100%; height: 440px; object-fit: cover; display: block; }
.hero-badge {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}
.hero-glass-tag {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    padding: .75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: .78rem;
    line-height: 1.4;
}
.hero-glass-tag strong { display: block; font-size: .85rem; }

/* Hero slider (dynamic slides from admin) */
.hero-slider-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-slide-item {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
.hero-slide-item.active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide-item .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-slide-item .hero-inner { grid-template-columns: 1fr; }
.hero-slide-item .hero-content h1 { max-width: 700px; }
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}
.hero-slider-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.1); }
.hero-slider-prev { left: 2rem; }
.hero-slider-next { right: 2rem; }
.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .5rem;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all var(--transition);
}
.hero-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(168,85,247,.5);
}

/* ---------- MARQUEE STRIP ---------- */
.strip {
    background: var(--green-deep);
    padding: .85rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.strip-inner { display: inline-flex; animation: scrollStrip 30s linear infinite; }
.strip-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0 2.5rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.7);
}
.strip-item i { color: var(--gold); }

/* ---------- FEATURES ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.features-grid .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.features-grid .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.features-grid .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 0 0 3px 3px;
}
.features-grid .feature-card:hover::before { width: 60px; }
.features-grid .feature-icon { font-size: 2.2rem; margin-bottom: 1.25rem; display: block; }
.features-grid .feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; color: var(--dark); }
.features-grid .feature-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ---------- ABOUT GRID ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    width: 85%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-img-accent {
    position: absolute;
    bottom: -2rem; right: 0;
    width: 55%;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.about-content .section-title { font-size: 2rem; }
.about-content > p { color: var(--text-muted); line-height: 1.8; }
.about-points { display: flex; flex-direction: column; gap: 1.5rem; }
.about-point { display: flex; gap: 1rem; }
.about-point-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 12px;
    background: var(--green-pale);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.about-point-text h5 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; color: var(--dark); }
.about-point-text p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .75rem;
    transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-body { padding: 1.25rem; }
.product-category {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: .4rem;
}
.product-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.product-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .75rem; }
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: .75rem;
    margin-top: .5rem;
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--green-deep); }
.product-price span { font-size: .72rem; font-weight: 400; color: var(--text-muted); }
.product-stars { font-size: .7rem; color: var(--gold); margin-top: .15rem; }

/* ---------- BENEFITS SECTION ---------- */
.benefits {
    background: linear-gradient(160deg, var(--dark) 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}
.benefits::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,.15), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.benefits .section-subtitle { color: rgba(255,255,255,.5); }
.benefits .divider { background: var(--gold); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.benefit-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}
.benefit-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
    border-color: rgba(168,85,247,.3);
}
.benefit-num {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .75rem;
    letter-spacing: 1px;
}
.benefit-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.benefit-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote {
    font-size: 4rem;
    font-weight: 800;
    color: var(--green-pale);
    line-height: .8;
    margin-bottom: .5rem;
    font-family: Georgia, serif;
}
.testi-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}
.testi-stars { color: var(--gold); font-size: .8rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-pale);
}
.testi-name { font-weight: 700; font-size: .85rem; color: var(--dark); }
.testi-role { font-size: .72rem; color: var(--text-muted); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--green-deep), var(--green));
    border-radius: var(--radius);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(168,85,247,.15), transparent 60%);
    pointer-events: none;
}
.cta-banner .section-label { color: var(--gold-light); }
.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.cta-banner p {
    color: rgba(255,255,255,.7);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: .95rem;
    position: relative; z-index: 1;
}

/* ---------- PACKAGES ---------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-glow);
}
.package-popular {
    position: absolute;
    top: -1px; right: 20px;
    background: linear-gradient(135deg, var(--gold), #9333ea);
    color: var(--dark);
    font-size: .65rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.package-card h4 { font-weight: 700; margin-bottom: 1rem; }
.package-price { font-size: 2.4rem; font-weight: 800; color: var(--green-deep); margin-bottom: .75rem; }
.package-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.package-features { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.package-features li {
    padding: .4rem 0;
    font-size: .85rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.package-features li i { color: var(--green); margin-right: .5rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 35vh;
    margin-top: -76px;
    padding-top: 76px;
    display: flex; align-items: center;
    background: linear-gradient(160deg, var(--dark) 0%, #1e1b4b 50%, var(--dark-soft) 100%);
    text-align: center;
    color: #fff;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--cream));
}
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }
.page-hero h1 i { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    padding: .75rem 1.8rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #fff;
    box-shadow: 0 4px 15px rgba(79,70,229,.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,.35);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.8);
}
.btn-outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
    color: #fff;
    transform: translateY(-2px);
}
.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(79,70,229,.2);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,.3);
    color: #fff;
}
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff; border: none;
}
.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff; border: none;
}
.btn-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--dark); border: none;
}
.btn-outline-primary {
    border: 1.5px solid var(--green);
    color: var(--green);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- CARDS (Global) ---------- */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-header { background: var(--white); border-bottom: 1px solid var(--border); font-weight: 600; }

/* Feature card (inner pages) */
.feature-card {
    position: relative; border: none; text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
    transition: all var(--transition); position: relative;
}
.feature-icon.gradient-1 { background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(79,70,229,.04)); color: var(--green); }
.feature-icon.gradient-2 { background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(16,185,129,.04)); color: var(--success); }
.feature-icon.gradient-3 { background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(6,182,212,.04)); color: var(--info); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }

/* Income card */
.income-card {
    border: none; padding: 1.2rem; text-align: center;
    position: relative; overflow: hidden;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.income-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.income-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0); transition: transform var(--transition);
}
.income-card:hover::after { transform: scaleX(1); }
.income-card .income-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(79,70,229,.03));
    color: var(--green); font-size: 1rem; margin-bottom: .75rem;
    transition: all var(--transition);
}
.income-card:hover .income-icon { transform: translateY(-3px); }

/* Stat card */
.stat-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.25rem; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: all var(--transition);
    position: relative; overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,70,229,.06), transparent);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card .stat-icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; position: relative; z-index: 1;
}
.stat-card .stat-value { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; }
.stat-card .stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

/* Collection card */
.collection-card {
    position: relative; border-radius: var(--radius);
    padding: 2rem 1.5rem; background: var(--white);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    overflow: hidden; text-decoration: none; display: block; color: var(--text);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--text); }
.collection-card .coll-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem; transition: all var(--transition);
}
.collection-card:hover .coll-icon { transform: scale(1.1) rotate(-5deg); }
.collection-card .coll-arrow {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream); color: var(--text-muted); font-size: .75rem;
    transition: all var(--transition);
}
.collection-card:hover .coll-arrow { background: var(--green); color: #fff; transform: translateX(3px); }

/* ---------- Badges / Tables / Forms / Alerts / Modals ---------- */
.badge { font-weight: 600; border-radius: 6px; padding: .35em .65em; font-size: .72rem; letter-spacing: .3px; }
.table th { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.table td { vertical-align: middle; font-size: .85rem; }
.table-hover tbody tr { transition: background var(--transition); }
.table-hover tbody tr:hover { background: rgba(79,70,229,.03); }
.form-control, .form-select { border-radius: var(--radius-xs); border: 1.5px solid var(--border); transition: all var(--transition); font-size: .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.form-label { font-weight: 600; font-size: .82rem; color: var(--text); }
.input-group-text { border-radius: var(--radius-xs); background: var(--cream); border-color: var(--border); }
.alert { border-radius: var(--radius-xs); border: none; font-size: .85rem; animation: fadeInDown .4s ease both; }
.alert-success { background: #ecfdf5; color: #065f46; border-left: 4px solid var(--success); }
.alert-danger  { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--danger); }
.alert-warning { background: #fffbeb; color: #92400e; border-left: 4px solid var(--warning); }
.alert-info    { background: #ecfeff; color: #155e75; border-left: 4px solid var(--info); }
.modal-content { border: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.modal-header { border-bottom: 1px solid var(--border); }
.modal-footer { border-top: 1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, var(--dark), #0a0a14);
    color: rgba(255,255,255,.6);
    position: relative;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.site-footer h5, .site-footer h6 { color: #fff; }
.site-footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: all var(--transition); display: inline-block; }
.site-footer a:hover { color: var(--gold); transform: translateX(3px); }
.footer-brand { font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: .6rem; }
.footer-brand .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
    font-size: .85rem; transition: all var(--transition); margin-right: .4rem;
}
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; margin-top: 2rem; }

/* ---------- Tree ---------- */
.tree-node { position: relative; padding: 10px 14px; border-radius: var(--radius-xs); background: var(--white); border: 2px solid var(--border); transition: all var(--transition); }
.tree-node:hover { border-color: var(--green); box-shadow: var(--shadow-glow); transform: translateX(3px); }
.tree-node.active { border-color: var(--success); background: #f0fdf4; }
.tree-node.inactive { border-color: var(--warning); background: #fffbeb; }
.tree-children { position: relative; padding-left: 30px; }
.tree-children::before { content:''; position:absolute; left:15px; top:0; bottom:20px; width:2px; background: var(--border); }
.tree-children .tree-item::before { content:''; position:absolute; left:-15px; top:15px; width:15px; height:2px; background: var(--border); }
.tree-children .tree-item { position: relative; margin-bottom: 4px; }

/* ---------- Auth pages ---------- */
.auth-bg {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--dark) 0%, #1e1b4b 50%, var(--dark-soft) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    position: relative; overflow: hidden;
}
.auth-bg::before {
    content: ''; position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,.15), transparent 60%);
    border-radius: 50%;
    animation: floatSlow 18s ease-in-out infinite alternate;
}
.auth-bg::after {
    content: ''; position: absolute;
    bottom: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(168,85,247,.1), transparent 60%);
    border-radius: 50%;
    animation: floatSlow 14s ease-in-out infinite alternate-reverse;
}
.auth-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%; max-width: 460px;
    position: relative; z-index: 1;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}
.auth-card .form-control {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    border-radius: 12px;
    padding: .75rem 1rem;
}
.auth-card .form-control:focus {
    background: rgba(255,255,255,.1);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(79,70,229,.15);
    color: #fff;
}
.auth-card .form-control::placeholder { color: rgba(255,255,255,.3); }
.auth-card .form-label { color: rgba(255,255,255,.85); }
.auth-card .form-label .text-muted { color: rgba(255,255,255,.5) !important; }
.auth-card h4, .auth-card h5 { color: #fff; }
.auth-card .text-muted { color: rgba(255,255,255,.5) !important; }
.auth-card p { color: rgba(255,255,255,.7); }
.auth-card .form-check-label { color: rgba(255,255,255,.75); }
.auth-card .form-check-label strong { color: #fff; }
.auth-card .form-check-input { background-color: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.auth-card .form-check-input:checked { background-color: var(--green); border-color: var(--green); }
.auth-card .form-select { background-color: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #fff; border-radius: 12px; padding: .75rem 1rem; }
.auth-card .form-select:focus { background-color: rgba(255,255,255,.1); border-color: var(--green); box-shadow: 0 0 0 3px rgba(79,70,229,.15); }
.auth-card .form-select option { background: #0f0f1e; color: #fff; }
.auth-card input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }
.auth-card a { color: var(--gold); }
.auth-card a:hover { color: var(--gold-light); }
.auth-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    font-size: 1.4rem; color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(79,70,229,.3);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--green), var(--green-deep)); border-radius: 10px; }

/* ---------- Utilities ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-gradient-primary { background: linear-gradient(135deg, var(--green), var(--green-light)); }
.glass { background: rgba(255,255,255,.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.08); }
.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.z-1 { position: relative; z-index: 1; }
.fw-800 { font-weight: 800; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.text-green { color: var(--green); }

/* ---------- Admin sidebar ---------- */
.admin-sidebar { background: linear-gradient(180deg, var(--dark), #0a0a14); min-height: 100vh; padding-top: 1rem; }
.admin-sidebar .nav-link { color: rgba(255,255,255,.6); padding: .6rem 1.2rem; border-radius: var(--radius-xs); transition: all var(--transition); font-size: .85rem; display: flex; align-items: center; gap: .6rem; }
.admin-sidebar .nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.admin-sidebar .nav-link.active { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-deep)); box-shadow: 0 4px 15px rgba(79,70,229,.3); }
.admin-sidebar .nav-link i { width: 20px; text-align: center; }

/* User sidebar */
.user-sidebar { background: var(--white); border-right: 1px solid var(--border); min-height: 100vh; padding-top: 1rem; }
.user-sidebar .nav-link { color: var(--text); padding: .6rem 1.2rem; border-radius: var(--radius-xs); transition: all var(--transition); font-size: .85rem; }
.user-sidebar .nav-link:hover { color: var(--green); background: rgba(79,70,229,.04); }
.user-sidebar .nav-link.active { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-deep)); }

/* Contact (inner page) */
.contact-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 2rem;
    text-align: center; transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .icon-box {
    width: 60px; height: 60px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(79,70,229,.03));
    color: var(--green); transition: all var(--transition);
}
.contact-card:hover .icon-box { transform: scale(1.1) rotate(-5deg); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-images { max-width: 400px; margin: 0 auto; }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { padding: 3rem 1.5rem; }
    .cta-banner h2 { font-size: 1.6rem; }
    .section-title { font-size: 2rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar-collapse { background: var(--dark); border-radius: var(--radius); padding: 1rem; margin-top: .5rem; position: relative; }
    .navbar-collapse .btn-close { z-index: 10; opacity: .8; filter: invert(1) grayscale(100%) brightness(200%); }
    .navbar-collapse .btn-close:hover { opacity: 1; }
    .navbar-overlay { display: none !important; }
    .navbar-collapse.show ~ .navbar-overlay,
    .navbar-overlay.show { display: block !important; }
}
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.6rem; }

    /* Hero: height = 9/16 × viewport width → shows full 1920×1080 image, no crop */
    .hero {
        min-height: 56.25vw;
        max-height: 56.25vw;
        padding: 0;
        margin-top: var(--navbar-h);
    }
    .hero-slide-item {
        background-size: 100% 100%;
        background-position: center;
    }
    .hero-slide-item .container {
        align-items: flex-end;
        padding-top: 4rem;
        padding-bottom: 1.25rem;
    }
    .hero-content h1 { font-size: 1.8rem; word-break: break-word; overflow-wrap: break-word; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .page-hero { min-height: 28vh; }
    .page-hero h1 { font-size: 1.8rem; }
    .hero-slider-btn { display: none; }
    .auth-card { padding: 1.5rem; }
    /* Fix about accent image overflow on tablet */
    .about-images { padding-bottom: 3rem; }
    .about-img-accent { bottom: 0; }
}
@media (max-width: 576px) {
    .container { padding-left: .9rem; padding-right: .9rem; }

    /* ── Hero: full 1920×1080 image, no crop on small phones ── */
    .hero {
        min-height: 56.25vw;
        max-height: 56.25vw;
        padding: 0;
        margin-top: var(--navbar-h);
    }
    .hero-slide-item {
        background-size: 100% 100%;
        background-position: center;
    }
    .hero-slide-item .container {
        align-items: flex-end;
        padding-top: 4rem;
        padding-bottom: 1rem;
    }
    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: .5rem;
    }
    /* Buttons side-by-side, wrapping if needed */
    .hero-actions { flex-direction: row; flex-wrap: wrap; width: 100%; gap: .4rem; margin-bottom: .6rem; }
    .hero-actions .btn { flex: 1 1 110px; justify-content: center; font-size: .75rem; padding: .5rem .7rem; width: auto; }
    /* Hero stats: horizontal 3-column grid */
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; text-align: center; }
    .hero-stat .num { font-size: 1.1rem; }
    .hero-stat .lbl { font-size: .55rem; letter-spacing: .4px; }

    /* ── About images ── */
    .about-images { padding-bottom: 2.75rem; min-height: 220px; }
    .about-img-main { width: 78%; }
    .about-img-accent { bottom: 0; right: 0; width: 42%; border-width: 3px; }

    /* ── Products: 2-col on mobile ── */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
    .product-img-wrap { height: 145px; }
    .product-body { padding: .75rem .65rem; }
    .product-body h4 { font-size: .82rem; margin-bottom: .2rem; }
    .product-body > p { display: none; }
    .product-price { font-size: .9rem; }
    .product-footer .btn { padding: .35rem .6rem; font-size: .7rem; }

    /* ── Packages ── */
    .packages-grid { grid-template-columns: 1fr; max-width: 100%; }

    /* ── Features ── */
    .features-grid { grid-template-columns: 1fr; }

    /* ── Typography ── */
    .section-title { font-size: 1.45rem; letter-spacing: -.3px; }
    .section-subtitle { font-size: .88rem; }
    .section-label { font-size: .65rem; }
    body { font-size: .88rem; }

    /* ── Spacing ── */
    .section { padding: 2.5rem 0; }
    .section-sm { padding: 1.75rem 0; }

    /* ── Buttons ── */
    .btn { font-size: .82rem; padding: .65rem 1.25rem; }

    /* ── Strip ── */
    .strip-item { padding: 0 1.25rem; letter-spacing: 1px; }

    /* ── Testimonials ── */
    .testi-quote { font-size: 2.5rem; }

    /* ── CTA ── */
    .cta-banner { padding: 2rem 1rem; }
    .cta-banner h2 { font-size: 1.3rem; }

    /* ── Navbar ── */
    .navbar-brand { font-size: 1rem; }

    /* ── Best performers ── */
    .col-6 .card [style*="height:220px"] { height: 150px !important; }
}

/* ---------- AVAILABLE PRODUCTS SLIDER ---------- */
.avail-products-section {
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 60%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.avail-products-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(22,163,74,.08), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.avail-track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.avail-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: availSlide 32s linear infinite;
    padding: 1rem 0 1.5rem;
}
.avail-track:hover { animation-play-state: paused; }
@keyframes availSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.avail-card {
    flex: 0 0 210px;
    background: #fff;
    border: 1px solid rgba(22,163,74,.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
}
.avail-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 36px rgba(22,163,74,.15);
    border-color: rgba(22,163,74,.35);
}
.avail-card-img-wrap {
    width: 100%;
    height: 170px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.avail-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .6rem;
    transition: transform .4s ease;
}
.avail-card:hover .avail-card-img-wrap img { transform: scale(1.07); }
.avail-card-img-placeholder {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #86efac;
    font-size: 2rem;
}
.avail-card-body {
    padding: .9rem 1rem .85rem;
}
.avail-card-cat {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: .3rem;
}
.avail-card-name {
    font-size: .85rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 .45rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    line-height: 1.35;
}
.avail-card-price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
}
.avail-card-price .price {
    font-size: .95rem;
    font-weight: 800;
    color: #16a34a;
}
.avail-card-price .mrp {
    font-size: .72rem;
    color: #94a3b8;
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .avail-products-section { padding: 3.5rem 0 2.5rem; }
    .avail-card { flex: 0 0 175px; }
    .avail-card-img-wrap, .avail-card-img-placeholder { height: 145px; }
    .avail-track { gap: 1rem; }
}
@media (max-width: 576px) {
    .avail-products-section { padding: 2.5rem 0 2rem; }
    .avail-card { flex: 0 0 150px; }
    .avail-card-img-wrap, .avail-card-img-placeholder { height: 120px; }
    .avail-card-body { padding: .7rem .75rem; }
    .avail-card-name { font-size: .78rem; }
    .avail-track { gap: .75rem; }
}

/* ---------- COMING SOON SLIDER ---------- */
.coming-soon-section {
    background: linear-gradient(160deg, var(--dark) 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,.12), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.coming-soon-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,.1), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cs-track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.cs-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: csSlide 28s linear infinite;
    padding: 1rem 0 1.5rem;
}
.cs-track:hover { animation-play-state: paused; }
@keyframes csSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.cs-card {
    flex: 0 0 220px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
    position: relative;
}
.cs-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    border-color: rgba(139,92,246,.4);
}
.cs-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.cs-card:hover .cs-card-img { transform: scale(1.06); }
.cs-card-img-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(79,70,229,.15));
    color: rgba(255,255,255,.3);
    font-size: 2.5rem;
}
.cs-card-body {
    padding: 1rem 1rem .9rem;
}
.cs-card-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(139,92,246,.15);
    border: 1px solid rgba(139,92,246,.25);
    border-radius: 50px;
    padding: .25rem .7rem;
    margin-bottom: .5rem;
}
.cs-card-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    animation: csPulse 1.6s ease-in-out infinite;
}
@keyframes csPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}
.cs-card-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

@media (max-width: 768px) {
    .coming-soon-section { padding: 3.5rem 0 2.5rem; }
    .cs-card { flex: 0 0 180px; }
    .cs-card-img, .cs-card-img-placeholder { height: 150px; }
    .cs-track { gap: 1rem; }
}
@media (max-width: 576px) {
    .coming-soon-section { padding: 2.5rem 0 2rem; }
    .cs-card { flex: 0 0 155px; }
    .cs-card-img, .cs-card-img-placeholder { height: 130px; }
    .cs-card-body { padding: .75rem; }
    .cs-card-name { font-size: .8rem; }
    .cs-track { gap: .75rem; }
}

/* ── Very small phones (< 400px) ── */
@media (max-width: 400px) {
    .hero-content h1 { font-size: 1.35rem; }
    .hero-stat .num { font-size: 1.05rem; }
    .hero-stat .lbl { font-size: .52rem; }
    .hero-actions .btn { font-size: .72rem; padding: .55rem .7rem; }
    .section-title { font-size: 1.2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .about-img-accent { display: none; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM UI — WealthGrow International-Grade Design
   ═══════════════════════════════════════════════════════ */

/* ---------- Display Font ---------- */
.hero-content h1, .section-title, .cta-banner h2, .page-hero h1 {
    font-family: 'Sora', var(--font);
}

/* ---------- Keyframes ---------- */
@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 20px) scale(.95); }
}
@keyframes meshMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 30px) scale(1.15); }
    66% { transform: translate(30px, -40px) scale(.9); }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(129,140,248,.3), 0 4px 15px rgba(79,70,229,.25); }
    50% { box-shadow: 0 0 40px rgba(129,140,248,.5), 0 8px 25px rgba(79,70,229,.35); }
}
@keyframes shimmerMove {
    0% { transform: translateX(-150%) skewX(-20deg); }
    100% { transform: translateX(250%) skewX(-20deg); }
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(18px); opacity: 0; }
}
@keyframes floatRotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(168,85,247,.2); box-shadow: 0 0 15px rgba(168,85,247,.1); }
    50% { border-color: rgba(168,85,247,.5); box-shadow: 0 0 30px rgba(168,85,247,.2); }
}
@keyframes wordReveal {
    from { opacity: 0; transform: translateY(20px) rotateX(-40deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ---------- Hero: Animated Mesh Gradient ---------- */
.hero {
    background: #0f0f1e;
    position: relative;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    pointer-events: none;
}
.hero-mesh-orb.o1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -100px; left: -50px;
    animation: meshMove 20s ease-in-out infinite;
}
.hero-mesh-orb.o2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -50px; right: 10%;
    animation: meshMove2 25s ease-in-out infinite;
}
.hero-mesh-orb.o3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #818cf8, transparent 70%);
    top: 30%; right: -80px;
    animation: meshMove 18s ease-in-out infinite reverse;
}
.hero-mesh-orb.o4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #3730a3, transparent 70%);
    bottom: 20%; left: 30%;
    animation: meshMove2 22s ease-in-out infinite reverse;
}
.hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero-content h1 .gradient-name {
    background: linear-gradient(90deg, #a855f7, #818cf8, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}
.hero-word {
    display: inline-block;
    opacity: 0;
    animation: wordReveal .6s ease forwards;
}
.hero-content > p { animation: fadeInUp .8s ease .6s both; }
.hero-actions { animation: fadeInUp .8s ease .8s both; }
.hero-stats { animation: fadeInUp .8s ease 1s both; }

/* Hero floating glass cards */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    color: #fff;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.hero-float-card.fc1 {
    top: 8%; right: 5%;
    animation: floatRotate 6s ease-in-out infinite;
}
.hero-float-card.fc2 {
    bottom: 12%; left: 3%;
    animation: floatRotate 7s ease-in-out infinite .5s;
}
.hero-float-card .fc-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.hero-float-card.fc1 .fc-icon { background: linear-gradient(135deg, rgba(129,140,248,.3), rgba(79,70,229,.2)); color: #818cf8; }
.hero-float-card.fc2 .fc-icon { background: linear-gradient(135deg, rgba(168,85,247,.3), rgba(168,85,247,.15)); color: #a855f7; }
.hero-float-card .fc-value { font-size: 1.3rem; font-weight: 800; font-family: 'Sora', sans-serif; }
.hero-float-card .fc-label { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }

/* Scroll-down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-indicator span {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

/* ---------- Stats Counter Bar ---------- */
.stats-bar {
    background: linear-gradient(135deg, var(--green-deep), var(--dark));
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(168,85,247,.08), transparent 60%);
}
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.stat-bar-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
    padding: 0 1rem;
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .75rem;
    background: linear-gradient(135deg, rgba(168,85,247,.15), rgba(168,85,247,.05));
    color: var(--gold);
}
.stat-bar-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: #fff;
    line-height: 1;
}
.stat-bar-value .suffix { font-size: 1.2rem; color: var(--gold); }
.stat-bar-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: .5rem;
}

/* ---------- Enhanced Marquee Strip ---------- */
.strip {
    background: linear-gradient(90deg, var(--green-deep), var(--dark), var(--green-deep));
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    padding: 1rem 0;
    border-top: 1px solid rgba(168,85,247,.15);
    border-bottom: 1px solid rgba(168,85,247,.15);
}
.strip-item { font-size: .85rem; }

/* ---------- Fully Animated Features Section ---------- */
.features-animated {
    position: relative;
    overflow: hidden;
}
.features-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.features-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
}
.features-orb.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -150px; left: -100px;
    animation: meshMove 20s ease-in-out infinite;
}
.features-orb.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -100px; right: -50px;
    animation: meshMove2 25s ease-in-out infinite;
}
.features-grid-animated {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* Individual animated card */
.feat-anim-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 1.75rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s ease;
    cursor: pointer;
    isolation: isolate;
}
.feat-anim-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79,70,229,.15);
}

/* Animated gradient border */
.feat-anim-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #4f46e5, #a855f7, #06b6d4, #4f46e5);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 2;
    pointer-events: none;
}
.feat-anim-card:hover .feat-anim-border {
    opacity: 1;
}

/* Glow behind card on hover */
.feat-anim-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle, rgba(79,70,229,.12), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all .6s ease;
    pointer-events: none;
    z-index: 0;
}
.feat-anim-card:hover .feat-anim-glow {
    transform: translate(-50%, -50%) scale(2);
    opacity: 1;
}

/* Icon with pulse ring */
.feat-anim-icon-wrap {
    position: relative;
    width: 72px; height: 72px;
    margin: 0 auto 1.5rem;
    z-index: 1;
}
.feat-anim-icon {
    position: relative;
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 8px 25px rgba(79,70,229,.3);
    transition: transform .5s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 2;
}
.feat-anim-card:nth-child(2) .feat-anim-icon {
    background: linear-gradient(135deg, #06b6d4, #4f46e5);
    box-shadow: 0 8px 25px rgba(6,182,212,.3);
}
.feat-anim-card:nth-child(3) .feat-anim-icon {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    box-shadow: 0 8px 25px rgba(168,85,247,.3);
}
.feat-anim-card:nth-child(4) .feat-anim-icon {
    background: linear-gradient(135deg, #3730a3, #4f46e5);
    box-shadow: 0 8px 25px rgba(55,48,163,.3);
}
.feat-anim-card:hover .feat-anim-icon {
    transform: scale(1.15) rotate(-8deg);
}

/* Pulse ring */
.feat-anim-pulse {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(79,70,229,.4);
    animation: featPulse 2.5s ease-out infinite;
    z-index: 1;
}
.feat-anim-card:nth-child(2) .feat-anim-pulse { border-color: rgba(6,182,212,.4); }
.feat-anim-card:nth-child(3) .feat-anim-pulse { border-color: rgba(168,85,247,.4); }
.feat-anim-card:nth-child(4) .feat-anim-pulse { border-color: rgba(55,48,163,.4); }
@keyframes featPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Title and description */
.feat-anim-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
    position: relative;
    z-index: 1;
    transition: color .3s ease;
}
.feat-anim-card:hover .feat-anim-title {
    color: var(--green);
}
.feat-anim-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Stat counter */
.feat-anim-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .1rem;
    padding: .6rem 1.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79,70,229,.06), rgba(168,85,247,.04));
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}
.feat-anim-card:hover .feat-anim-stat {
    background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(168,85,247,.08));
    transform: scale(1.05);
}
.feat-anim-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.feat-anim-stat-label {
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Shine sweep on hover */
.feat-anim-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
    pointer-events: none;
    z-index: 3;
}
.feat-anim-card:hover .feat-anim-shine {
    left: 150%;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid-animated { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .features-grid-animated { grid-template-columns: 1fr; }
}
.features-grid .feature-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}
.features-grid .feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(129,140,248,.06) 60%, transparent 80%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.features-grid .feature-card:hover::after { opacity: 1; }
.features-grid .feature-card .feature-icon {
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.features-grid .feature-card:hover .feature-icon {
    transform: scale(1.15) translateY(-5px);
}

/* ---------- About: Progress Bars ---------- */
.about-progress { margin-top: 1.5rem; }
.about-progress-item { margin-bottom: 1.25rem; }
.about-progress-item .ap-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .4rem;
}
.about-progress-item .ap-label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.about-progress-item .ap-value { font-size: .82rem; font-weight: 700; color: var(--green); }
.about-progress-item .ap-bar {
    height: 8px;
    background: var(--green-pale);
    border-radius: 4px;
    overflow: hidden;
}
.about-progress-item .ap-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    width: 0;
    transition: width 1.5s cubic-bezier(.4,0,.2,1);
}
.about-progress-item .ap-fill.gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ---------- About: Fully Animated Section ---------- */
.about-animated {
    position: relative;
    overflow: hidden;
}
.about-anim-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
}
.about-orb.ao-1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -100px; right: 10%;
    animation: meshMove 22s ease-in-out infinite;
}
.about-orb.ao-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -80px; left: 5%;
    animation: meshMove2 18s ease-in-out infinite;
}
.about-anim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Visual side */
.about-anim-visual { position: relative; }
.about-anim-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.about-anim-img-ring {
    position: absolute;
    inset: -20px;
    border: 2px dashed rgba(79,70,229,.2);
    border-radius: 24px;
    animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.about-anim-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(79,70,229,.15);
    position: relative;
    z-index: 1;
}

/* Floating glass stat cards on image */
.about-anim-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 16px;
    padding: .85rem 1.25rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
    z-index: 3;
    overflow: hidden;
}
.about-anim-float-card.afc-top {
    top: 15%;
    left: -8%;
    animation: floatCard 4s ease-in-out infinite;
}
.about-anim-float-card.afc-bottom {
    bottom: 15%;
    right: -8%;
    animation: floatCard 4s ease-in-out infinite 2s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.afc-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #818cf8);
    box-shadow: 0 4px 15px rgba(79,70,229,.3);
}
.afc-icon.purple {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    box-shadow: 0 4px 15px rgba(168,85,247,.3);
}
.afc-value {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: var(--dark);
    line-height: 1;
}
.afc-label {
    font-size: .65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: .15rem;
}
.afc-spark {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-20deg);
    animation: sparkSweep 3s ease-in-out infinite;
}
@keyframes sparkSweep {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Badge on image */
.about-anim-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(79,70,229,.3);
    z-index: 3;
    white-space: nowrap;
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(79,70,229,.3); }
    50% { box-shadow: 0 10px 40px rgba(79,70,229,.5); }
}
.about-anim-badge i { font-size: .85rem; }

/* Content side */
.about-anim-content .section-title { font-size: 2rem; }
.about-anim-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: .95rem;
}

/* Animated steps */
.about-anim-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.about-anim-step {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}
.aas-number {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 6px 20px rgba(79,70,229,.25);
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 2;
    position: relative;
}
.about-anim-step:hover .aas-number {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 25px rgba(79,70,229,.4);
}
.aas-line {
    width: 2px;
    height: calc(100% + 1.25rem);
    background: linear-gradient(180deg, rgba(79,70,229,.3), rgba(168,85,247,.1));
    margin-left: -1px;
    margin-top: 40px;
    position: absolute;
    left: 19px;
    z-index: 1;
}
.about-anim-step:last-child .aas-line { display: none; }
.aas-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-left: 1rem;
    padding: .75rem 1.25rem;
    border-radius: 14px;
    background: var(--cream);
    border: 1px solid transparent;
    transition: all .4s ease;
    flex: 1;
}
.about-anim-step:hover .aas-body {
    border-color: rgba(79,70,229,.15);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(79,70,229,.08);
    transform: translateX(6px);
}
.aas-icon {
    width: 38px; height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(168,85,247,.06));
    color: var(--green);
    transition: all .4s ease;
}
.about-anim-step:hover .aas-icon {
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #fff;
    transform: scale(1.1);
}
.aas-text h5 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem;
}
.aas-text p {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Animated progress bars */
.about-anim-progress {
    margin-bottom: 2rem;
}
.about-anim-progress-item { margin-bottom: 1.1rem; }
.aap-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .4rem;
}
.aap-label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.aap-value { font-size: .8rem; font-weight: 700; color: var(--green); }
.aap-bar {
    height: 10px;
    background: var(--green-pale);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.aap-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    width: 0;
    transition: width 1.8s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.aap-fill.purple {
    background: linear-gradient(90deg, #a855f7, #c084fc);
}
.aap-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}
.aap-shimmer {
    position: absolute;
    top: 0; left: 0;
    width: 30%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    animation: shimmerBar 2.5s ease-in-out infinite;
}
@keyframes shimmerBar {
    0% { left: -30%; }
    100% { left: 100%; }
}

/* Button */
.about-anim-btn {
    position: relative;
    overflow: hidden;
}
.about-anim-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.about-anim-btn:hover::after { left: 150%; }

/* Responsive */
@media (max-width: 992px) {
    .about-anim-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-anim-img-wrap { max-width: 400px; }
}
@media (max-width: 576px) {
    .about-anim-img { height: 320px; }
    .about-anim-float-card { padding: .65rem 1rem; }
    .afc-value { font-size: 1.05rem; }
    .about-anim-float-card.afc-top { left: -4%; }
    .about-anim-float-card.afc-bottom { right: -4%; }
    .aas-body { flex-direction: column; gap: .5rem; }
}

/* ---------- Benefits: Glow Cards ---------- */
.benefit-card { position: relative; overflow: hidden; }
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,.08), transparent);
    transition: left .6s ease;
}
.benefit-card:hover::before { left: 100%; }
.benefit-card .benefit-num {
    font-size: 2.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), rgba(168,85,247,.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: .5;
}
.benefit-card:hover {
    border-color: rgba(168,85,247,.3);
    box-shadow: 0 10px 40px rgba(168,85,247,.1);
}

/* ---------- Packages: Shimmer ---------- */
.package-card { overflow: hidden; }
.package-card.featured { animation: borderGlow 3s ease-in-out infinite; }
.package-card .shimmer {
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    pointer-events: none;
    transform: translateX(-150%) skewX(-20deg);
}
.package-card.featured .shimmer { animation: shimmerMove 3s ease-in-out infinite; }
.package-card:hover { transform: translateY(-10px) scale(1.02); }
.package-card .package-features li i { transition: transform .3s ease; }
.package-card:hover .package-features li i { transform: scale(1.2); }

/* ---------- Packages: Fully Animated Premium ---------- */
.packages-animated {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.pkg-anim-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.pkg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
}
.pkg-orb.po-1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -100px; right: 5%;
    animation: meshMove 22s ease-in-out infinite;
}
.pkg-orb.po-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -80px; left: 10%;
    animation: meshMove2 18s ease-in-out infinite;
}
.pkg-orb.po-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    top: 40%; left: 50%;
    animation: meshMove 28s ease-in-out infinite;
}

/* Dot grid pattern */
.pkg-anim-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(79,70,229,.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    mask: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    -webkit-mask: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

/* Grid */
.pkg-anim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card */
.pkg-anim-card {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: 3rem 2rem 2rem;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    border: 1px solid var(--border);
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.pkg-anim-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(79,70,229,.15);
}

/* Particles inside card */
.pkg-anim-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.pkg-anim-particles span {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(79,70,229,.15);
    animation: pkgParticle 8s ease-in-out infinite;
}
.pkg-anim-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.pkg-anim-particles span:nth-child(2) { top: 60%; left: 85%; animation-delay: 1.5s; background: rgba(168,85,247,.15); }
.pkg-anim-particles span:nth-child(3) { top: 80%; left: 20%; animation-delay: 3s; }
.pkg-anim-particles span:nth-child(4) { top: 15%; left: 70%; animation-delay: 4.5s; background: rgba(6,182,212,.15); }
.pkg-anim-particles span:nth-child(5) { top: 45%; left: 50%; animation-delay: 6s; }
@keyframes pkgParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: .3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: .8; }
}

/* Corner decorations */
.pkg-anim-corner-deco {
    position: absolute;
    width: 30px; height: 30px;
    border-style: solid;
    border-width: 0;
    z-index: 1;
    pointer-events: none;
    transition: all .4s ease;
}
.pkg-anim-corner-deco.cdc-tl {
    top: 12px; left: 12px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-left-radius: 8px;
}
.pkg-anim-corner-deco.cdc-br {
    bottom: 12px; right: 12px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-bottom-right-radius: 8px;
}
.pkg-anim-card:hover .pkg-anim-corner-deco.cdc-tl {
    top: 8px; left: 8px;
    width: 40px; height: 40px;
}
.pkg-anim-card:hover .pkg-anim-corner-deco.cdc-br {
    bottom: 8px; right: 8px;
    width: 40px; height: 40px;
}

/* Animated gradient border */
.pkg-anim-border {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #4f46e5, #a855f7, #06b6d4, #4f46e5);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 2;
    pointer-events: none;
}
.pkg-anim-card:hover .pkg-anim-border { opacity: 1; }

/* Glow */
.pkg-anim-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle, rgba(79,70,229,.1), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all .6s ease;
    pointer-events: none;
    z-index: 0;
}
.pkg-anim-card:hover .pkg-anim-glow {
    transform: translate(-50%, -50%) scale(2);
    opacity: 1;
}

/* Featured card */
.pkg-anim-featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #4f46e5, #a855f7) border-box;
    box-shadow: 0 15px 40px rgba(79,70,229,.1);
    transform: scale(1.03);
}
.pkg-anim-featured:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 25px 60px rgba(79,70,229,.18);
}
.pkg-anim-featured .pkg-anim-border { opacity: 1; }

/* Popular badge */
.pkg-anim-popular {
    position: absolute;
    top: -1px; right: 20px;
    display: flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .5rem 1.25rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 20px rgba(79,70,229,.3);
    z-index: 3;
    animation: popularPulse 2.5s ease-in-out infinite;
}
@keyframes popularPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(79,70,229,.3); }
    50% { box-shadow: 0 6px 30px rgba(79,70,229,.5); }
}
.pkg-anim-popular i { font-size: .75rem; }

/* ROI Badge */
.pkg-anim-roi-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .35rem .85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.pkg-anim-roi-badge i { font-size: .7rem; }

/* Icon with double pulse ring */
.pkg-anim-icon-wrap {
    position: relative;
    width: 72px; height: 72px;
    margin: 0 auto 1.25rem;
}
.pkg-anim-icon {
    position: relative;
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    transition: all .5s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 2;
}
.pkg-anim-card:hover .pkg-anim-icon {
    transform: scale(1.15) rotate(-10deg);
}
.pkg-anim-pulse {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(79,70,229,.3);
    animation: pkgPulse 2.5s ease-out infinite;
    z-index: 1;
}
@keyframes pkgPulse {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Floating animation for icon */
.pkg-anim-icon-wrap .pkg-anim-icon {
    animation: pkgIconFloat 3s ease-in-out infinite;
}
@keyframes pkgIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.pkg-anim-card:hover .pkg-anim-icon {
    animation: none;
    transform: scale(1.15) rotate(-10deg);
}

/* Name */
.pkg-anim-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .75rem;
    position: relative;
    z-index: 1;
}

/* Price */
.pkg-anim-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .1rem;
    margin-bottom: .25rem;
    position: relative;
    z-index: 1;
}
.pkg-anim-price-cur {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    margin-top: .6rem;
}
.pkg-anim-price-val {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.pkg-anim-cycle {
    font-size: .68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Description */
.pkg-anim-desc {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ROI Progress Bar */
.pkg-anim-roi-bar {
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.pkg-anim-roi-track {
    height: 6px;
    background: var(--green-pale);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: .4rem;
}
.pkg-anim-roi-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.pkg-anim-roi-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}
.pkg-anim-roi-text {
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Features */
.pkg-anim-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    z-index: 1;
}
.pkg-anim-features li {
    padding: .5rem 0;
    font-size: .85rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    transition: all .3s ease;
}
.pkg-anim-features li:hover {
    padding-left: .5rem;
    color: var(--dark);
}
.pkg-anim-features li i {
    color: var(--green);
    margin-right: .6rem;
    width: 20px; height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(168,85,247,.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    transition: all .3s ease;
}
.pkg-anim-features li:hover i {
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #fff;
    transform: scale(1.15);
}

/* Button */
.pkg-anim-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.pkg-anim-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.pkg-anim-btn:hover::after { left: 150%; }

/* Shine sweep */
.pkg-anim-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
    pointer-events: none;
    z-index: 3;
}
.pkg-anim-card:hover .pkg-anim-shine { left: 150%; }

/* Footer trust bar */
.pkg-anim-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.25rem 2rem;
    background: var(--cream);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(79,70,229,.06);
}
.pkg-anim-footer-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
}
.pkg-anim-footer-item i {
    width: 32px; height: 32px;
    min-width: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 4px 12px rgba(79,70,229,.2);
    transition: all .4s ease;
}
.pkg-anim-footer-item:hover i {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(79,70,229,.3);
}
.pkg-anim-footer-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* Responsive */
@media (max-width: 992px) {
    .pkg-anim-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 576px) {
    .pkg-anim-card { padding: 2rem 1.5rem 1.5rem; }
    .pkg-anim-featured { transform: scale(1); }
    .pkg-anim-featured:hover { transform: translateY(-12px); }
    .pkg-anim-grid { max-width: 100%; }
    .pkg-anim-footer { flex-wrap: wrap; gap: 1rem; }
    .pkg-anim-footer-divider { display: none; }
}

/* ---------- Testimonials ---------- */
.testi-card { position: relative; overflow: hidden; }
.testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.testi-card:hover::before { transform: scaleX(1); }
.testi-card .testi-avatar { transition: transform .3s ease, border-color .3s ease; }
.testi-card:hover .testi-avatar { transform: scale(1.1); border-color: var(--gold); }
.testi-card .testi-quote { transition: color .3s ease; }
.testi-card:hover .testi-quote { color: rgba(129,140,248,.15); }

/* ---------- Testimonials: Fully Animated ---------- */
.testi-anim-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.testi-anim-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.testi-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
}
.testi-orb.to-1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -120px; left: -80px;
    animation: meshMove 22s ease-in-out infinite;
}
.testi-orb.to-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -100px; right: -50px;
    animation: meshMove2 20s ease-in-out infinite;
}
.testi-anim-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(79,70,229,.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    mask: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

/* Stats bar */
.testi-anim-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
    border: 1px solid var(--border);
}
.testi-anim-stat-item {
    text-align: center;
}
.testi-anim-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.testi-anim-stat-label {
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.testi-anim-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Grid */
.testi-anim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.testi-anim-card {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: 2.5rem 2rem 2rem;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    border: 1px solid var(--border);
}
.testi-anim-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(79,70,229,.12);
}

/* Animated gradient border */
.testi-anim-border {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 2;
    pointer-events: none;
}
.testi-anim-card:hover .testi-anim-border { opacity: 1; }

/* Glow */
.testi-anim-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: all .6s ease;
    pointer-events: none;
    z-index: 0;
}
.testi-anim-card:hover .testi-anim-glow {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 1;
}

/* Quote icon */
.testi-anim-quote-icon {
    position: relative;
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(79,70,229,.2);
    z-index: 1;
    animation: testiIconFloat 3s ease-in-out infinite;
}
@keyframes testiIconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(-5deg); }
}
.testi-anim-card:hover .testi-anim-quote-icon {
    animation: none;
    transform: scale(1.1) rotate(-10deg);
}

/* Stars */
.testi-anim-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.testi-anim-stars i {
    font-size: .85rem;
    color: #f59e0b;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
}
.testi-anim-card.in-view .testi-anim-stars i {
    opacity: 1;
    transform: scale(1) rotate(0);
}
.testi-anim-card.in-view .testi-anim-stars i:nth-child(1) { transition-delay: .3s; }
.testi-anim-card.in-view .testi-anim-stars i:nth-child(2) { transition-delay: .4s; }
.testi-anim-card.in-view .testi-anim-stars i:nth-child(3) { transition-delay: .5s; }
.testi-anim-card.in-view .testi-anim-stars i:nth-child(4) { transition-delay: .6s; }
.testi-anim-card.in-view .testi-anim-stars i:nth-child(5) { transition-delay: .7s; }

/* Text */
.testi-anim-text {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Author */
.testi-anim-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    position: relative;
    z-index: 1;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,.05);
}
.testi-anim-avatar-wrap {
    position: relative;
    width: 50px; height: 50px;
    flex-shrink: 0;
}
.testi-anim-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(79,70,229,.2);
    animation: testiRingRotate 4s linear infinite;
}
@keyframes testiRingRotate {
    to { transform: rotate(360deg); }
}
.testi-anim-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .4s ease;
}
.testi-anim-card:hover .testi-anim-avatar {
    transform: scale(1.1);
}
.testi-anim-author-info {
    flex: 1;
}
.testi-anim-name {
    font-weight: 700;
    font-size: .88rem;
    color: var(--dark);
}
.testi-anim-role {
    font-size: .72rem;
    color: var(--text-muted);
}

/* Verified badge */
.testi-anim-badge {
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    animation: testiBadgeFloat 2.5s ease-in-out infinite;
}
@keyframes testiBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Shine sweep */
.testi-anim-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
    pointer-events: none;
    z-index: 3;
}
.testi-anim-card:hover .testi-anim-shine { left: 150%; }

/* Responsive */
@media (max-width: 992px) {
    .testi-anim-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
    .testi-anim-stats { gap: 1.5rem; flex-wrap: wrap; }
}
@media (max-width: 576px) {
    .testi-anim-card { padding: 2rem 1.5rem 1.5rem; }
    .testi-anim-stat-divider { display: none; }
    .testi-anim-stats { gap: 1rem; padding: 1.25rem 1rem; }
    .testi-anim-stat-num { font-size: 1.5rem; }
}

/* ---------- CTA: Particles ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--green-deep), var(--dark), var(--green));
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}
.cta-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(168,85,247,.4);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}
.cta-banner .btn-green { animation: glowPulse 2.5s ease-in-out infinite; }

/* ---------- CTA: Fully Animated ---------- */
.cta-anim-section {
    padding: 4rem 0 5rem;
    background: var(--white);
}
.cta-anim-wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 4rem 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #1e1b4b 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
}

/* Background orbs */
.cta-anim-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.cta-anim-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
}
.cta-anim-orb.co-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -100px; left: -50px;
    animation: meshMove 15s ease-in-out infinite;
}
.cta-anim-orb.co-2 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -80px; right: -30px;
    animation: meshMove2 18s ease-in-out infinite;
}
.cta-anim-orb.co-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: meshMove 22s ease-in-out infinite;
}

/* Grid pattern */
.cta-anim-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    mask: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

/* Particles */
.cta-anim-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.cta-anim-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(168,85,247,.5);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

/* Shine sweep across whole banner */
.cta-anim-shine-sweep {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
    transform: skewX(-20deg);
    animation: ctaShineSweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes ctaShineSweep {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Content */
.cta-anim-content {
    position: relative;
    z-index: 2;
}

/* Rocket icon with pulse */
.cta-anim-icon-wrap {
    position: relative;
    width: 72px; height: 72px;
    margin: 0 auto 1.5rem;
}
.cta-anim-icon {
    position: relative;
    width: 72px; height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 10px 30px rgba(79,70,229,.4);
    z-index: 2;
    animation: ctaIconFloat 3s ease-in-out infinite;
}
@keyframes ctaIconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-8px) rotate(-8deg); }
}
.cta-anim-pulse {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 2px solid rgba(79,70,229,.4);
    animation: ctaPulse 2.5s ease-out infinite;
    z-index: 1;
}
@keyframes ctaPulse {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Label */
.cta-anim-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a5b4fc;
    margin-bottom: .75rem;
    padding: .35rem 1rem;
    border-radius: 50px;
    background: rgba(79,70,229,.15);
    border: 1px solid rgba(79,70,229,.2);
}

/* Title */
.cta-anim-title {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 50%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.cta-anim-desc {
    font-size: .95rem;
    color: rgba(255,255,255,.65);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Chips */
.cta-anim-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.cta-anim-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    transition: all .3s ease;
}
.cta-anim-chip:hover {
    background: rgba(79,70,229,.2);
    border-color: rgba(79,70,229,.4);
    transform: translateY(-3px);
}
.cta-anim-chip i {
    font-size: .8rem;
    color: #a5b4fc;
}

/* Actions */
.cta-anim-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Primary button */
.cta-anim-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 14px;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 8px 25px rgba(79,70,229,.4);
    overflow: hidden;
    transition: all .4s ease;
    text-decoration: none;
}
.cta-anim-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79,70,229,.5);
}
.cta-anim-btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.cta-anim-btn-primary:hover .cta-anim-btn-shine { left: 150%; }

/* Secondary button */
.cta-anim-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 14px;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,.2);
    transition: all .4s ease;
    text-decoration: none;
}
.cta-anim-btn-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-3px);
}
.cta-anim-btn-secondary i { transition: transform .3s ease; }
.cta-anim-btn-secondary:hover i { transform: translateX(4px); }

/* Corner decorations */
.cta-anim-corner {
    position: absolute;
    width: 40px; height: 40px;
    border-style: solid;
    border-width: 0;
    border-color: rgba(129,140,248,.3);
    z-index: 1;
    pointer-events: none;
}
.cta-anim-corner-tl {
    top: 16px; left: 16px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-left-radius: 12px;
}
.cta-anim-corner-tr {
    top: 16px; right: 16px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-top-right-radius: 12px;
}
.cta-anim-corner-bl {
    bottom: 16px; left: 16px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-bottom-left-radius: 12px;
}
.cta-anim-corner-br {
    bottom: 16px; right: 16px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-bottom-right-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-anim-wrap { padding: 3rem 1.5rem; border-radius: 20px; }
    .cta-anim-title { font-size: 1.7rem; }
    .cta-anim-desc { font-size: .85rem; }
    .cta-anim-chips { gap: .5rem; }
    .cta-anim-chip { font-size: .72rem; padding: .4rem .75rem; }
    .cta-anim-actions { flex-direction: column; }
    .cta-anim-btn-primary, .cta-anim-btn-secondary { width: 100%; justify-content: center; }
    .cta-anim-corner { width: 28px; height: 28px; }
}
@media (max-width: 576px) {
    .cta-anim-wrap { padding: 2.5rem 1.25rem; }
    .cta-anim-title { font-size: 1.4rem; }
    .cta-anim-icon-wrap { width: 60px; height: 60px; }
    .cta-anim-icon { width: 60px; height: 60px; font-size: 1.4rem; border-radius: 18px; }
}

/* ---------- Trust Badges ---------- */
.trust-section {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .9rem;
    transition: color .3s ease;
}
.trust-badge:hover { color: var(--green); }
.trust-badge i {
    font-size: 1.8rem;
    color: var(--green);
    opacity: .6;
    transition: all .3s ease;
}
.trust-badge:hover i { opacity: 1; transform: scale(1.1); }

/* ---------- Button Shine ---------- */
.btn-primary, .btn-green { position: relative; overflow: hidden; }
.btn-primary::after, .btn-green::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.btn-primary:hover::after, .btn-green:hover::after { left: 150%; }

/* ---------- Benefits section title override (dark bg) ---------- */
.benefits .section-title {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white) !important;
}

/* ---------- How It Works: Fully Animated Timeline ---------- */
.how-section-animated {
    background: var(--cream);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}
.how-anim-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.how-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
}
.how-orb.ho-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -150px; left: -100px;
    animation: meshMove 20s ease-in-out infinite;
}
.how-orb.ho-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    bottom: -100px; right: -50px;
    animation: meshMove2 25s ease-in-out infinite;
}

/* Timeline grid */
.how-anim-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
    position: relative;
}

/* Animated connecting line */
.how-anim-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(79,70,229,.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}
.how-anim-line-flow {
    position: absolute;
    top: 0; left: 0;
    width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, #4f46e5, #a855f7, transparent);
    border-radius: 2px;
    animation: lineFlow 3s ease-in-out infinite;
}
@keyframes lineFlow {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* Individual step */
.how-anim-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Number badge with pulse ring */
.how-anim-num-wrap {
    position: relative;
    width: 80px; height: 80px;
    margin: 0 auto 1.25rem;
}
.how-anim-num {
    position: relative;
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 8px 25px rgba(79,70,229,.3);
    transition: all .5s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 2;
}
.how-anim-step:nth-child(2) .how-anim-num { background: linear-gradient(135deg, #06b6d4, #4f46e5); box-shadow: 0 8px 25px rgba(6,182,212,.3); }
.how-anim-step:nth-child(3) .how-anim-num { background: linear-gradient(135deg, #a855f7, #c084fc); box-shadow: 0 8px 25px rgba(168,85,247,.3); }
.how-anim-step:nth-child(4) .how-anim-num { background: linear-gradient(135deg, #3730a3, #4f46e5); box-shadow: 0 8px 25px rgba(55,48,163,.3); }
.how-anim-step:nth-child(5) .how-anim-num { background: linear-gradient(135deg, #4f46e5, #06b6d4); box-shadow: 0 8px 25px rgba(79,70,229,.3); }
.how-anim-step:hover .how-anim-num {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(79,70,229,.4);
}
.how-anim-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(79,70,229,.4);
    animation: howPulse 2.5s ease-out infinite;
    z-index: 1;
}
.how-anim-step:nth-child(2) .how-anim-pulse { border-color: rgba(6,182,212,.4); }
.how-anim-step:nth-child(3) .how-anim-pulse { border-color: rgba(168,85,247,.4); }
.how-anim-step:nth-child(4) .how-anim-pulse { border-color: rgba(55,48,163,.4); }
.how-anim-step:nth-child(5) .how-anim-pulse { border-color: rgba(79,70,229,.4); }
@keyframes howPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Card */
.how-anim-card {
    position: relative;
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem 1.25rem 1.5rem;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    border: 1px solid transparent;
}
.how-anim-step:hover .how-anim-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79,70,229,.12);
    border-color: rgba(79,70,229,.1);
}

/* Coin icon */
.how-anim-coin {
    width: 48px; height: 48px;
    margin: 0 auto .75rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(168,85,247,.06));
    transition: all .5s cubic-bezier(.68,-.55,.265,1.55);
}
.how-anim-step:hover .how-anim-coin {
    transform: scale(1.2) rotate(-15deg);
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #fff;
    box-shadow: 0 8px 20px rgba(79,70,229,.25);
}

/* Day label */
.how-anim-day {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: .3rem;
}

/* Amount */
.how-anim-amount {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .4rem;
    line-height: 1;
}

/* Description */
.how-anim-desc {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Shine sweep on card hover */
.how-anim-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
    pointer-events: none;
    z-index: 3;
}
.how-anim-step:hover .how-anim-shine { left: 150%; }

/* Total summary card */
.how-anim-total {
    position: relative;
    max-width: 520px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white), var(--cream));
    border: 1px solid rgba(79,70,229,.1);
    box-shadow: 0 10px 40px rgba(79,70,229,.08);
    transition: all .4s ease;
}
.how-anim-total:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(79,70,229,.15);
}
.how-anim-total-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 300px;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle, rgba(79,70,229,.08), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all .6s ease;
    pointer-events: none;
}
.how-anim-total:hover .how-anim-total-glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}
.how-anim-total-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
}
.how-anim-total-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 8px 20px rgba(79,70,229,.25);
    animation: totalIconBounce 2s ease-in-out infinite;
}
@keyframes totalIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.how-anim-total-info {
    display: flex;
    flex-direction: column;
}
.how-anim-total-label {
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.how-anim-total-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.how-anim-total-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.how-anim-total-btn {
    position: relative;
    overflow: hidden;
}
.how-anim-total-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.how-anim-total-btn:hover::after { left: 150%; }
.how-anim-total-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-20deg);
    transition: left .8s ease;
    pointer-events: none;
    z-index: 2;
}
.how-anim-total:hover .how-anim-total-shine { left: 150%; }

/* ---------- Responsive: Premium ---------- */
@media (max-width: 992px) {
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .stat-bar-item:nth-child(2) { border-right: none; }
    .hero-float-card { display: none; }
    .how-anim-timeline { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
    .how-anim-line { display: none; }
}
@media (max-width: 576px) {
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem .5rem; }
    .stat-bar-value { font-size: 1.6rem; }
    .stat-bar-label { font-size: .65rem; }
    .trust-grid { gap: 1.5rem; }
    .trust-badge { font-size: .8rem; }
    .trust-badge i { font-size: 1.4rem; }
    .hero-mesh-orb { filter: blur(60px); }
    .hero-mesh-orb.o1, .hero-mesh-orb.o3 { width: 250px; height: 250px; }
    .hero-mesh-orb.o2, .hero-mesh-orb.o4 { width: 200px; height: 200px; }
    .benefit-card .benefit-num { font-size: 1.8rem; }
    .how-anim-timeline { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .how-anim-num { width: 60px; height: 60px; font-size: 1.3rem; }
    .how-anim-num-wrap { width: 60px; height: 60px; }
    .how-anim-amount { font-size: 1.3rem; }
    .how-anim-card { padding: 1.25rem .85rem 1rem; }
    .how-anim-total-content { flex-wrap: wrap; padding: 1rem 1.5rem; }
    .how-anim-total-divider { display: none; }
}

/* ---------- Footer: Fully Animated ---------- */
.footer-anim {
    background: linear-gradient(180deg, #0f172a 0%, #0a0a14 100%);
    color: rgba(255,255,255,.6);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Animated top gradient line */
.footer-anim-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4f46e5, #a855f7, #06b6d4, #a855f7, #4f46e5, transparent);
    background-size: 200% 100%;
    animation: footerLineFlow 4s linear infinite;
    z-index: 3;
}
@keyframes footerLineFlow {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Background glow */
.footer-anim-glow {
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(79,70,229,.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dot pattern */
.footer-anim-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 0;
}

/* Grid */
.footer-anim-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Brand column */
.footer-anim-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
}
.footer-anim-brand-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    box-shadow: 0 6px 20px rgba(79,70,229,.3);
    animation: footerIconPulse 3s ease-in-out infinite;
    transition: transform .4s ease;
}
@keyframes footerIconPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(79,70,229,.3); }
    50% { box-shadow: 0 6px 30px rgba(79,70,229,.5); }
}
.footer-anim-brand-icon:hover {
    transform: scale(1.1) rotate(-10deg);
}
.footer-anim-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Sora', sans-serif;
}
.footer-anim-tagline {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Social links */
.footer-anim-social {
    display: flex;
    gap: .6rem;
}
.footer-anim-social-link {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.footer-anim-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    opacity: 0;
    transition: opacity .3s ease;
}
.footer-anim-social-link i {
    position: relative;
    z-index: 1;
}
.footer-anim-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(79,70,229,.3);
}
.footer-anim-social-link:hover::before {
    opacity: 1;
}

/* Headings */
.footer-anim-heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: .75rem;
}
.footer-anim-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, #4f46e5, #a855f7);
    border-radius: 2px;
}

/* Links list */
.footer-anim-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-anim-links li {
    margin-bottom: .65rem;
}
.footer-anim-links a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: all .3s ease;
}
.footer-anim-links a i {
    font-size: .5rem;
    opacity: .4;
    transition: all .3s ease;
}
.footer-anim-links a:hover {
    color: #a5b4fc;
    transform: translateX(6px);
}
.footer-anim-links a:hover i {
    opacity: 1;
    color: #4f46e5;
    transform: translateX(2px);
}

/* Contact items */
.footer-anim-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-anim-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.footer-anim-contact-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #a5b4fc;
    background: rgba(79,70,229,.12);
    border: 1px solid rgba(79,70,229,.15);
    transition: all .4s ease;
}
.footer-anim-contact-icon.purple {
    color: #c4b5fd;
    background: rgba(168,85,247,.1);
    border-color: rgba(168,85,247,.15);
}
.footer-anim-contact-item:hover .footer-anim-contact-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(168,85,247,.15));
    border-color: rgba(79,70,229,.3);
}
.footer-anim-contact-item p {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    margin: 0;
    padding-top: .5rem;
}

/* Bottom bar */
.footer-anim-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-anim-bottom p {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    margin: 0;
}
.footer-anim-back-top {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    padding: .5rem 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s ease;
}
.footer-anim-back-top:hover {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79,70,229,.3);
}
.footer-anim-back-top i {
    font-size: .75rem;
    transition: transform .3s ease;
}
.footer-anim-back-top:hover i {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-anim-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-anim-brand-col {
        grid-column: 1 / -1;
    }
}
@media (max-width: 576px) {
    .footer-anim-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-anim-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-anim {
        padding: 3rem 0 1.5rem;
    }
}
