/* ========================================
   Weight Loss Program - Compact & Beautiful Design
   ======================================== */

/* Hero Section - Compact */
.wlp-hero-compact {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: calc(120px + 2rem) 0 3rem;
    background: linear-gradient(135deg,
        var(--background-color) 0%,
        rgba(240, 227, 209, 0.3) 100%);
    overflow: hidden;
}

.wlp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.wlp-hero-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.04) 0%,
        rgba(44, 77, 81, 0.06) 100%);
    animation: float 20s ease-in-out infinite;
}

.wlp-circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.wlp-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.wlp-hero-content-compact {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wlp-hero-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(77, 127, 122, 0.15);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.wlp-hero-badge-compact svg {
    color: var(--highlight-color);
}

.wlp-hero-title-compact {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.wlp-hero-subtitle-compact {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.wlp-hero-actions-compact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Compact Buttons */
.wlp-btn-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wlp-btn-lg-compact {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.wlp-btn-primary-compact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text-color);
    box-shadow: 0 4px 12px rgba(77, 127, 122, 0.25);
}

.wlp-btn-primary-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(77, 127, 122, 0.3);
}

.wlp-btn-secondary-compact {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wlp-btn-secondary-compact:hover {
    background: var(--primary-color);
    color: white;
}

.wlp-btn-outline-compact {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.wlp-btn-outline-compact:hover {
    background: var(--primary-color);
    color: white;
}

.wlp-btn-outline-light-compact {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.wlp-btn-outline-light-compact:hover {
    background: white;
    color: var(--primary-color);
}

/* Story Section */
.wlp-story-section {
    padding: 4rem 0;
    background: white;
}

.wlp-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wlp-story-title {
    font-family: var(--heading-font);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.wlp-story-title em {
    font-style: italic;
    color: var(--primary-color);
}

.wlp-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.wlp-highlight-text {
    font-size: 1.2rem !important;
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-top: 1.5rem !important;
}

/* Section Headers - Compact */
.wlp-section-header-compact {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.wlp-badge-compact {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.wlp-section-title-compact {
    font-family: var(--heading-font);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.wlp-section-subtitle-compact {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Section - Enhanced Design */
.wlp-why-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg,
        rgba(240, 227, 209, 0.2) 0%,
        white 50%,
        rgba(77, 127, 122, 0.04) 100%);
    position: relative;
}

.wlp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wlp-why-card {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 2px solid #e8eeef;
    transition: all 0.35s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(77, 127, 122, 0.06);
    overflow: hidden;
}

.wlp-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.wlp-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(77, 127, 122, 0.14);
    border-color: var(--primary-color);
}

.wlp-why-card:hover::before {
    transform: scaleX(1);
}

.wlp-why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.1) 0%,
        rgba(240, 227, 209, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.35s ease;
    position: relative;
}

.wlp-why-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wlp-why-card:hover .wlp-why-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.1);
}

.wlp-why-card:hover .wlp-why-icon::after {
    opacity: 0.3;
}

.wlp-why-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Journey Steps */
.wlp-journey-section {
    padding: 4rem 0;
    background: white;
}

.wlp-journey-steps {
    max-width: 900px;
    margin: 0 auto;
}

.wlp-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(77, 127, 122, 0.03) 0%, rgba(240, 227, 209, 0.2) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.wlp-step:hover {
    box-shadow: 0 6px 16px rgba(77, 127, 122, 0.1);
    transform: translateX(5px);
}

/* Connecting Dashed Arrow Between Steps */
.wlp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2.5rem;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom,
        var(--primary-color) 0%,
        var(--primary-color) 40%,
        transparent 40%,
        transparent 60%,
        var(--primary-color) 60%,
        var(--primary-color) 100%);
    opacity: 0.4;
}

/* Animated Arrow Head */
.wlp-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2.8rem;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-color);
    opacity: 0.4;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(3px);
    }
}

.wlp-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 10px;
    font-family: var(--heading-font);
}

.wlp-step-content h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.wlp-step-content p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Pricing - Professional Healthcare Design */
.wlp-pricing-compact {
    padding: 4.5rem 0;
    background: linear-gradient(180deg,
        #f8fafb 0%,
        #ffffff 50%,
        rgba(240, 227, 209, 0.15) 100%);
    position: relative;
}

.wlp-pricing-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    max-width: 1150px;
    margin: 0 auto;
}

.wlp-pricing-card-compact {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1.25rem 1.5rem;
    border: 2px solid #e8eeef;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(77, 127, 122, 0.06);
}

.wlp-pricing-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(77, 127, 122, 0.14);
    border-color: var(--primary-color);
}

.wlp-featured-compact {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 28px rgba(77, 127, 122, 0.16);
    position: relative;
}

.wlp-featured-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--primary-color) 100%);
    border-radius: 16px 16px 0 0;
}

.wlp-featured-compact:hover {
    box-shadow: 0 16px 40px rgba(77, 127, 122, 0.2);
}

.wlp-featured-badge-compact {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--highlight-color) 0%, #c9993d 100%);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(217, 164, 78, 0.3);
    z-index: 10;
}

.wlp-pricing-header-compact {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8eeef;
}

.wlp-pricing-header-compact h3 {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.wlp-best-for {
    color: var(--primary-color);
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(77, 127, 122, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 0.3px;
}

.wlp-pricing-price-compact {
    text-align: center;
    padding: 1rem 0.5rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.wlp-pricing-price-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%);
    border-radius: 10px;
}

.wlp-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
    margin-top: 0.4rem;
}

.wlp-amount {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.wlp-period {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.65;
    font-weight: 500;
}

.wlp-description {
    text-align: center;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    opacity: 0.85;
    padding: 0 0.5rem;
}

.wlp-features-compact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.wlp-features-compact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.6rem;
    background: linear-gradient(135deg, rgba(77, 127, 122, 0.02) 0%, rgba(240, 227, 209, 0.08) 100%);
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.wlp-features-compact li:hover {
    background: linear-gradient(135deg, rgba(77, 127, 122, 0.05) 0%, rgba(240, 227, 209, 0.15) 100%);
    border-left-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(77, 127, 122, 0.08);
}

.wlp-features-compact li svg {
    flex-shrink: 0;
    color: white;
    margin-top: 1px;
    width: 17px;
    height: 17px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    padding: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(77, 127, 122, 0.2);
}

.wlp-features-compact li:hover svg {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 3px 10px rgba(77, 127, 122, 0.3);
}

.wlp-features-compact li span {
    color: var(--text-color);
    line-height: 1.55;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.wlp-features-compact li:hover span {
    color: var(--secondary-color);
}

.wlp-pricing-card-compact .wlp-btn-compact {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Different Section */
.wlp-different-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.wlp-different-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wlp-different-title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.wlp-different-text .lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wlp-different-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.wlp-different-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.wlp-different-highlights span {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--highlight-color);
}

/* Real Stories Section - Stunning Redesign */
.wlp-stories-section {
    padding: 5rem 0;
    background: linear-gradient(180deg,
        white 0%,
        rgba(240, 227, 209, 0.15) 50%,
        white 100%);
    position: relative;
    overflow: hidden;
}

.wlp-stories-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 127, 122, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Stats Bar Above Testimonials */
.wlp-stories-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.wlp-stats-item {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid rgba(77, 127, 122, 0.1);
    box-shadow: 0 4px 16px rgba(77, 127, 122, 0.06);
    transition: all 0.3s ease;
}

.wlp-stats-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(77, 127, 122, 0.12);
    border-color: var(--primary-color);
}

.wlp-stats-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wlp-stats-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Testimonials Grid */
.wlp-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wlp-story-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(77, 127, 122, 0.12);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s ease forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wlp-story-card:nth-child(1) { animation-delay: 0.15s; }
.wlp-story-card:nth-child(2) { animation-delay: 0.3s; }
.wlp-story-card:nth-child(3) { animation-delay: 0.45s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient accent line on hover */
.wlp-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--highlight-color) 50%,
        var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.wlp-story-card:hover::before {
    transform: scaleX(1);
}

.wlp-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(77, 127, 122, 0.12);
    border-color: var(--primary-color);
}

/* Quote Mark Design - Subtle corner accent */
.wlp-story-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    opacity: 0.08;
    z-index: 0;
}

.wlp-story-quote svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

/* Rating Stars */
.wlp-story-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.wlp-story-rating svg {
    color: var(--highlight-color);
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(217, 164, 78, 0.2));
}

/* Weight Loss Badge */
.wlp-story-weight-loss {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.08) 0%,
        rgba(240, 227, 209, 0.2) 100%);
    border-radius: 50px;
    border: 1px solid rgba(77, 127, 122, 0.15);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.wlp-story-weight-loss svg {
    width: 18px;
    height: 18px;
    color: var(--highlight-color);
}

/* Testimonial Text */
.wlp-story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: normal;
    font-weight: 400;
}

/* Removed decorative quotation mark */

/* Author Info */
.wlp-story-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 2px solid rgba(77, 127, 122, 0.08);
    position: relative;
}

.wlp-story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(77, 127, 122, 0.25);
    border: 3px solid white;
    position: relative;
}

.wlp-story-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wlp-story-card:hover .wlp-story-avatar::after {
    opacity: 0.3;
}

.wlp-story-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(77, 127, 122, 0.25);
    border: 3px solid white;
}

.wlp-no-testimonials {
    text-align: center;
    padding: 3rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.wlp-story-author-info {
    flex: 1;
}

.wlp-story-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.wlp-story-author-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.wlp-story-location {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.wlp-story-location svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.wlp-story-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.wlp-story-verified svg {
    width: 12px;
    height: 12px;
}

/* FAQ - Compact & Fixed */
.wlp-faq-compact {
    padding: 4rem 0;
    background: var(--background-color);
}

.wlp-faq-container-compact {
    max-width: 900px;
    margin: 0 auto;
}

.wlp-faq-item-compact {
    background: white !important;
    border: none !important;
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.wlp-faq-button-compact {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem !important;
    background: white !important;
    border: none !important;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: none !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1;
}

.wlp-faq-button-compact:hover {
    background: rgba(77, 127, 122, 0.03) !important;
}

.wlp-faq-button-compact:not(.collapsed) {
    background: linear-gradient(135deg, rgba(77, 127, 122, 0.08) 0%, rgba(240, 227, 209, 0.2) 100%) !important;
    color: var(--primary-color) !important;
}

.wlp-faq-button-compact::after {
    display: none !important;
}

.wlp-faq-q {
    flex: 1;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    padding-right: 1rem;
    pointer-events: none;
}

.wlp-faq-chevron {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.wlp-faq-button-compact:not(.collapsed) .wlp-faq-chevron {
    transform: rotate(180deg);
}

.wlp-faq-answer-compact {
    padding: 0 1.5rem 1.5rem !important;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Final CTA - Compact */
.wlp-final-cta-compact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.wlp-final-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wlp-final-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white !important;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.wlp-final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   IMAGE PLACEHOLDER STYLES
   Following IMAGE_PLACEMENT_GUIDE.md specifications
   ======================================== */

/* Hero Section Split Layout */
.wlp-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wlp-hero-content-compact {
    text-align: left;
    max-width: 100%;
}

.wlp-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Story Section Split Layout */
.wlp-story-split {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 3rem;
    align-items: center;
}

.wlp-story-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.wlp-story-content {
    text-align: left;
}

/* Different Section Split Layout */
.wlp-different-split {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 3rem;
    align-items: center;
}

.wlp-different-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.wlp-different-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.wlp-different-img:hover {
    transform: scale(1.03);
}

/* Journey Steps - Step Header with Mini Images */
.wlp-step-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.wlp-step-image-mini {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
}

.wlp-step-image-mini img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(77, 127, 122, 0.2);
    transition: all 0.3s ease;
}

.wlp-step-image-mini img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(77, 127, 122, 0.3);
}

.wlp-image-placeholder-mini {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.08) 0%,
        rgba(240, 227, 209, 0.25) 100%);
    border: 3px dashed rgba(77, 127, 122, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wlp-image-placeholder-mini:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.12) 0%,
        rgba(240, 227, 209, 0.35) 100%);
}

.wlp-image-placeholder-mini svg {
    color: var(--primary-color);
    opacity: 0.4;
}

.wlp-mini-tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 77, 81, 0.95);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 1.4;
}

.wlp-step-image-mini:hover .wlp-mini-tooltip {
    opacity: 1;
}

/* Final CTA Background Placeholder */
.wlp-final-cta-compact {
    position: relative;
}

.wlp-cta-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.wlp-bg-placeholder-indicator {
    position: relative;
    text-align: center;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.wlp-final-cta-compact:hover .wlp-bg-placeholder-indicator {
    opacity: 0.3;
}

.wlp-bg-placeholder-indicator svg {
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.wlp-bg-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    text-align: center;
}

.wlp-bg-placeholder-indicator:hover .wlp-bg-tooltip {
    opacity: 1;
}

.wlp-bg-tooltip strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.wlp-bg-tooltip span {
    display: block;
    font-size: 0.7rem;
    line-height: 1.4;
}

.wlp-bg-tooltip .wlp-specs {
    margin-top: 0.25rem;
    font-weight: 600;
    color: var(--highlight-color);
}

/* General Image Placeholder Styles */
.wlp-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.06) 0%,
        rgba(240, 227, 209, 0.2) 100%);
    border: 3px dashed rgba(77, 127, 122, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(77, 127, 122, 0.08);
}

.wlp-image-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg,
        rgba(77, 127, 122, 0.1) 0%,
        rgba(240, 227, 209, 0.3) 100%);
    box-shadow: 0 8px 24px rgba(77, 127, 122, 0.15);
}

.wlp-image-placeholder svg {
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.wlp-placeholder-text {
    text-align: center;
    color: var(--secondary-color);
}

.wlp-placeholder-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: var(--heading-font);
}

.wlp-placeholder-text span {
    display: block;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    max-width: 300px;
}

.wlp-placeholder-text .wlp-specs {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--highlight-color);
    background: rgba(217, 164, 78, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Responsive - Compact */
@media (max-width: 768px) {
    .wlp-hero-compact {
        min-height: 50vh;
        padding: calc(100px + 1.5rem) 0 2rem;
    }

    .wlp-hero-actions-compact,
    .wlp-final-actions {
        flex-direction: column;
    }

    .wlp-btn-compact {
        width: 100%;
        justify-content: center;
    }

    .wlp-why-grid {
        grid-template-columns: 1fr;
    }

    .wlp-pricing-compact {
        padding: 3.5rem 0;
    }

    .wlp-pricing-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wlp-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }

    .wlp-step-number {
        margin: 0 auto;
    }

    /* Mobile: Adjust arrows for smaller screens */
    .wlp-step:not(:last-child)::after {
        height: 1.2rem;
        bottom: -2.2rem;
    }

    .wlp-step:not(:last-child)::before {
        bottom: -2.5rem;
    }

    .wlp-pricing-card-compact {
        padding: 2rem 1.5rem;
    }

    .wlp-pricing-header-compact h3 {
        font-size: 1.4rem;
    }

    .wlp-amount {
        font-size: 3rem;
    }

    .wlp-features-compact li {
        margin-bottom: 0.7rem;
        padding: 0.7rem;
    }

    .wlp-features-compact li svg {
        width: 19px;
        height: 19px;
        padding: 3.5px;
    }

    .wlp-features-compact li span {
        font-size: 0.9rem;
    }

    .wlp-pricing-card-compact .wlp-btn-compact {
        padding: 0.9rem 1.5rem;
    }

    .wlp-story-section,
    .wlp-why-section,
    .wlp-journey-section,
    .wlp-pricing-compact,
    .wlp-different-section,
    .wlp-stories-section,
    .wlp-faq-compact,
    .wlp-final-cta-compact {
        padding: 3rem 0;
    }

    .wlp-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Image Placeholder Responsive Styles */
    .wlp-hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wlp-hero-content-compact {
        text-align: center;
    }

    .wlp-hero-image {
        order: 2;
        min-height: 300px;
    }

    .wlp-story-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wlp-story-content {
        text-align: center;
    }

    .wlp-story-image {
        min-height: 300px;
    }

    .wlp-different-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wlp-different-content {
        text-align: center;
    }

    .wlp-different-image {
        min-height: 300px;
    }

    .wlp-step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wlp-step-number {
        margin: 0 auto;
    }

    .wlp-step-image-mini {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .wlp-section-header-compact {
        margin-bottom: 2rem;
    }

    .wlp-pricing-compact {
        padding: 3rem 0;
    }

    .wlp-pricing-card-compact {
        padding: 1.75rem 1.25rem;
    }

    .wlp-pricing-header-compact h3 {
        font-size: 1.3rem;
    }

    .wlp-amount {
        font-size: 2.75rem;
    }

    .wlp-currency {
        font-size: 1.2rem;
    }

    .wlp-pricing-price-compact {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }

    .wlp-features-compact {
        margin-bottom: 1.5rem;
    }

    .wlp-features-compact li {
        margin-bottom: 0.65rem;
        padding: 0.65rem;
    }

    .wlp-features-compact li svg {
        width: 18px;
        height: 18px;
        padding: 3px;
    }

    .wlp-features-compact li span {
        font-size: 0.875rem;
    }

    .wlp-pricing-card-compact .wlp-btn-compact {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .wlp-featured-badge-compact {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
    }
}

/* ========================================
   REAL IMAGE STYLES (When URLs are provided)
   ======================================== */

/* Standard real images (Hero, Story, Different sections) */
.wlp-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(77, 127, 122, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wlp-real-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(77, 127, 122, 0.2);
}

/* Mini circular images for journey steps */
.wlp-real-image-mini {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(77, 127, 122, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wlp-real-image-mini:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(77, 127, 122, 0.3);
}

/* CTA Background Image Styles */
.wlp-final-cta-compact[style*="background-image"] {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.wlp-final-cta-compact[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 77, 81, 0.6);
    z-index: 1;
}

/* Hide placeholder when real background image is set */
.wlp-final-cta-compact[style*="background-image"] .wlp-cta-bg-placeholder {
    display: none;
}

/* Ensure content is visible over background */
.wlp-final-cta-compact .container {
    position: relative;
    z-index: 2;
}

/* Mobile: Disable fixed background attachment */
@media (max-width: 768px) {
    .wlp-final-cta-compact[style*="background-image"] {
        background-attachment: scroll;
    }

    .wlp-real-image,
    .wlp-real-image-mini {
        border-radius: 12px;
    }
}
