/* =========================
   GLOBAL RESET & VARIABLES
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --dark: #0f172a;
    --text: #1f2937;
    --muted: #6b7280;
    --bg-light: #f8fafc;
    --border: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
}

/* =========================
   CONTAINER
   ========================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   NAVIGATION
   ========================= */

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

/* =========================
   FORCE LOGO SIZE FIX
   ========================= */

nav img.logo {
    height: 64px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    opacity: 0.95;
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
    background: linear-gradient(180deg, #ffffff, var(--bg-light));
    padding: 96px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #e0ecff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-main {
    background: var(--primary);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 600;
    text-decoration: none;
}

/* =========================
   HERO VISUAL
   ========================= */

.hero-visual {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 28px;
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 36px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.points-label {
    font-size: 14px;
    color: var(--muted);
}

.points-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

/* =========================
   FEATURES
   ========================= */

.features {
    padding: 96px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-box i {
    width: 42px;
    height: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: var(--muted);
}

/* =========================
   WEEKLY CAMPAIGN
   ========================= */

.weekly-campaign {
    padding: 96px 0;
    background: var(--bg-light);
}

.card-dark {
    background: var(--dark);
    color: #ffffff;
    border-radius: 28px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.card-dark p {
    color: #cbd5e1;
}

.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    margin-bottom: 12px;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background: #0b1220;
    color: #94a3b8;
    padding: 64px 0 32px;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.logo-small {
    height: 36px;
    margin-bottom: 16px;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .card-dark {
        grid-template-columns: 1fr;
    }
}

/* =================================
   HARD RESET – LOGO + NAV BACKGROUND
   ================================= */

/* איפוס מוחלט לרקע */
html,
body {
    background: #ffffff !important;
}

/* ניווט – לבן מוחלט */
nav,
.main-nav {
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* גובה ניווט ברור */
.main-nav,
nav {
    min-height: 96px !important;
    display: flex;
    align-items: center;
}

/* מיכל הלוגו - עוזר בשליטה על המיקום */
.logo-container {
    display: inline-block;
    padding: 10px;
}

/* הגדרות הלוגו עצמו */
.logo {
    /* שינוי הגודל: שנה את ה-250px לפי הצורך שלך */
    width: 250px; 
    height: auto; /* שומר על פרופורציות */
    
    /* ביטול אפקטים של אפור או שקיפות */
    filter: none !important; 
    opacity: 1 !important;
    
    /* שיפור חדות התמונה */
    image-rendering: -webkit-optimize-contrast;
    
    /* תצוגה נקייה */
    display: block;
}

/* אופציונלי: הגדלה במעבר עכבר */
.logo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

