/* ========================================
   BOGO NINJA PAGE STYLES
   ======================================== */

/* Scroll Animation Base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animation */
.animate-hero {
    opacity: 0;
    animation: bnHeroFadeIn 1s ease-out forwards;
}

.animate-hero:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-hero:nth-child(2) {
    animation-delay: 0.25s;
}

.animate-hero:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-hero:nth-child(4) {
    animation-delay: 0.55s;
}

.animate-hero:nth-child(5) {
    animation-delay: 0.7s;
}

.animate-hero:nth-child(6) {
    animation-delay: 0.85s;
}

@keyframes bnHeroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.bn-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.bn-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 40%);
    animation: bnHeroBgShift 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes bnHeroBgShift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, -2%) rotate(1deg);
    }

    66% {
        transform: translate(-2%, 2%) rotate(-1deg);
    }
}

.bn-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grid\" width=\"10\" height=\"10\" patternUnits=\"userSpaceOnUse\"><path d=\"M 10 0 L 0 0 0 10\" fill=\"none\" stroke=\"rgba%28255,255,255,0.03%29\" stroke-width=\"0.5\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url%28%23grid%29\"/></svg>");
    z-index: 1;
}

.bn-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 120px 24px 80px;
    max-width: 850px;
}

.bn-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.bn-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -1.5px;
}

.bn-gradient-text {
    background: linear-gradient(135deg, #ff6b35, #f7931a, #ffcb57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bn-hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.bn-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.bn-hero-trust {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.bn-trust-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bn-trust-item i {
    color: #4ade80;
    font-size: 0.85rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.bn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.bn-btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.bn-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.bn-btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.bn-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.bn-btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* ========================================
   PRODUCT INTRO SECTION
   ======================================== */
.bn-product-intro {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: 80px 0;
}

.bn-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.bn-intro-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.bn-intro-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.2;
}

.bn-intro-text>p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 32px;
}

.bn-intro-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bn-intro-highlights li {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.bn-intro-highlights li:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bn-intro-highlights li i {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #ff6b35;
    font-size: 0.95rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.bn-intro-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bn-intro-highlights strong {
    display: block;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.95rem;
}

.bn-intro-highlights span {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

/* Phone Mockup */
.bn-app-showcase {
    display: flex;
    justify-content: flex-end;
}

.bn-mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.1));
    animation: bnPhoneFloat 4s ease-in-out infinite;
}

@keyframes bnPhoneFloat {

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

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

/* ========================================
   TRUSTED / STATS SECTION
   ======================================== */
.bn-trusted {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.bn-trusted h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.bn-section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0 0 48px;
    font-weight: 400;
}

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

.bn-stat-card {
    padding: 32px 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
}

.bn-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bn-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff6b35, #f7931a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bn-stat-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.bn-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.bn-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.bn-how-it-works {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.bn-how-it-works h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.bn-highlight {
    color: #ff6b35;
    font-weight: 700;
}

.bn-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.bn-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px;
    width: 220px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bn-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.bn-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931a);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.bn-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5f0, #ffe8dc);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bn-step-icon i {
    font-size: 1.6rem;
    color: #ff6b35;
}

.bn-step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.bn-step-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.bn-step-arrow {
    font-size: 1.5rem;
    color: #d1d5db;
}

/* ========================================
   FEATURES
   ======================================== */
.bn-features {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
}

.bn-features h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.bn-features .bn-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.bn-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bn-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.bn-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.bn-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 26, 0.2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.bn-feature-icon i {
    font-size: 1.5rem;
    color: #ff9a5c;
}

.bn-feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.bn-feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   RESTAURANT CTA
   ======================================== */
.bn-restaurant-cta {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.bn-cta-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.bn-cta-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 0 0 12px;
}

.bn-cta-desc {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.bn-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.bn-cta-card {
    border-radius: 20px;
    padding: 36px 32px;
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
}

.bn-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bn-cta-card-fire {
    background: linear-gradient(145deg, #fff5f0, #ffe8dc);
    border-color: rgba(255, 107, 53, 0.2);
}

.bn-cta-card-chart {
    background: linear-gradient(145deg, #f0f5ff, #e0ecff);
    border-color: rgba(59, 130, 246, 0.2);
}

.bn-cta-card-header {
    margin-bottom: 20px;
}

.bn-cta-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
    margin-bottom: 10px;
}

.bn-cta-card-chart .bn-cta-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.bn-cta-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.bn-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bn-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.bn-cta-list li i {
    color: #4ade80;
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.bn-cta-action {
    padding-top: 8px;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.bn-download {
    background: linear-gradient(135deg, #1a1a2e 0%, #302b63 100%);
    padding: 80px 0;
    text-align: center;
}

.bn-download h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.bn-download .bn-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.bn-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.bn-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 28px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bn-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bn-store-btn i {
    font-size: 2rem;
}

.bn-store-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.bn-store-small {
    font-size: 0.7rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.bn-store-big {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ========================================
   PRESENCE & CONTACT SECTION
   ======================================== */
.bn-presence {
    background: #ffffff;
    padding: 100px 0;
}

.bn-presence h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 16px;
}

.bn-presence .bn-section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: #6b7280;
}

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

.bn-presence-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bn-presence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #ff6b35;
}

.bn-presence-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-size: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bn-presence-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.bn-presence-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
    flex-grow: 1;
}

.bn-presence-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.bn-presence-link:hover {
    gap: 12px;
}

.bn-presence-link::after {
    content: '→';
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .bn-hero h1 {
        font-size: 3rem;
    }

    .bn-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .bn-app-showcase {
        justify-content: center;
    }

    .bn-intro-text h2 {
        font-size: 1.8rem;
    }

    .bn-intro-highlights {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

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

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

    .bn-cta-grid {
        grid-template-columns: 1fr;
    }

    .bn-step-arrow {
        display: none;
    }

    .bn-steps-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bn-hero h1 {
        font-size: 2.3rem;
        letter-spacing: 0;
    }

    .bn-hero-desc {
        font-size: 1.05rem;
    }

    .bn-hero-content {
        padding: 100px 20px 60px;
    }

    .bn-hero-trust {
        gap: 16px;
    }

    .bn-product-intro {
        padding: 48px 0;
    }

    .bn-intro-text h2 {
        font-size: 1.5rem;
    }

    .bn-intro-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .bn-mockup-img {
        max-width: 280px;
    }

    .bn-presence-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .bn-trusted h2,
    .bn-how-it-works h2,
    .bn-features h2,
    .bn-cta-header h2,
    .bn-download h2,
    .bn-faq h2 {
        font-size: 2rem;
    }

    .bn-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bn-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bn-steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .bn-step-card {
        width: 90%;
        max-width: 300px;
    }

    .bn-cta-card {
        padding: 28px 24px;
    }

    .bn-faq-question span {
        font-size: 0.95rem;
    }

    .bn-trusted,
    .bn-how-it-works,
    .bn-features,
    .bn-restaurant-cta,
    .bn-download,
    .bn-faq {
        padding: 60px 0;
    }
}

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

    .bn-hero-desc {
        font-size: 0.95rem;
    }

    .bn-hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .bn-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .bn-stats-row {
        grid-template-columns: 1fr;
    }

    .bn-stat-card {
        padding: 24px 16px;
    }

    .bn-step-card {
        width: 100%;
    }

    .bn-store-btn {
        padding: 12px 20px;
    }

    .bn-store-btn i {
        font-size: 1.5rem;
    }

    .bn-store-big {
        font-size: 1rem;
    }

    .bn-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
