/* ============================================================
   PinToof Group MLM - Website CSS
   Light Gradient UI Design | Inter Font
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800;900&display=swap');

:root {
    --primary: #667eea;
    --primary-dark: #764ba2;
    --secondary: #4facfe;
    --accent: #00f2fe;
    --success: #43e97b;
    --danger: #f5576c;
    --warning: #fda085;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8faff;
    --bg-dark: #f1f5f9;
    --border: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-3: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-4: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-5: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4facfe 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 2px 8px rgba(102,126,234,0.10);
    --shadow: 0 4px 24px rgba(102,126,234,0.13);
    --shadow-lg: 0 12px 48px rgba(102,126,234,0.20);
    --shadow-xl: 0 24px 64px rgba(102,126,234,0.25);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--bg-light); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-label {
    display: inline-block;
    background: rgba(102,126,234,0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(102,126,234,0.15);
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
.divider {
    display: block;
    width: 56px; height: 4px;
    background: var(--gradient-1);
    border-radius: 4px;
    margin: 12px auto 0;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}
.navbar-inner {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102,126,234,0.1);
    padding: 14px 0;
    transition: var(--transition);
}
.navbar.scrolled .navbar-inner { box-shadow: 0 4px 30px rgba(102,126,234,0.15); }
.navbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon {
    width: 42px; height: 42px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-size: 1.1rem;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102,126,234,0.35);
}
.brand-text .brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}
.brand-text .brand-sub { font-size: 0.68rem; color: var(--text-muted); display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(102,126,234,0.07); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font);
}
.btn-primary {
    background: var(--gradient-1);
    color: white !important;
    box-shadow: 0 6px 20px rgba(102,126,234,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(102,126,234,0.45); color: white !important; }

.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--gradient-1); color: white !important; border-color: transparent; box-shadow: 0 6px 20px rgba(102,126,234,0.35); }

.btn-outline-white {
    background: rgba(255,255,255,0.12);
    color: white !important;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); color: white !important; }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.82rem; }
.btn-success { background: var(--gradient-3); color: white !important; }
.btn-warning { background: var(--gradient-5); color: white !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
/* Hamburger open animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav - hidden by default, shown via .open class */
.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid var(--border);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(102,126,234,0.12);
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 24px; font-weight: 600; color: var(--text-muted); border-radius: 8px; margin: 2px 12px; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--bg-light); color: var(--primary); }
.mobile-nav .mobile-btns { display: flex; gap: 10px; padding: 10px 24px; }

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.hero-circle.c1 { width: 700px; height: 700px; background: white; top: -300px; right: -200px; }
.hero-circle.c2 { width: 400px; height: 400px; background: white; bottom: -150px; left: -100px; }
.hero-circle.c3 { width: 250px; height: 250px; background: rgba(255,255,255,0.5); top: 50%; right: 20%; transform: translateY(-50%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 0; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero-title .highlight { color: #ffd700; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}
.hero-stat .stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: white; display: block; }
.hero-stat .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 2px; }

/* Hero Visual - Level Cards */
.hero-visual { position: relative; }
.hero-card-group {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: 30px;
}
.hero-card-title { color: white; font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.hero-card-sub { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 20px; }
.level-pills { display: flex; flex-direction: column; gap: 10px; }
.level-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}
.level-pill:hover { background: rgba(255,255,255,0.18); }
.pill-left { display: flex; align-items: center; gap: 12px; }
.pill-num {
    width: 32px; height: 32px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.8rem;
    color: white;
}
.pill-label { color: rgba(255,255,255,0.85); font-size: 0.85rem; }
.pill-percent { font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem; color: #ffd700; }
.pill-amount { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* Joining fee badge */
.joining-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 14px;
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
}

/* ===================== MARQUEE / TICKER ===================== */
.ticker {
    background: var(--gradient-1);
    padding: 12px 0;
    overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 40px;
}
.ticker-item i { color: #ffd700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== ABOUT SECTION ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-label { color: var(--primary); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.about-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 18px; }
.about-text { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-stat {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}
.about-stat .num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}
.about-stat .lbl { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.about-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}
.about-card h6 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.about-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 0;
    opacity: 0.2;
}
.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(102,126,234,0.35);
}
.step-card h5 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===================== INCOME PLAN ===================== */
.plan-banner {
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.plan-banner h3 { color: white; font-weight: 900; font-size: 1.5rem; }
.plan-banner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 4px 0 0; }
.plan-fee { text-align: right; }
.plan-fee .amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: #ffd700; line-height: 1; }
.plan-fee small { color: rgba(255,255,255,0.7); font-size: 0.8rem; display: block; }

.levels-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.level-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.level-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.level-card:nth-child(1)::before { background: var(--gradient-1); }
.level-card:nth-child(2)::before { background: linear-gradient(135deg,#764ba2,#4facfe); }
.level-card:nth-child(3)::before { background: var(--gradient-2); }
.level-card:nth-child(4)::before { background: var(--gradient-3); }
.level-card:nth-child(5)::before { background: var(--gradient-5); }
.level-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.level-badge {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900; font-size: 1.1rem;
    color: white;
    margin: 0 auto 16px;
}
.level-percent { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--text); line-height: 1; }
.level-per { font-size: 0.72rem; color: var(--text-muted); margin: 4px 0; }
.level-amount { font-weight: 800; font-size: 1.1rem; margin: 6px 0; }
.level-name { font-size: 0.8rem; color: var(--text-muted); }

/* Income Types */
.income-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.income-type-card {
    display: flex;
    gap: 18px;
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    align-items: flex-start;
}
.income-type-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: white; flex-shrink: 0;
}
.income-type-card h6 { font-weight: 700; margin-bottom: 4px; }
.income-type-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ===================== SERVICES ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }
.service-card:nth-child(1)::after { background: var(--gradient-1); }
.service-card:nth-child(2)::after { background: var(--gradient-2); }
.service-card:nth-child(3)::after { background: var(--gradient-3); }
.service-card:nth-child(4)::after { background: var(--gradient-4); }
.service-card:nth-child(5)::after { background: var(--gradient-5); }
.service-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: white;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.service-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-feature { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.service-feature i { color: var(--success); font-size: 0.75rem; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.service-link:hover { gap: 10px; }

/* ===================== WHY CHOOSE ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
    margin-bottom: 18px;
}
.feature-card h5 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ===================== RANKS ===================== */
.ranks-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.rank-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.rank-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rank-badge {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
    margin: 0 auto 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.rank-card h6 { font-weight: 800; font-size: 0.9rem; margin-bottom: 4px; }
.rank-team { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.rank-reward { font-size: 0.78rem; font-weight: 700; }

/* ===================== STATS COUNTER ===================== */
.counter-section { background: var(--gradient-1); padding: 70px 0; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.counter-item .count-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
}
.counter-item .count-suffix { font-size: 1.4rem; font-weight: 900; color: #ffd700; }
.counter-item .count-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; display: block; }

/* ===================== OFFICES ===================== */
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.office-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.office-card:nth-child(1) { border-top-color: var(--primary); }
.office-card:nth-child(2) { border-top-color: var(--primary-dark); }
.office-card:nth-child(3) { border-top-color: var(--secondary); }
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.office-type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(102,126,234,0.08);
    color: var(--primary);
    margin-bottom: 14px;
}
.office-card h5 { font-weight: 800; margin-bottom: 12px; }
.office-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.office-detail i { color: var(--primary); margin-top: 2px; flex-shrink: 0; font-size: 0.85rem; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    gap: 16px;
    font-family: var(--font);
    transition: var(--transition);
}
.faq-q:hover { background: var(--bg-light); }
.faq-q.active { color: var(--primary); }
.faq-icon { font-size: 0.85rem; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.faq-q.active .faq-icon { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
}
.faq-a.open { max-height: 400px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 16px; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: var(--gradient-1);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -200px; right: -150px; }
.cta-section::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; bottom: -100px; left: -80px; }
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 16px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.footer { background: #0f172a; color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-icon {
    width: 40px; height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-size: 1rem;
}
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--primary); color: white; border-color: transparent; }

.footer-title { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.87rem;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-link:hover { color: white; padding-left: 4px; }
.footer-link i { font-size: 0.7rem; color: var(--primary); }

.footer-contact { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact i { color: var(--primary); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact span { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,0.65); font-weight: 700; transition: color 0.2s; }
.footer-bottom a:hover { color: #ffd700; }
.footer-bottom strong { font-weight: 700; }

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: var(--gradient-hero);
    padding: 110px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-header::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -200px; right: -150px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; font-weight: 900; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===================== CARDS ===================== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); }

/* ===================== FORMS ===================== */
.form-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 44px;
    max-width: 580px;
    margin: 0 auto;
    border: 1px solid var(--border);
}
.form-title { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; margin-bottom: 6px; }
.form-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-family: var(--font);
    color: var(--text);
    background: white;
    transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(102,126,234,0.12); outline: none; }
.form-control::placeholder { color: var(--text-light); }
.input-icon { position: relative; }
.input-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.9rem; }
.input-icon .form-control { padding-left: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===================== ALERTS ===================== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.alert-error { background: rgba(245,87,108,0.08); color: #c0293a; border: 1px solid rgba(245,87,108,0.2); }
.alert-success { background: rgba(67,233,123,0.08); color: #1a9e5c; border: 1px solid rgba(67,233,123,0.2); }
.alert-info { background: rgba(102,126,234,0.08); color: var(--primary); border: 1px solid rgba(102,126,234,0.2); }

/* ===================== CONTACT GRID ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .ranks-grid { grid-template-columns: repeat(3, 1fr); }
    .levels-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .about-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .ranks-grid { grid-template-columns: repeat(3, 1fr); }
    .levels-grid { grid-template-columns: repeat(3, 1fr); }
    .income-types { grid-template-columns: 1fr; }
    /* Show hamburger, hide desktop nav links & action buttons */
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-btn-desktop { display: none !important; }
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .hero-grid { padding: 60px 0; }
    .hero-stats { gap: 20px; }
    .about-grid, .steps-grid, .features-grid, .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
    .plan-banner { flex-direction: column; text-align: center; }
    .plan-fee { text-align: center; }
    .steps-grid::before { display: none; }
    .income-types { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .btn-lg { padding: 14px 28px; }
    .levels-grid { grid-template-columns: 1fr 1fr; }
    .ranks-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: 1fr 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.text-white { color: white !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* WhatsApp Float Button */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); color: white; box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-success { background: rgba(67,233,123,0.12); color: #1a9e5c; }
.badge-primary { background: rgba(102,126,234,0.1); color: var(--primary); }

/* Testimonial */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}
.testimonial-text { font-style: italic; color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
