/* صفحه اصلی — سکشن‌های معرفی محصول */

.wepido-hero {
    background: var(--wepido-gradient-hero);
    position: relative;
    overflow: hidden;
}

.wepido-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.wepido-hero__inner {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--wepido-radius-lg);
}

.wepido-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wepido-hero__ai-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--wepido-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.wepido-hero__ai-note i {
    color: #93c5fd;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.wepido-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.wepido-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wepido-hero__trust-item i {
    color: #93c5fd;
}

/* سکشن «وپیدو چیست؟» */
.wepido-what {
    padding: 4rem 0;
    background: var(--wepido-surface);
}

.wepido-what__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.wepido-what__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--wepido-text);
    margin-bottom: 0.75rem;
}

.wepido-what__subtitle {
    font-size: 1.0625rem;
    color: var(--wepido-text-muted);
    line-height: 1.75;
}

.wepido-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .wepido-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wepido-step-card {
    position: relative;
    background: var(--wepido-surface);
    border: 1px solid var(--wepido-border);
    border-radius: var(--wepido-radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--wepido-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wepido-step-card:hover {
    box-shadow: var(--wepido-shadow-lg);
    transform: translateY(-4px);
}

.wepido-step-card__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    background: var(--wepido-gradient-primary);
    border-radius: 50%;
}

.wepido-step-card__template-preview {
    width: 100%;
    height: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--wepido-surface-blue), #dbeafe);
    border: 1px dashed #93c5fd;
    border-radius: var(--wepido-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wepido-primary);
    font-size: 0.8125rem;
    font-weight: 600;
}

.wepido-step-card--templates {
    overflow: visible;
}

.wepido-step-card--templates:hover {
    transform: none;
}

.wepido-template-gallery {
    margin-bottom: 1rem;
}

.wepido-template-carousel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wepido-template-carousel__viewport {
    position: relative;
    min-height: 15.5rem;
    overflow: hidden;
    border-radius: var(--wepido-radius);
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid #dbeafe;
}

.wepido-template-slide {
    display: none;
    width: 100%;
    padding: 0.75rem;
    box-sizing: border-box;
}

.wepido-template-slide.is-active {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.wepido-template-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem 0.5rem;
}

.wepido-template-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wepido-text);
    line-height: 1.4;
}

.wepido-template-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.wepido-template-badge--company {
    color: #0e7490;
    background: rgba(6, 182, 212, 0.12);
}

.wepido-template-badge--shop {
    color: #1d4ed8;
    background: rgba(33, 99, 232, 0.12);
}

.wepido-template-card__thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: calc(var(--wepido-radius) - 2px);
    overflow: hidden;
    cursor: zoom-in;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.wepido-template-card__thumb img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 8.5rem;
    max-height: 10rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
}

.wepido-template-card__zoom {
    position: absolute;
    inset: auto 0.5rem 0.5rem auto;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    font-size: 0.75rem;
    pointer-events: none;
}

.wepido-template-card__demo {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wepido-primary);
    text-decoration: none;
}

.wepido-template-card__demo:hover {
    color: var(--wepido-primary-dark);
    text-decoration: underline;
}

.wepido-template-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.wepido-template-carousel__nav {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    color: var(--wepido-primary);
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    flex-shrink: 0;
}

.wepido-template-carousel__nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.wepido-template-carousel__counter {
    min-width: 3.5rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--wepido-text-muted);
}

.wepido-template-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.92);
}

.wepido-template-lightbox[hidden] {
    display: none !important;
}

body.wepido-template-lightbox-open {
    overflow: hidden;
}

.wepido-template-lightbox__body {
    width: min(92vw, 56rem);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wepido-template-lightbox__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    color: #fff;
    text-align: center;
}

.wepido-template-lightbox__meta strong {
    font-size: 1rem;
    font-weight: 800;
}

.wepido-template-lightbox__demo {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.wepido-template-lightbox__demo:hover {
    background: rgba(255, 255, 255, 0.22);
}

.wepido-template-lightbox__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: calc(90vh - 5rem);
    border-radius: var(--wepido-radius-lg);
    overflow: hidden;
    background: #0f172a;
}

.wepido-template-lightbox__image-wrap img {
    display: block;
    width: 100%;
    max-height: calc(90vh - 5rem);
    object-fit: contain;
}

.wepido-template-lightbox__close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 9999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.wepido-template-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.5rem;
    cursor: pointer;
}

.wepido-template-lightbox__nav--prev {
    right: 1rem;
}

.wepido-template-lightbox__nav--next {
    left: 1rem;
}

@media (max-width: 640px) {
    .wepido-template-carousel__viewport {
        min-height: 14.5rem;
    }

    .wepido-template-card__thumb img {
        max-height: 8.5rem;
    }

    .wepido-template-lightbox__nav {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.25rem;
    }
}

.wepido-step-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--wepido-text);
    margin-bottom: 0.5rem;
}

.wepido-step-card__text {
    font-size: 0.9375rem;
    color: var(--wepido-text-muted);
    line-height: 1.7;
    margin: 0;
}

.wepido-what__highlight {
    max-width: 52rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75;
    color: var(--wepido-primary-dark);
    background: var(--wepido-surface-blue);
    border: 2px solid #bfdbfe;
    border-radius: var(--wepido-radius-lg);
}

/* سکشن «چرا وپیدو؟» */
.wepido-why {
    padding: 4rem 0;
    background: var(--wepido-surface-alt);
}

.wepido-why__title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--wepido-text);
    margin-bottom: 2.5rem;
}

.wepido-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .wepido-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wepido-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wepido-why-card {
    background: var(--wepido-surface);
    border: 1px solid var(--wepido-border);
    border-radius: var(--wepido-radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--wepido-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wepido-why-card:hover {
    box-shadow: var(--wepido-shadow-lg);
    transform: translateY(-3px);
}

.wepido-why-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    font-size: 1.35rem;
    color: #fff;
    background: var(--wepido-gradient-primary);
    border-radius: var(--wepido-radius);
}

.wepido-why-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--wepido-text);
    margin-bottom: 0.625rem;
}

.wepido-why-card__text {
    font-size: 0.875rem;
    color: var(--wepido-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* سکشن‌های پایین — آیکون‌های یکدست آبی */
.wepido-feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2163e8) !important;
}

/* آیکون‌های یکدست در گرید ویژگی‌های پایین صفحه */
.wepido-features-grid .w-16.h-16.rounded-xl {
    background: linear-gradient(135deg, #3b82f6, #2163e8) !important;
}

.wepido-features-grid h3.group-hover\:text-green-600,
.wepido-features-grid h3.group-hover\:text-blue-600,
.wepido-features-grid h3.group-hover\:text-purple-600,
.wepido-features-grid h3.group-hover\:text-amber-600,
.wepido-features-grid h3.group-hover\:text-red-600,
.wepido-features-grid h3.group-hover\:text-teal-600,
.wepido-features-grid h3.group-hover\:text-gray-600,
.wepido-features-grid h3.group-hover\:text-green-600 {
    transition: color 0.2s ease;
}

.wepido-features-grid .group:hover h3 {
    color: #2163e8 !important;
}

/* سکشن «چه چیزهایی رایگان است؟» */
.wepido-free {
    padding: 3.5rem 0;
    background: var(--wepido-surface-blue);
    border-block: 1px solid var(--wepido-border);
}

.wepido-free__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.wepido-free__title {
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    font-weight: 800;
    color: var(--wepido-text);
    margin-bottom: 0.625rem;
}

.wepido-free__subtitle {
    font-size: 0.9375rem;
    color: var(--wepido-text-muted);
    line-height: 1.7;
}

.wepido-free-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .wepido-free-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wepido-free-card {
    background: var(--wepido-surface);
    border: 1px solid var(--wepido-border);
    border-radius: var(--wepido-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--wepido-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wepido-free-card:hover {
    box-shadow: var(--wepido-shadow-lg);
    transform: translateY(-2px);
}

.wepido-free-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #fff;
    background: var(--wepido-gradient-primary);
    border-radius: var(--wepido-radius);
}

.wepido-free-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wepido-text);
    margin-bottom: 0.5rem;
}

.wepido-free-card__text {
    font-size: 0.875rem;
    color: var(--wepido-text-muted);
    line-height: 1.7;
    margin: 0;
}

.wepido-free-plan-callout {
    max-width: 52rem;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.95), rgba(255, 255, 255, 0.98));
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.08);
}

.wepido-free-plan-callout__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 0.8125rem;
    font-weight: 700;
}

.wepido-free-plan-callout__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--wepido-text);
    margin: 0 0 0.5rem;
}

.wepido-free-plan-callout__text {
    color: var(--wepido-text-muted);
    line-height: 1.8;
    margin: 0 0 1rem;
}

.wepido-free-plan-callout__grid {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .wepido-free-plan-callout__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.wepido-free-plan-callout__item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(34, 197, 94, 0.18);
    font-size: 0.875rem;
    color: var(--wepido-text-muted);
    line-height: 1.7;
}

.wepido-free-plan-callout__item strong {
    color: var(--wepido-text);
    font-size: 0.95rem;
}

.wepido-free-plan-callout__note {
    font-size: 0.8125rem;
    color: var(--wepido-text-muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.wepido-free-plan-callout__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wepido-free-plan-callout__cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.25);
}

.wepido-faq {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.wepido-faq__header {
    max-width: 42rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.wepido-faq__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--wepido-text);
    margin-bottom: 0.75rem;
}

.wepido-faq__subtitle {
    color: var(--wepido-text-muted);
    line-height: 1.8;
    margin: 0;
}

.wepido-faq__list {
    max-width: 48rem;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.wepido-faq__item {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 1rem;
    background: #fff;
    padding: 0.25rem 1rem 0.9rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wepido-faq__question {
    cursor: pointer;
    font-weight: 700;
    color: var(--wepido-text);
    padding: 0.85rem 0;
    list-style: none;
}

.wepido-faq__question::-webkit-details-marker {
    display: none;
}

.wepido-faq__answer {
    color: var(--wepido-text-muted);
    line-height: 1.85;
    margin: 0;
    padding-bottom: 0.35rem;
}

.wepido-faq__answer a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
