:root {
    --primary: #FFD600;
    --primary-hover: #F5C500;
    --secondary: #1A1A1A;
    --text-main: #1A1A1A;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-main: #FFFFFF;
    --bg-cream: #FFFBF0;
    --bg-dark: #1A1A1A;
    --border: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --container-width: 1200px;
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.logo-bee {
    color: var(--primary);
}

.logo-up {
    color: var(--secondary);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-hover);
    /* Or keep black but bold? Let's use darker yellow/orange for contrast or black */
    color: #000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--secondary);
}

.highlight {
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.store-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 28px;
}

.store-info {
    display: flex;
    flex-direction: column;
}

.store-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.store-title {
    font-size: 16px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    width: 320px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 12px;
    border: 8px solid #222;
}

.app-screen {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 60px;
    left: -40px;
}

.card-1 i {
    color: var(--success);
    /* Need define success */
}

.card-2 {
    bottom: 80px;
    right: -30px;
    animation-delay: 1.5s;
}

/* Background blob */
.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, rgba(255, 251, 240, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary);
}

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

.text-white {
    color: #fff;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 18px;
}

/* About Section */
.about {
    background-color: var(--bg-main);
}

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

.about-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    background: #fff;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.about-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Features Section */
.features {
    background-color: var(--bg-cream);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 12px 32px;
    border: 2px solid #E0E0E0;
    background: transparent;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--secondary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Grid New */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Custom Icon Colors */
.icon-search {
    background: #E3F2FD;
    color: #1976D2;
}

.icon-video {
    background: #E8F5E9;
    color: #388E3C;
}

.icon-date {
    background: #FFF3E0;
    color: #F57C00;
}

.icon-pay {
    background: #F3E5F5;
    color: #7B1FA2;
}

.icon-profile {
    background: #E1F5FE;
    color: #0288D1;
}

.icon-chart {
    background: #FFF8E1;
    color: #FFA000;
}

.icon-users {
    background: #FCE4EC;
    color: #C2185B;
}

.icon-tools {
    background: #ECEFF1;
    color: #455A64;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Legal Pages Shared Styles */
.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary);
    text-align: center;
    font-weight: 800;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.legal-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.legal-content p,
.legal-content ul,
.legal-content li {
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

.legal-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* FAQ Specific */
.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.faq-item h3 {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--secondary);
    border: none;
    padding: 0;
}

.faq-item h3::after {
    display: none;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
}

/* Download Section */
.download {
    background: var(--secondary);
    /* Dark theme for contrast */
    color: #fff;
    padding: 80px 0;
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.download-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-content p {
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
    font-size: 18px;
}

.qr-box {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-box img {
    width: 150px;
    height: 150px;
    display: block;
    margin-bottom: 8px;
}

.qr-box span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
    opacity: 0.6;
    margin: 20px 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: #fff;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-col i {
    width: 20px;
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}