/* ==================== */
/* RESET & BASE */
/* ==================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: #ffffff; 
    color: #1a1a1a; 
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
.nav { 
    padding: 20px 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.nav-logo { 
    font-size: 26px; 
    font-weight: 900; 
    letter-spacing: -1px; 
    color: #1a1a1a; 
}

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

.nav-link { 
    color: #666; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 500; 
}

.nav-link:hover { 
    color: #1a1a1a; 
}

.nav-cta { 
    background: #f59e0b; 
    color: #000; 
    padding: 12px 28px; 
    border-radius: 8px; 
    font-weight: 700; 
    border: none; 
    cursor: pointer; 
    font-size: 14px; 
}

.nav-cta:hover { 
    background: #d97706; 
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero { 
    padding: 80px 24px 60px; 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: center; 
}

.hero-eyebrow { 
    display: inline-block; 
    background: #fef3c7; 
    color: #b45309; 
    padding: 8px 16px; 
    border-radius: 24px; 
    font-size: 13px; 
    font-weight: 600; 
    margin-bottom: 24px; 
}

.hero h1 { 
    font-size: 52px; 
    font-weight: 900; 
    line-height: 1.1; 
    letter-spacing: -2px; 
    margin-bottom: 28px; 
}

.hero h1 .muted { 
    color: #999; 
}

.hero h1 .highlight { 
    color: #f59e0b; 
}

.hero-sub { 
    font-size: 19px; 
    color: #555; 
    line-height: 1.7; 
    margin-bottom: 40px; 
    max-width: 640px; 
    margin-left: auto; 
    margin-right: auto; 
}

.hero-cta { 
    background: #1a1a1a; 
    color: #fff; 
    padding: 18px 40px; 
    border-radius: 10px; 
    font-size: 16px; 
    font-weight: 700; 
    border: none; 
    cursor: pointer; 
}

.hero-cta:hover { 
    background: #333; 
}

.hero-note { 
    margin-top: 16px; 
    font-size: 14px; 
    color: #999; 
}

/* ==================== */
/* PROBLEMS SECTION */
/* ==================== */
.problems { 
    padding: 80px 24px; 
    background: #fafafa; 
}

.problems-inner { 
    max-width: 800px; 
    margin: 0 auto; 
}

.problems h2 { 
    font-size: 32px; 
    font-weight: 800; 
    margin-bottom: 32px; 
    text-align: center; 
    letter-spacing: -1px; 
}

.problems > p { 
    text-align: center; 
    color: #666; 
    font-size: 17px; 
    margin-bottom: 48px; 
    line-height: 1.6; 
}

.problem-flow { 
    display: flex; 
    flex-direction: column; 
    gap: 0; 
}

.problem-step { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    padding: 24px 0; 
    border-bottom: 1px solid #e5e5e5; 
}

.problem-step:last-child { 
    border: none; 
}

.problem-num { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    background: #f5f5f5; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
    font-size: 14px; 
    color: #999; 
    flex-shrink: 0; 
}

.problem-content { }

.problem-title { 
    font-weight: 700; 
    font-size: 17px; 
    margin-bottom: 6px; 
}

.problem-desc { 
    color: #666; 
    font-size: 15px; 
    line-height: 1.6; 
}

.problem-conclusion { 
    background: #fff; 
    border-left: 4px solid #f59e0b; 
    border-radius: 12px; 
    padding: 28px 32px; 
    margin-top: 48px; 
    margin-left: -24px;
    margin-right: -24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
}

.problem-conclusion::before {
    content: '💡';
    position: absolute;
    top: -16px;
    left: 24px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 20px;
}

.problem-conclusion p { 
    font-size: 17px; 
    font-weight: 600; 
    color: #1a1a1a; 
    line-height: 1.6; 
}

.problem-conclusion span { 
    color: #b45309; 
}

/* ==================== */
/* SHIFT SECTION */
/* ==================== */
.shift { 
    padding: 80px 24px; 
}

.shift-inner { 
    max-width: 1000px; 
    margin: 0 auto; 
}

.shift h2 { 
    font-size: 32px; 
    font-weight: 800; 
    margin-bottom: 48px; 
    text-align: center; 
    letter-spacing: -1px; 
}

.shift-grid { 
    display: grid; 
    grid-template-columns: 1fr 60px 1fr; 
    gap: 24px; 
    align-items: start; 
}

.shift-card { 
    background: #fafafa; 
    border-radius: 16px; 
    padding: 32px; 
}

.shift-card.before { 
    border: 2px solid #e5e5e5; 
}

.shift-card.after { 
    border: 2px solid #f59e0b; 
    background: #fffbeb; 
}

.shift-label { 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 20px; 
}

.shift-card.before .shift-label { 
    color: #999; 
}

.shift-card.after .shift-label { 
    color: #b45309; 
}

.shift-list { 
    list-style: none; 
}

.shift-list li { 
    padding: 12px 0; 
    border-bottom: 1px solid #e5e5e5; 
    font-size: 15px; 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
}

.shift-card.after .shift-list li { 
    border-color: #fde68a; 
}

.shift-list li:last-child { 
    border: none; 
}

.shift-list .icon { 
    font-size: 16px; 
}

.shift-arrow { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    color: #ccc; 
    padding-top: 80px; 
}

/* ==================== */
/* PRODUCT PAGE COMPARISON */
/* ==================== */
.page-compare {
    padding: 80px 24px;
    background: #f5f5f5;
}

.page-compare-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.page-compare h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.page-compare > p,
.page-compare-inner > p {
    text-align: center;
    color: #666;
    font-size: 17px;
    margin-bottom: 48px;
}

.compare-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: start;
}

.store-mockup {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.mockup-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-mockup.boring .mockup-label {
    color: #999;
}

.store-mockup.bizthom .mockup-label {
    color: #16a34a;
}

.mockup-browser {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 4px solid #333;
    background: #333;
}

.browser-bar {
    background: #333;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: none;
}

.browser-dots {
    display: none;
}

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #999;
    background: #444;
    padding: 6px 12px;
    border-radius: 12px;
    border: none;
}

.mockup-scroll {
    height: 580px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 24px 24px;
}

.mockup-scroll::-webkit-scrollbar {
    width: 4px;
}

.mockup-scroll::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.mockup-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.mockup-result {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.mockup-result .result-rate {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.store-mockup.boring .result-rate {
    color: #dc2626;
}

.mockup-result.success .result-rate {
    color: #16a34a;
}

/* ============ BORING STORE STYLES ============ */
.boring-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    font-size: 14px;
    color: #999;
}

.boring-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.boring-info {
    padding: 24px;
}

.boring-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.boring-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.boring-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 24px;
}

.boring-sizes-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
}

.boring-sizes-options {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.boring-size {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
}

.boring-reviews-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.boring-review-item {
    padding: 10px 0;
    font-size: 13px;
    color: #999;
    font-style: italic;
    border-bottom: 1px solid #f5f5f5;
}

.boring-cart-btn {
    width: 100%;
    background: #e5e5e5;
    color: #999;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    cursor: default;
}

/* ============ BIZTHOM STORE STYLES ============ */
.biz-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

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

.biz-cart {
    position: relative;
    font-size: 18px;
}

.biz-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
}

.biz-viewing {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-viewing-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: biz-pulse 1.5s infinite;
}

@keyframes biz-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.biz-info {
    padding: 20px;
}

.biz-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.biz-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.biz-original {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: 400;
    margin-left: 8px;
}

.biz-offer-link {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.biz-offer-link a {
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

.biz-proof-bar {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
    font-size: 13px;
    color: #666;
}

.biz-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-proof-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: biz-pulse 2s infinite;
}

.biz-scarcity {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 16px;
    font-size: 14px;
}

.biz-count {
    font-weight: 600;
    color: #b45309;
}

.biz-fit-quiz {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.biz-fit-question {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.biz-fit-hint {
    font-size: 12px;
    color: #666;
}

.biz-sizes {
    margin-bottom: 20px;
}

.biz-sizes-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.biz-size-guide {
    font-size: 12px;
    color: #666;
    text-decoration: underline;
}

.biz-sizes-options {
    display: flex;
    gap: 10px;
}

.biz-size {
    width: 48px;
    height: 48px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.biz-size.selected {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.biz-size.low-stock::after {
    content: '2 left';
    position: absolute;
    bottom: -18px;
    font-size: 10px;
    color: #dc2626;
    font-weight: 500;
}

.biz-vendor {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    margin-top: 28px;
}

.biz-vendor-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.biz-vendor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.biz-vendor-info { flex: 1; }

.biz-vendor-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.biz-vendor-meta {
    font-size: 11px;
    color: #666;
}

.biz-vendor-stats {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.biz-vendor-stat {
    font-size: 11px;
    color: #444;
}

.biz-vendor-stat strong { font-weight: 600; }

.biz-vendor-bio {
    font-size: 12px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.biz-vendor-actions {
    display: flex;
    gap: 10px;
}

.biz-vendor-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
}

.biz-vendor-btn.primary {
    background: #1a1a1a;
    color: #fff;
}

.biz-vendor-btn.secondary {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

.biz-customer-photos {
    margin-bottom: 20px;
}

.biz-photos-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.biz-body-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.biz-body-filter {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.biz-body-filter.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.biz-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.biz-photo-item {
    aspect-ratio: 0.8;
    border-radius: 10px;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.biz-photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 20px 8px 8px;
    font-size: 10px;
}

.biz-photo-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 2px dashed #ddd;
}

.biz-photo-add span { font-size: 20px; margin-bottom: 4px; }
.biz-photo-add small { font-size: 9px; color: #888; text-align: center; line-height: 1.3; }

.biz-voice-reviews {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.biz-voice-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.biz-voice-item {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
}

.biz-voice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.biz-voice-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.biz-voice-info { flex: 1; }
.biz-voice-name { font-weight: 500; font-size: 12px; }
.biz-voice-meta { font-size: 10px; color: #999; }
.biz-voice-stars { color: #f59e0b; font-size: 11px; }

.biz-voice-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 8px 12px;
    margin-bottom: 8px;
}

.biz-voice-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.biz-voice-wave {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.biz-voice-bar {
    width: 3px;
    background: #ccc;
    border-radius: 2px;
}

.biz-voice-duration {
    font-size: 11px;
    color: #666;
}

.biz-voice-transcript {
    font-size: 12px;
    color: #555;
    font-style: italic;
    line-height: 1.4;
}

.biz-reviews {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.biz-reviews-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.biz-stars { color: #f59e0b; font-size: 13px; }
.biz-review-count { font-size: 12px; color: #666; }

.biz-review-item {
    padding: 12px 0;
    border-top: 1px solid #e8e8e8;
}

.biz-review-author {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-verified {
    background: #dcfce7;
    color: #166534;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.biz-review-text { font-size: 13px; color: #444; line-height: 1.5; }
.biz-review-location { font-size: 11px; color: #999; }

.biz-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.biz-ask-reviewer {
    background: #f0f0f0;
    border: none;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
}

.biz-ask-reviewer:hover {
    background: #e5e5e5;
}

.biz-vendor-video {
    margin-bottom: 12px;
    position: relative;
}

.biz-video-thumbnail {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.biz-video-thumbnail::before {
    content: '👩🏾';
    font-size: 48px;
    opacity: 0.3;
}

.biz-video-play {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.biz-video-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 8px;
}

.biz-price-drop {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.biz-price-drop-icon { font-size: 18px; }
.biz-price-drop-content { flex: 1; }
.biz-price-drop-title { font-weight: 500; font-size: 13px; }
.biz-price-drop-desc { font-size: 11px; color: #666; }

.biz-price-drop-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.biz-spacer { height: 20px; }

.biz-live-toast {
    position: sticky;
    bottom: 80px;
    margin: 0 12px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 5;
}

.biz-toast-time {
    float: right;
    color: #888;
    font-size: 10px;
}

.biz-bottom-cta {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.biz-cta-share {
    width: 50px;
    height: 50px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.biz-cta-primary {
    flex: 1;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ==================== */
/* FEATURES SECTION */
/* ==================== */
.features { 
    padding: 80px 24px; 
    background: #fafafa; 
}

.features-inner { 
    max-width: 800px; 
    margin: 0 auto; 
}

.features h2 { 
    font-size: 32px; 
    font-weight: 800; 
    margin-bottom: 20px; 
    text-align: center; 
    letter-spacing: -1px; 
}

.features > p { 
    text-align: center; 
    color: #666; 
    font-size: 17px; 
    margin-bottom: 56px; 
}

.feature-item { 
    margin-bottom: 56px; 
    padding-bottom: 56px; 
    border-bottom: 1px solid #e5e5e5; 
}

.feature-item:last-child { 
    border: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
}

.feature-label { 
    display: inline-block; 
    background: #f59e0b; 
    color: #000; 
    padding: 4px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 16px; 
}

.feature-title { 
    font-size: 28px; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 16px; 
    letter-spacing: -0.5px; 
}

.feature-desc { 
    font-size: 17px; 
    color: #555; 
    line-height: 1.7; 
}

.feature-desc strong { 
    color: #1a1a1a; 
}

/* ==================== */
/* COMPARISON SECTION */
/* ==================== */
.vs { 
    padding: 80px 24px; 
    background: #1a1a1a; 
    color: #fff; 
}

.vs-inner { 
    max-width: 900px; 
    margin: 0 auto; 
}

.vs h2 { 
    font-size: 32px; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 48px; 
    letter-spacing: -1px; 
}

.vs-table { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 0; 
    background: #222; 
    border-radius: 16px; 
    overflow: hidden; 
}

.vs-header { 
    padding: 18px 20px; 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    background: #333; 
}

.vs-header.feature { 
    background: #333; 
}

.vs-header.them { 
    color: #888; 
    text-align: center; 
}

.vs-header.us { 
    color: #f59e0b; 
    text-align: center; 
}

.vs-row { 
    display: contents; 
}

.vs-cell { 
    padding: 16px 20px; 
    border-bottom: 1px solid #333; 
    font-size: 14px; 
}

.vs-cell.feature { 
    color: #ccc; 
}

.vs-cell.them { 
    color: #666; 
    text-align: center; 
}

.vs-cell.us { 
    color: #22c55e; 
    text-align: center; 
    font-weight: 600; 
}

.vs-row:last-child .vs-cell { 
    border-bottom: none; 
}

/* ==================== */
/* FOUNDER SECTION */
/* ==================== */
.founder { 
    padding: 80px 24px; 
}

.founder-inner { 
    max-width: 800px; 
    margin: 0 auto; 
    display: flex; 
    gap: 40px; 
    align-items: center; 
}

.founder-img { 
    width: 160px; 
    height: 160px; 
    border-radius: 50%; 
    background: #ddd; 
    flex-shrink: 0; 
    overflow: hidden; 
}

.founder-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.founder-content { }

.founder-quote { 
    font-size: 20px; 
    font-weight: 500; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    color: #1a1a1a; 
}

.founder-quote span { 
    color: #f59e0b; 
    font-weight: 700; 
}

.founder-name { 
    font-weight: 800; 
    font-size: 17px; 
}

.founder-cred { 
    color: #666; 
    font-size: 14px; 
    margin-top: 4px; 
}

.founder-socials { 
    display: flex; 
    gap: 12px; 
    margin-top: 16px; 
}

.founder-socials a { 
    color: #666; 
    transition: color 0.2s; 
}

.founder-socials a:hover { 
    color: #1a1a1a; 
}

/* ==================== */
/* FINAL CTA SECTION */
/* ==================== */
.final { 
    padding: 100px 24px; 
    text-align: center; 
    background: #fafafa; 
}

.final h2 { 
    font-size: 44px; 
    font-weight: 900; 
    margin-bottom: 16px; 
    letter-spacing: -2px; 
}

.final h2 .highlight { 
    color: #f59e0b; 
}

.final p { 
    font-size: 18px; 
    color: #666; 
    margin-bottom: 36px; 
}

.final button { 
    background: #f59e0b; 
    color: #000; 
    padding: 20px 56px; 
    border-radius: 10px; 
    font-size: 18px; 
    font-weight: 800; 
    border: none; 
    cursor: pointer; 
}

.final button:hover { 
    background: #d97706; 
}

.final-count { 
    margin-top: 20px; 
    font-size: 14px; 
    color: #999; 
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer { 
    padding: 48px 24px; 
    background: #fff; 
    border-top: 1px solid #eee; 
}

.footer-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.footer-logo { 
    font-size: 20px; 
    font-weight: 800; 
}

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

.footer-links a { 
    color: #666; 
    text-decoration: none; 
    font-size: 14px; 
}

.footer-copy { 
    color: #999; 
    font-size: 13px; 
}

/* ==================== */
/* WAITLIST MODAL */
/* ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    animation: modalPop 0.3s ease;
    position: relative;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
}

.modal-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.modal-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.modal-submit:hover {
    background: #333;
}

.modal-note {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
}

/* Success State */
.modal-success {
    display: none;
}

.modal-success.show {
    display: block;
}

.modal-form.hide {
    display: none;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.success-share {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: #fff;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hero h1 { 
        font-size: 36px; 
        letter-spacing: -1px; 
    }
    
    .hero-sub { 
        font-size: 16px; 
    }
    
    .shift-grid { 
        grid-template-columns: 1fr; 
    }
    
    .shift-arrow { 
        display: none; 
    }
    
    .compare-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .compare-grid::-webkit-scrollbar {
        display: none;
    }
    
    .store-mockup {
        width: 300px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .mockup-scroll {
        height: 580px;
    }
    
    .boring-image,
    .biz-image {
        font-size: 60px;
    }
    
    .feature-title { 
        font-size: 24px; 
    }
    
    .vs-table { 
        grid-template-columns: 1fr; 
    }
    
    .vs-header.them, 
    .vs-header.us, 
    .vs-cell.them, 
    .vs-cell.us { 
        display: none; 
    }
    
    .vs-cell.feature { 
        text-align: center; 
    }
    
    .founder-inner { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .founder-socials { 
        justify-content: center; 
    }
    
    .final h2 { 
        font-size: 32px; 
    }
    
    .footer-inner { 
        flex-direction: column; 
        gap: 24px; 
        text-align: center; 
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .problem-conclusion {
        margin-left: 0;
        margin-right: 0;
    }
}