/*
 * WebLite Landing Page Campaigns - V5 Redesign
 */

:root {
    --lp-primary: #5E5DF0;
    --lp-secondary: #1a1a1a;
    --lp-accent: #FFD700;
    --lp-bg: #f5f5f7;
    --lp-text: #333;
    --lp-text-light: #ffffff;
    --lp-danger: #ef4444;
    --lp-success: #10c991;
    --font-main: 'Heebo', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--lp-bg);
    color: var(--lp-text);
    direction: rtl;
    line-height: 1.6;
}

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-section {
    padding: 80px 0;
}

.lp-section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--lp-secondary);
}

.lp-section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
}

/* ================================================
   HERO SECTION
   ================================================ */
.lp-hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    color: var(--lp-text-light);
    overflow: hidden;
    position: relative;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(94, 93, 240, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.lp-hero .lp-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.lp-hero-content {
    flex: 1;
}
.lp-hero-tag {
    display: inline-block;
    background-color: rgba(94, 93, 240, 0.2);
    border: 1px solid rgba(94, 93, 240, 0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a5a4f7;
}
.lp-hero-tag i {
    margin-left: 6px;
}
.lp-hero .lp-h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}
.lp-hero .lp-sub-headline {
    font-size: 1.15rem;
    opacity: 0.75;
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.8;
}
.lp-hero-image {
    flex: 1;
    max-width: 48%;
}
.lp-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Hero Stats */
.lp-hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}
.lp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.lp-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--lp-accent);
    line-height: 1;
}
.lp-stat-label {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* Hero CTA Group */
.lp-hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================================================
   CTA BUTTONS
   ================================================ */
.lp-cta-button {
    color: var(--lp-text-light);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.lp-cta-button i {
    transition: transform 0.3s ease;
}
.lp-cta-button:hover i {
    transform: translateX(-4px);
}

.lp-cta-primary {
    background: linear-gradient(135deg, var(--lp-primary), #4b4acf);
    box-shadow: 0 6px 20px rgba(94, 93, 240, 0.4);
}
.lp-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(94, 93, 240, 0.5);
}

.lp-cta-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
}
.lp-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* ================================================
   PAIN POINTS SECTION
   ================================================ */
.lp-pain-section {
    background: #fff;
}
.lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.lp-pain-card {
    background: #fafafa;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lp-pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--lp-danger);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lp-pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.lp-pain-card:hover::before {
    opacity: 1;
}
.lp-pain-icon {
    width: 55px;
    height: 55px;
    background: rgba(239, 68, 68, 0.08);
    color: var(--lp-danger);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.lp-pain-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--lp-secondary);
}
.lp-pain-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
}
.lp-pain-card p strong {
    color: var(--lp-secondary);
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.lp-features-section {
    background: var(--lp-bg);
}
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.lp-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.lp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(94, 93, 240, 0.2);
}
.lp-feature-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--lp-primary), #4b4acf);
    color: var(--lp-text-light);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
}
.lp-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--lp-secondary);
    font-weight: 700;
}
.lp-feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ================================================
   WHY LANDING PAGE SECTION
   ================================================ */
.lp-why-section {
    background: #fff;
}
.lp-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.lp-why-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 15px 0;
    color: var(--lp-secondary);
}
.lp-why-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}
.lp-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-why-list li {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.lp-why-list li i {
    color: var(--lp-success);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Comparison boxes */
.lp-comparison-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp-comparison-item {
    padding: 25px;
    border-radius: 16px;
    border: 2px solid;
}
.lp-comparison-bad {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.03);
}
.lp-comparison-good {
    border-color: rgba(16, 201, 145, 0.3);
    background: rgba(16, 201, 145, 0.03);
}
.lp-comparison-header {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-comparison-bad .lp-comparison-header {
    color: var(--lp-danger);
}
.lp-comparison-good .lp-comparison-header {
    color: var(--lp-success);
}
.lp-comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-comparison-item li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: #555;
    padding-right: 18px;
    position: relative;
}
.lp-comparison-item li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: #999;
}
.lp-result-bad {
    font-weight: 800 !important;
    color: var(--lp-danger) !important;
    margin-top: 5px;
}
.lp-result-good {
    font-weight: 800 !important;
    color: var(--lp-success) !important;
    margin-top: 5px;
}

/* ================================================
   PORTFOLIO SECTION
   ================================================ */
.lp-portfolio-v2 {
    background-color: var(--lp-bg);
}
.lp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}
.lp-project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.lp-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.lp-project-image {
    height: 280px;
    overflow: hidden;
}
.lp-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lp-project-card:hover .lp-project-image img {
    transform: scale(1.05);
}
.lp-project-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.lp-project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.lp-client-logo {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 700;
}
.lp-project-result {
    background: linear-gradient(135deg, var(--lp-primary), #4b4acf);
    color: var(--lp-text-light);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lp-project-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--lp-secondary);
}
.lp-project-description {
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}
.lp-project-link {
    color: var(--lp-primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}
.lp-project-link:hover {
    color: #4b4acf;
}
.lp-project-link i {
    font-size: 0.8em;
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.lp-process-section {
    background: #fff;
}
.lp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.lp-process-step {
    text-align: center;
    position: relative;
}
.lp-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lp-primary), #4b4acf);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(94, 93, 240, 0.3);
}
.lp-process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--lp-secondary);
}
.lp-process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.lp-faq-section {
    background: var(--lp-bg);
}
.lp-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.lp-faq-item details {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}
.lp-faq-item details[open] {
    border-color: var(--lp-primary);
    box-shadow: 0 4px 15px rgba(94, 93, 240, 0.08);
}
.lp-faq-item summary {
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lp-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    color: var(--lp-primary);
}
.lp-faq-item details[open] summary::after {
    transform: rotate(180deg);
}
.lp-faq-item p {
    padding: 0 25px 20px;
    margin: 0;
    line-height: 1.8;
    color: #555;
}

/* ================================================
   CTA / FORM SECTION
   ================================================ */
.lp-cta-section-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--lp-text-light);
}
.lp-cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Offer Tag */
.lp-main-offer .lp-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(94, 93, 240, 0.2);
    border: 1px solid rgba(94, 93, 240, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a5a4f7;
}
.lp-main-offer h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}
.lp-main-offer > p {
    font-size: 1.05rem;
    max-width: 90%;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Price Box */
.lp-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 25px;
}
.lp-price-main {
    text-align: right;
}
.lp-old-price-final {
    font-size: 1.3rem;
    opacity: 0.5;
}
.lp-final-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lp-accent);
    line-height: 1;
}
.lp-price-side {
    border-right: 2px solid var(--lp-primary);
    padding-right: 20px;
}
.lp-price-side strong {
    display: block;
    font-size: 1.15rem;
}
.lp-price-side span {
    font-size: 0.88rem;
    opacity: 0.8;
}

/* Order Now Button */
.lp-cta-order-now {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--lp-accent), #f59e0b);
    color: #1a1a1a !important;
    font-size: 1.2rem;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.35);
}
.lp-cta-order-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
}
.lp-cta-order-now i {
    font-size: 1.1rem;
}

/* Divider "or" */
.lp-divider-or {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    opacity: 0.5;
}
.lp-divider-or::before,
.lp-divider-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.lp-divider-or span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lead Form Subtitle */
.lp-form-subtitle {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 15px !important;
}

/* Form */
.lp-form {
    margin-top: 10px;
}
.lp-form-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.lp-form input {
    flex: 1;
    padding: 16px 18px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}
.lp-cta-section-final .lp-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--lp-text-light);
}
.lp-cta-section-final .lp-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-button {
    width: 100%;
    justify-content: center;
}

.lp-cta-lead {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    padding: 15px 32px;
}
.lp-cta-lead:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Existing Clients Box */
.lp-existing-clients-promo {
    background: #fff;
    color: var(--lp-secondary);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.lp-existing-clients-promo .lp-existing-icon {
    font-size: 2rem;
    color: var(--lp-accent);
    margin-bottom: 15px;
}
.lp-existing-clients-promo h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 10px 0;
}
.lp-existing-clients-promo p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}
.lp-existing-clients-promo ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.lp-existing-clients-promo li {
    padding-right: 22px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}
.lp-existing-clients-promo li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--lp-primary);
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 0.85rem;
}
.lp-existing-clients-promo li strong {
    color: var(--lp-secondary);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 992px) {
    .lp-hero .lp-container {
        flex-direction: column;
        text-align: center;
    }
    .lp-hero-content {
        order: 2;
    }
    .lp-hero-image {
        order: 1;
        max-width: 80%;
        margin-bottom: 30px;
    }
    .lp-hero-stats {
        justify-content: center;
    }
    .lp-hero-cta-group {
        justify-content: center;
    }
    .lp-sub-headline {
        margin-left: auto;
        margin-right: auto;
    }
    .lp-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lp-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lp-cta-grid {
        grid-template-columns: 1fr;
    }
    .lp-main-offer {
        text-align: center;
    }
    .lp-main-offer > p {
        margin-left: auto;
        margin-right: auto;
    }
    .lp-price-box {
        justify-content: center;
    }
    .lp-existing-clients-promo {
        text-align: center;
    }
    .lp-existing-clients-promo ul,
    .lp-existing-clients-promo li {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .lp-form-fields {
        flex-direction: column;
    }
    .lp-hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .lp-hero-cta-group .lp-cta-button {
        width: 100%;
        justify-content: center;
    }
    .lp-hero-stats {
        flex-wrap: wrap;
    }
    .lp-pain-grid {
        grid-template-columns: 1fr;
    }
    .lp-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .lp-portfolio-grid {
        grid-template-columns: 1fr;
    }
    .lp-section {
        padding: 60px 0;
    }
    .lp-price-box {
        flex-direction: column;
        text-align: center;
    }
    .lp-price-side {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-right: 0;
        padding-top: 15px;
    }
}
