/* ===================================================================
   Stylesheet: Landing Page - Advanced 30% OFF Campaign
   =================================================================== */

:root {
    --lp-adv-primary: #1d4ed8; /* כחול עמוק */
    --lp-adv-secondary: #f59e0b; /* צהוב-כתום למבצע */
    --lp-adv-dark: #111827;
    --lp-adv-light: #f9fafb;
    --lp-adv-text: #374151;
    --lp-adv-text-light: #6b7280;
    --lp-adv-border: #e5e7eb;
    --lp-adv-success: #10b981;
    --lp-adv-font: 'Heebo', sans-serif;
}

body {
    font-family: var(--lp-adv-font);
    background-color: var(--lp-adv-light);
    color: var(--lp-adv-text);
    line-height: 1.7;
}

.lp-adv-main {
    width: 100%;
    overflow-x: hidden;
}

.lp-adv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-adv-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-adv-section {
    padding: 80px 0;
}

/* --- Hero Section --- */
.lp-adv-hero {
    background: linear-gradient(135deg, var(--lp-adv-primary), #3b82f6);
    color: white;
    padding: 100px 0;
}

.lp-adv-hero .lp-adv-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lp-adv-hero-content {
    flex: 1;
    text-align: right;
}

.lp-adv-tag {
    display: inline-block;
    background-color: var(--lp-adv-secondary);
    color: var(--lp-adv-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.lp-adv-h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 1.2;
}

.lp-adv-sub-headline {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.lp-adv-timer {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.lp-adv-timer span {
    font-weight: 500;
}

.lp-adv-timer strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-adv-secondary);
    direction: ltr;
}

.lp-adv-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--lp-adv-secondary);
    color: var(--lp-adv-dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lp-adv-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.lp-adv-hero-image {
    flex-basis: 45%;
    display: none; /* Hidden on mobile */
}

.lp-adv-hero-image img {
    width: 100%;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .lp-adv-hero-image {
        display: block;
    }
}

/* --- Features Section --- */
.lp-adv-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 50px;
}

.lp-adv-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lp-adv-feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--lp-adv-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.lp-adv-feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #e0f2fe;
    color: var(--lp-adv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lp-adv-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lp-adv-feature-card p {
    color: var(--lp-adv-text-light);
    margin: 0;
}

/* --- Highlighted AEO Feature Card --- */
.lp-adv-feature-card--highlight {
    background: linear-gradient(145deg, #2c3e50, #1a2533);
    color: #f8f9fa;
    border-color: var(--lp-adv-primary);
    position: relative;
    overflow: hidden;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lp-adv-feature-card--highlight .lp-adv-feature-icon-wrapper {
    background-color: rgba(29, 78, 216, 0.3);
    color: #a5b4fc;
}

.lp-adv-feature-card--highlight h3 {
    color: #fff;
}

.lp-adv-feature-card--highlight p {
    color: #bdc3c7;
}

.lp-adv-feature-badge {
    position: absolute;
    top: 15px;
    left: -40px;
    transform: rotate(-45deg);
    background-color: var(--lp-adv-primary);
    color: white;
    padding: 4px 40px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* --- Who Is It For Section --- */
.lp-adv-who-for-section {
    background-color: #f0f4ff; /* A slightly different background to break the flow */
}

.lp-adv-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--lp-adv-text-light);
    max-width: 600px;
    margin: -30px auto 50px;
}

.lp-adv-who-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.lp-adv-who-for-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--lp-adv-border);
    transition: all 0.3s ease;
}

.lp-adv-who-for-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border-color: var(--lp-adv-primary);
}

.lp-adv-who-for-icon {
    font-size: 2rem;
    color: var(--lp-adv-primary);
    margin-bottom: 15px;
}

.lp-adv-who-for-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* --- CTA Section --- */
.lp-adv-cta-section {
    background-color: white;
}

.lp-adv-cta-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background-color: var(--lp-adv-light);
    border-radius: 20px;
    padding: 20px; /* Reduced padding for mobile */
    border: 1px solid var(--lp-adv-border);
}

/* Final CTA adjustments */
.final-cta-content {
    grid-column: 1 / -1; /* Make content span full width */
    text-align: center;
}
.final-cta-content > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-button {
    font-size: 1.3rem;
    padding: 20px 40px;
    margin-top: 20px;
}
.final-cta-subtext {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--lp-adv-text-light);
}

@media (min-width: 992px) {
    .lp-adv-cta-box { padding: 60px; } /* Restore larger padding for desktop */
}

.lp-adv-offer-tag {
    color: var(--lp-adv-primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.lp-adv-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lp-adv-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid var(--lp-adv-border);
}

.lp-adv-price-main { text-align: center; flex-grow: 1; }
.lp-adv-old-price { font-size: 1.5rem; color: var(--lp-adv-text-light); }
.lp-adv-final-price { font-size: 3rem; font-weight: 900; color: var(--lp-adv-primary); line-height: 1; }
.lp-adv-price-term { font-size: 1rem; color: var(--lp-adv-text-light); }
.lp-adv-price-side { text-align: center; background-color: var(--lp-adv-secondary); color: var(--lp-adv-dark); padding: 10px; border-radius: 8px; }
.lp-adv-price-side strong { display: block; font-size: 1.2rem; }

.lp-adv-coupon-info { background-color: #fff3e0; border: 1px solid #ffe0b2; padding: 20px; border-radius: 12px; }
.lp-adv-coupon-info p { margin: 0 0 10px; }
.coupon-code { background: var(--lp-adv-secondary); padding: 2px 6px; border-radius: 4px; font-family: monospace; }
.lp-adv-stock-counter { margin-top: 15px; text-align: center; font-weight: 700; color: #d32f2f; }
.lp-adv-stock-update-note {
    display: block;
    text-align: center;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--lp-adv-text-light);
}

.lp-adv-form-wrapper { background-color: white; padding: 30px; border-radius: 16px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.lp-adv-form-wrapper h3 { text-align: center; margin-bottom: 20px; }
.lp-adv-form-group { margin-bottom: 15px; }
.lp-adv-form-group label { display: block; margin-bottom: 5px; font-weight: 500; }
.lp-adv-form-group input { width: 100%; padding: 12px; border: 1px solid var(--lp-adv-border); border-radius: 8px; font-size: 1rem; }
.lp-adv-form .form-button { width: 100%; justify-content: center; }

/* --- FAQ Section --- */
.lp-adv-faq-container { display: flex; flex-direction: column; gap: 15px; }
.lp-adv-faq-item { background-color: white; border: 1px solid var(--lp-adv-border); border-radius: 12px; }
.lp-adv-faq-item summary { font-size: 1.1rem; font-weight: 700; padding: 20px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.lp-adv-faq-item summary::-webkit-details-marker { display: none; }
.lp-adv-faq-item p { padding: 0 20px 20px; margin: 0; color: var(--lp-adv-text-light); }
.lp-adv-faq-item[open] summary { color: var(--lp-adv-primary); }