/* ============================================================
   Bento — Landing Page Styles
   ============================================================ */

/* ---- Navbar ---- */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.nav-logo-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
    border-radius: 6px;
}

/* ---- Hero ---- */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    background: #fff;
    position: relative;
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-lg {
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #6b7280;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* ---- Features Section ---- */
.features-section {
    padding: 100px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.features-intro {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}

.feature-list span {
    font-size: 0.825rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Features visual */
.features-visual {
    position: relative;
}

.features-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.features-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #e8f4fd 0%, #c8e4f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.features-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    font-size: 0.8rem;
    font-weight: 600;
    color: #111;
}

.features-badge small {
    font-weight: 400;
    color: #6b7280;
}

.badge-code-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* ---- How It Works ---- */
.how-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.how-header {
    margin-bottom: 60px;
}

.how-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.how-header p {
    font-size: 0.9rem;
    color: #6b7280;
}

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

.step-card {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 14px rgba(53, 147, 206, 0.35);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.825rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Connector line between steps */
.step-connector {
    display: none;
}

/* ---- Buy Me A Coffee Section ---- */
.bmac-section {
    padding: 80px 0;
    background: #fff;
}

.bmac-inner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.1);
}

.bmac-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #92400e;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.bmac-content p {
    font-size: 1.05rem;
    color: #b45309;
    line-height: 1.6;
    margin-bottom: 32px;
}

.bmac-btn {
    display: inline-block;
    transition: transform 0.2s;
}

.bmac-btn:hover {
    transform: scale(1.05);
}

.bmac-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bmac-circle {
    width: 200px;
    height: 200px;
    background: #fde68a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 40px rgba(245, 158, 11, 0.2), 0 20px 40px rgba(245, 158, 11, 0.15);
}

.bmac-icon {
    width: 80px;
    height: 80px;
    color: #d97706;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 80px 0;
}

.cta-inner {
    background: var(--primary);
    border-radius: 20px;
    padding: 70px 60px;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

/* ---- Footer ---- */
.footer {
    background: #111827;
    color: #fff;
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-logo-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-tagline {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 0.825rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.825rem;
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.775rem;
    color: #6b7280;
}

.footer-powered {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-powered:hover {
    opacity: 0.8;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps-row {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .cta-inner {
        padding: 48px 28px;
    }
    .bmac-inner {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.75rem;
    }
    .nav-menu {
        gap: 16px;
    }
    .nav-link {
        display: block;
    }
    .nav-menu .btn-primary {
        display: none;
    }
}
