/* ==================== Global Styles ==================== */
:root {
    --primary-gold: #D4AF37;
    --primary-blue: #0099FF;
    --primary-dark: #0f0f1e;
    --secondary-dark: #1a1a2e;
    --tertiary-dark: #16213e;
    --accent-light: #ffffff;
    --accent-gray: #a0aec0;
    --success-green: #10B981;
    --error-red: #EF4444;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--accent-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-gray);
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-light);
}

/* ==================== Buttons ==================== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    min-width: 100px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f0c664 100%);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0077cc 100%);
    color: var(--accent-light);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f0c664 100%);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* ==================== Navbar ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-coin-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    animation: spin-coin 8s linear infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 1.5rem;
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

.nav-links a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
    margin-top: 70px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gold);
    top: -20%;
    left: -10%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-gold);
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--primary-gold);
    border-radius: 6px;
    font-size: 0.9rem;
}

.badge i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.coin-display {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-coin 5s ease-in-out infinite;
}

.coin-logo {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    animation: spin-coin 8s linear infinite;
}

@keyframes spin-coin {
    0% { transform: rotateY(0deg) rotateZ(0deg); }
    50% { transform: rotateY(180deg) rotateZ(5deg); }
    100% { transform: rotateY(360deg) rotateZ(0deg); }
}

@keyframes float-coin {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.floating-card {
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-10px);
}

.card-content {
    text-align: center;
}

.card-content i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--accent-light);
    font-weight: 600;
}

.floating-card.card-2 {
    top: 100px;
    right: 0;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 0;
    right: 50px;
    animation-delay: 2.5s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(2deg); }
}

/* ==================== Features Section ==================== */
.features {
    padding: 80px 0;
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.highlight-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-card p {
    color: var(--accent-gray);
    font-size: 0.95rem;
}

.registration-requirements {
    background: rgba(0, 153, 255, 0.05);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 4rem;
}

.registration-requirements h3 {
    margin-bottom: 1.5rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 8px;
}

.req-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* ==================== Coin Value Section ==================== */
.coin-value {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
}

.value-card {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.coin-value-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.coin-logo-large {
    width: 250px;
    height: 250px;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    animation: float-coin-large 6s ease-in-out infinite, spin-coin 10s linear infinite;
}

@keyframes float-coin-large {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.value-display {
    margin-top: 2rem;
}

.value-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-label {
    font-size: 1.5rem;
    color: var(--accent-gray);
}

.value-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-example {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.value-example p {
    font-size: 1.1rem;
    color: var(--accent-light);
}

.value-example strong {
    color: var(--primary-gold);
}

.value-treasury {
    padding: 1.5rem;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 8px;
}

.value-treasury p {
    font-size: 1.1rem;
    color: var(--accent-light);
}

.value-treasury strong {
    color: var(--primary-blue);
}

/* ==================== Income Plans Section ==================== */
.income-plans {
    padding: 80px 0;
}

.plan-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.plan-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.plan-card:hover::before {
    opacity: 1;
}

.premium-plan {
    border: 2px solid var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f0c664 100%);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border-left: 3px solid transparent;
}

.detail-item:hover {
    border-left-color: var(--primary-gold);
}

.detail-item .label {
    color: var(--accent-gray);
    font-weight: 500;
}

.detail-item .value {
    color: var(--accent-light);
    font-weight: 600;
}

.highlight-value {
    color: var(--primary-gold);
}

.long-term-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success-green);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.plan-note i {
    font-size: 1.5rem;
    color: var(--success-green);
    flex-shrink: 0;
}

.plan-note p {
    color: var(--accent-light);
}

/* Tables */
.income-section {
    margin-bottom: 4rem;
}

.table-container {
    overflow-x: auto;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.income-table {
    width: 100%;
    border-collapse: collapse;
}

.income-table thead {
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.income-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.income-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    color: var(--accent-gray);
}

.income-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.income-table .level-highlight td {
    background: rgba(212, 175, 55, 0.08);
    font-weight: 600;
    color: var(--accent-light);
}

.income-percent {
    color: var(--primary-gold);
    font-weight: 700;
}

.table-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 153, 255, 0.08);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.table-note i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.reward-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.reward-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.reward-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.reward-range {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== How It Works Section ==================== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.step:hover .step-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--accent-gray);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
    display: none;
    margin-bottom: 1rem;
}

/* ==================== Why Choose Section ==================== */
.why-choose {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 153, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    background: rgba(0, 153, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-blue);
}

.benefit-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    position: relative;
    z-index: 1;
    color: var(--accent-gray);
}

/* ==================== Final CTA Section ==================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 153, 255, 0.08) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--accent-gray);
}

.trust-seal i {
    color: var(--success-green);
    font-size: 1.2rem;
}

/* ==================== Footer ==================== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--accent-gray);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--accent-gray);
    font-size: 0.9rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 1.5rem;
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .hamburger {
        display: flex;
        padding: 8px;
        margin-right: -8px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
    
    .coin-display {
        display: none;
    }
    
    .coin-logo-large {
        width: 180px;
        height: 180px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 14px 24px;
        min-height: 44px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-arrow {
        display: none;
    }

    .steps-container {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .table-container {
        font-size: 0.9rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .income-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .income-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .long-term-plans {
        grid-template-columns: 1fr;
    }

    .rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .reward-card {
        padding: 1rem;
        min-width: 100px;
    }
    
    .plan-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .navbar .container {
        padding: 0.75rem 12px;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 35px 0;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 42px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .badge i {
        font-size: 1rem;
    }

    .plan-details {
        gap: 0.5rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .detail-item .label {
        font-size: 0.85rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }

    .value-amount {
        font-size: 2rem;
    }
    
    .value-label {
        font-size: 1.2rem;
    }
    
    .highlight-card {
        padding: 1.25rem;
    }
    
    .highlight-card h3 {
        font-size: 1.1rem;
    }
    
    .highlight-card p {
        font-size: 0.9rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .plan-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .plan-card h3 {
        font-size: 1.2rem;
    }
    
    .plan-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .table-container {
        font-size: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .income-table th {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .income-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .long-term-plans {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.75rem;
    }
    
    .reward-card {
        padding: 0.75rem;
        min-width: 75px;
    }
    
    .reward-header {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .reward-range {
        font-size: 1.1rem;
    }
    
    .step {
        padding: 1.5rem;
        min-width: unset;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 13px 22px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
}

/* ==================== Utility Classes ==================== */
.highlight {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
