/* ========================================
   NEW LIFE NET PRO — Premium Stylesheet
   ======================================== */

/* ===== CSS Variables / Design Tokens ===== */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f2a;
    --bg-card: #141430;
    --bg-card-hover: #1a1a40;
    --text-primary: #f0f0ff;
    --text-secondary: #a0a0c0;
    --text-muted: #707090;
    --accent-green: #00E676;
    --accent-gold: #FFD600;
    --accent-blue: #40C4FF;
    --accent-orange: #FF6D00;
    --gradient-main: linear-gradient(135deg, #00E676 0%, #FFD600 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a1a 0%, #0f0f2a 100%);
    --gradient-card: linear-gradient(145deg, rgba(20,20,48,0.8), rgba(10,10,26,0.9));
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-glow-green: 0 0 30px rgba(0,230,118,0.15);
    --shadow-glow-gold: 0 0 30px rgba(255,214,0,0.15);
    --border-subtle: 1px solid rgba(255,255,255,0.06);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-primary: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', 'Outfit', system-ui, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --nav-height: 80px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img, svg {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(0,230,118,0.1), rgba(255,214,0,0.1));
    color: var(--accent-green);
    border: 1px solid rgba(0,230,118,0.2);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-main);
    color: #0a0a1a;
    box-shadow: 0 4px 20px rgba(0,230,118,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,230,118,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10,10,26,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 1001;
}

.nav-logo .logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 0;
    object-fit: contain;
}

.nav-logo .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    color: var(--text-primary);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

.menu-toggle .icon-close {
    display: none;
}

.menu-toggle.active .icon-hamburger {
    display: none;
}

.menu-toggle.active .icon-close {
    display: block;
}

/* ===== FULLSCREEN MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,26,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 12px 32px;
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    transform: translateY(30px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-link:nth-child(8) { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--text-primary);
    background: rgba(0,230,118,0.08);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(0,230,118,0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255,214,0,0.04) 0%, transparent 50%),
                var(--bg-primary);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-green);
    opacity: 0.3;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { opacity: 0.7; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.1; }
    75% { opacity: 0.5; }
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0,230,118,0.08);
    color: var(--accent-green);
    border: 1px solid rgba(0,230,118,0.2);
    margin-bottom: 24px;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(0,230,118,0); }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-inline {
    display: flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    flex-shrink: 0;
    z-index: 1;
}

.hero-svg {
    width: 420px;
    height: 420px;
}

/* Pulse Ring Animation */
.pulse-ring {
    animation: pulseRing 3s infinite ease-in-out;
    transform-origin: center;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.15; }
}

/* Draw Line Animation */
.draw-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Floating Coin */
.float-coin {
    animation: floatCoin 4s infinite ease-in-out;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-green);
    border-color: rgba(0,230,118,0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.benefit-highlight {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(0,230,118,0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0,230,118,0.2);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    padding: 24px;
    position: relative;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,230,118,0.3), rgba(255,214,0,0.3));
    border-radius: 2px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* ===== COMMISSION SECTION ===== */
.commission {
    background: var(--bg-secondary);
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.commission-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.commission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-green);
}

.commission-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.commission-percentage {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.commission-percentage.gold {
    background: linear-gradient(135deg, #FFD600, #FF9100);
    -webkit-background-clip: text;
    background-clip: text;
}

.commission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.commission-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== NETWORK INCOME ===== */
.network {
    background: var(--bg-primary);
}

.network-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.network-tree {
    display: flex;
    justify-content: center;
}

.network-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.network-you {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 0 40px rgba(0,230,118,0.3);
}

.network-you svg {
    width: 32px;
    height: 32px;
}

.network-you span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0a0a1a;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

.level-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.level-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-green);
}

.level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,230,118,0.1);
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    border: 1px solid rgba(0,230,118,0.2);
}

.level-rate {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.level-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 8px 0 12px;
}

.level-bar {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 4px;
    transition: width 1.5s ease;
}

/* ===== REWARDS SECTION ===== */
.rewards {
    background: var(--bg-secondary);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.reward-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-gold);
}

.reward-card.featured {
    border-color: rgba(255,214,0,0.3);
    background: linear-gradient(145deg, rgba(255,214,0,0.05), rgba(20,20,48,0.9));
}

.reward-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gradient-main);
    color: #0a0a1a;
    white-space: nowrap;
}

.reward-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    padding: 16px;
}

.reward-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reward-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.reward-milestone {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    display: inline-block;
    background: rgba(255,214,0,0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255,214,0,0.2);
    margin-bottom: 12px;
}

.reward-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.reward-or {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== WHY JOIN SECTION ===== */
.why-join {
    background: var(--bg-primary);
}

.why-join-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-join-text .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.why-join-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.why-join-text .section-desc {
    margin: 0 0 32px 0;
    text-align: left;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 500;
}

.why-list li svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.why-join-visual {
    display: flex;
    justify-content: center;
}

.why-svg {
    width: 100%;
    max-width: 400px;
}

/* Orbit Dot */
.orbit-dot {
    animation: orbitPulse 3s infinite ease-in-out;
}

@keyframes orbitPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-green);
}

.stat-card svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: inline;
}

.stat-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-green);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a0a1a;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== NOTICE SECTION ===== */
.notice {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.notice-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(145deg, rgba(255,214,0,0.04), rgba(20,20,48,0.8));
    border: 1px solid rgba(255,214,0,0.15);
    border-radius: var(--radius-lg);
}

.notice-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.notice-card h2 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.notice-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.contact-item:hover {
    border-color: rgba(0,230,118,0.2);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,230,118,0.08);
    color: var(--accent-green);
    padding: 12px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-item a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--accent-green);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group textarea {
    padding-left: 20px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0,230,118,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #060612;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-group h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links-group a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--accent-green);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: none;
    cursor: pointer;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,230,118,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    color: #0a0a1a;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all var(--transition-smooth);
    animation: whatsappPulse 2s infinite ease-in-out;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== VIEWPORT ANIMATIONS ===== */
.anim-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-item.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay support */
.anim-item[data-delay="100"] { transition-delay: 0.1s; }
.anim-item[data-delay="150"] { transition-delay: 0.15s; }
.anim-item[data-delay="200"] { transition-delay: 0.2s; }
.anim-item[data-delay="300"] { transition-delay: 0.3s; }
.anim-item[data-delay="400"] { transition-delay: 0.4s; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 60px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-svg {
        width: 300px;
        height: 300px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid .benefit-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .levels-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rewards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rewards-grid .reward-card:nth-child(4),
    .rewards-grid .reward-card:nth-child(5) {
        grid-column: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-join-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-join-text .section-desc {
        text-align: center;
    }

    .why-list {
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 20px 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid .benefit-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .steps-container {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(0,230,118,0.3), rgba(255,214,0,0.3));
    }

    .step-connector::after {
        right: -3px;
        top: auto;
        bottom: -4px;
    }

    .commission-grid {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-grid .reward-card.featured {
        grid-column: span 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .mobile-link {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-svg {
        width: 240px;
        height: 240px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .levels-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .rewards-grid .reward-card.featured {
        grid-column: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mobile-link {
        font-size: 1.4rem;
    }
}
