/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e3a4c;
    background-color: #fefcfd;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav {
    background: #fefcfd;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-weight: 700;
    font-size: 24px;
    color: #1e3a4c;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d2d2d;
    transition: width 0.3s ease;
}

.nav-logo:hover .logo-text::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

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

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

.nav-link {
    color: #1e3a4c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffbf00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffbf00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    background: linear-gradient(135deg, #ffbf00 0%, #f4b400 100%);
    color: #1e3a4c;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f4b400 0%, #e6ac00 100%);
    transform: translateY(-1px);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffbf00 0%, #f4b400 100%);
    color: #1e3a4c;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    letter-spacing: -0.01em;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #f4b400 0%, #e6ac00 100%);
    transform: translateY(-2px);
}

.cta-button.primary.purple {
    background: linear-gradient(135deg, #ffbf00 0%, #f4b400 100%);
    color: #1e3a4c;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    letter-spacing: -0.01em;
}

.cta-button.primary.purple:hover {
    background: linear-gradient(135deg, #f4b400 0%, #e6ac00 100%);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 160px 0 180px;
    background: linear-gradient(180deg, #fefcfd 0%, #f8f9fa 100%);
    position: relative;
    margin-bottom: -1px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='50' viewBox='0 0 1200 50' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 C300,10 600,40 1200,25 L1200,50 L0,50 Z' fill='%23f2ecd8'%3E%3C/path%3E%3C/svg%3E");
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    padding-right: 20px;
}

.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    min-height: 500px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 191, 0, 0.2);
    color: #1e3a4c;
    border: 1px solid rgba(255, 191, 0, 0.4);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    color: #1e3a4c;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    color: #1e3a4c;
    opacity: 0.75;
    margin-bottom: 44px;
    line-height: 1.6;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Hero Creator Mockup */
.creator-mockup {
    position: relative;
    width: 380px;
    height: 420px;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creator-profile-card {
    width: 240px;
    background: #ffffff;
    border-radius: 28px;
    padding: 0;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.5),
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.creator-profile-card:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-5px);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.6),
        0 20px 56px rgba(0, 0, 0, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.12);
}

.creator-header {
    text-align: center;
    margin-bottom: 0;
    background: #ffffff;
    padding: 16px 14px 14px;
}

.shop-name {
    font-size: 20px;
    font-weight: 700;
    color: #d18336;
    margin: 0 0 8px 0;
    display: block;
    letter-spacing: -0.02em;
}

.shop-category {
    font-size: 11px;
    color: #6b7280;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.shop-location {
    font-size: 10px;
    color: #6b7280;
    margin: 0 0 10px 0;
}

.shop-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.action-btn {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s;
}

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


.creator-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f9fafb;
    padding: 12px;
}

.featured-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-image-hero {
    width: 100%;
    height: 110px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px;
}

.product-image-hero.sourdough-bread {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1549931319-a545dcf3bc73?w=800&auto=format&fit=crop&q=80') center/cover;
}

.availability-badge {
    background: #3BA776;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
}

.product-info-section {
    padding: 12px;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.product-description {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-large {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffbf00;
    color: #1e3a4c;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.add-btn:hover {
    background: #f4b400;
    transform: scale(1.05);
}

.more-products-preview {
    display: flex;
    gap: 6px;
}

.preview-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.preview-image {
    width: 100%;
    height: 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6px;
}

.preview-image.croissant-preview {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=800&auto=format&fit=crop&q=80') center/cover;
}

.mini-badge {
    background: #10b981;
    color: white;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 600;
}

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

.product-icon {
    width: 32px;
    height: 32px;
    background: #ffbf00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a4c;
    margin-bottom: 4px;
}

.product-info p {
    font-size: 11px;
    color: #1e3a4c;
    opacity: 0.7;
    line-height: 1.4;
    margin: 0;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a4c;
}

.old-price {
    font-size: 12px;
    color: rgba(30, 58, 76, 0.5);
    text-decoration: line-through;
}

.discount {
    font-size: 12px;
    color: #ffbf00;
    font-weight: 500;
}

.badge {
    background: #ffbf00;
    color: #1e3a4c;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-cta {
    width: 100%;
    background: #ffbf00;
    color: #1e3a4c;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-cta:hover {
    transform: translateY(-1px);
    background: #e6ac00;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #fefcfd;
    border-radius: 6px;
    border: 1px solid rgba(243, 154, 164, 0.2);
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: rgba(209, 131, 54, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 154, 164, 0.2);
}

.item-image {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(243, 154, 164, 0.3);
    flex-shrink: 0;
}

.item-image.croissant-item {
    background: #f8f9fa !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    border: 1px solid #dee2e6 !important;
}

.item-image.croissant-item::before {
    content: '🥐';
}

.item-image.cinnamon-item {
    background: linear-gradient(135deg, #CD853F 0%, #D2691E 30%, #8B4513 60%, #A0522D 100%) !important;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.4) 2px, transparent 3px),
        radial-gradient(circle at 75% 70%, rgba(139, 69, 19, 0.5) 2px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(160, 82, 45, 0.3) 4px, transparent 6px),
        linear-gradient(90deg, transparent 30%, rgba(139,69,19,0.4) 50%, transparent 70%);
    box-shadow:
        0 2px 8px rgba(205, 133, 63, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(139, 69, 19, 0.3);
    border: 1px solid rgba(205, 133, 63, 0.5) !important;
}

.item-icon {
    width: 24px;
    height: 24px;
    background: #ffbf00;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    color: #1e3a4c;
}

.item-name {
    flex: 1;
    font-size: 12px;
    color: #1e3a4c;
    font-weight: 500;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a4c;
}

.view-all-btn {
    width: 100%;
    background: #ffbf00;
    color: #1e3a4c;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    transform: translateY(-1px);
    background: #e6ac00;
}

/* Floating Feature Icons */
.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(30, 58, 76, 0.12),
        0 3px 10px rgba(243, 154, 164, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 191, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.floating-icon:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 15px 50px rgba(30, 58, 76, 0.18),
        0 6px 20px rgba(243, 154, 164, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 191, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.floating-icon::after {
    content: attr(data-label);
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    color: #1e3a4c;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    opacity: 0.8;
}

.floating-icon .icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 76, 0.15));
}

.floating-icon.dibs {
    top: 50px;
    left: 0;
    animation: float-1 6s ease-in-out infinite;
}

.floating-icon.orders {
    top: 20px;
    right: 0;
    animation: float-2 7s ease-in-out infinite 0.5s;
}

.floating-icon.community {
    bottom: 90px;
    left: -5px;
    animation: float-3 8s ease-in-out infinite 1s;
}

.floating-icon.payments {
    bottom: 50px;
    right: -5px;
    animation: float-4 7.5s ease-in-out infinite 1.5s;
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) translateX(5px) rotate(3deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) translateX(-5px) rotate(-4deg);
    }
}

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

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) translateX(-3px) rotate(-3deg);
    }
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background: #f2ecd8;
    position: relative;
    overflow: hidden;
}

.about-us::before,
.about-us::after {
    content: '';
    position: absolute;
    background: rgba(255, 191, 0, 0.08);
    border-radius: 50%;
}

.about-us::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.about-us::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -40px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 400px;
    height: 400px;
}

.about-image::before {
    content: '🥖';
    position: absolute;
    font-size: 80px;
    top: -40px;
    right: -20px;
    z-index: 10;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 20px;
}

.about-text {
    margin: 0;
}

.about-highlight {
    font-size: 40px;
    font-weight: 600;
    color: #1e3a4c;
    display: block;
    opacity: 1;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

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

/* Dibs Feature Highlight Section */
.dibs-feature {
    padding: 100px 0;
    background: #1e3a4c;
    position: relative;
    overflow: hidden;
}

.dibs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.dibs-content {
    padding-right: 20px;
}

.dibs-headline {
    font-size: 44px;
    font-weight: 700;
    color: #fefcfd;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.dibs-subheadline {
    font-size: 20px;
    color: #fefcfd;
    opacity: 0.85;
    margin-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
}

.dibs-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 191, 0, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(255, 191, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 191, 0, 0.3);
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fefcfd;
    margin-bottom: 6px;
    line-height: 1.3;
}

.benefit-text p {
    font-size: 14px;
    color: #fefcfd;
    opacity: 0.75;
    line-height: 1.5;
    margin: 0;
}

/* Demo Section */
.dibs-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-container {
    width: 100%;
    max-width: 380px;
}

.demo-mockup-modern {
    width: 100%;
}

.modern-phone {
    width: 300px;
    background: #ffffff;
    border-radius: 32px;
    padding: 0;
    margin: 0 auto;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modern-phone.storefront-phone {
    background: #ffffff;
    box-shadow:
        0 0 0 3px #e5e7eb,
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.modern-screen {
    padding: 24px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.scrollable-screen {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.scrollable-screen::-webkit-scrollbar {
    width: 4px;
}

.scrollable-screen::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-screen::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 76, 0.3);
    border-radius: 2px;
}

.scrollable-screen::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 76, 0.5);
}

.demo-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.demo-product-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1549931319-a545dcf3bc73?w=800&auto=format&fit=crop&q=80') center/cover;
}

.demo-product-content {
    padding: 16px;
}

.demo-product-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.demo-description {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 14px 0;
}

.demo-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.demo-price {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.demo-stock {
    font-size: 11px;
    font-weight: 600;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.demo-dibs-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffbf00 0%, #f4b400 100%);
    color: #1e3a4c;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-dibs-btn:hover {
    background: linear-gradient(135deg, #f4b400 0%, #e6ac00 100%);
    transform: translateY(-1px);
}

.demo-features {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.demo-feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tag-icon {
    font-size: 13px;
}

.demo-header {
    text-align: center;
    margin-bottom: 25px;
}

.demo-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fefcfd;
    margin-bottom: 15px;
}

.demo-steps {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(254, 252, 253, 0.2);
    color: #fefcfd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-indicator.active {
    background: #ffbf00;
    color: #1e3a4c;
    transform: scale(1.1);
}

.demo-phone {
    width: 280px;
    height: 400px;
    background: #fefcfd;
    border-radius: 25px;
    padding: 6px;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.demo-screen {
    width: 100%;
    height: 100%;
    background: #1e3a4c;
    border-radius: 19px;
    overflow: hidden;
    position: relative;
}

.demo-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-step.active {
    opacity: 1;
    transform: translateX(0);
}

/* Product Demo Styles */
.product-demo {
    width: 100%;
    text-align: center;
}

.product-image-demo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
}

.product-image-demo.croissant-demo {
    background: linear-gradient(135deg, #f4c430 0%, #e6ac00 100%);
}

.product-info-demo h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fefcfd;
    margin-bottom: 5px;
}

.product-info-demo p {
    font-size: 14px;
    color: #fefcfd;
    opacity: 0.7;
    margin-bottom: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffbf00;
    background: #fefcfd;
    color: #ffbf00;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #ffbf00;
    color: #fefcfd;
}

.qty {
    font-size: 18px;
    font-weight: 600;
    color: #fefcfd;
    min-width: 20px;
    text-align: center;
}

.dibs-btn-demo {
    width: 100%;
    background: #ffbf00;
    color: #1e3a4c;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dibs-btn-demo:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

/* Success State */
.dibs-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.dibs-success h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffbf00;
    margin-bottom: 10px;
}

.dibs-success p {
    font-size: 14px;
    color: #fefcfd;
    opacity: 0.7;
    margin-bottom: 15px;
}

.claimed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 191, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ffbf00;
    color: #fefcfd;
}

.pickup-info {
    text-align: left;
    font-size: 12px;
}

.pickup-info p {
    margin: 5px 0;
    color: #fefcfd;
}

/* Inventory Update */
.inventory-update {
    padding: 20px;
}

.update-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fefcfd;
    margin-bottom: 20px;
    text-align: center;
}

.product-demo.updated {
    background: rgba(255, 191, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ffbf00;
}

.inventory-count {
    color: #ffbf00;
    font-weight: 600;
}

.update-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #ffbf00;
    margin-top: 10px;
    justify-content: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffbf00;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.demo-controls {
    text-align: center;
}

.demo-play-btn {
    background: #ffbf00;
    color: #1e3a4c;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-play-btn:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

/* Strong CTA Section */
.strong-cta {
    padding: 100px 0;
    background: #ffbf00;
    position: relative;
    overflow: hidden;
}

.strong-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-content-strong {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: 40px;
    font-weight: 600;
    color: #1e3a4c;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.cta-subheadline {
    font-size: 20px;
    color: #1e3a4c;
    opacity: 0.8;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.4;
}

.cta-button-strong {
    background: #1e3a4c;
    color: #ffffff;
    padding: 22px 52px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.cta-button-strong:hover {
    transform: translateY(-3px);
    background: #152d3d;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fefcfd;
    border-top: 1px solid rgba(30, 58, 76, 0.1);
}

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

.faq-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1e3a4c;
    margin: 0;
    letter-spacing: -0.025em;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(30, 58, 76, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #fefcfd;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 191, 0, 0.4);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(255, 191, 0, 0.08);
}

.question-text {
    font-size: 18px;
    font-weight: 500;
    color: #1e3a4c;
    letter-spacing: -0.01em;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #ffbf00;
    transition: transform 0.3s ease;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #1e3a4c;
    opacity: 0.8;
    margin: 0;
    padding-top: 8px;
}

/* Combined How It Works Section */

.how-it-works {
    padding: 120px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.section-subtitle {
    font-size: 18px;
    color: #1e3a4c;
    font-weight: 400;
    opacity: 0.75;
}

/* Workflow Steps */
.workflow {
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.workflow-step.reverse {
    grid-template-columns: 1fr 1fr;
}

.workflow-step.reverse .step-content {
    order: 2;
}

.workflow-step.reverse .step-visual {
    order: 1;
}

.step-content {
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.step-1 { background: linear-gradient(135deg, #ffde59, #f4c430); }
.step-2 { background: linear-gradient(135deg, #f4c430, #e6b800); }
.step-3 { background: linear-gradient(135deg, #ffbf00, #f4b400); }
.step-4 { background: linear-gradient(135deg, #ffbf00, #f4b400); }

.step-content h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1e3a4c;
}

.step-content p {
    font-size: 18px;
    color: #1e3a4c;
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 12px;
    padding-left: 0;
}

.feature-highlight {
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-icon {
    font-size: 18px;
}

.feature-highlight strong {
    color: #FF6B9D;
    font-weight: 400;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 650px;
    background: #1d1d1f;
    border-radius: 50px;
    padding: 3px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 12px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 47px;
    overflow: hidden;
    position: relative;
}

/* Phone UI Elements */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: #f8f9fa;
    font-size: 12px;
    font-weight: 400;
    color: #2d2d2d;
}

.status-indicators {
    display: flex;
    gap: 4px;
    font-size: 10px;
}

.browser-bar {
    background: #f1f3f4;
    padding: 8px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-url {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #5f6368;
}

.lock-icon {
    font-size: 10px;
}

.url {
    color: #2d2d2d;
    font-weight: 500;
}

.storefront-preview {
    padding: 0;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.store-header {
    position: relative;
    margin-bottom: 20px;
}

.store-cover {
    width: 100%;
    height: 80px;
    background: linear-gradient(45deg, #F4877B, #8B7EF7);
}

.store-profile {
    padding: 0 20px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}

.store-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F4877B, #8B7EF7);
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 8px;
}

.store-info h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.store-info > span {
    font-size: 14px;
    color: #6b7280;
    display: block;
    margin-bottom: 8px;
}

.store-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 16px;
}

.store-tabs {
    display: flex;
    padding: 0 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f1f1;
}

.tab {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.tab.active {
    color: #f4c430;
    border-bottom-color: #f4c430;
}

.product-showcase {
    display: grid;
    gap: 16px;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
}

.product-image.sourdough {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(184, 149, 106, 0.3) 0%, transparent 40%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 100"><defs><pattern id="texture" x="0" y="0" width="8" height="8" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="%23C49962" opacity="0.3"/><circle cx="6" cy="6" r="0.3" fill="%23B8956A" opacity="0.4"/></pattern></defs><ellipse cx="60" cy="55" rx="45" ry="35" fill="%23D4A574"/><ellipse cx="60" cy="50" rx="40" ry="30" fill="%23E6C68A"/><rect x="15" y="20" width="90" height="60" rx="25" ry="25" fill="url(%23texture)" opacity="0.6"/><path d="M25 45 Q35 35 50 40 Q65 30 75 40 Q85 35 95 45" stroke="%23B8956A" stroke-width="2.5" fill="none" stroke-linecap="round"/><path d="M30 55 Q45 50 60 55 Q75 50 90 55" stroke="%23B8956A" stroke-width="2" fill="none" stroke-linecap="round"/><path d="M35 65 Q50 62 65 65 Q75 62 85 65" stroke="%23B8956A" stroke-width="1.5" fill="none" stroke-linecap="round"/><ellipse cx="40" cy="35" rx="3" ry="2" fill="%23C49962" opacity="0.7"/><ellipse cx="75" cy="40" rx="2.5" ry="1.5" fill="%23C49962" opacity="0.6"/><ellipse cx="55" cy="70" rx="4" ry="2.5" fill="%23C49962" opacity="0.5"/></svg>') no-repeat center/cover,
        linear-gradient(135deg, #E6C68A 0%, #D4A574 50%, #B8956A 100%);
}

.product-image.croissants {
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 40%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 80"><path d="M15 50 Q25 20 40 25 Q50 15 65 25 Q75 20 85 50 Q80 60 70 55 Q60 65 50 55 Q40 65 30 55 Q20 60 15 50" fill="%23F4D03F"/><path d="M20 45 Q30 25 45 30 Q55 20 70 30 Q80 25 85 45" stroke="%23E8C547" stroke-width="2" fill="none"/><circle cx="35" cy="40" r="2" fill="%23E8C547"/><circle cx="55" cy="35" r="1.5" fill="%23E8C547"/><circle cx="65" cy="45" r="1.8" fill="%23E8C547"/></svg>') no-repeat center/cover,
        linear-gradient(45deg, #F4D03F, #E8C547);
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-badge.new {
    background: #4ECB71;
    color: white;
}

.product-badge.popular {
    background: #FF6B9D;
    color: white;
}

.product-details h5 {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price {
    font-size: 18px;
    font-weight: 500;
    color: #f4c430;
}

.availability {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 8px;
}

.dibs-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffde59 0%, #f4c430 100%);
    color: #2d2d2d;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dibs-btn:hover {
    background: linear-gradient(135deg, #f4c430 0%, #e6b800 100%);
}

/* WhatsApp Mockup */
.whatsapp-mockup {
    width: 350px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.whatsapp-header {
    background: #075E54;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffde59, #f4c430);
    border-radius: 50%;
}

.wa-info h4 {
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
}

.wa-info span {
    color: #a8d8d0;
    font-size: 12px;
}

.chat-messages {
    padding: 20px;
    background: #ece5dd;
    min-height: 300px;
}

.message {
    max-width: 80%;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
}

.message.received {
    background: white;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.message.sent {
    background: #dcf8c6;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.message p {
    margin: 0 0 4px 0;
    font-size: 14px;
    line-height: 1.4;
}

.message .time {
    font-size: 11px;
    color: #667781;
    float: right;
    margin-top: 4px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 0;
    padding: 20px 16px;
    width: 100%;
}

.dashboard-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.dashboard-header-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.order-count-badge {
    background: #ffbf00;
    color: #1e3a4c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order-list-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card-modern {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.customer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffbf00, #f4b400);
    color: #1e3a4c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.customer-details h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px 0;
}

.customer-details p {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.order-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.pending {
    background: rgba(255, 191, 0, 0.15);
    color: #d18336;
}

.order-status.fulfilled {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.order-item-list {
    margin-bottom: 12px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.order-item-row span:first-child {
    color: #374151;
    font-weight: 500;
}

.order-item-row span:last-child {
    color: #1f2937;
    font-weight: 700;
}

.fulfill-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, #ffbf00 0%, #f4b400 100%);
    color: #1e3a4c;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.fulfill-btn-modern:hover {
    background: linear-gradient(135deg, #f4b400 0%, #e6ac00 100%);
    transform: translateY(-1px);
}

/* WhatsApp Style Mockup */
.modern-phone.whatsapp-style {
    background: #ffffff;
}

.whatsapp-screen {
    padding: 0;
    background: #e5ddd5;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    background: #075e54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-back {
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.wa-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffbf00, #f4b400);
}

.whatsapp-header .wa-info {
    flex: 1;
}

.whatsapp-header .wa-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin: 0 0 2px 0;
}

.whatsapp-header .wa-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    background: #e5ddd5;
}

.message {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.message.received {
    background: white;
    align-self: flex-start;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.sent {
    background: #dcf8c6;
    align-self: flex-end;
    border-radius: 8px 0 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message p {
    font-size: 13px;
    color: #303030;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.message p:last-of-type {
    margin-bottom: 0;
}

.message strong {
    font-weight: 600;
    color: #1f2937;
}

.message .time {
    font-size: 10px;
    color: #667781;
    display: block;
    text-align: right;
    margin-top: 4px;
}

/* Workflow Storefront Mockup (similar to hero) */
.creator-header-workflow {
    text-align: center;
    margin-bottom: 0;
    background: #ffffff;
    padding: 16px 14px 14px;
}

.creator-products-workflow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f9fafb;
    padding: 12px;
}

.featured-product-card-workflow {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}

.product-image-hero-workflow {
    width: 100%;
    height: 110px;
    background-size: cover;
    background-position: center;
}

.product-image-hero-workflow.sourdough-bread {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1549931319-a545dcf3bc73?w=800&auto=format&fit=crop&q=80') center/cover;
}

.product-image-hero-workflow.croissant-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=800&auto=format&fit=crop&q=80') center/cover;
}

.product-image-hero-workflow.baguette-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1590424471084-9e4c6b7f653e?w=800&auto=format&fit=crop&q=80') center/cover;
}

.product-image-hero-workflow.cinnamon-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=800&auto=format&fit=crop&q=80') center/cover;
}

.product-info-section-workflow {
    padding: 12px;
}

.product-title-workflow {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.product-description-workflow {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.product-footer-workflow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-large-workflow {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.add-btn-workflow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffbf00;
    color: #1e3a4c;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.add-btn-workflow:hover {
    background: #f4b400;
    transform: scale(1.05);
}

.more-products-preview-workflow {
    display: flex;
    gap: 6px;
}

.preview-card-workflow {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.preview-image-workflow {
    width: 100%;
    height: 60px;
    background-size: cover;
    background-position: center;
}

.preview-image-workflow.croissant-preview {
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=800&auto=format&fit=crop&q=80') center/cover;
}

.dashboard-header {
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-header h4 {
    font-size: 18px;
    font-weight: 400;
    color: #2d2d2d;
}

.order-count {
    background: linear-gradient(135deg, #ffde59, #f4c430);
    color: #2d2d2d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.order-list {
    padding: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f1f1;
}

.order-item:last-child {
    border-bottom: none;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.product-thumb.sourdough {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 60%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 100"><ellipse cx="60" cy="55" rx="45" ry="35" fill="%23D4A574"/><ellipse cx="60" cy="50" rx="40" ry="30" fill="%23E6C68A"/><path d="M25 45 Q35 35 50 40 Q65 30 75 40 Q85 35 95 45" stroke="%23B8956A" stroke-width="2.5" fill="none" stroke-linecap="round"/><path d="M30 55 Q45 50 60 55 Q75 50 90 55" stroke="%23B8956A" stroke-width="2" fill="none" stroke-linecap="round"/></svg>') no-repeat center/cover,
        linear-gradient(135deg, #E6C68A 0%, #D4A574 50%, #B8956A 100%);
}

.product-thumb.croissants {
    background:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 80"><path d="M15 50 Q25 20 40 25 Q50 15 65 25 Q75 20 85 50 Q80 60 70 55 Q60 65 50 55 Q40 65 30 55 Q20 60 15 50" fill="%23F4D03F"/><circle cx="35" cy="40" r="2" fill="%23E8C547"/><circle cx="55" cy="35" r="1.5" fill="%23E8C547"/></svg>') no-repeat center/cover,
        linear-gradient(45deg, #F4D03F, #E8C547);
}

.order-details h5 {
    font-size: 14px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.order-details p {
    font-size: 12px;
    color: #7a7a7a;
}

.order-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-price {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
}

.fulfill-btn {
    background: #4ECB71;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.fulfill-btn:hover {
    background: #45B865;
}

/* Payment Mockup */
.payment-mockup {
    background: white;
    border-radius: 0;
    padding: 12px;
    width: 100%;
}

.payment-header {
    background: transparent;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.payment-header h4 {
    font-size: 15px;
    font-weight: 400;
    color: #2d2d2d;
    margin: 0;
}

.payment-methods {
    padding: 12px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    background: #f8f9fa;
}

.payment-option.active {
    border-color: #F4877B;
    background: rgba(244, 135, 123, 0.05);
}

.payment-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: white;
    font-size: 13px;
}

.payment-icon.tikkie {
    background: #FF6B35;
}

.payment-icon.ideal {
    background: #FF0099;
}

.payment-icon.cash {
    background: #4ECB71;
    font-size: 18px;
}

.payment-info {
    flex: 1;
}

.payment-info h5 {
    font-size: 14px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 2px;
}

.payment-info p {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.payment-status {
    font-size: 18px;
    color: #4ECB71;
}

.payment-summary {
    border-top: 1px solid #e9ecef;
    padding: 12px;
    background: #f8f9fa;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    color: #6b7280;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #2d2d2d;
    padding-top: 6px;
    border-top: 1px solid #e9ecef;
}

.payment-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffde59 0%, #f4c430 100%);
    color: #2d2d2d;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #f4c430 0%, #e6b800 100%);
}

/* Waitlist Form */
.waitlist-form {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-top: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.waitlist-form h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2d2d2d;
    text-align: center;
}

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

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #f8f9fa;
    color: #2d2d2d;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input:focus {
    outline: none;
    border-color: #f4c430;
    background: white;
}

.form-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #fafafa;
    text-align: center;
    color: #2d2d2d;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.cta-content .mission-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    color: #6b7280;
}

.cta-content .mission-highlight {
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2d2d2d;
}

.cta-content .mission-highlight::before {
    content: '👉';
    font-size: 18px;
}

.cta-button.gradient {
    background: linear-gradient(135deg, #ffde59 0%, #f4c430 100%);
    color: #2d2d2d;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
}

.cta-button.gradient:hover {
    background: linear-gradient(135deg, #f4c430 0%, #e6b800 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 222, 89, 0.5);
}

/* Footer */
/* Footer */
.footer {
    background: #1e3a4c;
    color: #fefcfd;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(254, 252, 253, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fefcfd;
    letter-spacing: -0.3px;
}

.footer-description {
    color: #fefcfd;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fefcfd;
    letter-spacing: -0.01em;
}

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

.footer-link {
    color: #fefcfd;
    opacity: 0.7;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    color: #ffbf00;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    color: #fefcfd;
    opacity: 0.6;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(254, 252, 253, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fefcfd;
    opacity: 0.7;
}

.social-link:hover {
    opacity: 1;
    background: #ffbf00;
    color: #1e3a4c;
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

/* Responsive Design */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 42px;
    }


    .workflow-step {
        gap: 60px;
        margin-bottom: 100px;
    }

    .phone-mockup {
        width: 280px;
        height: 600px;
    }

    .whatsapp-mockup,
    .dashboard-mockup,
    .payment-mockup {
        width: 320px;
    }

    .section-header {
        margin-bottom: 80px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    /* FAQ Section - Tablet */
    .faq {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 50px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px 28px;
    }

    .question-text {
        font-size: 17px;
    }

    .faq-item.active .faq-answer {
        padding: 0 28px 20px 28px;
    }

    /* Footer - Tablet */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        z-index: 1000;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .cta-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-radius: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        color: #1e3a4c;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-layout {
        display: flex;
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 1;
        margin-bottom: 20px;
    }

    .hero-mockup {
        order: 2;
        min-height: auto;
        padding: 10px;
        position: relative;
    }

    .creator-mockup {
        max-width: 320px;
        width: 90%;
        height: auto;
        min-height: auto;
        position: relative;
    }

    .creator-profile-card {
        width: 100%;
        transform: none;
    }

    .creator-profile-card:hover {
        transform: none;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .floating-icon .icon {
        font-size: 18px;
    }

    .floating-icon::after {
        font-size: 7px;
        bottom: -20px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* About Us - Tablet */
    .about-us {
        padding: 80px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .about-image::before {
        font-size: 60px;
        top: -30px;
        right: -15px;
    }

    .about-content {
        text-align: center;
        padding: 0 20px;
    }

    .about-highlight {
        font-size: 36px;
    }

    /* Navigation - Tablet */
    .nav-menu {
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    /* Dibs Feature - Tablet */
    .dibs-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .dibs-content {
        padding-right: 0;
        order: 2;
    }

    .dibs-demo {
        order: 1;
    }

    .dibs-headline {
        font-size: 32px;
    }

    .demo-container {
        max-width: 350px;
    }

    .demo-phone {
        width: 240px;
        height: 360px;
    }

    /* Strong CTA Section - Tablet */
    .strong-cta {
        padding: 80px 0;
    }

    .cta-headline {
        font-size: 36px;
    }

    .cta-subheadline {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .cta-button-strong {
        padding: 18px 42px;
        font-size: 17px;
    }

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

    .features-header h2 {
        font-size: 28px;
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .workflow-step.reverse .step-content,
    .workflow-step.reverse .step-visual {
        order: unset;
    }

    /* Fix spacing issues for mockups */
    .workflow-step .step-visual {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 30px auto !important;
        width: 100% !important;
        max-width: 400px !important;
        position: relative !important;
        z-index: 1 !important;
        order: 2 !important;
    }

    /* Ensure mockups don't overlap with text */
    .workflow-step .step-content {
        position: relative !important;
        z-index: 2 !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        order: 1 !important;
        display: block !important;
        clear: both !important;
    }

    /* Force separation between elements */
    .workflow-step .step-content::after {
        content: '';
        display: block;
        height: 10px;
        width: 100%;
        clear: both;
    }


    .section-header h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .step-content {
        padding: 0;
        text-align: center;
    }

    /* Center step numbers for tablet and mobile */
    .step-number {
        margin: 0 auto 24px auto;
    }

    .step-content h3 {
        font-size: 24px;
    }

    .step-content p {
        font-size: 16px;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .whatsapp-mockup,
    .dashboard-mockup,
    .payment-mockup {
        width: 300px;
    }

    .waitlist-form {
        padding: 25px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .cta-content .mission-text {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
        touch-action: manipulation;
    }

    /* Enhanced touch interfaces */
    .dibs-btn,
    .fulfill-btn,
    .payment-btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    .form-input {
        min-height: 48px;
        touch-action: manipulation;
    }

    /* Better mobile mockup proportions */
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }

    .whatsapp-mockup,
    .dashboard-mockup,
    .payment-mockup {
        width: 300px;
        margin: 0 auto;
        position: relative;
        flex-shrink: 0;
    }

    /* Specific fix for payment mockup */
    .payment-mockup {
        max-width: 280px;
        width: 100%;
    }

    /* Add proper spacing around workflow sections */
    .workflow-step:not(:last-child) {
        margin-bottom: 100px;
    }

    /* Improved mobile scrolling for mockups */
    .storefront-preview {
        -webkit-overflow-scrolling: touch;
    }

    .chat-messages {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    /* Improved mobile typography */
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 32px;
    }

    /* Better mobile spacing */


    /* Strong CTA Section - Mobile */
    .strong-cta {
        padding: 70px 0;
    }

    .cta-headline {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .cta-subheadline {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta-button-strong {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }

    /* FAQ Section - Mobile */
    .faq {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-accordion {
        max-width: none;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .question-text {
        font-size: 16px;
    }

    .faq-icon {
        font-size: 20px;
        width: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    /* About Us - Mobile */
    .about-us {
        padding: 60px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        width: 280px;
        height: 280px;
    }

    .about-image::before {
        font-size: 50px;
        top: -25px;
        right: -10px;
    }

    .about-content {
        text-align: center;
        padding: 0 10px;
    }

    .about-highlight {
        font-size: 28px;
    }

    /* Navigation - Mobile */
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 0;
        width: 100%;
    }

    /* Dibs Feature - Mobile */
    .dibs-feature {
        padding: 60px 0;
    }

    .dibs-layout {
        gap: 40px;
    }

    .dibs-headline {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .benefit-item {
        gap: 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .benefit-text h4 {
        font-size: 18px;
    }

    .benefit-text p {
        font-size: 14px;
    }

    .demo-container {
        padding: 20px;
        max-width: 300px;
    }

    .creator-mockup {
        max-width: 300px;
        width: 85%;
        height: auto;
        transform: scale(0.95);
    }

    .creator-profile-card {
        width: 100%;
        padding: 16px;
        transform: none;
    }

    .creator-profile-card:hover {
        transform: scale(1.02);
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        position: absolute;
    }

    .floating-icon .icon {
        font-size: 16px;
    }

    .floating-icon::after {
        font-size: 7px;
        bottom: -20px;
    }

    .floating-icon.dibs {
        top: 40px;
        left: -70px;
    }

    .floating-icon.orders {
        top: 40px;
        right: -20px;
    }

    .floating-icon.community {
        bottom: 100px;
        left: -70px;
    }

    .floating-icon.payments {
        bottom: 70px;
        right: -70px;
    }

    .avatar-image {
        width: 80px;
        height: 80px;
    }

    .creator-header h3 {
        font-size: 16px;
    }

    .product-info h4 {
        font-size: 12px;
    }

    .product-info p {
        font-size: 10px;
    }

    .demo-step {
        padding: 15px;
    }

    .product-image-demo {
        width: 60px;
        height: 60px;
    }

    .product-info-demo h5 {
        font-size: 16px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .dibs-btn-demo {
        font-size: 14px;
        padding: 10px 16px;
    }

    /* Mobile navigation improvements */
    .nav-menu {
        width: 100vw;
        right: -100vw;
        padding: 30px 20px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }

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

    .features-header h2 {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 14px;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .whatsapp-mockup,
    .dashboard-mockup,
    .payment-mockup {
        width: 280px;
        max-width: 100%;
        position: relative;
        flex-shrink: 0;
    }

    /* Mobile specific payment mockup fix */
    .payment-mockup {
        max-width: 260px;
    }

    .workflow-step {
        margin-bottom: 60px;
        padding: 0 8px;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    /* Ensure proper spacing for mobile mockups - FORCE OVERRIDE */
    .workflow-step .step-visual {
        margin: 25px auto !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 300px !important;
        position: relative !important;
        z-index: 1 !important;
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Clear separation between content and visual - FORCE OVERRIDE */
    .workflow-step .step-content {
        margin-bottom: 15px !important;
        position: relative !important;
        z-index: 2 !important;
        order: 1 !important;
        width: 100% !important;
        display: block !important;
        clear: both !important;
    }

    /* Force separation between elements */
    .workflow-step .step-content::after {
        content: '';
        display: block;
        height: 10px;
        width: 100%;
        clear: both;
    }

    /* Center step numbers for mobile */
    .step-number {
        margin: 0 auto 20px auto;
    }

    .waitlist-form {
        padding: 20px 15px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    /* Footer - Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .cta-content .mission-text {
        font-size: 16px;
    }

    /* Creator mockup mobile responsiveness */
    .creator-mockup {
        max-width: 280px !important;
        width: 90% !important;
        height: auto !important;
        transform: scale(0.9) !important;
    }

    .creator-profile-card {
        width: 100% !important;
        padding: 12px !important;
        transform: none !important;
    }

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

    .shop-logo {
        width: 28px !important;
        height: 28px !important;
        font-size: 18px !important;
    }

    .shop-title {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .shop-subtitle {
        font-size: 10px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .product-image-main {
        width: 100% !important;
        height: 60px !important;
        font-size: 32px !important;
    }

    .product-info h4 {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    .product-info p {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }

    .product-price .current-price {
        font-size: 14px !important;
    }

    .product-price .discounted-price {
        font-size: 10px !important;
    }

    .product-price .discount-badge {
        font-size: 8px !important;
        padding: 2px 4px !important;
    }

    .payment-btn {
        font-size: 12px !important;
        padding: 10px !important;
    }

    .product-item {
        gap: 8px !important;
    }

    .item-image {
        width: 32px !important;
        height: 32px !important;
        font-size: 18px !important;
    }

    .item-name {
        font-size: 10px !important;
    }

    .item-price {
        font-size: 10px !important;
    }

    .floating-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 16px !important;
    }

    .floating-icon.calendar {
        left: -70px !important;
        top: 20px !important;
    }

    .floating-icon.analytics {
        left: -70px !important;
        bottom: 30px !important;
    }

    .floating-icon.orders {
        right: -70px !important;
        top: 30px !important;
    }
}