:root {
    --bee-yellow: #FFD600;
    --bee-dark-yellow: #F5B800;
    --bee-black: #1A1A1A;
    --bee-dark: #0D0D0D;
    --bee-white: #FAFAFA;
    --bee-cream: #FFF8E1;
    --bee-orange: #FF9100;
    --bee-light-gray: #F0F0F0;
    --bee-mid-gray: #888;
    --bee-accent: #FF6D00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bee-dark);
    color: var(--bee-white);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--bee-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--bee-black);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bee-black);
    transform: translateY(-50%);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bee-black);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--bee-white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--bee-yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--bee-yellow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bee-yellow);
    transition: width 0.3s;
}

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

.nav-cta {
    padding: 10px 28px;
    background: var(--bee-yellow);
    color: var(--bee-black) !important;
    border-radius: 50px;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--bee-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--bee-white);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 214, 0, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(255, 145, 0, 0.05) 0%, transparent 50%),
                var(--bee-dark);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.hero-left {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bee-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--bee-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .highlight {
    color: var(--bee-yellow);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--bee-yellow);
    opacity: 0.3;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 44px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--bee-yellow);
    color: var(--bee-black);
    border: none;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--bee-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 214, 0, 0.3);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--bee-white);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--bee-yellow);
    color: var(--bee-yellow);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--bee-yellow);
    line-height: 1;
}

.stat-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== BEE ILLUSTRATION ===== */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
}

.bee-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.bee-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.bee-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    animation: beeFloat 6s ease-in-out infinite;
}

@keyframes beeFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    25% { transform: translate(-50%, -50%) translateY(-15px) rotate(2deg); }
    50% { transform: translate(-50%, -50%) translateY(-8px) rotate(-1deg); }
    75% { transform: translate(-50%, -50%) translateY(-20px) rotate(1deg); }
}

.bee-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--bee-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 40%; left: 15%; animation-delay: 1s; }
.particle:nth-child(4) { top: 75%; left: 45%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 25%; left: 80%; animation-delay: 2s; }
.particle:nth-child(6) { top: 50%; left: 55%; animation-delay: 2.5s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 0.8; transform: translateY(-30px) scale(1); }
    100% { opacity: 0; transform: translateY(-60px) scale(0); }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 120px 60px;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bee-yellow);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--bee-yellow);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== ABOUT / INTRO SECTION ===== */
.about-section {
    background: var(--bee-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,214,0,0.1), rgba(255,145,0,0.05));
    border: 1px solid rgba(255,255,255,0.05);
}

.about-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    gap: 8px;
    transform: rotate(10deg);
}

.hex {
    width: 60px;
    height: 60px;
    background: rgba(255, 214, 0, 0.08);
    border: 1px solid rgba(255, 214, 0, 0.15);
    border-radius: 12px;
    transition: all 0.5s;
}

.hex:nth-child(odd) {
    transform: translateY(30px);
}

.hex:hover {
    background: rgba(255, 214, 0, 0.2);
    transform: scale(1.1);
}

.about-content .section-subtitle {
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* ===== INDEX / CARDS SECTION ===== */
.index-section {
    background: var(--bee-dark);
}

.index-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.index-header .section-subtitle {
    margin: 0 auto;
}

.index-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.index-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.index-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bee-yellow), var(--bee-orange));
    opacity: 0;
    transition: opacity 0.4s;
}

.index-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255, 214, 0, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.index-card:hover::before {
    opacity: 1;
}

.card-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 214, 0, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.index-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.index-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

.card-tag {
    display: inline-block;
    margin-top: 24px;
    padding: 6px 16px;
    background: rgba(255, 214, 0, 0.08);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bee-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== METRICS SECTION ===== */
.metrics-section {
    background: var(--bee-black);
    overflow: hidden;
}

.metrics-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.metrics-header .section-subtitle {
    margin: 0 auto;
}

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

.metric-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.4s;
}

.metric-card:hover {
    border-color: rgba(255, 214, 0, 0.2);
    background: rgba(255, 214, 0, 0.03);
}

.metric-value {
    font-size: 52px;
    font-weight: 900;
    color: var(--bee-yellow);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.metric-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.metric-bar {
    width: 60px;
    height: 4px;
    background: rgba(255, 214, 0, 0.2);
    border-radius: 2px;
    margin: 16px auto 0;
    position: relative;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    background: var(--bee-yellow);
    border-radius: 2px;
    transition: width 1.5s ease;
}

/* ===== QUOTE / CTA SECTION ===== */
.cta-section {
    background: var(--bee-dark);
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(255,214,0,0.06), rgba(255,145,0,0.03));
    border: 1px solid rgba(255, 214, 0, 0.1);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255,214,0,0.05), transparent 50%);
}

.cta-container > * {
    position: relative;
    z-index: 1;
}

.cta-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-quote .highlight {
    color: var(--bee-yellow);
}

.cta-author {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bee-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bee-yellow);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bee-yellow);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--bee-yellow);
    color: var(--bee-black);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

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

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

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

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

    .bee-container {
        width: 350px;
        height: 350px;
    }

    .bee-svg {
        width: 280px;
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .metrics_grid {
        grid-template_columns: repeat(2, 1fr);
    }

    .footer_grid {
        grid_template_columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    .navbar.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13,13,13,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    section {
        padding: 80px 24px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .index-cards {
        grid-template-columns: 1fr;
    }

    .metrics_grid {
        grid_template_columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-container {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

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