/*
Theme Name: Ozer
Description: קונה רכבים לפירוק — תבנית מותאמת אישית. כל שדות דף הבית ניתנים לעריכה דרך ACF.
Version: 1.0.2
Author: SNIR.
Text Domain: ozer
*/

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --yellow:#F4DE48;
  --yellow-d:#D4B800;
  --black:#0A0A0A;
  --dark:#111827;
  --slate:#1E293B;
  --text:#0F172A;
  --muted:#64748B;
  --border:#E2E8F0;
  --bg:#F8FAFC;
  --white:#FFFFFF;
  --r:12px;
  --r-lg:20px;
  --r-full:9999px;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Heebo',sans-serif;background:var(--white);color:var(--text);-webkit-font-smoothing:antialiased;overflow-x:hidden}
a{text-decoration:none;color:inherit;cursor:pointer}
button{cursor:pointer;font-family:inherit;border:none;background:none}
:focus-visible{outline:3px solid var(--yellow-d);outline-offset:2px;border-radius:4px}

/* Reveal on scroll (JS מוסיף rv-init; בלי JS הכל גלוי) */
.rv-init{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}
.rv-in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.rv-init{opacity:1;transform:none}}

/* ── TOPBAR ── */
.topbar{background:var(--black);padding:10px 0}
.topbar-inner{max-width:1280px;margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:space-between}
.topbar-left{display:flex;align-items:center;gap:24px}
.topbar-phone{display:flex;align-items:center;gap:8px;color:var(--yellow);font-size:15px;font-weight:700;letter-spacing:.3px;transition:opacity .15s}
.topbar-phone:hover{opacity:.8}

/* ── HEADER ── */
.header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.header-inner{max-width:1280px;margin:0 auto;padding:0 40px;height:68px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;column-gap:20px}
.logo{display:flex;align-items:center;gap:10px;cursor:pointer}
.logo-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center}
.logo-icon img{width:44px;height:44px;object-fit:contain}
.logo-name{font-size:18px;font-weight:800;color:var(--black);line-height:1}
.logo-sub{font-size:11px;font-weight:500;color:var(--muted);margin-top:1px}
.header nav.nav-center{display:flex;align-items:center;justify-content:center;gap:4px}
.header-actions{display:flex;align-items:center;gap:12px}
.nav-link{padding:8px 16px;font-size:14px;font-weight:600;color:var(--muted);border-radius:var(--r-full);transition:all .18s;white-space:nowrap;display:inline-flex;align-items:center;gap:4px}
.nav-link:hover{color:var(--text);background:var(--bg)}
.nav-item.has-dropdown{position:relative;display:inline-flex}
.nav-caret{opacity:.55;transition:transform .18s}
.nav-item.has-dropdown:hover .nav-caret{transform:rotate(180deg)}
.nav-dropdown{position:absolute;top:calc(100% + 6px);right:0;background:var(--white);border:1px solid var(--border);border-radius:14px;box-shadow:0 12px 34px rgba(15,23,42,.13);min-width:200px;padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .18s,transform .18s,visibility .18s;z-index:70}
.nav-item.has-dropdown:hover .nav-dropdown{opacity:1;visibility:visible;transform:none}
.nav-dropdown::before{content:'';position:absolute;bottom:100%;right:0;left:0;height:10px}
.nav-dropdown a{display:block;padding:11px 15px;border-radius:9px;font-size:14px;font-weight:600;color:var(--text);white-space:nowrap;transition:all .15s}
.nav-dropdown a:hover{background:var(--bg);color:var(--yellow-d)}
.nav-cta{background:var(--yellow);color:var(--black);padding:10px 22px;border-radius:var(--r-full);font-size:14px;font-weight:800;transition:all .18s;box-shadow:0 2px 8px rgba(244,222,72,.3)}
.nav-cta:hover{background:var(--yellow-d);box-shadow:0 4px 16px rgba(244,222,72,.4);transform:translateY(-1px)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;border-radius:8px;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:var(--text);border-radius:2px;transition:all .25s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav drawer */
.mobile-nav{display:none;position:fixed;inset:0;top:98px;background:var(--white);z-index:99;padding:24px 20px;flex-direction:column;gap:8px;box-shadow:0 8px 32px rgba(0,0,0,.1)}
.mobile-nav a{display:block;padding:14px 16px;font-size:16px;font-weight:700;color:var(--text);border-radius:var(--r);transition:background .15s}
.mobile-nav a:hover{background:var(--bg)}
.mobile-nav a.mobile-subitem{padding:11px 34px;font-size:14.5px;font-weight:600;color:var(--muted)}
.mobile-nav a.mobile-subitem::before{content:'•';margin-left:8px;color:var(--yellow-d)}
.mobile-nav .nav-cta{background:var(--yellow);color:var(--black);text-align:center;margin-top:8px;padding:16px;font-size:17px}
.mobile-nav.open{display:flex}

/* ── HERO ── */
.hero{position:relative;min-height:min(100svh,860px);display:flex;align-items:center;background:var(--black);overflow:hidden}
.hero-bg{position:absolute;inset:0;background-position:center;background-size:cover;background-repeat:no-repeat;filter:brightness(.5) saturate(.7)}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(5,5,8,.94) 0%,rgba(5,5,8,.72) 45%,rgba(5,5,8,.45) 100%)}
.hero-inner{position:relative;z-index:1;max-width:1280px;margin:0 auto;padding:110px 40px 90px;width:100%}
.hero-title{font-size:clamp(42px,6.5vw,80px);font-weight:900;color:var(--white);line-height:1.12;letter-spacing:-0.5px;max-width:720px;margin-bottom:26px}
.hero-title em{color:var(--yellow);font-style:normal;background-image:linear-gradient(to left,rgba(244,222,72,.28),rgba(244,222,72,.28));background-repeat:no-repeat;background-size:100% 22%;background-position:bottom right}
.hero-desc{font-size:18px;color:rgba(255,255,255,.6);font-weight:400;line-height:1.65;max-width:500px;margin-bottom:48px}
.hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.btn-hero-primary{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:var(--yellow);color:var(--black);font-size:17px;font-weight:800;padding:18px 36px;border-radius:var(--r-full);transition:background .2s,transform .2s,box-shadow .2s;box-shadow:0 4px 24px rgba(244,222,72,.35)}
.btn-hero-primary:hover{background:var(--yellow-d);transform:translateY(-2px);box-shadow:0 8px 32px rgba(244,222,72,.45)}
.btn-hero-primary:active{transform:translateY(0) scale(.98)}
.btn-hero-secondary{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:rgba(255,255,255,.08);color:var(--white);font-size:16px;font-weight:600;padding:17px 32px;border-radius:var(--r-full);border:1px solid rgba(255,255,255,.18);transition:background .2s,border-color .2s;backdrop-filter:blur(8px)}
.btn-hero-secondary:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.3)}
.btn-hero-secondary:active{transform:scale(.98)}
.hero-trust{display:flex;align-items:center;gap:40px;margin-top:64px;padding-top:40px;border-top:1px solid rgba(255,255,255,.08)}
.trust-num{font-size:36px;font-weight:900;color:var(--yellow);line-height:1;font-variant-numeric:tabular-nums}
.trust-label{font-size:13px;color:rgba(255,255,255,.45);font-weight:500;margin-top:4px}
.trust-sep{width:1px;height:40px;background:rgba(255,255,255,.1);flex-shrink:0}

/* ── STRIP ── */
.strip{background:var(--yellow);padding:20px 0}
.strip-inner{max-width:1280px;margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:center;gap:48px}
.strip-item{display:flex;align-items:center;gap:12px;font-size:15px;font-weight:700;color:var(--black)}
.strip-icon{width:22px;height:22px;flex-shrink:0;color:var(--black);opacity:.7}

/* ── SECTION BASE ── */
section{padding:96px 0}
.container{max-width:1280px;margin:0 auto;padding:0 40px}
h2.title{font-size:clamp(28px,4vw,46px);font-weight:900;letter-spacing:-0.5px;line-height:1.15;color:var(--text);margin-bottom:18px}
h2.title::after{content:'';display:block;width:44px;height:4px;background:var(--yellow);border-radius:2px;margin-top:14px}
.cta-inner h2.cta-title::after{display:none}
.subtitle{font-size:17px;color:var(--muted);line-height:1.65;max-width:540px}

/* ── WHY US ── */
.why{background:var(--bg)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;margin-top:56px;background:var(--border);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden}
.why-card{background:var(--white);transition:background .2s}
.why-card:hover{background:#FEFDF0}
.why-image{position:relative;aspect-ratio:16/10}
.why-image img{width:100%;height:100%;object-fit:cover;display:block}
.why-image .why-icon{position:absolute;bottom:-22px;right:28px;margin-bottom:0;box-shadow:0 4px 14px rgba(15,23,42,.18);border:3px solid var(--white)}
.why-body{padding:34px 32px 28px}
.why-icon{width:44px;height:44px;background:var(--yellow);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.why-icon svg{width:22px;height:22px;color:var(--black)}
.why-title{font-size:18px;font-weight:800;color:var(--text);margin-bottom:8px;line-height:1.25}
.why-desc{font-size:14px;color:var(--muted);line-height:1.65}

/* ── PROCESS ── */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:56px;position:relative}
.process-grid::before{content:'';position:absolute;top:27px;right:calc(12.5% + 28px);left:calc(12.5% + 28px);height:1px;background:linear-gradient(90deg,var(--yellow),var(--border))}
.process-step{text-align:center;padding:0 16px}
.step-num{width:56px;height:56px;border-radius:50%;background:var(--yellow);color:var(--black);font-size:20px;font-weight:900;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;position:relative;z-index:1;box-shadow:0 0 0 8px var(--white),0 0 0 9px var(--border)}
.step-title{font-size:16px;font-weight:800;color:var(--text);margin-bottom:8px}
.step-desc{font-size:13px;color:var(--muted);line-height:1.6}

/* ── TYPES ── */
.types-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px;margin-top:48px}
.type-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--r-lg);padding:28px 16px;text-align:center;transition:all .22s;cursor:pointer}
.type-card:hover{border-color:var(--yellow);background:#FEFDF0;transform:translateY(-3px);box-shadow:0 8px 24px rgba(244,222,72,.15)}
.type-icon-wrap{width:60px;height:60px;background:var(--bg);border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;transition:background .22s}
.type-card:hover .type-icon-wrap{background:var(--yellow)}
.type-icon-wrap svg{width:28px;height:28px;color:var(--muted);transition:color .22s}
.type-card:hover .type-icon-wrap svg{color:var(--black)}
.type-label{font-size:13px;font-weight:700;color:var(--text);line-height:1.3}

/* ── TESTIMONIALS ── */
.testimonials{background:var(--bg)}
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px}
.content .local-test-grid{grid-template-columns:1fr;gap:16px;margin-top:20px}
.content .local-test-grid .test-card{padding:24px}
.test-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:32px;transition:all .22s}
.test-card:hover{border-color:#D4B80040;box-shadow:0 8px 32px rgba(0,0,0,.06);transform:translateY(-2px)}
.test-stars{display:flex;gap:3px;margin-bottom:18px}
.test-star{width:16px;height:16px;color:var(--yellow-d)}
.test-text{font-size:15px;color:#334155;line-height:1.7;margin-bottom:24px;font-weight:400}
.test-author{display:flex;align-items:center;gap:12px;border-top:1px solid var(--border);padding-top:20px}
.test-avatar{width:40px;height:40px;background:var(--yellow);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:800;color:var(--black);flex-shrink:0}
.test-name{font-size:14px;font-weight:700;color:var(--text)}
.test-verified{font-size:12px;color:var(--muted);display:flex;align-items:center;gap:4px;margin-top:2px}
.test-check{width:12px;height:12px;color:#16A34A}

/* ── CTA BLOCK ── */
.cta-block{background:var(--black);padding:80px 0;position:relative;overflow:hidden}
.cta-block::after{content:'';position:absolute;top:-40%;left:10%;width:400px;height:400px;background:radial-gradient(circle,rgba(244,222,72,.06) 0%,transparent 70%);pointer-events:none}
.cta-inner{position:relative;z-index:1;text-align:center}
.cta-title{font-size:clamp(30px,4vw,50px);font-weight:900;color:var(--white);letter-spacing:-0.5px;margin-bottom:12px}
.cta-sub{font-size:17px;color:rgba(255,255,255,.5);margin-bottom:40px}
.cta-actions{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}

/* ── FAQ ── */
.faq-wrap{max-width:760px;margin:48px auto 0}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{width:100%;padding:22px 0;display:flex;align-items:center;justify-content:space-between;gap:16px;font-size:16px;font-weight:700;color:var(--text);text-align:right;transition:color .15s}
.faq-q:hover{color:var(--yellow-d)}
.faq-chevron{width:20px;height:20px;color:var(--muted);flex-shrink:0;transition:transform .25s}
.faq-q.open .faq-chevron{transform:rotate(180deg);color:var(--yellow-d)}
.faq-a{font-size:15px;color:var(--muted);line-height:1.75;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.faq-a.open{max-height:160px;padding-bottom:22px}

/* ── FOOTER ── */
footer.site-footer{background:var(--dark);color:rgba(255,255,255,.55);padding:64px 0 32px;border-top:3px solid var(--yellow)}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr;gap:48px;margin-bottom:48px}
.footer-logo-name{font-size:19px;font-weight:800;color:var(--white);margin-bottom:4px}
.footer-logo-sub{font-size:12px;color:rgba(255,255,255,.35);margin-bottom:16px}
.footer-desc{font-size:14px;line-height:1.7;color:rgba(255,255,255,.45)}
.footer-phone{display:flex;align-items:center;gap:8px;color:var(--yellow);font-size:21px;font-weight:800;margin-top:20px;transition:opacity .15s}
.footer-phone:hover{opacity:.8}
.footer-col h4{font-size:13px;font-weight:700;color:var(--white);margin-bottom:16px;letter-spacing:.5px;text-transform:uppercase}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{font-size:14px;color:rgba(255,255,255,.45);transition:color .15s}
.footer-col ul li a:hover{color:var(--yellow)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding-top:24px;display:flex;align-items:center;justify-content:space-between;font-size:13px}
.footer-note{color:rgba(255,255,255,.25);font-size:12px}

/* ── FLOATING BUTTONS ── */
.floaters{position:fixed;bottom:24px;left:24px;z-index:999;display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.wa,.call-float{border-radius:var(--r-full);padding:13px 20px;display:flex;align-items:center;gap:9px;font-size:14px;font-weight:700;transition:all .2s;cursor:pointer;box-shadow:0 4px 20px rgba(0,0,0,.25);color:#fff;text-decoration:none}
.wa{background:#25D366;box-shadow:0 4px 20px rgba(37,211,102,.4)}
.wa:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(37,211,102,.5)}
.call-float{background:var(--dark);box-shadow:0 4px 20px rgba(0,0,0,.3)}
.call-float:hover{transform:translateY(-3px);background:#1a2535;box-shadow:0 8px 28px rgba(0,0,0,.4)}
.wa svg,.call-float svg{width:20px;height:20px;flex-shrink:0}

/* ── INNER PAGES ── */
.page-hero{background:var(--dark);padding:72px 0 60px;position:relative;overflow:hidden}
.page-hero::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 100% at 80% 50%,rgba(244,222,72,.05) 0%,transparent 70%);pointer-events:none}
.page-hero-inner{max-width:1280px;margin:0 auto;padding:0 40px;position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,.4);margin-bottom:20px;flex-wrap:wrap}
.breadcrumb a{color:rgba(255,255,255,.4);transition:color .15s}
.breadcrumb a:hover{color:var(--yellow)}
.breadcrumb-sep{font-size:11px;opacity:.4}
.breadcrumb-current{color:rgba(255,255,255,.7)}
.page-title{font-size:clamp(32px,5vw,56px);font-weight:900;color:var(--white);letter-spacing:-0.5px;line-height:1.15;margin-bottom:12px}
.page-sub{font-size:17px;color:rgba(255,255,255,.5);max-width:560px;line-height:1.6}

/* Layout with sidebar */
.page-body{max-width:1280px;margin:0 auto;padding:64px 40px;display:grid;grid-template-columns:1fr 340px;gap:48px;align-items:start}
.page-body.full{grid-template-columns:1fr}

/* Content typography */
.content h2{font-size:26px;font-weight:800;color:var(--text);letter-spacing:-.5px;margin:40px 0 14px}
.content h2:first-child{margin-top:0}
.content h3{font-size:20px;font-weight:800;color:var(--text);margin:28px 0 10px}
.content p{font-size:16px;color:var(--muted);line-height:1.8;margin-bottom:16px}
.content ul{list-style:none;margin-bottom:20px}
.content ul li{font-size:15px;color:var(--muted);line-height:1.7;padding-right:20px;position:relative;margin-bottom:8px}
.content ul li::before{content:'';position:absolute;right:0;top:10px;width:6px;height:6px;background:var(--yellow);border-radius:50%}
.content ol{margin:0 20px 20px 0}
.content ol li{font-size:15px;color:var(--muted);line-height:1.7;margin-bottom:8px}
.content strong{color:var(--text);font-weight:700}
.content img{max-width:100%;height:auto;border-radius:var(--r)}
.content .article-cta{background:rgba(244,222,72,.08);border-right:4px solid var(--yellow);border-radius:0 var(--r) var(--r) 0;padding:22px 24px;margin:36px 0 8px}
.content .article-cta p{margin-bottom:0;color:var(--text)}
.content .article-cta strong{font-weight:800}

/* Sidebar contact card */
.sidebar{position:sticky;top:88px}
.contact-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:32px;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.contact-card-title{font-size:20px;font-weight:800;color:var(--text);margin-bottom:8px}
.contact-card-sub{font-size:14px;color:var(--muted);margin-bottom:28px;line-height:1.6}
.contact-phone{display:flex;align-items:center;gap:12px;background:var(--yellow);color:var(--black);padding:16px 24px;border-radius:var(--r-full);font-size:18px;font-weight:800;margin-bottom:12px;transition:all .2s;box-shadow:0 4px 16px rgba(244,222,72,.3)}
.contact-phone:hover{background:var(--yellow-d);transform:translateY(-2px);box-shadow:0 6px 20px rgba(244,222,72,.4)}
.contact-phone svg{width:20px;height:20px;flex-shrink:0}
.contact-wa{display:flex;align-items:center;gap:12px;background:var(--dark);color:var(--white);padding:16px 24px;border-radius:var(--r-full);font-size:16px;font-weight:700;transition:all .2s}
.contact-wa:hover{background:#1a2535;transform:translateY(-2px)}
.contact-wa svg{width:20px;height:20px;flex-shrink:0}
.contact-divider{border:none;border-top:1px solid var(--border);margin:24px 0}
.contact-info-row{display:flex;align-items:flex-start;gap:12px;margin-bottom:16px}
.contact-info-icon{width:36px;height:36px;background:var(--bg);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-icon svg{width:16px;height:16px;color:var(--yellow-d)}
.contact-info-label{font-size:11px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:2px}
.contact-info-value{font-size:14px;font-weight:600;color:var(--text)}

/* Areas grid */
.areas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:24px 0}
.area-tag{display:block;background:var(--bg);border:1px solid var(--border);border-radius:var(--r);padding:12px 16px;font-size:14px;font-weight:600;color:var(--text);transition:all .2s;cursor:pointer;text-align:center}
.area-tag:hover{border-color:var(--yellow);background:#FEFDF0;color:var(--yellow-d)}
.content .areas-grid li{padding:0;margin:0}
.content .areas-grid li::before{display:none}

/* Blog grid */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;transition:all .22s;display:block}
.blog-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.10);transform:translateY(-3px);border-color:rgba(244,222,72,.3)}
.blog-img{height:180px;background:var(--bg);overflow:hidden;position:relative}
.blog-img img{width:100%;height:100%;object-fit:cover}
.blog-img-placeholder{width:100%;height:100%;background:linear-gradient(135deg,#1E293B,#334155);display:flex;align-items:center;justify-content:center}
.blog-img-placeholder svg{width:40px;height:40px;color:rgba(255,255,255,.2)}
.blog-body{padding:24px}
.blog-cat{font-size:11px;font-weight:700;color:var(--yellow-d);text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.blog-title{font-size:17px;font-weight:800;color:var(--text);line-height:1.35;margin-bottom:10px}
.blog-excerpt{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:16px}
.blog-excerpt p{margin:0}
.blog-meta{font-size:12px;color:var(--muted);display:flex;align-items:center;gap:12px}

/* Gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery-item{aspect-ratio:4/3;background:linear-gradient(135deg,#111827,#1E293B);border-radius:var(--r);overflow:hidden;position:relative;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gallery-item:hover img{transform:scale(1.04)}
.gallery-item-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;color:rgba(255,255,255,.25)}
.gallery-overlay{position:absolute;inset:0;background:rgba(0,0,0,0);transition:all .22s;pointer-events:none}
.gallery-item:hover .gallery-overlay{background:rgba(244,222,72,.15)}

/* Price table */
.price-table{width:100%;border-collapse:collapse;margin:24px 0}
.price-table th{background:var(--dark);color:var(--white);padding:14px 20px;text-align:right;font-size:14px;font-weight:700}
.price-table th:first-child{border-radius:0 var(--r) var(--r) 0}
.price-table th:last-child{border-radius:var(--r) 0 0 var(--r)}
.price-table td{padding:14px 20px;border-bottom:1px solid var(--border);font-size:14px;color:var(--text)}
.price-table tr:last-child td{border-bottom:none}
.price-table tr:hover td{background:var(--bg)}
.price-range{font-weight:700;color:var(--yellow-d)}

/* ── SINGLE POST ── */
.post-hero-inner{max-width:860px;margin:0 auto;padding:0 40px;position:relative;z-index:1}
.post-cat{display:inline-block;background:rgba(244,222,72,.15);color:var(--yellow);font-size:12px;font-weight:700;padding:4px 12px;border-radius:var(--r-full);margin-bottom:16px;letter-spacing:.5px;text-transform:uppercase}
.post-title{font-size:clamp(26px,4vw,46px);font-weight:900;color:var(--white);letter-spacing:-0.3px;line-height:1.2;margin-bottom:20px}
.post-meta{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.post-meta-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.45)}
.post-meta-item svg{width:14px;height:14px;opacity:.6}

.post-layout{max-width:1280px;margin:0 auto;padding:48px 40px;display:grid;grid-template-columns:1fr 300px;gap:48px;align-items:start}
.article-body{min-width:0}
.article-featured{width:100%;aspect-ratio:16/9;background:linear-gradient(135deg,#1E293B,#334155);border-radius:var(--r-lg);overflow:hidden;margin-bottom:40px;display:flex;align-items:center;justify-content:center}
.article-featured img{width:100%;height:100%;object-fit:cover}
.article-featured svg{width:64px;height:64px;color:rgba(255,255,255,.15)}
.article-content{font-size:17px;line-height:1.8;color:#334155}
.article-content h2{font-size:clamp(22px,3vw,30px);font-weight:900;color:var(--text);letter-spacing:-.5px;line-height:1.2;margin:48px 0 16px;padding-bottom:12px;border-bottom:2px solid var(--border)}
.article-content h2:first-child{margin-top:0}
.article-content h3{font-size:clamp(18px,2.5vw,22px);font-weight:800;color:var(--text);letter-spacing:-.3px;line-height:1.3;margin:36px 0 12px}
.article-content p{margin-bottom:20px;color:#475569}
.article-content strong{font-weight:800;color:var(--text)}
.article-content ul{list-style:none;margin:20px 0 24px}
.article-content ul li{padding-right:24px;position:relative;margin-bottom:10px;color:#475569;line-height:1.7}
.article-content ul li::before{content:'';position:absolute;right:0;top:11px;width:7px;height:7px;background:var(--yellow);border-radius:50%}
.article-content ol{margin:20px 0 24px;padding-right:24px}
.article-content ol li{margin-bottom:10px;color:#475569;line-height:1.7;padding-right:4px}
.article-content img{max-width:100%;height:auto;border-radius:var(--r)}

.sidebar-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.post-sidebar{position:sticky;top:88px;display:flex;flex-direction:column;gap:20px}

/* Related */
.related{background:var(--bg);padding:64px 0}
.related-inner{max-width:1280px;margin:0 auto;padding:0 40px}
.related-title{font-size:26px;font-weight:900;color:var(--text);letter-spacing:-.5px;margin-bottom:28px}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}

/* ── UTILS ── */
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}

/* ── Sticky mobile CTA bar ── */
.mobile-cta-bar{display:none}

/* ── MOBILE ── */
@media(max-width:767px){
  .header nav.nav-center{display:none}
  .header-actions .nav-cta{display:none}
  .hamburger{display:flex}
  .header-inner{padding:0 20px;height:60px;grid-template-columns:1fr auto}
  .topbar-inner{padding:0 16px}
  .mobile-nav{top:104px}

  /* Hero */
  .hero{min-height:88svh}
  .hero-inner{padding:72px 20px 56px}
  .hero-title{font-size:clamp(34px,9.5vw,46px);letter-spacing:-0.3px;max-width:100%;line-height:1.14}
  .hero-desc{font-size:16px;max-width:100%;margin-bottom:32px}
  .hero-actions{flex-direction:column;align-items:stretch;gap:12px}
  .btn-hero-primary,.btn-hero-secondary{width:100%;padding:17px 24px;font-size:16px}

  /* Trust — גלילה אופקית עם snap */
  .hero-trust{display:flex;flex-wrap:nowrap;gap:0;margin-top:44px;padding-top:28px;overflow-x:auto;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .hero-trust::-webkit-scrollbar{display:none}
  .trust-item{flex:0 0 auto;scroll-snap-align:start;padding-left:28px}
  .trust-sep{display:none}
  .trust-num{font-size:26px}
  .trust-label{font-size:12px}

  /* Strip — קומפקטי 2x2 */
  .strip{padding:14px 0}
  .strip-inner{display:grid;grid-template-columns:1fr 1fr;gap:10px 16px;padding:0 20px}
  .strip-item{font-size:12.5px;font-weight:700;gap:8px}
  .strip-icon{width:16px;height:16px}

  /* Why — 2 עמודות עם תמונה למעלה */
  .why-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;background:none;border:none;border-radius:0;overflow:visible;margin-top:32px}
  .why-card{border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:0 2px 10px rgba(15,23,42,.04)}
  .why-image{aspect-ratio:4/3}
  .why-image .why-icon{width:34px;height:34px;bottom:-14px;right:12px;border-width:2px}
  .why-image .why-icon svg{width:16px;height:16px}
  .why-body{padding:20px 13px 15px}
  .why-title{font-size:14px;margin-bottom:4px;line-height:1.3}
  .why-desc{font-size:11.5px;line-height:1.5}

  /* Process — 2 עמודות (2x2) */
  .process-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:32px}
  .process-grid::before{display:none}
  .process-step{text-align:center;padding:22px 14px;border:1px solid var(--border);border-radius:16px;background:var(--white);box-shadow:0 2px 10px rgba(15,23,42,.04)}
  .process-step:not(:last-child)::after{display:none}
  .step-num{width:42px;height:42px;font-size:16px;margin:0 auto 12px;box-shadow:none}
  .step-title{font-size:14px;margin:0 0 6px}
  .step-desc{font-size:11.5px;line-height:1.5}

  /* Types + Testimonials */
  .types-grid{grid-template-columns:repeat(2,1fr);gap:10px;margin-top:36px}
  .type-card{padding:20px 12px;border-radius:14px}
  .type-icon-wrap{width:50px;height:50px;margin-bottom:10px}
  .type-label{font-size:12.5px}
  .test-grid{grid-template-columns:1fr;gap:14px;margin-top:36px}
  .test-card{padding:24px 20px}

  /* FAQ */
  .faq-wrap{margin-top:32px}
  .faq-q{font-size:15px;padding:18px 0}

  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .footer-grid > div:first-child{grid-column:1/-1;border-bottom:1px solid rgba(255,255,255,.1);padding-bottom:28px;margin-bottom:4px}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  footer.site-footer{padding-bottom:96px}

  section{padding:52px 0}
  .container{padding:0 20px}

  /* Inner pages */
  .page-hero{padding:44px 0 36px}
  .page-hero-inner,.post-hero-inner{padding:0 20px}
  .page-body{grid-template-columns:1fr;padding:36px 20px 48px;gap:28px}
  .sidebar{position:static}
  .post-layout{grid-template-columns:1fr;padding:28px 20px 44px}
  .post-sidebar{position:static}
  .blog-grid{grid-template-columns:1fr;gap:16px}
  .related-grid{grid-template-columns:1fr}
  .related-inner{padding:0 20px}
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .areas-grid{grid-template-columns:repeat(2,1fr)}
  .price-table th,.price-table td{padding:10px 12px;font-size:13px}

  /* פלוטרים מוחלפים בבר תחתון */
  .floaters{display:none}
  .mobile-cta-bar{display:grid;grid-template-columns:1fr 1fr;gap:10px;position:fixed;bottom:0;right:0;left:0;z-index:998;padding:10px 14px calc(10px + env(safe-area-inset-bottom));background:rgba(255,255,255,.92);backdrop-filter:blur(14px);border-top:1px solid var(--border);box-shadow:0 -6px 24px rgba(15,23,42,.08)}
  .mobile-cta-bar a{display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 10px;border-radius:var(--r-full);font-size:15px;font-weight:800;transition:transform .15s}
  .mobile-cta-bar a:active{transform:scale(.97)}
  .mobile-cta-bar svg{width:18px;height:18px;flex-shrink:0}
  .mobile-cta-call{background:var(--yellow);color:var(--black);box-shadow:0 2px 12px rgba(244,222,72,.4)}
  .mobile-cta-wa{background:#25D366;color:#fff;box-shadow:0 2px 12px rgba(37,211,102,.35)}
  body{padding-bottom:0}
}
