/* Cultioo Business — Main Landing Page */
/* Clean White Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar { display: none; }

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.mobile-quick-access {
    display: none;
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease;
}

/* ==================== RESPONSIVE — TABLET ==================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-big { grid-column: span 2; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps-grid::before { display: none; }
    .analytics-grid { grid-template-columns: 1fr 1fr; }
    .analytics-card:nth-child(4) { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .preview-body { grid-template-columns: 160px 1fr; }
    .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== RESPONSIVE — MOBILE ==================== */
@media (max-width: 768px) {
    /* --- Nav --- */
    .nav { padding: 0 10px; height: 60px; }
    .nav-logo h1 { font-size: 1.02rem; }
    .nav-badge { display: none; }
    .nav-links { display: none; }
    .nav-actions { gap: 4px; }
    .btn-login { display: none; }
    .btn-start {
        display: inline-flex;
        padding: 8px 10px;
        font-size: 0.66rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    .hamburger { display: flex; }

    /* --- Hero --- */
    .hero { padding: 100px 24px 80px; }
    .hero-title { font-size: clamp(3.2rem, 14vw, 5.5rem); }
    .hero-subtitle { font-size: 1rem; margin-bottom: 36px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .cta-primary, .cta-secondary { justify-content: center; padding: 15px 28px; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 1.7rem; }
    .hero-stat-divider { display: none; }
    .scroll-hint { display: none; }

    /* --- Sections --- */
    section { padding: 64px 20px; }
    .section-title { font-size: clamp(2rem, 9vw, 3rem); }
    .section-desc { font-size: 0.95rem; }

    /* --- Dashboard Preview --- */
    .preview-section { padding: 40px 20px; margin: 0 16px 64px; max-width: calc(100% - 32px); border-radius: 24px; }
    .preview-body { grid-template-columns: 1fr; }
    .preview-sidebar { display: none; }
    .preview-grid { grid-template-columns: repeat(2, 1fr); }
    .preview-window { border-radius: 16px; }

    /* --- Features --- */
    .features-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
    .feature-card { padding: 28px 24px; border-radius: 20px; }
    .feature-card-big { grid-column: span 1; flex-direction: column; gap: 0; }
    .feature-card-big .feature-icon { margin-bottom: 20px; }

    /* --- How it works --- */
    .how-section { margin: 0 16px; border-radius: 28px; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
    .steps-grid::before { display: none; }
    .step-item { padding: 0 8px; }

    /* --- Products/Monetize --- */
    .monetize-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
    .monetize-right { padding: 28px 20px; border-radius: 20px; }
    .product-preview { padding: 16px; }

    /* --- Analytics --- */
    .analytics-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
    .analytics-card { padding: 24px; border-radius: 20px; }
    .analytics-card:nth-child(4) { grid-column: span 1; }
    .analytics-big-value { font-size: 2.2rem; }

    /* --- Payments --- */
    .payments-section { margin: 0 16px; border-radius: 28px; }
    .payments-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
    .payment-method-card { padding: 16px 18px; }
    .payout-info { padding: 24px; }
    .payout-amount { font-size: 2rem; }

    /* --- Orders --- */
    .orders-content { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
    .order-card-demo { padding: 16px; }

    /* --- Pricing --- */
    .pricing-section { margin: 0 16px; border-radius: 28px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 28px; border-radius: 20px; }

    /* --- App section --- */
    .app-content { grid-template-columns: 1fr; gap: 40px; padding: 48px 28px; border-radius: 28px; }
    .app-visual { display: none; }
    .app-badges { flex-direction: column; }
    .app-badge { justify-content: flex-start; }

    /* --- CTA section --- */
    .cta-inner .section-title { font-size: clamp(2.4rem, 10vw, 4rem); }
    .cta-pair { flex-direction: column; align-items: stretch; }
    .cta-pair .cta-primary, .cta-pair .cta-secondary { justify-content: center; }

    /* --- Footer --- */
    .footer { padding: 60px 20px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.05); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.18s ease;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nav-logo .big  { color: #111111; }
.nav-logo .bite { color: rgba(0,0,0,0.25); font-weight: 400; }

.nav-badge {
    display: inline-flex;
    align-items: center;
    background: #111111;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    margin-left: 10px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #888888;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-link:hover { color: #111111; background: #f4f4f4; }
.nav-link.active { color: #111111; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #111111;
    background: #f4f4f4;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease;
    display: inline-flex;
    align-items: center;
}

.btn-login:hover { background: #ebebeb; }

.btn-start {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    background: #111111;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-start:hover { background: #333333; transform: translateY(-1px); }
.btn-start:active { transform: translateY(0); }

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(0,0,0,0.025) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f7f7;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease both;
}

.hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700;
    color: #111111;
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title span { color: rgba(0,0,0,0.18); }

#heroSmarterWord {
    display: inline-block;
    transition: all 0.14s linear;
    transform-origin: center;
}
.smarter-style-a { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.04em; }
.smarter-style-b { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; letter-spacing: -0.01em; font-style: italic; }
.smarter-style-c { font-family: 'Courier New', monospace; font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase; }
.smarter-style-d { font-family: 'Trebuchet MS', Arial, sans-serif; font-weight: 700; letter-spacing: -0.06em; transform: scale(1.02); }

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: #999999;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 48px;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.cta-primary {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: #111111;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-primary:hover { background: #333333; transform: translateY(-2px); }
.cta-primary:active { transform: translateY(0); }

.cta-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    background: #f4f4f4;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-secondary:hover { background: #ebebeb; }

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cccccc;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
    align-self: center;
}

/* ==================== SCROLL HINT ==================== */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2.5s ease-in-out infinite;
    cursor: pointer;
}

.scroll-hint span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #cccccc;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ==================== SECTIONS COMMON ==================== */
section { padding: 120px 40px; }

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: #999999;
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
}

/* ==================== DASHBOARD PREVIEW ==================== */
.preview-section {
    background: #f7f7f7;
    border-radius: 32px;
    padding: 80px 60px;
    margin: 0 40px 120px;
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.preview-window {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.preview-topbar {
    height: 52px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
}

.preview-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.preview-dot.red    { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green  { background: #28c840; }

.preview-url {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    height: 28px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.75rem;
    color: #aaaaaa;
    font-weight: 500;
}

.preview-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 460px;
}

.preview-sidebar {
    background: #ffffff;
    border-right: 1px solid rgba(0,0,0,0.06);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #aaaaaa;
    transition: none;
}

.preview-nav-item.active {
    background: #111111;
    color: #ffffff;
}

.preview-nav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    flex-shrink: 0;
}

.preview-nav-item.active .preview-nav-dot { opacity: 1; background: #ffffff; }

.preview-content {
    padding: 24px;
    background: #ffffff;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.preview-card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 16px;
}

.preview-card-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 8px;
}

.preview-card-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
}

.preview-chart {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 20px;
    height: 140px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.preview-bar {
    flex: 1;
    background: rgba(0,0,0,0.08);
    border-radius: 4px 4px 0 0;
    transition: background 0.18s ease;
}

.preview-bar.active { background: #111111; }

/* ==================== FEATURES GRID ==================== */
.features-section { background: #ffffff; }

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

.feature-card {
    background: #f7f7f7;
    border-radius: 28px;
    padding: 36px;
    transition: background 0.18s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.18s ease;
}

.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { background: #f0f0f0; transform: translateY(-3px); }

.feature-icon {
    width: 52px; height: 52px;
    background: #111111;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 24px; height: 24px;
    filter: invert(1);
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.65;
    font-weight: 400;
}

.feature-card-big {
    grid-column: span 2;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

/* ==================== HOW IT WORKS ==================== */
.how-section { background: #f7f7f7; border-radius: 40px; margin: 0 40px; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
    height: 1px;
    background: rgba(0,0,0,0.08);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-item.visible { opacity: 1; transform: translateY(0); }
.step-item:nth-child(1) { transition-delay: 0.05s; }
.step-item:nth-child(2) { transition-delay: 0.15s; }
.step-item:nth-child(3) { transition-delay: 0.25s; }
.step-item:nth-child(4) { transition-delay: 0.35s; }

.step-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.08);
}

.step-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
}

.step-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.88rem;
    color: #999999;
    line-height: 1.6;
}

/* ==================== PRODUCTS / MONETIZE ==================== */
.monetize-section {
    background: #ffffff;
}

.monetize-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 64px;
}

.monetize-left { display: flex; flex-direction: column; gap: 20px; }

.monetize-card {
    background: #f7f7f7;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background 0.18s ease;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.18s ease;
}

.monetize-card.visible { opacity: 1; transform: translateX(0); }
.monetize-card:hover { background: #f0f0f0; }

.monetize-card:nth-child(1) { transition-delay: 0.05s; }
.monetize-card:nth-child(2) { transition-delay: 0.15s; }
.monetize-card:nth-child(3) { transition-delay: 0.25s; }
.monetize-card:nth-child(4) { transition-delay: 0.35s; }

.monetize-icon {
    width: 44px; height: 44px;
    background: #111111;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.monetize-icon img {
    width: 20px; height: 20px;
    filter: invert(1);
    object-fit: contain;
}

.monetize-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.monetize-card p {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.55;
}

.monetize-right {
    background: #f7f7f7;
    border-radius: 28px;
    padding: 40px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}

.monetize-right.visible { opacity: 1; transform: translateX(0); }

.product-preview {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-thumb {
    width: 56px; height: 56px;
    background: #f0f0f0;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.product-info { flex: 1; min-width: 0; }

.product-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    font-size: 0.8rem;
    color: #aaaaaa;
    font-weight: 500;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.revenue-bar-wrap {
    margin-top: 20px;
}

.revenue-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaaaaa;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.revenue-bar-bg {
    height: 8px;
    background: #ebebeb;
    border-radius: 50px;
    overflow: hidden;
}

.revenue-bar-fill {
    height: 100%;
    background: #111111;
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==================== ANALYTICS ==================== */
.analytics-section { background: #ffffff; }

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 64px;
}

.analytics-card {
    background: #f7f7f7;
    border-radius: 28px;
    padding: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.18s ease;
}

.analytics-card.visible { opacity: 1; transform: translateY(0); }
.analytics-card:hover { background: #f0f0f0; }

.analytics-card:nth-child(1) { transition-delay: 0.05s; }
.analytics-card:nth-child(2) { transition-delay: 0.15s; }
.analytics-card:nth-child(3) { transition-delay: 0.25s; }
.analytics-card:nth-child(4) { grid-column: span 2; transition-delay: 0.1s; }
.analytics-card:nth-child(5) { transition-delay: 0.2s; }

.analytics-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.analytics-card-label img {
    width: 14px; height: 14px;
    opacity: 0.5;
}

.analytics-big-value {
    font-size: 3rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.analytics-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.analytics-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    margin-top: 16px;
}

.analytics-mini-bar {
    flex: 1;
    background: rgba(0,0,0,0.06);
    border-radius: 3px 3px 0 0;
}

.analytics-mini-bar.active { background: #111111; }

/* ==================== PAYMENTS ==================== */
.payments-section { background: #f7f7f7; border-radius: 40px; margin: 0 40px; }

.payments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 64px;
}

.payments-right { display: flex; flex-direction: column; gap: 16px; }

.payment-method-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.payment-method-card.visible { opacity: 1; transform: translateX(0); }
.payment-method-card:nth-child(1) { transition-delay: 0.05s; }
.payment-method-card:nth-child(2) { transition-delay: 0.15s; }
.payment-method-card:nth-child(3) { transition-delay: 0.25s; }
.payment-method-card:nth-child(4) { transition-delay: 0.35s; }

.payment-method-icon {
    width: 48px; height: 48px;
    background: #f7f7f7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-method-icon img {
    width: 24px; height: 24px;
    object-fit: contain;
}

.payment-method-info { flex: 1; }

.payment-method-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 3px;
}

.payment-method-desc {
    font-size: 0.8rem;
    color: #aaaaaa;
    font-weight: 400;
}

.payment-method-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: #f0f0f0;
    color: #888888;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.payment-method-badge.live { background: #dcfce7; color: #16a34a; }

.payout-info {
    background: #111111;
    border-radius: 24px;
    padding: 28px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s 0.4s ease, transform 0.5s 0.4s ease;
}

.payout-info.visible { opacity: 1; transform: translateY(0); }

.payout-info-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.payout-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.payout-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

/* ==================== ORDERS ==================== */
.orders-section { background: #ffffff; }

.orders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 64px;
}

.order-card-demo {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.order-card-demo.visible { opacity: 1; transform: translateY(0); }
.order-card-demo:nth-child(1) { transition-delay: 0.05s; }
.order-card-demo:nth-child(2) { transition-delay: 0.15s; }
.order-card-demo:nth-child(3) { transition-delay: 0.25s; }

.order-status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.order-status-dot.success { background: #22c55e; }
.order-status-dot.pending { background: #f59e0b; }
.order-status-dot.processing { background: #3b82f6; }

.order-info { flex: 1; }

.order-info-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 3px;
}

.order-info-meta {
    font-size: 0.78rem;
    color: #aaaaaa;
    font-weight: 400;
}

.order-info-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.orders-features { display: flex; flex-direction: column; gap: 20px; }

.orders-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.orders-feature-item.visible { opacity: 1; transform: translateX(0); }
.orders-feature-item:nth-child(1) { transition-delay: 0.1s; }
.orders-feature-item:nth-child(2) { transition-delay: 0.2s; }
.orders-feature-item:nth-child(3) { transition-delay: 0.3s; }
.orders-feature-item:nth-child(4) { transition-delay: 0.4s; }

.orders-feature-check {
    width: 32px; height: 32px;
    background: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.orders-feature-check svg { flex-shrink: 0; }

.orders-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.orders-feature-item p {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.55;
}

/* ==================== PRICING ==================== */
.pricing-section { background: #f7f7f7; border-radius: 40px; margin: 0 40px; }

.pricing-header { text-align: center; max-width: 540px; margin: 0 auto 64px; }
.pricing-header .section-desc { margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:nth-child(1) { transition-delay: 0.05s; }
.pricing-card:nth-child(2) { transition-delay: 0.15s; }
.pricing-card:nth-child(3) { transition-delay: 0.25s; }

.pricing-card.featured {
    background: #111111;
    color: #ffffff;
}

.pricing-plan-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-plan-name { color: rgba(255,255,255,0.4); }

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: #ffffff; }

.pricing-price sup {
    font-size: 1.2rem;
    vertical-align: super;
    letter-spacing: 0;
}

.pricing-period {
    font-size: 0.82rem;
    color: #aaaaaa;
    font-weight: 400;
    margin-bottom: 32px;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.4); }

.pricing-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin-bottom: 32px;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.4;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }

.pricing-check {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.18s ease, transform 0.18s ease;
}

.pricing-btn-dark {
    background: #111111;
    color: #ffffff;
}

.pricing-btn-dark:hover { background: #333333; transform: translateY(-1px); }

.pricing-btn-white {
    background: #ffffff;
    color: #111111;
}

.pricing-btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

.pricing-btn-outline {
    background: #f4f4f4;
    color: #111111;
}

.pricing-btn-outline:hover { background: #ebebeb; transform: translateY(-1px); }

/* ==================== APP DOWNLOAD ==================== */
.app-section { background: #ffffff; }

.app-content {
    background: #111111;
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.app-text .section-title { color: #ffffff; }
.app-text .section-desc  { color: rgba(255,255,255,0.5); }

.app-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 14px 22px;
    text-decoration: none;
    transition: background 0.18s ease;
}

.app-badge:hover { background: rgba(255,255,255,0.14); }

.app-badge img { width: 24px; height: 24px; filter: invert(1); }

.app-badge-text { display: flex; flex-direction: column; }
.app-badge-sub  { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.app-badge-name { font-size: 0.9rem; font-weight: 700; color: #ffffff; letter-spacing: -0.01em; }

.app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.app-phone-mock {
    width: 160px;
    background: rgba(255,255,255,0.06);
    border-radius: 28px;
    aspect-ratio: 9/18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.app-phone-mock img {
    width: 60px; height: 60px;
    object-fit: contain;
    border-radius: 16px;
    filter: invert(1);
    opacity: 0.8;
}

.app-phone-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-align: center;
    letter-spacing: -0.01em;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: #ffffff;
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner .section-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 24px;
}

.cta-inner .section-desc {
    margin: 0 auto 48px;
    max-width: 480px;
}

.cta-pair {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #111111;
    color: #ffffff;
    padding: 80px 40px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-brand span { color: rgba(255,255,255,0.3); font-weight: 400; }

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

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

.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.18s ease;
}

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

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

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

/* scroll-animate-right: elements start from right side */
.scroll-animate-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== MOBILE MENU ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #111111;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 0;
    z-index: 999;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555555;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.15s ease, color 0.15s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-menu a:active { background: #f5f5f5; }
.mobile-menu a:hover { background: #fafafa; color: #111111; }

.mobile-menu-cta {
    margin-top: 0;
    padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 768px) {
    .mobile-menu {
        top: 68px;
        left: auto;
        right: 12px;
        bottom: auto;
        width: min(320px, calc(100vw - 24px));
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
        transform: translateY(-8px) scale(0.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .mobile-menu.open {
        display: flex;
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-menu a {
        font-size: 0.8rem;
        border-bottom: none;
        border-radius: 10px;
        padding: 10px 12px;
        color: #666666;
        min-height: 0;
    }
    .mobile-menu a:hover {
        color: #111111;
        background: #f7f7f7;
    }
    .mobile-menu-cta {
        margin-top: 6px;
        padding: 0;
        border-top: none;
        background: transparent;
    }
    .mobile-menu-cta .cta-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
    }
}

@media (max-width: 390px) {
    .btn-start { display: none; }
    .nav-logo h1 { font-size: 0.96rem; }
}

/* ==================== FINAL MOBILE CONTAINER REDESIGN ==================== */
@media (max-width: 768px) {
    section {
        padding: 52px 14px !important;
    }

    .section-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .preview-section,
    .how-section,
    .payments-section,
    .pricing-section {
        margin: 0 10px 22px !important;
        max-width: none !important;
        border-radius: 20px !important;
    }

    .preview-section {
        padding: 26px 14px !important;
    }

    .preview-header {
        margin-bottom: 24px !important;
    }

    .preview-content,
    .preview-sidebar,
    .preview-topbar {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .preview-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .preview-card {
        border-radius: 12px !important;
        padding: 12px !important;
    }

    .features-grid,
    .steps-grid,
    .monetize-grid,
    .analytics-grid,
    .payments-grid,
    .orders-content {
        gap: 12px !important;
        margin-top: 24px !important;
    }

    .feature-card,
    .analytics-card,
    .pricing-card,
    .order-card-demo,
    .payment-method-card,
    .payout-info,
    .monetize-card,
    .monetize-right {
        border-radius: 16px !important;
        padding: 16px !important;
    }

    .feature-card h3,
    .orders-feature-item h4,
    .payment-method-name,
    .monetize-card h4 {
        font-size: 0.92rem !important;
    }

    .feature-card p,
    .orders-feature-item p,
    .payment-method-desc,
    .monetize-card p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .step-item {
        text-align: left !important;
        align-items: flex-start !important;
        padding: 0 !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        padding: 12px !important;
    }

    .step-circle {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 10px !important;
    }

    .step-number {
        font-size: 0.95rem !important;
    }

    .hero {
        padding: 42px 14px 48px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: clamp(2.45rem, 12vw, 3.45rem) !important;
        line-height: 0.95 !important;
        margin-bottom: 18px !important;
    }

    .hero-subtitle {
        font-size: 0.92rem !important;
        margin-bottom: 22px !important;
    }

    .hero-ctas {
        width: 100% !important;
        margin-bottom: 24px !important;
    }

    .hero-ctas a {
        width: 100% !important;
    }

    .hero-stats {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .hero-stat {
        background: #f7f7f7 !important;
        border-radius: 14px !important;
        padding: 12px 8px !important;
    }

    .hero-stat-value {
        font-size: 1.35rem !important;
    }

    .hero-stat-label {
        font-size: 0.62rem !important;
        letter-spacing: 0.08em !important;
    }

    .orders-feature-item {
        border-radius: 14px !important;
        background: #f7f7f7 !important;
        padding: 10px !important;
        transform: none !important;
    }

    .pricing-card {
        padding: 20px 16px !important;
    }

    .pricing-price {
        font-size: 2.2rem !important;
    }

    .app-content {
        border-radius: 20px !important;
        padding: 26px 16px !important;
        gap: 20px !important;
    }

    .cta-section {
        padding-top: 44px !important;
    }

    .cta-inner {
        padding: 0 10px !important;
    }
}

@media (max-width: 420px) {
    .preview-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 900px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom)) !important;
    }

    .mobile-quick-access {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 3000;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1.2fr;
        gap: 8px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-quick-access a {
        height: 38px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #555555;
        background: #f5f5f5;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mobile-quick-access a.quick-primary {
        background: #111111;
        color: #ffffff;
    }
}

/* ==================== MOBILE NAV HOTFIX (TOP PRIORITY) ==================== */
@media (max-width: 900px) {
    .nav,
    .mobile-menu {
        display: none !important;
    }
}

/* ===== MOBILE TUNING: FROM PRODUCTS DOWN ===== */
@media (max-width: 759px) {
    .monetize-section,
    .analytics-section,
    .payments-section,
    .orders-section,
    .pricing-section,
    .app-section,
    .cta-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .monetize-grid,
    .analytics-grid,
    .payments-grid,
    .orders-content,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 14px !important;
    }

    .monetize-left .section-title,
    .analytics-section .section-title,
    .payments-section .section-title,
    .orders-section .section-title,
    .pricing-section .section-title,
    .app-section .section-title {
        font-size: clamp(1.45rem, 8.2vw, 2rem) !important;
        line-height: 1.06 !important;
        margin-bottom: 10px !important;
    }

    .monetize-left .section-desc,
    .analytics-section .section-desc,
    .payments-section .section-desc,
    .orders-section .section-desc,
    .pricing-section .section-desc,
    .app-section .section-desc {
        font-size: 0.86rem !important;
        line-height: 1.55 !important;
        max-width: none !important;
    }

    .monetize-card,
    .analytics-card,
    .payment-method-card,
    .order-card-demo,
    .orders-feature-item,
    .pricing-card,
    .app-content,
    .payout-info {
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .monetize-card {
        display: grid !important;
        grid-template-columns: 36px 1fr !important;
        gap: 10px !important;
        align-items: start !important;
    }

    .monetize-icon {
        margin-bottom: 0 !important;
    }

    .monetize-right {
        order: -1;
    }

    .product-preview {
        display: grid !important;
        grid-template-columns: 34px 1fr auto !important;
        gap: 8px !important;
        align-items: center !important;
        padding: 9px !important;
    }

    .product-name {
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
    }

    .product-meta {
        font-size: 0.68rem !important;
    }

    .product-price {
        font-size: 0.76rem !important;
        white-space: nowrap !important;
    }

    .analytics-big-value {
        font-size: 1.28rem !important;
    }

    .analytics-card-label {
        font-size: 0.64rem !important;
        margin-bottom: 8px !important;
    }

    .analytics-mini-bars {
        height: 38px !important;
    }

    .payment-method-card {
        grid-template-columns: 34px 1fr auto;
        display: grid !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .payment-method-icon {
        width: 34px !important;
        height: 34px !important;
        margin-bottom: 0 !important;
    }

    .payment-method-icon img {
        width: 16px !important;
        height: 16px !important;
        filter: none !important;
    }

    .payment-method-name {
        font-size: 0.78rem !important;
        margin: 0 0 2px !important;
    }

    .payment-method-desc {
        font-size: 0.67rem !important;
    }

    .payment-method-badge {
        font-size: 0.62rem !important;
        padding: 3px 8px !important;
    }

    .order-card-demo {
        display: grid !important;
        grid-template-columns: 8px 1fr auto !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .order-info-name {
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
        margin-bottom: 2px !important;
    }

    .order-info-meta {
        font-size: 0.66rem !important;
    }

    .order-info-amount {
        font-size: 0.76rem !important;
        white-space: nowrap !important;
    }

    .orders-feature-item {
        grid-template-columns: 24px 1fr;
        display: grid !important;
        gap: 8px !important;
        align-items: start !important;
    }

    .orders-feature-item h4 {
        font-size: 0.78rem !important;
        margin-bottom: 2px !important;
    }

    .orders-feature-item p {
        font-size: 0.68rem !important;
    }

    .pricing-header {
        margin-bottom: 8px !important;
    }

    .pricing-price {
        font-size: 1.72rem !important;
        line-height: 1 !important;
    }

    .pricing-period {
        font-size: 0.7rem !important;
    }

    .pricing-features {
        gap: 7px !important;
        font-size: 0.72rem !important;
    }

    .pricing-btn {
        width: 100% !important;
    }

    .app-content {
        padding: 14px !important;
        gap: 12px !important;
    }

    .app-badge {
        padding: 9px !important;
        border-radius: 10px !important;
    }

    .app-badge-name {
        font-size: 0.76rem !important;
    }

    .cta-inner .section-title {
        font-size: clamp(1.55rem, 9vw, 2.2rem) !important;
        margin-bottom: 8px !important;
    }

    .cta-inner .section-desc {
        font-size: 0.82rem !important;
        margin-bottom: 14px !important;
    }
}

/* ===== VERY NARROW DEVICES: TOP TO BOTTOM PASS ===== */
@media (max-width: 380px) {
    body {
        padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    }

    section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .section-eyebrow {
        font-size: 0.62rem !important;
        letter-spacing: 0.1em !important;
    }

    .section-title {
        font-size: clamp(1.28rem, 8.8vw, 1.7rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.015em !important;
    }

    .section-desc {
        font-size: 0.79rem !important;
        line-height: 1.5 !important;
    }

    /* Hero */
    .hero {
        padding-top: 20px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hero-eyebrow {
        font-size: 0.6rem !important;
        padding: 6px 9px !important;
        margin-bottom: 10px !important;
    }

    .hero-title {
        font-size: clamp(1.9rem, 13vw, 2.5rem) !important;
        line-height: 0.92 !important;
        margin-bottom: 8px !important;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }

    .hero-ctas {
        gap: 7px !important;
        margin-bottom: 10px !important;
    }

    .cta-primary,
    .cta-secondary {
        min-height: 40px !important;
        font-size: 0.72rem !important;
        padding: 9px 10px !important;
        border-radius: 10px !important;
    }

    .hero-stat {
        padding: 9px 6px !important;
    }

    .hero-stat-value {
        font-size: 1.05rem !important;
    }

    .hero-stat-label {
        font-size: 0.58rem !important;
        letter-spacing: 0.06em !important;
    }

    /* Bottom quick access */
    .mobile-quick-access {
        left: 8px !important;
        right: 8px !important;
        bottom: calc(8px + env(safe-area-inset-bottom)) !important;
        padding: 6px !important;
        gap: 6px !important;
        border-radius: 13px !important;
        grid-template-columns: 1fr 1fr 1fr 1.1fr !important;
    }

    .mobile-quick-access a {
        height: 32px !important;
        border-radius: 8px !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.03em !important;
    }

    /* Preview */
    .preview-section,
    .how-section,
    .payments-section,
    .pricing-section {
        margin-left: 8px !important;
        margin-right: 8px !important;
        padding: 14px 9px !important;
        border-radius: 13px !important;
    }

    .preview-header {
        margin-bottom: 9px !important;
    }

    .preview-url {
        display: none !important;
    }

    .preview-content {
        padding: 8px !important;
    }

    .preview-grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    .preview-card {
        padding: 8px !important;
    }

    .preview-card-value {
        font-size: 0.95rem !important;
    }

    .preview-chart {
        height: 72px !important;
        padding: 8px !important;
    }

    /* Generic cards */
    .feature-card,
    .monetize-card,
    .monetize-right,
    .analytics-card,
    .payment-method-card,
    .order-card-demo,
    .orders-feature-item,
    .pricing-card,
    .app-content,
    .payout-info {
        padding: 9px !important;
        border-radius: 10px !important;
    }

    .feature-icon,
    .monetize-icon,
    .payment-method-icon {
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
    }

    .feature-icon img,
    .monetize-icon img {
        width: 14px !important;
        height: 14px !important;
    }

    .feature-card h3,
    .monetize-card h4,
    .payment-method-name,
    .orders-feature-item h4 {
        font-size: 0.72rem !important;
        margin-bottom: 1px !important;
    }

    .feature-card p,
    .monetize-card p,
    .payment-method-desc,
    .orders-feature-item p {
        font-size: 0.64rem !important;
        line-height: 1.4 !important;
    }

    /* Steps */
    .step-item {
        padding: 9px !important;
    }

    .step-circle {
        width: 30px !important;
        height: 30px !important;
        border-radius: 7px !important;
        margin-bottom: 6px !important;
    }

    .step-number {
        font-size: 0.68rem !important;
    }

    .step-item h3 {
        font-size: 0.74rem !important;
        margin-bottom: 2px !important;
    }

    .step-item p {
        font-size: 0.63rem !important;
        line-height: 1.45 !important;
    }

    /* Products */
    .product-preview {
        grid-template-columns: 28px 1fr auto !important;
        gap: 6px !important;
        padding: 7px !important;
    }

    .product-thumb {
        width: 28px !important;
        height: 28px !important;
        border-radius: 7px !important;
        font-size: 0.82rem !important;
    }

    .product-name {
        font-size: 0.68rem !important;
    }

    .product-meta {
        font-size: 0.61rem !important;
    }

    .product-price {
        font-size: 0.68rem !important;
    }

    .revenue-bar-label {
        font-size: 0.62rem !important;
    }

    /* Analytics */
    .analytics-big-value {
        font-size: 1.05rem !important;
    }

    .analytics-card-label {
        font-size: 0.58rem !important;
        margin-bottom: 5px !important;
    }

    .analytics-trend {
        font-size: 0.6rem !important;
        padding: 3px 6px !important;
    }

    .analytics-mini-bars {
        height: 30px !important;
        gap: 3px !important;
    }

    /* Payments */
    .payment-method-card {
        grid-template-columns: 28px 1fr auto !important;
        gap: 6px !important;
    }

    .payment-method-badge {
        font-size: 0.54rem !important;
        padding: 2px 6px !important;
    }

    .payout-info-title {
        font-size: 0.58rem !important;
    }

    .payout-amount {
        font-size: 1.1rem !important;
    }

    .payout-sub {
        font-size: 0.62rem !important;
    }

    /* Orders */
    .order-card-demo {
        grid-template-columns: 7px 1fr auto !important;
        gap: 6px !important;
    }

    .order-info-name {
        font-size: 0.69rem !important;
    }

    .order-info-meta {
        font-size: 0.61rem !important;
    }

    .order-info-amount {
        font-size: 0.66rem !important;
    }

    .orders-feature-item {
        grid-template-columns: 20px 1fr !important;
        gap: 6px !important;
    }

    .orders-feature-check {
        width: 20px !important;
        height: 20px !important;
    }

    .orders-feature-check svg {
        width: 10px !important;
        height: 10px !important;
    }

    /* Pricing */
    .pricing-plan-name {
        font-size: 0.58rem !important;
    }

    .pricing-price {
        font-size: 1.35rem !important;
    }

    .pricing-period {
        font-size: 0.62rem !important;
    }

    .pricing-features {
        font-size: 0.64rem !important;
        gap: 6px !important;
    }

    .pricing-check {
        width: 13px !important;
        height: 13px !important;
    }

    .pricing-btn {
        min-height: 38px !important;
        font-size: 0.69rem !important;
        border-radius: 9px !important;
    }

    /* App */
    .app-content {
        padding: 10px !important;
    }

    .app-badges {
        gap: 6px !important;
    }

    .app-badge {
        min-height: 38px !important;
        padding: 7px !important;
        gap: 7px !important;
    }

    .app-badge img {
        width: 14px !important;
        height: 14px !important;
    }

    .app-badge-sub {
        font-size: 0.54rem !important;
    }

    .app-badge-name {
        font-size: 0.66rem !important;
    }

    /* CTA */
    .cta-inner {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .cta-inner .section-title {
        font-size: clamp(1.32rem, 9vw, 1.8rem) !important;
    }

    .cta-inner .section-desc {
        font-size: 0.74rem !important;
        margin-bottom: 10px !important;
    }
}

/* ===== FINAL FIXES: stable Smarter + desktop top nav ===== */
#heroSmarterWord {
    display: inline-block !important;
    min-width: 8.4ch !important;
    white-space: nowrap !important;
    text-align: center !important;
    font-family: 'Poppins', sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    transform: none !important;
}

/* ensure old style classes cannot shift layout anymore */
.smarter-style-a,
.smarter-style-b,
.smarter-style-c,
.smarter-style-d {
    font-family: 'Poppins', sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    transform: none !important;
}

.desktop-nav { display: none; }

@media (min-width: 900px) {
    .desktop-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 5000;
        height: 68px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 18px;
        padding: 0 20px;
        background: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: box-shadow 0.2s ease;
    }

    .desktop-nav.scrolled {
        box-shadow: 0 12px 28px rgba(2, 6, 23, 0.1);
    }

    .desktop-nav-logo {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }

    .desktop-nav-logo .bite { color: #7b8798; }

    .desktop-nav-badge {
        margin-left: 6px;
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
        color: #334155;
        background: #edf2f7;
        border: 1px solid #dbe4ee;
        border-radius: 999px;
        padding: 4px 8px;
    }

    .desktop-nav-links {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 0;
        overflow-x: auto;
    }

    .desktop-nav-links .nav-link {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: #556070;
        padding: 8px 10px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .desktop-nav-links .nav-link:hover {
        background: #eef2f7;
        color: #111111;
    }

    .desktop-nav-cta {
        height: 40px;
        padding: 0 14px;
        border-radius: 10px;
        background: #111111;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.76rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-weight: 700;
        white-space: nowrap;
    }

    .hero {
        padding-top: 102px !important;
    }
}


