/**
 * Photographer Landing Page Styles
 *
 * Styles spécifiques pour la landing page photographe
 * Namespace: .wbz-photo-*
 *
 * @package Webzence
 * @since 2.0.0
 */

/* ==========================================================================
   AOS FALLBACK - Ensure content visible if AOS doesn't load
   ========================================================================== */

.wbz-photo-landing [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* If AOS is loaded, it will override these with its own styles */
html.aos-initialized .wbz-photo-landing [data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.aos-initialized .wbz-photo-landing [data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

.wbz-photo-landing {
    --photo-primary: #0891B2;
    --photo-primary-dark: #0E7490;
    --photo-primary-light: #22D3EE;
    --photo-accent: #F59E0B;
    --photo-accent-dark: #D97706;

    /* Backgrounds */
    --photo-bg-light: #F8FAFC;
    --photo-bg-dark: #0F172A;
    --photo-bg-gradient: linear-gradient(135deg, #0891B2 0%, #0E7490 100%);

    /* Text */
    --photo-text: #1E293B;
    --photo-text-muted: #64748B;
    --photo-text-light: #94A3B8;

    /* Borders & Shadows */
    --photo-border: #E2E8F0;
    --photo-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --photo-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --photo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --photo-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --photo-section-padding: clamp(4rem, 8vw, 7rem);

    /* Animation */
    --photo-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.wbz-photo-highlight {
    background: linear-gradient(120deg, var(--photo-primary-light) 0%, var(--photo-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbz-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--wbz-space-12);
}

.wbz-section-header--sm {
    margin-bottom: var(--wbz-space-8);
}

.wbz-section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--wbz-space-2);
    padding: var(--wbz-space-1) var(--wbz-space-4);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--photo-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--wbz-space-4);
}

.wbz-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--photo-text);
    margin-bottom: var(--wbz-space-4);
}

.wbz-section-title--sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wbz-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--photo-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */

.wbz-photo-hero {
    position: relative;
    padding: calc(var(--photo-section-padding) + 2rem) 0 var(--photo-section-padding);
    background: var(--photo-bg-light);
    overflow: hidden;
}

.wbz-photo-hero .wbz-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wbz-space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .wbz-photo-hero .wbz-container {
        grid-template-columns: 1fr 1fr;
    }
}

.wbz-photo-hero__content {
    max-width: 600px;
}

.wbz-photo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--wbz-space-2);
    padding: var(--wbz-space-2) var(--wbz-space-4);
    background: white;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--photo-primary);
    box-shadow: var(--photo-shadow);
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-hero__badge svg {
    color: var(--photo-accent);
}

.wbz-photo-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--photo-text);
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--photo-text-muted);
    line-height: 1.7;
    margin-bottom: var(--wbz-space-8);
}

.wbz-photo-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wbz-space-4);
    margin-bottom: var(--wbz-space-10);
}

.wbz-photo-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wbz-space-8);
}

.wbz-photo-hero__stat {
    display: flex;
    flex-direction: column;
}

.wbz-photo-hero__stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--photo-primary);
}

.wbz-photo-hero__stat-label {
    font-size: 0.875rem;
    color: var(--photo-text-muted);
}

/* Hero Visual / Mockup */
.wbz-photo-hero__visual {
    position: relative;
}

.wbz-photo-hero__mockup {
    position: relative;
}

.wbz-photo-hero__browser {
    background: white;
    border-radius: 12px;
    box-shadow: var(--photo-shadow-xl);
    overflow: hidden;
}

.wbz-photo-hero__browser-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #F1F5F9;
    border-bottom: 1px solid var(--photo-border);
}

.wbz-photo-hero__browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
}

.wbz-photo-hero__browser-dot:first-child {
    background: #F87171;
}

.wbz-photo-hero__browser-dot:nth-child(2) {
    background: #FBBF24;
}

.wbz-photo-hero__browser-dot:nth-child(3) {
    background: #34D399;
}

.wbz-photo-hero__browser-content {
    padding: 20px;
    min-height: 300px;
}

.wbz-photo-hero__portfolio-preview {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 16px;
}

.wbz-photo-hero__portfolio-nav {
    height: 12px;
    background: linear-gradient(90deg, var(--photo-border) 20%, transparent 20%);
    background-size: 80px 12px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.wbz-photo-hero__portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wbz-photo-hero__portfolio-item {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #CBD5E1, #94A3B8);
    border-radius: 6px;
    animation: shimmer 2s infinite;
}

.wbz-photo-hero__portfolio-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Floating Elements */
.wbz-photo-hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--wbz-space-2);
    padding: var(--wbz-space-3) var(--wbz-space-4);
    background: white;
    border-radius: 10px;
    box-shadow: var(--photo-shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--photo-text);
    animation: float 3s ease-in-out infinite;
}

.wbz-photo-hero__float--booking {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.wbz-photo-hero__float--booking svg {
    color: var(--photo-primary);
}

.wbz-photo-hero__float--rating {
    bottom: 30%;
    left: -20px;
    animation-delay: 1.5s;
}

.wbz-photo-hero__float--rating svg {
    color: var(--photo-accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Gradient */
.wbz-photo-hero__gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================================================
   SECTION 2: TRUST BAR
   ========================================================================== */

.wbz-photo-trust {
    padding: var(--wbz-space-10) 0;
    background: white;
    border-bottom: 1px solid var(--photo-border);
}

.wbz-photo-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wbz-space-6);
}

@media (min-width: 768px) {
    .wbz-photo-trust__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wbz-photo-trust__item {
    display: flex;
    align-items: center;
    gap: var(--wbz-space-4);
    padding: var(--wbz-space-4);
    background: var(--photo-bg-light);
    border-radius: 12px;
    transition: var(--photo-transition);
}

.wbz-photo-trust__item:hover {
    box-shadow: var(--photo-shadow);
}

.wbz-photo-trust__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    color: var(--photo-primary);
    box-shadow: var(--photo-shadow-sm);
}

.wbz-photo-trust__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--photo-text);
}

.wbz-photo-trust__label {
    font-size: 0.875rem;
    color: var(--photo-text-muted);
}

/* ==========================================================================
   SECTION 3: PAIN POINTS
   ========================================================================== */

.wbz-photo-pain {
    padding: var(--photo-section-padding) 0;
    background: white;
}

.wbz-photo-pain__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wbz-space-6);
}

@media (min-width: 768px) {
    .wbz-photo-pain__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wbz-photo-pain__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wbz-photo-pain__card {
    padding: var(--wbz-space-8);
    background: var(--photo-bg-light);
    border-radius: 16px;
    border: 1px solid var(--photo-border);
    transition: var(--photo-transition);
}

.wbz-photo-pain__card:hover {
    border-color: #FCA5A5;
    background: #FEF2F2;
}

.wbz-photo-pain__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #FEE2E2;
    border-radius: 16px;
    color: #DC2626;
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-pain__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--photo-text);
    margin-bottom: var(--wbz-space-3);
}

.wbz-photo-pain__desc {
    font-size: 0.9375rem;
    color: var(--photo-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: FEATURES
   ========================================================================== */

.wbz-photo-features {
    padding: var(--photo-section-padding) 0;
    background: var(--photo-bg-light);
}

.wbz-photo-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wbz-space-6);
}

@media (min-width: 768px) {
    .wbz-photo-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wbz-photo-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wbz-photo-features__card {
    padding: var(--wbz-space-8);
    background: white;
    border-radius: 20px;
    box-shadow: var(--photo-shadow);
    border: 1px solid var(--photo-border);
    transition: var(--photo-transition);
}

.wbz-photo-features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--photo-shadow-xl);
    border-color: var(--photo-primary);
}

.wbz-photo-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
    border-radius: 18px;
    color: var(--photo-primary);
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-features__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--photo-text);
    margin-bottom: var(--wbz-space-3);
}

.wbz-photo-features__desc {
    font-size: 0.9375rem;
    color: var(--photo-text-muted);
    line-height: 1.6;
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--wbz-space-3);
}

.wbz-photo-features__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--wbz-space-3);
    font-size: 0.875rem;
    color: var(--photo-text-muted);
}

.wbz-photo-features__list svg {
    flex-shrink: 0;
    color: #10B981;
    margin-top: 2px;
}

/* ==========================================================================
   SECTION 5: SHOWCASE
   ========================================================================== */

.wbz-photo-showcase {
    padding: var(--photo-section-padding) 0;
    background: white;
}

.wbz-photo-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wbz-space-6);
    margin-bottom: var(--wbz-space-12);
}

@media (min-width: 768px) {
    .wbz-photo-showcase__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wbz-photo-showcase__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--photo-transition);
}

.wbz-photo-showcase__item:hover {
    transform: scale(1.02);
}

.wbz-photo-showcase__preview {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--showcase-color), color-mix(in srgb, var(--showcase-color) 70%, black));
}

.wbz-photo-showcase__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbz-photo-showcase__category {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wbz-photo-showcase__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--wbz-space-4);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.wbz-photo-showcase__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--wbz-space-1);
}

.wbz-photo-showcase__style {
    font-size: 0.8125rem;
    opacity: 0.8;
}

.wbz-photo-showcase__cta {
    text-align: center;
}

.wbz-photo-showcase__cta p {
    font-size: 1.125rem;
    color: var(--photo-text-muted);
    margin-bottom: var(--wbz-space-4);
}

/* ==========================================================================
   SECTION 6: PROCESS
   ========================================================================== */

.wbz-photo-process {
    padding: var(--photo-section-padding) 0;
    background: var(--photo-bg-dark);
    color: white;
}

.wbz-photo-process .wbz-section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--photo-primary-light);
}

.wbz-photo-process .wbz-section-title {
    color: white;
}

.wbz-photo-process .wbz-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.wbz-photo-process__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wbz-space-8);
}

@media (min-width: 768px) {
    .wbz-photo-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wbz-photo-process__steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wbz-photo-process__step {
    position: relative;
    text-align: center;
    padding: var(--wbz-space-8) var(--wbz-space-4);
}

.wbz-photo-process__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--photo-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.wbz-photo-process__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--photo-primary-light);
    margin: var(--wbz-space-8) auto var(--wbz-space-6);
}

.wbz-photo-process__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--wbz-space-3);
}

.wbz-photo-process__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.wbz-photo-process__connector {
    display: none;
}

@media (min-width: 1024px) {
    .wbz-photo-process__connector {
        display: block;
        position: absolute;
        top: 68px;
        right: -30%;
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, var(--photo-primary), transparent);
    }
}

/* ==========================================================================
   SECTION 7: TESTIMONIALS
   ========================================================================== */

.wbz-photo-testimonials {
    padding: var(--photo-section-padding) 0;
    background: var(--photo-bg-light);
}

.wbz-photo-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wbz-space-6);
}

@media (min-width: 768px) {
    .wbz-photo-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wbz-photo-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wbz-photo-testimonials__card {
    padding: var(--wbz-space-8);
    background: white;
    border-radius: 20px;
    box-shadow: var(--photo-shadow);
    border: 1px solid var(--photo-border);
    display: flex;
    flex-direction: column;
}

.wbz-photo-testimonials__rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--wbz-space-4);
    color: var(--photo-accent);
}

.wbz-photo-testimonials__content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--photo-text);
    margin-bottom: var(--wbz-space-6);
    flex-grow: 1;
}

.wbz-photo-testimonials__result {
    display: inline-flex;
    align-items: center;
    gap: var(--wbz-space-2);
    padding: var(--wbz-space-2) var(--wbz-space-3);
    background: #ECFDF5;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: var(--wbz-space-6);
    width: fit-content;
}

.wbz-photo-testimonials__result svg {
    color: #10B981;
}

.wbz-photo-testimonials__author {
    display: flex;
    align-items: center;
    gap: var(--wbz-space-4);
    padding-top: var(--wbz-space-6);
    border-top: 1px solid var(--photo-border);
}

.wbz-photo-testimonials__avatar {
    width: 48px;
    height: 48px;
    background: var(--photo-bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.wbz-photo-testimonials__name {
    font-style: normal;
    font-weight: 600;
    color: var(--photo-text);
    display: block;
}

.wbz-photo-testimonials__role {
    font-size: 0.875rem;
    color: var(--photo-text-muted);
}

/* ==========================================================================
   SECTION 8: PRICING
   ========================================================================== */

.wbz-photo-pricing {
    padding: var(--photo-section-padding) 0;
    background: white;
}

.wbz-photo-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wbz-space-6);
    margin-bottom: var(--wbz-space-8);
}

@media (min-width: 768px) {
    .wbz-photo-pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.wbz-photo-pricing__card {
    position: relative;
    padding: var(--wbz-space-8);
    background: white;
    border-radius: 20px;
    border: 2px solid var(--photo-border);
    transition: var(--photo-transition);
}

.wbz-photo-pricing__card:hover {
    border-color: var(--photo-primary);
}

.wbz-photo-pricing__card--featured {
    border-color: var(--photo-primary);
    box-shadow: var(--photo-shadow-xl);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .wbz-photo-pricing__card--featured {
        transform: scale(1.05);
    }
}

.wbz-photo-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--wbz-space-1) var(--wbz-space-4);
    background: var(--photo-bg-gradient);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wbz-photo-pricing__header {
    text-align: center;
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-pricing__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--photo-text);
    margin-bottom: var(--wbz-space-2);
}

.wbz-photo-pricing__desc {
    font-size: 0.9375rem;
    color: var(--photo-text-muted);
}

.wbz-photo-pricing__price {
    text-align: center;
    padding: var(--wbz-space-6) 0;
    border-top: 1px solid var(--photo-border);
    border-bottom: 1px solid var(--photo-border);
    margin-bottom: var(--wbz-space-6);
}

.wbz-photo-pricing__amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--photo-text);
    line-height: 1;
}

.wbz-photo-pricing__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--photo-text);
    vertical-align: top;
}

.wbz-photo-pricing__period {
    font-size: 1rem;
    color: var(--photo-text-muted);
    margin-left: var(--wbz-space-1);
}

.wbz-photo-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--wbz-space-8) 0;
    display: flex;
    flex-direction: column;
    gap: var(--wbz-space-3);
}

.wbz-photo-pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--wbz-space-3);
    font-size: 0.9375rem;
}

.wbz-photo-pricing__feature--included {
    color: var(--photo-text);
}

.wbz-photo-pricing__feature--included svg {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

.wbz-photo-pricing__feature--excluded {
    color: var(--photo-text-muted);
    opacity: 0.7;
}

.wbz-photo-pricing__feature--excluded svg {
    color: #9CA3AF;
    flex-shrink: 0;
    margin-top: 2px;
}

.wbz-photo-pricing__note {
    text-align: center;
    padding: var(--wbz-space-6);
    background: var(--photo-bg-light);
    border-radius: 12px;
}

.wbz-photo-pricing__note p {
    font-size: 0.9375rem;
    color: var(--photo-text-muted);
}

.wbz-photo-pricing__note strong {
    color: var(--photo-text);
}

/* ==========================================================================
   SECTION 9: FAQ
   ========================================================================== */

.wbz-photo-faq {
    padding: var(--photo-section-padding) 0;
    background: var(--photo-bg-light);
}

.wbz-photo-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--wbz-space-4);
}

.wbz-photo-faq__item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--photo-border);
    overflow: hidden;
    transition: var(--photo-transition);
}

.wbz-photo-faq__item[open] {
    border-color: var(--photo-primary);
    box-shadow: var(--photo-shadow);
}

.wbz-photo-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--wbz-space-4);
    padding: var(--wbz-space-6);
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--photo-text);
    transition: var(--photo-transition);
}

.wbz-photo-faq__question::-webkit-details-marker {
    display: none;
}

.wbz-photo-faq__question:hover {
    color: var(--photo-primary);
}

.wbz-photo-faq__question svg {
    flex-shrink: 0;
    color: var(--photo-text-muted);
    transition: var(--photo-transition);
}

.wbz-photo-faq__item[open] .wbz-photo-faq__question svg {
    transform: rotate(180deg);
    color: var(--photo-primary);
}

.wbz-photo-faq__answer {
    padding: 0 var(--wbz-space-6) var(--wbz-space-6);
}

.wbz-photo-faq__answer p {
    font-size: 0.9375rem;
    color: var(--photo-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   SECTION 10: FINAL CTA
   ========================================================================== */

.wbz-photo-cta {
    position: relative;
    padding: var(--photo-section-padding) 0;
    background: var(--photo-bg-gradient);
    overflow: hidden;
}

.wbz-photo-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wbz-photo-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--wbz-space-4);
}

.wbz-photo-cta__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--wbz-space-8);
}

.wbz-photo-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wbz-space-4);
    margin-bottom: var(--wbz-space-8);
}

.wbz-photo-cta .wbz-btn--primary {
    background: white;
    color: var(--photo-primary);
}

.wbz-photo-cta .wbz-btn--primary:hover {
    background: var(--photo-bg-light);
}

.wbz-photo-cta .wbz-btn--ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.wbz-photo-cta .wbz-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.wbz-photo-cta__guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wbz-space-6);
}

.wbz-photo-cta__guarantee {
    display: flex;
    align-items: center;
    gap: var(--wbz-space-2);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.wbz-photo-cta__guarantee svg {
    color: var(--photo-accent);
}

.wbz-photo-cta__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ==========================================================================
   SECTION 11: OTHER SECTORS
   ========================================================================== */

.wbz-photo-sectors {
    padding: var(--wbz-space-16) 0;
    background: white;
    border-top: 1px solid var(--photo-border);
}

.wbz-photo-sectors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wbz-space-4);
}

@media (min-width: 768px) {
    .wbz-photo-sectors__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wbz-photo-sectors__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--wbz-space-3);
    padding: var(--wbz-space-4) var(--wbz-space-6);
    background: var(--photo-bg-light);
    border-radius: 12px;
    border: 1px solid var(--photo-border);
    text-decoration: none;
    color: var(--photo-text);
    font-weight: 500;
    transition: var(--photo-transition);
}

.wbz-photo-sectors__item:hover {
    background: white;
    border-color: var(--photo-primary);
    color: var(--photo-primary);
    box-shadow: var(--photo-shadow);
}

.wbz-photo-sectors__icon {
    color: var(--photo-primary);
}

.wbz-photo-sectors__item svg:last-child {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--photo-transition);
}

.wbz-photo-sectors__item:hover svg:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 767px) {
    .wbz-photo-hero__visual {
        display: none;
    }

    .wbz-photo-hero__float {
        display: none;
    }

    .wbz-photo-hero__stats {
        flex-direction: column;
        gap: var(--wbz-space-4);
    }

    .wbz-photo-trust__item {
        flex-direction: column;
        text-align: center;
    }

    .wbz-photo-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .wbz-photo-hero__visual,
    .wbz-photo-cta__gradient,
    .wbz-photo-hero__gradient {
        display: none !important;
    }

    .wbz-photo-landing {
        color: black !important;
        background: white !important;
    }

    .wbz-photo-pricing__card--featured {
        transform: none;
    }
}
