/* ========================================================
   עיצוב עמוד נחיתה - אתגר חינמי (Pixel Perfect)
   ======================================================== */

.challenge-landing-body {
    background-color: #ffffff;
    font-family: 'Fredoka', 'Varela Round', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}

/* --- Header --- */
.ch-header {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.ch-header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ch-header-logo {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ch-header-slogan {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* --- Hero Section --- */
.ch-hero {
    background: linear-gradient(180deg, #faf6ff 0%, #ffffff 100%);
    padding: 60px 0;
}
.ch-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.ch-hero-content {
    flex: 1;
}
.ch-hero-content h1 {
    font-size: 5rem;
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 10px 0;
}
.ch-hero-content h2 {
    font-size: 1.8rem;
    color: #444;
    margin: 0 0 15px 0;
}
.ch-hero-content h2 span {
    color: var(--accent); /* צבע זהב-חרדל */
}
.ch-hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 400px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.ch-hero-images {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    position: relative;
}
.ch-hero-ohad {
    position: relative;
}
.ch-hero-ohad .ohad-img {
    width: 250px;
    height: 250px;
    object-fit: contain; /* עד שתהיה תמונה אמיתית חתוכה */
}
.ch-chat-bubble {
    position: absolute;
    top: -20px;
    left: -40px;
    background: white;
    border: 2px solid rgba(90, 45, 130, 0.2);
    padding: 10px 15px;
    border-radius: 20px;
    border-bottom-right-radius: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: rotate(-5deg);
}

/* --- Form Card --- */
.ch-hero-form-wrapper {
    width: 400px;
}
.ch-form-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(90, 45, 130, 0.1);
    border: 1px solid #f0f0f0;
}
.ch-form-card h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #333;
    margin: 0 0 15px 0;
}
.ch-divider-small {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 25px auto;
    border-radius: 5px;
}
.ch-input-group {
    position: relative;
    margin-bottom: 15px;
}
.ch-input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.1rem;
}
.ch-input-group input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: 0.3s;
    box-sizing: border-box;
}
.ch-input-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 45, 130, 0.1);
}
.ch-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.ch-submit-btn:hover {
    background: #4a246b;
    transform: scale(1.02);
}
.ch-form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* --- Sections Common --- */
.ch-section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 0 40px 0;
    position: relative;
}
.ch-section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #eee;
}

/* --- Benefits --- */
.ch-benefits {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.ch-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.ch-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px auto;
}
.ch-benefit-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 10px 0;
}
.ch-benefit-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* --- How it Works --- */
.ch-how {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.ch-how-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.ch-how-steps {
    flex: 1;
    position: relative;
}
.ch-how-steps::before {
    content: '';
    position: absolute;
    right: 24px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    border-right: 2px dashed #ddd;
    z-index: 0;
}
.ch-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.ch-step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 10px;
    margin-right: 10px;
}
.ch-step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}
.ch-step-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #333;
}
.ch-step-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.ch-how-mockup {
    flex: 1;
}
.ch-browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #ddd;
}
.ch-browser-header {
    background: #f5f5f5;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.ch-dots {
    display: flex;
    gap: 6px;
    direction: ltr;
}
.ch-dots span {
    width: 10px; height: 10px; border-radius: 50%; background: #ccc;
}
.ch-dots span:nth-child(1) { background: #ff5f56; }
.ch-dots span:nth-child(2) { background: #ffbd2e; }
.ch-dots span:nth-child(3) { background: #27c93f; }
.ch-browser-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: bold;
}
.ch-browser-body {
    padding: 20px;
}
.ch-video-placeholder {
    width: 100%;
    height: 180px;
    background: #000;
    border-radius: 8px;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
.ch-play-button-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 40px solid #ff0044; /* הצבע האדום של המשולש בתמונה */
    opacity: 0.9;
}
.ch-mockup-diagram {
    background: #f9f9f9;
    height: 60px;
    border-radius: 8px;
    display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 0 15px;
}
.ch-skeleton-line { height: 8px; background: #ddd; border-radius: 4px; width: 100%; }
.ch-skeleton-line.short { width: 60%; }

/* --- Bio Section --- */
.ch-bio {
    background: #f8f4fc;
    padding: 50px 20px;
}
.ch-bio-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(90,45,130,0.05);
}
.ch-bio-text {
    flex: 1;
}
.ch-bio-text h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 0 0 15px 0;
}
.ch-bio-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}
.ch-bio-image {
    width: 250px;
    flex-shrink: 0;
}
.ch-bio-image img {
    width: 100%;
    border-radius: 15px;
}

/* --- Trust Section --- */
.ch-trust {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}
.ch-trust-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ch-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
}
.ch-trust-item i {
    font-size: 2rem;
    color: var(--primary);
}
.ch-trust-item h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}
.ch-trust-item p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

/* --- Footer CTA --- */
.ch-footer-cta {
    background: var(--primary);
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}
.ch-cta-large {
    background: white;
    color: var(--primary);
    border: none;
    padding: 20px 50px;
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.ch-cta-large:hover {
    transform: scale(1.05);
}
.ch-footer-cta p {
    color: white;
    margin: 20px 0 0 0;
    font-size: 1.2rem;
}
.ch-footer-cta p span {
    color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .ch-hero-container, .ch-how-container, .ch-bio-container {
        flex-direction: column;
        text-align: center;
    }
    .ch-hero-content h1 { font-size: 3.5rem; }
    .ch-hero-content p { margin: 0 auto 30px auto; }
    .ch-hero-images { justify-content: center; margin-bottom: 30px; }
    .ch-hero-form-wrapper { width: 100%; max-width: 400px; margin: 0 auto; }
    
    .ch-benefits-grid { grid-template-columns: 1fr; }
    
    .ch-how-steps::before { display: none; }
    .ch-step-item { flex-direction: column; align-items: center; text-align: center; }
    .ch-step-number { margin: 0 0 10px 0; }
    
    .ch-trust-container { flex-direction: column; align-items: center; text-align: center; gap: 30px;}
    .ch-trust-item { flex-direction: column; }
}