/* Landing Test Additions - CSS for A/B Test Landing Pages */
/* Extends existing landing.css with new components */

/* ==================== Hero Badge ==================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--puny-blue-50);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(85, 166, 230, 0.3);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

/* ==================== Email Signup Form ==================== */
.email-signup-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    flex-wrap: wrap;
}

.email-signup-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--puny-blue-30);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--puny-blue-50);
    box-shadow: 0 0 0 4px var(--puny-blue-10);
}

.email-signup-form button {
    padding: 1rem 2rem;
    background: var(--puny-blue-50);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.email-signup-form button:hover {
    background: var(--puny-blue-60);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(85, 166, 230, 0.4);
}

.email-signup-form button svg {
    width: 20px;
    height: 20px;
}

/* ==================== Step Indicators ==================== */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--puny-blue-50);
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.step-number.green {
    background: var(--puny-green-50);
}

.step-number.red {
    background: var(--puny-red-50);
}

/* ==================== How It Works Section ==================== */
.how-it-works-section {
    margin: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop/Tablet: Steps 2 and 3 side-by-side */
@media (min-width: 769px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Step 1 spans full width */
    .steps-grid > .step-card:first-child {
        grid-column: 1 / -1;
    }
}

.step-card {
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin: 0.4rem 0 0.4rem 0;
    letter-spacing: 0.02em;
}

.step-card p {
    color: var(--puny-blue-70);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Pain Point Text */
.pain-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--puny-red-60);
    font-weight: 600;
    margin: -0.5rem 0 1.5rem 0;
    padding: 0.75rem 1rem;
    background: var(--puny-red-10);
    border-radius: 8px;
    border: 1px solid var(--puny-red-20);
}

.pain-icon {
    font-size: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}

/* Time/Automation Badges */
.time-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    animation: pulse 2s ease-in-out infinite;
}

.time-badge.blue {
    background: var(--puny-blue-50);
    color: white;
}

.time-badge.green {
    background: var(--puny-green-50);
    color: white;
}

.time-badge.red {
    background: var(--puny-red-50);
    color: white;
}

/* Before/After Micro-Comparisons */
.before-after-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 1.5rem 0;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, var(--puny-red-10) 0%, var(--puny-green-10) 100%);
    border-radius: 12px;
    border: 2px solid var(--puny-blue-20);
}

.comparison-before,
.comparison-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.comparison-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.comparison-before .comparison-label {
    color: var(--puny-red-60);
}

.comparison-after .comparison-label {
    color: var(--puny-green-60);
}

.comparison-value {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.comparison-before .comparison-value {
    color: var(--puny-red-70);
    text-decoration: line-through;
}

.comparison-after .comparison-value {
    color: var(--puny-green-70);
}

.comparison-arrow {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--puny-blue-50);
}

/* ==================== Mock UI Components ==================== */
.mock-ui-container {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    max-width: 500px;
    margin: 0 auto;
}

/* WhatsApp Chat Mock */
.whatsapp-mock {
    background: #ECE5DD;
    border-radius: 16px;
    padding: 1rem;
    min-height: 200px;
}

.whatsapp-header {
    background: #128C7E;
    padding: 0.75rem;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: -1rem -1rem 1rem -1rem;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
}

.whatsapp-name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.whatsapp-message {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-message.sent {
    background: var(--puny-blue-50);
    color: white;
    margin-left: auto;
    margin-right: 0;
}

.message-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
}

.puny-link-box {
    background: white;
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    text-align: center;
}

.puny-link {
    color: var(--puny-blue-50);
    font-weight: 900;
    font-size: 0.75rem;
}

/* Calendar Mock */
.calendar-mock {
    background: var(--puny-blue-50);
    border-radius: 16px;
    padding: 0.75rem;
}

.calendar-content {
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header svg {
    width: 20px;
    height: 20px;
    color: var(--puny-blue-50);
}

.calendar-month {
    font-size: 1rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    letter-spacing: 0.02em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    padding: 0.25rem;
    letter-spacing: 0.05em;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 900;
    transition: all 0.2s ease;
    cursor: pointer;
}

.calendar-day.available {
    background: var(--puny-blue-10);
    color: var(--puny-blue-70);
}

.calendar-day.available:hover {
    background: var(--puny-blue-20);
    transform: scale(1.05);
}

.calendar-day.booked {
    background: var(--puny-green-50);
    color: white;
    box-shadow: 0 2px 4px rgba(76, 208, 182, 0.3);
}

.calendar-day.selected {
    background: var(--puny-blue-50);
    color: white;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(85, 166, 230, 0.4);
    transform: scale(1.1);
    border: 2px solid var(--puny-blue-60);
}

/* Time Slots */
.time-slots {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--puny-blue-10);
}

.time-slot-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 900;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.time-slot.available {
    background: var(--puny-blue-10);
    color: var(--puny-blue-70);
    border: 2px solid var(--puny-blue-20);
}

.time-slot.available:hover {
    background: var(--puny-blue-20);
    transform: scale(1.03);
}

.time-slot.selected {
    background: var(--puny-blue-50);
    color: white;
    border: 2px solid var(--puny-blue-60);
    box-shadow: 0 4px 12px rgba(85, 166, 230, 0.3);
}

.time-slot.booked {
    background: var(--puny-blue-10);
    color: var(--puny-blue-40);
    border: 2px solid var(--puny-blue-10);
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Products Add-on */
.products-addon {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.25rem;
    border-top: 2px solid var(--puny-blue-10);
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--puny-green-10);
    border-radius: 8px;
    border: 1px solid var(--puny-green-20);
}

.addon-header svg {
    width: 24px;
    height: 24px;
    color: var(--puny-green-50);
}

.addon-title {
    font-weight: 900;
    color: var(--puny-blue-70);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-mini {
    position: relative;
    background: var(--puny-blue-10);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-mini:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
}

.product-mini.selected {
    background: white;
    border: 2px solid var(--puny-green-50);
    box-shadow: 0 4px 12px rgba(76, 208, 182, 0.2);
}

.product-checkbox {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--puny-blue-30);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: transparent;
    transition: all 0.3s ease;
}

.product-mini.selected .product-checkbox {
    background: var(--puny-green-50);
    border-color: var(--puny-green-50);
    color: white;
}

.product-image-placeholder {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--puny-green-50);
}

/* Booking Total Preview */
.booking-total {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--puny-blue-10);
    border-radius: 8px;
    border: 2px solid var(--puny-blue-20);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0;
}

.total-line.total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--puny-blue-30);
}

.total-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--puny-blue-70);
}

.total-line.total .total-label {
    font-size: 1rem;
    font-weight: 900;
}

.total-value {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--puny-blue-70);
}

.total-line.total .total-value {
    font-size: 1.2rem;
    color: var(--puny-green-50);
}

/* Payment Methods */
.payment-methods {
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    margin-top: 1rem;
}

.payment-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.payment-icon {
    background: var(--puny-blue-10);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-icon-text {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--puny-red-50);
}

/* ==================== Confirmation Cards ==================== */
.confirmation-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.25rem;
    border: 2px solid var(--puny-green-50);
    transition: all 0.3s ease;
}

.confirmation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--puny-green-60);
}

/* First confirmation card (primary) - more prominent */
.confirmation-card:first-child {
    background: linear-gradient(135deg, #fff 0%, var(--puny-green-10) 100%);
    box-shadow: 0 6px 20px rgba(76, 208, 182, 0.15);
}

.confirmation-card:first-child .confirmation-icon {
    width: 56px;
    height: 56px;
}

.confirmation-card:first-child .confirmation-icon svg {
    width: 32px;
    height: 32px;
}

.confirmation-card.neutral {
    border-color: var(--puny-blue-20);
}

.confirmation-card.neutral:hover {
    border-color: var(--puny-blue-40);
}

.confirmation-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--puny-green-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.confirmation-card:hover .confirmation-icon {
    transform: scale(1.1);
}

.confirmation-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.confirmation-content {
    flex: 1;
}

.confirmation-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.confirmation-detail {
    font-size: 0.9rem;
    color: var(--puny-blue-60);
    font-weight: 500;
    line-height: 1.4;
}

.confirmation-amount {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--puny-green-70);
    background: var(--puny-green-10);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* ==================== Funnel Cards (Version 2) ==================== */
.funnel-card {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--puny-blue-30);
    transition: all 0.3s ease;
    margin-bottom: 1.75rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.funnel-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px) scale(1.02);
    border-color: var(--puny-blue-50);
}

.funnel-card.highlighted {
    border-color: var(--puny-green-50);
    background: linear-gradient(135deg, #fff 0%, var(--puny-green-10) 100%);
}

.funnel-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.funnel-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--puny-blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.funnel-icon svg {
    width: 22px;
    height: 22px;
    color: white;
    transition: transform 0.3s ease;
}

.funnel-card:hover .funnel-icon svg {
    transform: scale(1.1);
}

.funnel-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.funnel-description {
    font-size: 0.85rem;
    color: var(--puny-blue-60);
    font-weight: 500;
    line-height: 1.4;
}

/* Funnel Callout Enhancement */
.funnel-callout {
    text-align: center;
    margin-top: 1.5rem;
}

.funnel-callout-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--puny-blue-10) 0%, var(--puny-green-10) 100%);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    border: 2px solid var(--puny-blue-20);
    box-shadow: 0 4px 12px rgba(85, 166, 230, 0.15);
    transition: all 0.3s ease;
}

.funnel-callout-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(85, 166, 230, 0.25);
}

.funnel-callout-emoji {
    font-size: 1.5rem;
}

.funnel-callout-text {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    letter-spacing: 0.02em;
}

/* Most Popular Badge */
.popular-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--puny-red-50);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 92, 87, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

/* Step card inner containers - Override inline max-width for better spacing */
.step-card > div[style*="max-width"] {
    max-width: 600px !important;
}

/* Social Media Icons */
.social-icons-grid {
    display: flex;
    gap: 0.5rem;
}

.social-icon-box {
    flex: 1;
    background: var(--puny-blue-10);
    border-radius: 5px;
    padding: 0.5rem 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-height: 48px;
}

.social-icon-label {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    text-align: center;
    line-height: 1;
}

/* ==================== Features Grid ==================== */
.features-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card-large {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--puny-blue-10);
    transition: all 0.3s ease;
}

.feature-card-large:hover {
    border-color: var(--puny-blue-30);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-large.blue {
    background: var(--puny-blue-50);
}

.feature-icon-large.green {
    background: var(--puny-green-50);
}

.feature-icon-large svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-title-large {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--puny-blue-70);
}

.feature-description {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-checkmark {
    width: 24px;
    height: 24px;
    color: var(--puny-green-50);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--puny-blue-60);
    font-weight: 600;
    line-height: 1.6;
}

/* ==================== Shop Feature Section ==================== */
.shop-feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.shop-feature-content {
    padding: 2rem 0;
}

.shop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--puny-green-50);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.shop-badge svg {
    width: 18px;
    height: 18px;
}

.shop-feature-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--puny-blue-70);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.shop-feature-title .highlight {
    color: var(--puny-green-50);
}

.shop-feature-subtitle {
    font-size: 1.25rem;
    color: var(--puny-blue-60);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.shop-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shop-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.shop-benefit-check {
    width: 24px;
    height: 24px;
    color: var(--puny-green-50);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.shop-benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin: 0 0 0.25rem 0;
}

.shop-benefit-text p {
    font-size: 0.95rem;
    color: var(--puny-blue-60);
    font-weight: 600;
    margin: 0;
}

/* Shop Visual Mockup */
.shop-mockup {
    background: var(--puny-green-50);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(76, 208, 182, 0.3);
}

.shop-mockup-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
}

.shop-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--puny-blue-10);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.shop-product-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.shop-product-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.shop-product-info {
    flex: 1;
}

.shop-product-name {
    font-weight: 900;
    color: var(--puny-blue-70);
    margin-bottom: 0.25rem;
}

.shop-product-price {
    font-weight: 900;
    color: var(--puny-green-50);
}

.shop-buy-button {
    padding: 0.5rem 1rem;
    background: var(--puny-green-50);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-buy-button:hover {
    background: var(--puny-green-60);
}

/* ==================== Page Types Grid ==================== */
.page-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.page-type-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--puny-blue-10);
    transition: all 0.3s ease;
}

.page-type-card:hover {
    border-color: var(--puny-blue-30);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page-type-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.page-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-type-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.page-type-content h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin: 0 0 0.25rem 0;
}

.page-type-content p {
    font-size: 0.85rem;
    color: var(--puny-blue-60);
    font-weight: 600;
    margin: 0;
}

/* ==================== Testimonials PR ==================== */
.testimonials-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card-pr {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-pr:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-star {
    width: 20px;
    height: 20px;
    color: var(--puny-red-50);
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--puny-blue-70);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin: 0 0 0.25rem 0;
}

.testimonial-info .business {
    font-size: 0.85rem;
    color: var(--puny-blue-60);
    font-weight: 600;
    margin: 0 0 0.15rem 0;
}

.testimonial-info .location {
    font-size: 0.75rem;
    color: var(--puny-blue-50);
    font-weight: 600;
}

.testimonial-stat {
    padding-top: 1rem;
    border-top: 2px solid var(--puny-blue-10);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--puny-green-50);
}

/* ==================== Emoji Callout ==================== */
.emoji-callout {
    text-align: center;
    background: var(--puny-green-50);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.emoji-callout .emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.emoji-callout .title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.emoji-callout .subtitle {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.5;
}

/* ==================== Responsive Adjustments ==================== */

/* Tablet: 2-column grid for funnel paths */
@media (min-width: 768px) and (max-width: 1023px) {
    .step-card:first-child > div[style*="max-width"] {
        max-width: 680px !important;
        display: grid;
        grid-template-columns: repeat(2, minmax(280px, 310px));
        gap: 2rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    /* Remove bottom margin from funnel cards in grid layout */
    .step-card:first-child .funnel-card {
        margin-bottom: 0;
    }

    /* Keep the callout full-width below the grid */
    .step-card:first-child > div[style*="max-width"] > div:last-child {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }
}

/* Desktop: 2-column grid for perfect symmetry (2x2 layout) */
@media (min-width: 1024px) {
    /* Make Step 1 funnel container use 2-column grid layout */
    .step-card:first-child > div[style*="max-width"] {
        max-width: 800px !important;
        display: grid;
        grid-template-columns: repeat(2, 360px);
        gap: 2.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    /* Remove bottom margin from funnel cards in grid layout */
    .step-card:first-child .funnel-card {
        margin-bottom: 0;
    }

    /* Keep the callout full-width below the grid */
    .step-card:first-child > div[style*="max-width"] > div:last-child {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .email-signup-form {
        flex-direction: column;
    }

    .email-signup-form input[type="email"],
    .email-signup-form button {
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-card {
        padding: 1rem;
    }

    .shop-feature-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid-2col {
        grid-template-columns: 1fr;
    }

    .page-types-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .mock-ui-container {
        padding: 1rem;
    }

    .calendar-grid {
        gap: 0.15rem;
    }

    .calendar-day {
        font-size: 0.65rem;
    }
}

/* ==================== Video Testimonial Components ==================== */

/* Video Testimonial Card (for carousel) */
.video-testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.video-thumbnail-container {
    position: relative;
    overflow: hidden;
}

/* Video Thumbnail Mini (for grid) */
.video-thumbnail-mini {
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-thumbnail-mini:hover {
    transform: scale(1.05);
}

.video-thumbnail-mini img {
    transition: all 0.3s ease;
}

.video-thumbnail-mini:hover img {
    filter: brightness(1.1);
}

/* Pulse animation for urgency badges */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==================== 60-Second Timeline Visual ==================== */
.timeline-container {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.timeline-header {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-header h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--puny-blue-70);
    margin: 0;
    letter-spacing: 0.02em;
}

.timeline-bar {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.timeline-segment {
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-segment:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.timeline-segment.step1 {
    background: linear-gradient(135deg, var(--puny-blue-50) 0%, var(--puny-blue-60) 100%);
}

.timeline-segment.step2 {
    background: linear-gradient(135deg, var(--puny-green-50) 0%, var(--puny-green-60) 100%);
}

.timeline-segment.step3 {
    background: linear-gradient(135deg, var(--puny-red-50) 0%, var(--puny-red-60) 100%);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-step-label {
    font-size: 0.9rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.02em;
}

.timeline-duration {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.timeline-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--puny-blue-50) 0%, var(--puny-green-50) 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(85, 166, 230, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile responsive timeline */
@media (max-width: 768px) {
    .timeline-bar {
        grid-template-columns: 1fr;
    }

    .timeline-segment {
        padding: 1.25rem 1rem;
    }
}
