@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap');
/* ─── FULL ISOLATION FROM PARENT SITE ─── */
html[dir="rtl"] body,
html[dir="rtl"] body * {
    text-align: inherit;
}
html[dir="rtl"] .hero,
html[dir="rtl"] .hero .container,
html[dir="rtl"] .hero * {
    text-align: center !important;
}
html[dir="rtl"] .hero .hero-actions {
    justify-content: center !important;
    display: flex !important;
}
html[dir="rtl"] .post-hero,
html[dir="rtl"] .post-hero * {
    text-align: center !important;
}
html[dir="rtl"] .section-header,
html[dir="rtl"] .section-header * {
    text-align: center !important;
}
html[dir="rtl"] .how-it-works,
html[dir="rtl"] .how-it-works .section-label,
html[dir="rtl"] .how-it-works .section-title,
html[dir="rtl"] .how-it-works .section-desc,
html[dir="rtl"] .how-it-works .step,
html[dir="rtl"] .how-it-works .step h3,
html[dir="rtl"] .how-it-works .step p,
html[dir="rtl"] .pillars .section-label,
html[dir="rtl"] .pillars .section-title,
html[dir="rtl"] .faq .section-label,
html[dir="rtl"] .faq .section-title,
html[dir="rtl"] .cta-section,
html[dir="rtl"] .cta-section * {
    text-align: center !important;
}

/* ============================================================
   CarWasher – Unified Stylesheet
   קאר וושר | קובץ CSS מאוחד לכל דפי האתר
   ============================================================ */


/* =============================================================
   1. CSS VARIABLES (Design Tokens)
   ============================================================= */
:root {
    --bg-primary: #1a1f2e;
    --bg-secondary: #222838;
    --bg-card: #2a3040;
    --bg-card-hover: #313852;
    --cyan: #00d4ff;
    --cyan-glow: rgba(0, 212, 255, 0.15);
    --cyan-border: rgba(0, 212, 255, 0.3);
    --cyan-dark: #0099cc;
    --gold: #ffc107;
    --white: #ffffff;
    --green: #34d399;
    --green-check: #34d399;
    --red: #f87171;
    --text-primary: #e8eaf0;
    --text-secondary: #b8bdd0;
    --text-muted: #8a92a6;
    --text-link: #9da5b8;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.08);
    --input-bg: #323848;
    --input-border: rgba(255, 255, 255, 0.08);
    --input-focus: var(--cyan);
}

/* =============================================================
   2. GLOBAL RESET & BASE
   ============================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Assistant', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* =============================================================
   3. CONTAINER
   ============================================================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 80px 0; position: relative; z-index: 1; }
/* Global section labels & titles */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-family: 'Assistant', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.section-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 700px; }


/* =============================================================
   4. HEADER / NAV (inline – standalone pages)
   ============================================================= */


.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-circle { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; position: relative; }
.logo-circle::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(0,212,255,0.2); }
.logo-text { font-weight: 800; font-size: 1.25rem; color: var(--cyan); }
.logo-sub { display: block; font-size: 0.62rem; color: var(--text-secondary); font-weight: 400; margin-top: -2px; }

.nav-cta { background: var(--cyan)!important; color: var(--bg-primary)!important; padding: 8px 22px!important; border-radius: 50px!important; font-weight: 700!important; font-size: 0.85rem!important; box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: all 0.3s!important; border: none; cursor: pointer; }
.nav-cta:hover { background: #33ddff!important; box-shadow: 0 0 30px rgba(0,212,255,0.4); transform: translateY(-1px); }
.nav-cta::after { display: none!important; }

.hero { min-height: 65vh; text-align: center; padding: 120px 24px 70px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--bg-primary), transparent); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-glow); border: 1px solid var(--cyan-border); border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; color: var(--cyan); font-weight: 600; margin-bottom: 24px; animation: fadeInDown 0.8s ease; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { font-family: 'Assistant', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.25; margin-bottom: 18px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero h1 .highlight { color: var(--cyan); position: relative; }
.hero-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 650px; margin: 0 auto 12px; line-height: 1.8; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-tagline { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-tagline span { color: var(--text-secondary); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 0 auto; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-note { margin-top: 50px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.5s both; }
.hero-note-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.hero-note-item svg { color: var(--cyan); flex-shrink: 0; }

/* =============================================================
   8. LANDING – Story section
   ============================================================= */
.story { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; }
.story-content strong { color: var(--text-primary); font-weight: 600; }
.story-visual { position: relative; }
/* Story page variant – visual used as standalone card */
.story-block .story-visual { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 40px; overflow: hidden; }
.story-block .story-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.story-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; }
.story-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(to left, var(--cyan), transparent); }
.story-card-icon { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; }
.story-card-icon::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(0,212,255,0.15); }
.story-card h3 { font-family: 'Assistant', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: var(--cyan); }
.story-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* =============================================================
   9. PILLAR CARDS (landing + pricing)
   ============================================================= */
.pillars { background: var(--bg-secondary); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pillar-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 32px 26px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(to left, var(--cyan), transparent); opacity: 0; transition: opacity 0.4s ease; }
.pillar-card:hover { border-color: var(--cyan-border); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--cyan-glow); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.3rem; color: var(--cyan); }
.pillar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pillar-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* =============================================================
   10. HOW IT WORKS (steps)
   ============================================================= */
.how-it-works { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; position: relative; }
.steps::before { content: ''; position: absolute; top: 45px; left: 15%; right: 15%; height: 2px; background: linear-gradient(to left, transparent, var(--cyan-border), transparent); }
.step { position: relative; padding: 0 16px; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Assistant', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--cyan); position: relative; z-index: 2; box-shadow: 0 0 20px rgba(0,212,255,0.15); }
.step h3 { font-family: 'Assistant', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* =============================================================
   11. BENEFITS TABLE (landing)
   ============================================================= */
.benefits { background: var(--bg-secondary); }
.benefits-grid { display: grid; gap: 16px; }
.benefit-row { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-sm); overflow: hidden; transition: all 0.3s ease; }
.benefit-row:hover { border-color: var(--cyan-border); box-shadow: var(--shadow-glow); }
.benefit-label { background: rgba(0,212,255,0.06); padding: 20px 24px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.95rem; border-left: 1px solid rgba(255,255,255,0.04); }
.benefit-label svg { color: var(--cyan); flex-shrink: 0; }
.benefit-desc { padding: 20px 24px; color: var(--text-secondary); font-size: 0.92rem; display: flex; align-items: center; }

/* =============================================================
   12. SERVICES GRID (landing)
   ============================================================= */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 30px; display: flex; gap: 16px; transition: all 0.3s ease; }
.service-card:hover { border-color: var(--cyan-border); transform: translateY(-2px); }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cyan-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--cyan); }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.service-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* =============================================================
   13. FAQ (shared)
   ============================================================= */
.faq, .faq-section { background: var(--bg-secondary); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-primary); font-family: 'Assistant', sans-serif; font-size: 1.05rem; font-weight: 700; padding: 20px 0; cursor: pointer; display: flex; flex-direction: row; align-items: center; gap: 16px; text-align: right; transition: color 0.3s; }
.faq-question:hover { color: var(--cyan); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--cyan); }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 250px; padding-bottom: 18px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; }

/* =============================================================
   14. CTA SECTION (shared)
   ============================================================= */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%); pointer-events: none; }
.cta-box { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: 24px; padding: 55px 40px; max-width: 650px; margin: 0 auto; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.cta-box h2 { font-family: 'Assistant', sans-serif; font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.cta-box p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 28px; }
.cta-box .btn { font-size: 1.1rem; padding: 16px 40px; }
.cta-note { margin-top: 14px; font-size: 0.8rem; color: var(--text-muted); }

/* =============================================================
   15. SEO CONTENT (shared)
   ============================================================= */
.seo-content { background: var(--bg-secondary); padding: 60px 0; }
.seo-content h2, .seo-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; margin-top: 48px; }
.seo-content h2:first-of-type, .seo-section h2:first-of-type { margin-top: 0; }
.seo-content p, .seo-section p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; max-width: 820px; }

/* =============================================================
   16. AREA TAGS & CARDS (landing + areas page)
   ============================================================= */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.area-tag { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; color: var(--text-secondary); transition: all 0.3s; }
.area-tag:hover { border-color: var(--cyan-border); color: var(--cyan); }
a.area-tag { text-decoration: none; cursor: pointer; border-color: rgba(5,186,254,0.15); }
a.area-tag:hover { background: rgba(5,186,254,0.08); border-color: var(--cyan); color: var(--cyan); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 36px 30px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.area-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(to left, var(--cyan), transparent); opacity: 0; transition: opacity 0.4s; }
.area-card:hover { border-color: var(--cyan-border); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.area-card:hover::before { opacity: 1; }
.area-card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--cyan-glow); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }
.area-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; color: var(--cyan); }
.area-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.area-towns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.area-town { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 50px; padding: 5px 14px; font-size: 0.8rem; color: var(--text-secondary); transition: all 0.3s; }
.area-town:hover { border-color: var(--cyan-border); color: var(--cyan); }
a.area-town { text-decoration: none; cursor: pointer; border-color: rgba(5,186,254,0.15); }
a.area-town:hover { background: rgba(5,186,254,0.08); border-color: var(--cyan); color: var(--cyan); }
.area-card .btn-sm { width: 100%; justify-content: center; }
/* Map Visual */
.map-section { background: var(--bg-secondary); }
.map-visual { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 50px 40px; text-align: center; position: relative; overflow: hidden; }
.map-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.map-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.map-stat { text-align: center; }
.map-stat .num { font-size: 2.5rem; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 6px; }
.map-stat .label { color: var(--text-secondary); font-size: 0.9rem; }
.coverage-note { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: flex-start; gap: 16px; border-right: 3px solid var(--gold); margin-top: 40px; }
.coverage-note .icon { font-size: 1.4rem; flex-shrink: 0; }
.coverage-note p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; }
.coverage-note strong { color: var(--text-primary); }

/* =============================================================
   17. PRICING PAGE
   ============================================================= */
.pricing-section { background: var(--bg-secondary); }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 50px; }
.intro-note { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: flex-start; gap: 16px; border-right: 3px solid var(--cyan); }
.intro-note-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.intro-note p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.intro-note strong { color: var(--text-primary); }
.plan-block { margin-bottom: 50px; }
.plan-header { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.plan-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.plan-icon.weekly { background: rgba(0,212,255,0.12); }
.plan-icon.biweekly { background: rgba(255,193,7,0.12); }
.plan-icon.flexible { background: rgba(52,211,153,0.12); }
.plan-header h2 { font-size: 1.5rem; font-weight: 800; }
.plan-header h2 span { color: var(--cyan); }
.plan-sub { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 20px; padding-right: 62px; }
.plan-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.plan-table thead th { background: rgba(0,212,255,0.08); color: var(--cyan); font-weight: 700; font-size: 0.85rem; padding: 14px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.plan-table tbody td { background: var(--bg-card); padding: 16px 20px; text-align: center; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.3s; }
.plan-table tbody tr:last-child td { border-bottom: none; }
.plan-table tbody tr:hover td { background: var(--bg-card-hover); }
.plan-table .price-val { color: var(--cyan); font-weight: 700; }
.plan-table .total-val { font-weight: 800; color: var(--text-primary); }
.plan-table .car-col { text-align: right; font-weight: 600; }
.promo-banner { background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(52,211,153,0.06)); border: 1px solid var(--cyan-border); border-radius: var(--radius); padding: 36px 40px; display: flex; align-items: center; gap: 24px; margin-top: 50px; }
.promo-banner .promo-icon { font-size: 2.5rem; flex-shrink: 0; }
.promo-banner h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; color: var(--cyan); }
.promo-banner p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); margin-top: 40px; }
.compare-table thead th { background: rgba(0,212,255,0.08); color: var(--cyan); font-weight: 700; font-size: 0.88rem; padding: 16px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare-table thead th:first-child { text-align: right; color: var(--text-primary); }
.compare-table tbody td { background: var(--bg-card); padding: 14px 16px; text-align: center; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.04); }
.compare-table tbody td:first-child { text-align: right; font-weight: 600; color: var(--text-primary); background: rgba(0,212,255,0.04); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg-card-hover); }
.renew-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.renew-steps { display: flex; flex-direction: column; gap: 20px; }
.renew-step { display: flex; gap: 16px; align-items: flex-start; }
.renew-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--cyan-glow); border: 1.5px solid var(--cyan-border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; color: var(--cyan); flex-shrink: 0; }
.renew-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.renew-step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.renew-card { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius); padding: 40px; text-align: center; position: relative; overflow: hidden; }
.renew-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--green), transparent); }
.renew-card .big-percent { font-size: 4rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 8px; }
.renew-card .big-label { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.renew-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.renew-card .example { background: rgba(52,211,153,0.08); border-radius: var(--radius-sm); padding: 16px; margin-top: 20px; font-size: 0.88rem; color: var(--text-secondary); }
.renew-card .example strong { color: var(--green); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.why-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 28px; display: flex; gap: 16px; transition: all 0.3s; }
.why-card:hover { border-color: var(--cyan-border); transform: translateY(-2px); }
.why-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--cyan-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
.tip-box { background: var(--bg-card); border: 1px solid rgba(255,193,7,0.2); border-radius: var(--radius); padding: 32px 36px; margin-top: 50px; display: flex; gap: 16px; align-items: flex-start; border-right: 3px solid var(--gold); }
.tip-box .tip-icon { font-size: 1.4rem; flex-shrink: 0; }
.tip-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.tip-box p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* =============================================================
   18. WAITLIST – Forms, Modals, Price Tables
   ============================================================= */
.wl-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.wl-form-side { max-width: 500px; }
.wl-info-side { display: flex; flex-direction: column; gap: 24px; }
.wl-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { position: relative; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.92rem; color: var(--text-primary); }
.form-group label .label-icon { color: var(--cyan); margin-left: 8px; }
.form-group label .label-hint { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; margin-right: 6px; }
.form-input { width: 100%; padding: 13px 16px; background: var(--input-bg); border: 2px solid var(--input-border); border-radius: var(--radius-sm); font-size: 1rem; font-family: 'Assistant', sans-serif; color: var(--text-primary); transition: all 0.3s; appearance: none; -webkit-appearance: none; }
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); background: rgba(50,56,72,0.8); }
.form-input.invalid { border-color: var(--red)!important; background: rgba(248,113,113,0.05)!important; }
textarea.form-input { resize: vertical; min-height: 80px; }
select.form-input { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 16px center; padding-left: 36px; }
select.form-input option { background: var(--bg-card); color: var(--text-primary); }
.form-error { display: none; color: var(--red); font-size: 0.8rem; margin-top: 4px; font-weight: 500; }
.form-input.invalid ~ .form-error { display: block; }
.autocomplete-list { position: absolute; top: 100%; right: 0; left: 0; z-index: 50; background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: 0 0 var(--radius-sm) var(--radius-sm); max-height: 200px; overflow-y: auto; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.autocomplete-list div { padding: 11px 16px; cursor: pointer; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-secondary); transition: all 0.2s; }
.autocomplete-list div:hover, .autocomplete-list div.ac-active { background: var(--cyan-glow); color: var(--cyan); }
.autocomplete-list div strong { color: var(--cyan); }
.info-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 24px; transition: all 0.4s; }
.info-card:hover { border-color: var(--cyan-border); }
.info-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
.info-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.info-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.form-link { color: var(--cyan); font-weight: 600; cursor: pointer; transition: opacity 0.3s; }
.form-link:hover { opacity: 0.8; }
/* Modals */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9999; display: none; align-items: center; justify-content: center; animation: modalFadeIn 0.3s; }
.modal-overlay.show { display: flex; }
.modal-box { background: var(--bg-secondary); border: 1px solid var(--cyan-border); border-radius: 20px; max-width: 1100px; width: 95%; max-height: 90vh; overflow-y: auto; position: relative; padding: 40px 30px; animation: modalSlideIn 0.3s; scrollbar-width: thin; scrollbar-color: rgba(5,186,254,0.3) rgba(255,255,255,0.05); }
.modal-box::-webkit-scrollbar { width: 8px; }
.modal-box::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(5,186,254,0.3); border-radius: 4px; }
.modal-box::-webkit-scrollbar-thumb:hover { background: rgba(5,186,254,0.5); }
.modal-close { position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-secondary); transition: all 0.3s; font-size: 1.1rem; }
.modal-close:hover { background: var(--bg-card-hover); color: var(--cyan); }
.small-modal { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: 20px; max-width: 480px; width: 90%; padding: 40px; text-align: center; position: relative; overflow: hidden; }
.small-modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.small-modal .modal-emoji { font-size: 3.5rem; margin-bottom: 16px; }
.small-modal h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.small-modal p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.7; }
.success-box { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2); border-right: 3px solid var(--green); border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; text-align: right; }
.success-box p { color: var(--green); margin: 0; font-size: 0.9rem; }
.track-section { margin-bottom: 36px; }
.track-header { background: var(--bg-card); border-right: 3px solid var(--cyan); padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.track-header h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.track-header p { color: var(--text-muted); font-size: 0.85rem; }
.price-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.price-table thead { background: linear-gradient(135deg, #1e2435, #161a27); }
.price-table th { padding: 14px; text-align: right; font-weight: 600; font-size: 0.85rem; color: var(--text-secondary); }
.price-table th:nth-child(2) { color: var(--cyan); font-weight: 700; }
.price-table td { padding: 16px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.92rem; color: var(--text-secondary); }
.price-table tr { transition: background 0.2s; cursor: pointer; }
.price-table tbody tr:hover { background: var(--cyan-glow); }
.price-table .td-vehicles { font-weight: 600; color: var(--text-primary); }
.price-tag { background: var(--cyan); color: var(--bg-primary); padding: 4px 12px; border-radius: 6px; font-weight: 700; font-size: 0.85rem; display: inline-block; box-shadow: 0 2px 8px rgba(0,212,255,0.25); }
.price-table .td-total { color: var(--text-primary); font-weight: 700; font-size: 1.05rem; }
.modal-notice { background: rgba(255,193,7,0.08); border: 1px solid rgba(255,193,7,0.15); border-right: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; text-align: center; }
.modal-notice strong { color: var(--gold); }
.modal-notice p { color: var(--text-secondary); font-size: 0.9rem; margin: 4px 0 0; }
.modal-intro { text-align: center; color: var(--text-secondary); font-size: 1rem; margin-bottom: 28px; }

/* =============================================================
   19. BLOG PAGE
   ============================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); overflow: hidden; transition: all 0.4s ease; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { border-color: var(--cyan-border); background: var(--bg-card-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.blog-card-img { width: 100%; height: 200px; background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,212,255,0.02)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 1px solid rgba(255,255,255,0.04); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; font-size: 0.78rem; color: var(--text-muted); }
.blog-card-tag { background: var(--cyan-glow); color: var(--cyan); padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.blog-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; line-height: 1.5; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--cyan); }
.blog-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); font-weight: 700; font-size: 0.88rem; transition: gap 0.3s; }
.blog-card:hover .blog-card-link { gap: 10px; }

/* =============================================================
   20. BLOG POST PAGE
   ============================================================= */
.post-hero { text-align: center; padding: 110px 24px 50px; position: relative; z-index: 1; }
.post-hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%); pointer-events: none; }
.breadcrumbs { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; animation: fadeInUp 0.8s ease both; }
.breadcrumbs a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs span { margin: 0 6px; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.1s both; }
.post-meta .tag { background: var(--cyan-glow); color: var(--cyan); padding: 4px 14px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; }
.post-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.35; max-width: 800px; margin: 0 auto 16px; animation: fadeInUp 0.8s ease 0.15s both; }
.post-hero h1 .highlight { color: var(--cyan); }
.post-excerpt { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; line-height: 1.8; animation: fadeInUp 0.8s ease 0.2s both; }
.post-cover { max-width: 900px; margin: 0 auto 50px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02)); min-height: 280px; display: flex; align-items: center; justify-content: center; font-size: 4rem; border: 1px solid rgba(255,255,255,0.06); }
/* תמונות כיסוי בפוסטים – מרכוז אוטומטי */
.container > img[src*="/cover.webp"], .container > img[src*="cover.webp"] { display: block; margin: 0 auto; }
.post-content { max-width: 750px; margin: 0 auto; padding-bottom: 60px; }
.post-content h2 { font-size: 1.6rem; font-weight: 800; margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.04); }
.post-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.post-content p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.9; margin-bottom: 18px; }
.post-content strong { color: var(--text-primary); }
.post-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { color: var(--text-secondary); font-size: 1rem; line-height: 1.9; padding-right: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { background: var(--bg-card); border-right: 3px solid var(--cyan); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 28px; margin: 28px 0; font-style: italic; }
.post-content blockquote p { color: var(--text-primary); margin-bottom: 0; }
.post-callout { background: var(--bg-card); border: 1px solid rgba(255,193,7,0.2); border-radius: var(--radius); padding: 24px 28px; margin: 28px 0; border-right: 3px solid var(--gold); display: flex; gap: 14px; }
.post-callout .icon { font-size: 1.2rem; flex-shrink: 0; }
.post-callout p { margin-bottom: 0; }
.post-cta-box { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius); padding: 40px; text-align: center; margin-top: 50px; position: relative; overflow: hidden; }
.post-cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.post-cta-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.post-cta-box p { color: var(--text-secondary); margin-bottom: 22px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

/* =============================================================
   21. STORY PAGE
   ============================================================= */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-block.reverse { direction: ltr; }
.story-block.reverse > * { direction: rtl; }
.story-text .story-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.story-text .story-label::before { content: ''; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.story-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.story-text p { color: var(--text-secondary); font-size: 1rem; line-height: 1.85; margin-bottom: 14px; }
.quote-block { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius); padding: 50px 60px; text-align: center; position: relative; overflow: hidden; max-width: 750px; margin: 0 auto; }
.quote-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.quote-mark { font-size: 4rem; color: var(--cyan); opacity: 0.3; line-height: 1; margin-bottom: 10px; }
.quote-block blockquote { font-size: 1.3rem; font-weight: 700; line-height: 1.6; color: var(--text-primary); margin-bottom: 16px; font-style: italic; }
.quote-block cite { color: var(--text-muted); font-size: 0.9rem; font-style: normal; }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; right: 24px; width: 2px; background: linear-gradient(to bottom, var(--cyan-border), rgba(255,255,255,0.04)); }
.timeline-item { display: flex; gap: 28px; margin-bottom: 40px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--cyan-border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; position: relative; z-index: 1; }
.timeline-content h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.timeline-content .year { color: var(--cyan); font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.timeline-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 32px 26px; transition: all 0.4s ease; position: relative; overflow: hidden; text-align: center; }
.value-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(to left, var(--cyan), transparent); opacity: 0; transition: opacity 0.4s; }
.value-card:hover { border-color: var(--cyan-border); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.value-card:hover::before { opacity: 1; }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* =============================================================
   22. CONTACT PAGE (cw-contact scoped)
   ============================================================= */
.cw-contact * { margin: 0; padding: 0; box-sizing: border-box; }
.cw-contact { font-family: 'Assistant', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; position: relative; }
.cw-contact .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 80px 0; position: relative; z-index: 1; }
/* Global section labels & titles */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-family: 'Assistant', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.section-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 700px; }

.cw-contact .ct-hero { text-align: center; padding: 120px 24px 60px; position: relative; overflow: hidden; }
.cw-contact .ct-hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%); pointer-events: none; }
.cw-contact .ct-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-glow); border: 1px solid var(--cyan-border); border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; color: var(--cyan); font-weight: 600; margin-bottom: 24px; animation: cwCtFadeInDown 0.8s ease; }
.cw-contact .ct-hero h1 { font-family: 'Assistant', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; animation: cwCtFadeInUp 0.8s ease 0.1s both; }
.cw-contact .ct-hero h1 .highlight { color: var(--cyan); }
.cw-contact .ct-hero-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 650px; margin: 0 auto 32px; font-weight: 400; animation: cwCtFadeInUp 0.8s ease 0.2s both; line-height: 1.8; }
.cw-contact .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 50px; font-family: 'Assistant', sans-serif; font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.cw-contact .btn-primary { background: var(--cyan); color: var(--bg-primary); box-shadow: 0 4px 25px rgba(0,212,255,0.3); }
.cw-contact .btn-primary:hover { background: #33ddff; box-shadow: 0 8px 40px rgba(0,212,255,0.45); transform: translateY(-2px); }
.cw-contact section { padding: 80px 0; position: relative; z-index: 1; }
/* Global section labels & titles */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-family: 'Assistant', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.section-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 700px; }

.cw-contact .section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.cw-contact .section-label::before { content: ''; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.cw-contact .section-title { font-family: 'Assistant', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.cw-contact .ct-cta-box { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius); padding: 50px 40px; text-align: center; max-width: 700px; margin: 0 auto; position: relative; overflow: hidden; animation: cwCtFadeInUp 0.8s ease 0.3s both; }
.cw-contact .ct-cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.cw-contact .ct-cta-box h2 { font-family: 'Assistant', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
.cw-contact .ct-cta-box p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.8; }
.cw-contact .ct-cta-box .btn { font-size: 1.1rem; padding: 16px 40px; }
.cw-contact .ct-cta-note { margin-top: 14px; font-size: 0.82rem; color: var(--text-muted); }
.cw-contact .ct-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.cw-contact .ct-info-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 32px 26px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.cw-contact .ct-info-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(to left, var(--cyan), transparent); opacity: 0; transition: opacity 0.4s; }
.cw-contact .ct-info-card:hover { border-color: var(--cyan-border); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: 0 0 30px rgba(0,212,255,0.08); }
.cw-contact .ct-info-card:hover::before { opacity: 1; }
.cw-contact .ct-info-icon { font-size: 2rem; margin-bottom: 16px; }
.cw-contact .ct-info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cw-contact .ct-info-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.cw-contact .ct-process-section { background: var(--bg-secondary); }
.cw-contact .ct-process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; position: relative; }
.cw-contact .ct-step { text-align: center; position: relative; }
.cw-contact .ct-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--cyan-glow); border: 2px solid var(--cyan-border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; color: var(--cyan); margin: 0 auto 18px; }
.cw-contact .ct-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cw-contact .ct-step p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin: 0 auto; }
.cw-contact .ct-faq-list { max-width: 750px; margin: 40px auto 0; }
.cw-contact .ct-faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.cw-contact .ct-faq-q { width: 100%; background: none; border: none; color: var(--text-primary); font-family: 'Assistant', sans-serif; font-size: 1.05rem; font-weight: 700; padding: 20px 0; cursor: pointer; display: flex; flex-direction: row; align-items: center; gap: 16px; text-align: right; transition: color 0.3s; }
.cw-contact .ct-faq-q:hover { color: var(--cyan); }
.cw-contact .ct-faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--cyan); }
.cw-contact .ct-faq-item.active .ct-faq-q svg { transform: rotate(45deg); }
.cw-contact .ct-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.cw-contact .ct-faq-item.active .ct-faq-a { max-height: 350px; padding-bottom: 18px; }
.cw-contact .ct-faq-a p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; }
.cw-contact .ct-faq-a ul { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; list-style: none; margin-top: 8px; }
.cw-contact .ct-faq-a ul li::before { content: '✓ '; color: var(--cyan); font-weight: 700; }
.cw-contact .ct-tip { background: var(--bg-card); border: 1px solid rgba(255,193,7,0.2); border-radius: var(--radius); padding: 28px 32px; margin-top: 40px; max-width: 750px; margin-left: auto; margin-right: auto; display: flex; gap: 14px; align-items: flex-start; border-right: 3px solid var(--gold); }
.cw-contact .ct-tip .ct-tip-icon { font-size: 1.3rem; flex-shrink: 0; }
.cw-contact .ct-tip p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }
.cw-contact .ct-tip strong { color: var(--gold); }
.cw-contact .ct-bottom-cta { text-align: center; position: relative; overflow: hidden; }
.cw-contact .ct-bottom-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%); pointer-events: none; }
.cw-contact .ct-bottom-box { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: 24px; padding: 50px 40px; max-width: 650px; margin: 0 auto; position: relative; overflow: hidden; }
.cw-contact .ct-bottom-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.cw-contact .ct-bottom-box h2 { font-family: 'Assistant', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; }
.cw-contact .ct-bottom-box p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 28px; }
.cw-contact .ct-bottom-box .btn { font-size: 1.1rem; padding: 16px 40px; }

/* =============================================================
   23. TERMS PAGE
   ============================================================= */
.legal-content { max-width: 780px; margin: 0 auto; padding-bottom: 60px; }
.legal-section { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 20px; transition: all 0.4s; position: relative; overflow: hidden; }
.legal-section::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(to left, var(--cyan), transparent); opacity: 0; transition: opacity 0.4s; }
.legal-section:hover { border-color: var(--cyan-border); }
.legal-section:hover::before { opacity: 1; }
.legal-section .section-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--cyan-glow); border: 1px solid var(--cyan-border); color: var(--cyan); font-weight: 800; font-size: 0.85rem; margin-left: 12px; flex-shrink: 0; }
.legal-section h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; }
.legal-section p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.85; margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-closing { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius); padding: 28px 30px; text-align: center; margin-top: 10px; position: relative; overflow: hidden; }
.legal-closing::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--cyan), transparent); }
.legal-closing p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: 10px; }
.legal-closing p:last-child { margin-bottom: 0; }
.legal-closing .thank-you { color: var(--cyan); font-weight: 700; font-size: 1.05rem; }

/* =============================================================
   24. FOOTER (inline – standalone pages)
   ============================================================= */
.footer { background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: #9da5b8; font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.footer h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9da5b8; text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p, .footer-bottom span { color: #9da5b8; font-size: 0.8rem; }
.footer-bottom a { color: #9da5b8; text-decoration: none; }
.footer-bottom a:hover { color: var(--cyan); }
.footer-payment { display: flex; gap: 8px; font-size: 0.78rem; color: #9da5b8; }

/* =============================================================
   24b. FOOTER WIDGET (cw-footer – Elementor widget)
   ============================================================= */
.cw-footer, .cw-footer *, .cw-footer *::before, .cw-footer *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Assistant', sans-serif; line-height: 1.6; }
.cw-footer { background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 30px; direction: rtl; color: var(--text-primary); }
.cw-footer .cw-ft-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cw-footer .cw-ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cw-footer .cw-ft-brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.cw-footer .cw-ft-logo-circle { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.cw-footer .cw-ft-logo-circle::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(0,212,255,0.2); }
.cw-footer .cw-ft-logo-circle svg { display: block; }
.cw-footer .cw-ft-logo-name { font-weight: 800; font-size: 1.2rem; color: var(--cyan); }
.cw-footer .cw-ft-logo-sub { display: block; font-size: 0.62rem; color: var(--text-secondary); font-weight: 400; margin-top: -2px; }
.cw-footer .cw-ft-brand-desc { color: var(--text-link); font-size: 0.88rem; line-height: 1.75; }
.cw-footer .cw-ft-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.cw-footer .cw-ft-links { list-style: none; }
.cw-footer .cw-ft-links li { margin-bottom: 10px; }
.cw-footer .cw-ft-links a { color: var(--text-link); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; display: inline-block; }
.cw-footer .cw-ft-links a:hover { color: var(--cyan); }
.cw-footer .cw-ft-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.cw-footer .cw-ft-bottom-text { color: var(--text-link); font-size: 0.8rem; }
.cw-footer .cw-ft-bottom-links { display: flex; gap: 16px; }
.cw-footer .cw-ft-bottom-links a { color: var(--text-link); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
.cw-footer .cw-ft-bottom-links a:hover { color: var(--cyan); }
.cw-footer .cw-ft-payment { color: var(--text-link); font-size: 0.8rem; }

/* =============================================================
   25. PROGRESS BAR
   ============================================================= */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(to right, var(--cyan), #33ddff); z-index: 101; width: 0%; transition: width 0.1s; box-shadow: 0 0 10px var(--cyan); }

/* =============================================================
   26. ANIMATIONS
   ============================================================= */
@keyframes fadeInUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideIn { from { transform: translateY(-40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes cwCtFadeInUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes cwCtFadeInDown { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 1; }
.reveal.visible { opacity: 1; }
.cw-contact .cw-ct-reveal { opacity: 1; }
.cw-contact .cw-ct-reveal.visible { opacity: 1; }

/* =============================================================
   27. RESPONSIVE – Tablet (max-width: 900px)
   ============================================================= */
@media (max-width: 900px) {
    /* Nav */


    /* Header widget */
    .cw-header .cw-nav-links { display: none !important; }
    .cw-header .cw-hamburger { display: flex !important; }

    /* Hero */
    .hero { min-height: auto; padding: 100px 20px 60px; }
    section { padding: 70px 0; }

    /* Grids → single column */
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .benefit-row { grid-template-columns: 1fr; }
    .benefit-label { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .areas-grid { grid-template-columns: 1fr; }
    .map-stats { grid-template-columns: 1fr; gap: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .renew-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cw-footer .cw-ft-grid { grid-template-columns: 1fr 1fr; }

    /* Story page */
    .story-block, .story-block.reverse { grid-template-columns: 1fr; gap: 30px; }
    .story-block.reverse { direction: rtl; }

    /* Waitlist */
    .wl-layout { grid-template-columns: 1fr; }
    .wl-form-side { max-width: 100%; }

    /* Pricing */
    .plan-sub { padding-right: 0; }
    .promo-banner { flex-direction: column; text-align: center; }

    /* Modal */
    .modal-box { padding: 30px 16px; }
    .price-table th, .price-table td { padding: 12px 8px; font-size: 0.82rem; }
    .price-tag { font-size: 0.78rem; padding: 3px 9px; }

    /* Contact page */
    .cw-contact .ct-info-grid { grid-template-columns: 1fr; }
    .cw-contact .ct-process-steps { grid-template-columns: 1fr; gap: 32px; }

    /* Quote */
    .quote-block { padding: 36px 28px; }
    .legal-section { padding: 22px 20px; }
}

/* =============================================================
   28. RESPONSIVE – Mobile (max-width: 600px)
   ============================================================= */
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr 1fr; text-align: right; gap: 32px 24px; }
    .cw-footer .cw-ft-grid { grid-template-columns: 1fr; }
    .cw-footer .cw-ft-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-note { flex-direction: column; align-items: center; gap: 12px; }
    .intro-note, .tip-box { flex-direction: column; }
    .plan-table, .compare-table { display: block; overflow-x: auto; }
    .post-callout { flex-direction: column; }
    .cta-box { padding: 40px 24px; }
    .cw-contact .ct-cta-box { padding: 36px 24px; }
    .cw-contact .ct-bottom-box { padding: 36px 24px; }
    .cw-contact .ct-tip { flex-direction: column; }
    .coverage-note { flex-direction: column; }
}

/* =============================================================
   29. RESPONSIVE – Desktop (min-width: 901px)
   ============================================================= */
@media (min-width: 901px) {
    .cw-header .cw-sidebar,
    .cw-header .cw-sidebar-overlay { display: none !important; }
}

/* ─── SKIP TO CONTENT (ACCESSIBILITY) ─── */
.skip-to-content {
    position: absolute;
    top: -100%;
    right: 0;
    background: var(--cyan);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    font-family: 'Assistant', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 100000;
    transition: top 0.3s;
    text-decoration: none;
}
.skip-to-content:focus {
    top: 0;
}

/* ─── SKIP LINK (ACCESSIBILITY) ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    z-index: 100000;
    transition: top 0.3s;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

/* ─── TOAST ─── */

}

/* ─── CONVERSION POPUP ─── */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─── IMAGE PLACEHOLDERS ─── */
.cw-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}
.cw-img-hero {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
}
.cw-img-card {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.cw-img-placeholder {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border: 1px dashed var(--cyan-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: Assistant, sans-serif;
    text-align: center;
    padding: 20px;
    min-height: 200px;
}
.cw-img-placeholder.hero {
    min-height: 300px;
    border-radius: 0;
}
@media (max-width: 768px) {
    .cw-img-hero { height: 220px; }
    .cw-img-card { height: 150px; }
    .cw-img-placeholder.hero { min-height: 200px; }
}

/* ─── REVIEWS SECTION ─── */
.reviews-section {
    padding: 80px 24px;
}
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.reviews-stars {
    font-size: 1.8rem;
    color: #f5a623;
    letter-spacing: 2px;
}
.reviews-count {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.3s;
}
.reviews-google-link:hover {
    opacity: 0.8;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
    border-color: var(--cyan-border);
    transform: translateY(-3px);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), #0088cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.review-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.review-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.review-google-icon {
    margin-right: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
.reviews-cta {
    text-align: center;
    margin-top: 32px;
}
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-section {
        padding: 50px 16px;
    }
}

/* ─── RTL HERO CENTERING (override any parent theme) ─── */
.hero,
.hero .container,
.hero h1,
.hero h2,
.hero p,
.hero .hero-badge,
.hero .hero-sub,
.hero .hero-tagline,
.hero .hero-actions,
.hero .hero-note {
    text-align: center !important;
}
.hero .hero-sub,
.hero .hero-tagline {
    margin-left: auto !important;
    margin-right: auto !important;
}
.hero .hero-actions {
    justify-content: center !important;
}

/* Same for other page heroes */
.post-hero,
.post-hero .container,
.post-hero h1,
.post-hero p,
.cw-contact .ct-hero,
.cw-contact .ct-hero .container,
.cw-contact .ct-hero h1,
.cw-contact .ct-hero p {
    text-align: center !important;
}

/* ─── CTA POPUP ─── */
.cta-popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
    z-index: 100000; justify-content: center; align-items: center; padding: 20px;
}
.cta-popup-overlay.active { display: flex; justify-content: center; align-items: center; }
.cta-popup {
    background: linear-gradient(180deg, #0f2035 0%, #0a1929 100%);
    border: 1px solid rgba(0,212,255,0.12);
    border-radius: 24px; padding: 48px 36px; max-width: 440px; width: 100%; margin: 0 auto;
    text-align: center; position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.05);
    animation: popupIn 0.3s ease;
}
@keyframes popupIn { from { opacity:0; transform:scale(0.95); } to { opacity:1; transform:scale(1); } }
.cta-popup-close {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.06); border: none; color: var(--text-muted);
    font-size: 1.1rem; cursor: pointer; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 0.2s;
}
.cta-popup-close:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }
.cta-popup-icon { margin-bottom: 20px; opacity: 0.9; display: flex; justify-content: center; }
.cta-popup h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.cta-popup-text { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: 28px; }
.cta-popup-btn { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1.05rem; margin: 0 auto; display: flex; }
.cta-popup-note { margin-top: 16px; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.3px; text-align: center; }
@media (max-width: 500px) { .cta-popup { padding: 36px 24px; border-radius: 20px; } }

/* ─── LOGIN POPUP ─── */
.login-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
    z-index: 100001; justify-content: center; align-items: center; padding: 20px;
}
.login-overlay.active { display: flex; justify-content: center; align-items: center; }
.login-popup {
    background: linear-gradient(180deg, #0f2035 0%, #0a1929 100%);
    border: 1px solid rgba(0,212,255,0.12);
    border-radius: 24px; padding: 44px 36px; max-width: 420px; width: 100%; margin: 0 auto;
    text-align: center; position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.05);
    animation: popupIn 0.3s ease;
}
.login-popup-close {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.06); border: none; color: var(--text-muted);
    font-size: 1.1rem; cursor: pointer; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 0.2s;
}
.login-popup-close:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }
.login-popup-icon { margin-bottom: 16px; opacity: 0.9; display: flex; justify-content: center; }
.login-popup h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.login-popup-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.login-input-group { margin-bottom: 12px; }
.login-input-group input {
    width: 100%; padding: 15px 16px;
    background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 14px; color: var(--text-primary); font-size: 1.15rem;
    font-family: 'Assistant', sans-serif; text-align: center; letter-spacing: 3px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.login-input-group input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.login-msg { min-height: 24px; font-size: 0.82rem; margin: 8px 0; }
.login-msg.error { color: #ff6b6b; }
.login-msg.success { color: #51cf66; }
.login-submit { width: 100%; font-size: 1rem; }
.login-otp-inputs { display: flex; gap: 8px; justify-content: center; align-items: center; margin: 0 auto 20px; }
.login-otp {
    width: 42px; height: 48px; text-align: center; font-size: 1.3rem; font-weight: 700;
    background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px; color: var(--text-primary); font-family: 'Assistant', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.login-otp:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.login-footer-links { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 18px; }
.login-footer-link { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.login-footer-link:hover { color: var(--cyan); }
.login-resend { margin-top: 14px; font-size: 0.82rem; color: var(--text-muted); }
.login-resend a { color: var(--cyan); text-decoration: none; }
.login-back { display: inline-block; margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; }
.login-back:hover { color: var(--cyan); }
.login-type-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; width: 100%; }
.login-type-btn {
    display: flex; align-items: center; gap: 16px; width: 100%;
    padding: 18px 20px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    color: var(--text-primary); font-family: 'Assistant', sans-serif;
    font-size: 0.95rem; text-align: right; cursor: pointer;
    transition: all 0.25s;
}
.login-type-btn:hover { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.05); transform: translateX(-4px); }
.login-type-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,212,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.login-type-info { flex: 1; }
.login-type-info strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.login-type-info small { color: var(--text-muted); font-size: 0.78rem; }
.login-type-arrow { color: var(--text-muted); font-size: 1.1rem; transition: color 0.2s; }
.login-type-btn:hover .login-type-arrow { color: var(--cyan); }
@media (max-width: 500px) {
    .login-popup { padding: 32px 22px; border-radius: 20px; }
    .login-otp { width: 36px; height: 42px; font-size: 1.1rem; }
    .login-otp-inputs { gap: 6px; }
}
7; margin-bottom: 20px; }
.login-input-group { margin-bottom: 12px; }
.login-input-group input { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.1); border-radius: 12px; color: var(--text-primary); font-size: 1.1rem; font-family: 'Assistant', sans-serif; text-align: center; letter-spacing: 2px; transition: border-color 0.3s; }
.login-input-group input:focus { outline: none; border-color: var(--cyan); background: rgba(255,255,255,0.12); }
.login-msg { min-height: 24px; font-size: 0.85rem; margin-bottom: 8px; }
.login-msg.error { color: #ff6b6b; }
.login-msg.success { color: #51cf66; }
.login-submit { width: 100%; font-size: 1rem; }

.login-resend { margin-top: 14px; font-size: 0.82rem; color: var(--text-muted); }
.login-resend a { color: var(--cyan); }
.login-back { display: inline-block; margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); }
.login-back:hover { color: var(--cyan); }
.login-type-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; width: 100%; }
.login-type-btn { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; color: var(--text-primary); font-family: 'Assistant', sans-serif; font-size: 0.95rem; text-align: right; cursor: pointer; transition: border-color 0.3s, background 0.3s; }
.login-type-btn:hover { border-color: var(--cyan); background: rgba(0,212,255,0.05); }
.login-type-icon { font-size: 1.5rem; }
.login-type-btn small { color: var(--text-muted); font-size: 0.8rem; }


/* Hero login text link */
.hero-login-link { margin-top: 16px; font-size: 0.9rem; text-align: center; }
.hero-login-link a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.hero-login-link a:hover { color: #fff; }

@media (max-width:768px) {
    .hero { min-height: auto; padding: 100px 24px 40px; }
}

/* Sidebar CTA */
.sidebar-cta { padding: 16px 24px 0; }
.sidebar-cta-btn { width: 100%; justify-content: center; font-size: 0.95rem; padding: 12px 24px; }


/* Popup centering (scoped to overlay containers only) */
.cta-popup-overlay *,
.login-overlay * {
    text-align: center !important;
}
.cta-popup-overlay .login-type-btn,
.cta-popup-overlay .login-type-btn *,
.login-overlay .login-type-btn,
.login-overlay .login-type-btn * {
    text-align: right !important;
}
.cta-popup-icon,
.login-popup-icon {
    display: flex !important;
    justify-content: center !important;
}

/* ─── BASE COMPONENTS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 32px; border-radius: 50px; font-family: 'Assistant', sans-serif; font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%); color: #0a1929; box-shadow: 0 4px 25px rgba(0,212,255,0.3); }
.btn-primary:hover { background: #33ddff; box-shadow: 0 8px 40px rgba(0,212,255,0.45); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid rgba(255,255,255,0.15); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

/* ─── HEADER LAYOUT ─── */
.progress-bar { position:fixed; top:0; left:0; height:2px; background:var(--cyan); z-index:10000; width:0; transition:width 0.1s; }
.skip-link { position:absolute; top:-100px; left:50%; transform:translateX(-50%); background:var(--cyan); color:var(--bg-primary); padding:8px 16px; border-radius:0 0 8px 8px; z-index:100000; font-weight:700; text-decoration:none; }
.skip-link:focus { top:0; }
.header { position:fixed; top:0; right:0; left:0; z-index:9999; background:rgba(10,25,41,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(255,255,255,0.06); }
.header-inner { padding:10px 24px; }
.header.scrolled { box-shadow:0 2px 20px rgba(0,0,0,0.3); }
.nav { display:flex; align-items:center; justify-content:space-between; }
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text-primary); }
.logo-img { height:36px; width:auto; flex-shrink:0; max-height:36px; }
.nav-links { display:flex; align-items:center; gap:24px; list-style:none; margin:0 auto; padding:0; }
.nav-links li a { color:var(--text-secondary); font-size:0.88rem; font-weight:600; text-decoration:none; transition:color 0.3s; white-space:nowrap; }
.nav-links li a:hover { color:var(--cyan); }
.desktop-login { white-space:nowrap; flex-shrink:0; }
.nav-login-text { font-size:0.85rem; color:var(--text-muted); }
.nav-login-link { font-size:0.85rem; color:var(--cyan); text-decoration:none; }
.nav-login-link:hover { text-decoration:underline; }
.mobile-right { display:none; align-items:center; gap:16px; }
.mobile-login-text { font-size:0.82rem; color:var(--text-muted); }
.mobile-login-action { color:var(--cyan); font-weight:700; font-size:0.85rem; text-decoration:none; }
.mobile-toggle { background:none; border:none; cursor:pointer; padding:6px; display:flex; flex-direction:column; gap:5px; }
.mobile-toggle span { display:block; width:22px; height:2px; background:var(--text-primary); border-radius:2px; transition:all 0.3s; }

/* Sidebar */
.sidebar-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:99998; opacity:0; visibility:hidden; transition:opacity 0.35s, visibility 0.35s; }
.sidebar-overlay.open { opacity:1; visibility:visible; }
.sidebar { position:fixed; top:0; right:-300px; width:280px; height:100vh; background:var(--bg-secondary); z-index:99999; transition:right 0.35s cubic-bezier(0.16,1,0.3,1); display:flex; flex-direction:column; border-left:1px solid rgba(255,255,255,0.06); }
.sidebar.open { right:0; }
.sidebar-header { display:flex; align-items:center; justify-content:space-between; padding:20px; border-bottom:1px solid rgba(255,255,255,0.06); }
.sidebar-close { background:none; border:none; color:var(--text-muted); font-size:1.3rem; cursor:pointer; padding:4px 8px; }
.sidebar-close:hover { color:var(--text-primary); }
.sidebar-links { list-style:none; padding:16px 0; flex:1; }
.sidebar-links li a { display:block; padding:14px 24px; color:var(--text-secondary); font-size:1rem; font-weight:600; text-decoration:none; transition:background 0.2s, color 0.2s; }
.sidebar-links li a:hover { background:rgba(0,212,255,0.05); color:var(--cyan); }
.sidebar-login { padding:20px 24px; border-top:1px solid rgba(255,255,255,0.06); }
.sidebar-login a { color:var(--text-muted); font-size:0.9rem; text-decoration:none; }
.sidebar-login strong { color:var(--cyan); }
.sidebar-cta { padding: 16px 24px 0; }
.sidebar-cta-btn { width: 100%; justify-content: center; font-size: 0.95rem; padding: 12px 24px; }

/* Mobile breakpoint */
@media (max-width:900px) {
    .nav { flex-direction:row-reverse; }
    .nav-links { display:none !important; }
    .desktop-login { display:none !important; }
    .mobile-right { display:flex; flex-direction:row-reverse; }
    .header-inner { padding:12px 16px; }
    .logo { flex-direction:row-reverse; }
}

/* ─── GALLERY SLIDER ─── */
.gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    direction: ltr;
    padding: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0,20,30,0.95) 50%, var(--bg-primary) 100%);
}
.gallery-slider::before,
.gallery-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.gallery-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}
.gallery-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}
.gallery-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    -webkit-user-select: none;
    user-select: none;
}
.gallery-track img {
    height: 280px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}
.gallery-track img:hover {
    opacity: 1;
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .gallery-slider { height: 180px; }
    .gallery-track img { height: 180px; border-radius: 12px; }
    .gallery-track { gap: 10px; animation-duration: 70s; }
}

/* ── Blog Post Article Styling ── */
.seo-content .post-intro { font-size: 1.1rem; line-height: 2; margin-bottom: 40px; color: var(--text-primary); border-right: 3px solid var(--cyan); padding-right: 20px; }
.seo-content .post-section { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius); padding: 32px 28px; margin-bottom: 24px; }
.seo-content .post-section h2 { margin-top: 0; margin-bottom: 16px; font-size: 1.35rem; color: var(--text-primary); }
.seo-content .post-section p { margin-bottom: 0; color: var(--text-secondary); font-size: 0.95rem; line-height: 2; }