/* 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;
}

/* ==================== 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;
}

.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); }

.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: 4px;
    background: none;
    border: none;
}

.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: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-direction: column;
    gap: 4px;
}

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

.mobile-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #888888;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 14px;
    transition: background 0.18s ease, color 0.18s ease;
}

.mobile-menu a:hover { background: #f4f4f4; color: #111111; }

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .features-grid        { grid-template-columns: repeat(2, 1fr); }
    .feature-card-big     { grid-column: span 1; flex-direction: column; }
    .analytics-grid       { grid-template-columns: 1fr 1fr; }
    .analytics-card:nth-child(4) { grid-column: span 1; }
    .footer-top           { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pricing-grid         { grid-template-columns: 1fr 1fr; }
    .pricing-grid .pricing-card:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
    section { padding: 80px 24px; }
    .preview-section, .how-section, .payments-section, .pricing-section { margin: 0 24px; padding: 60px 36px; }
    .app-content          { grid-template-columns: 1fr; padding: 48px; gap: 40px; }
    .app-visual           { display: none; }
    .monetize-grid        { grid-template-columns: 1fr; }
    .orders-content       { grid-template-columns: 1fr; }
    .payments-grid        { grid-template-columns: 1fr; }
    .steps-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid::before   { display: none; }
    .hero { padding: 100px 24px 80px; }
    .hero-stats           { gap: 28px; }
    .hero-stat-divider    { display: none; }
    .nav-links            { display: none; }
    .hamburger            { display: flex; }
}

@media (max-width: 640px) {
    .hero-title           { font-size: clamp(3rem, 13vw, 5rem); }
    .hero-ctas            { flex-direction: column; align-items: stretch; }
    .cta-primary, .cta-secondary { text-align: center; justify-content: center; }
    .features-grid        { grid-template-columns: 1fr; }
    .analytics-grid       { grid-template-columns: 1fr; }
    .analytics-card:nth-child(4) { grid-column: span 1; }
    .pricing-grid         { grid-template-columns: 1fr; }
    .pricing-grid .pricing-card:last-child { grid-column: span 1; }
    .steps-grid           { grid-template-columns: 1fr; }
    .preview-window       { overflow-x: auto; }
    .preview-grid         { grid-template-columns: 1fr 1fr; }
    .footer-top           { grid-template-columns: 1fr; gap: 32px; }
    .nav-actions .btn-login { display: none; }
    .cta-pair             { flex-direction: column; }
    .hero-stats           { flex-direction: column; gap: 16px; align-items: center; }
    .preview-body         { grid-template-columns: 1fr; }
    .preview-sidebar      { display: none; }
    .app-content          { padding: 36px 24px; }
}
