@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800;900&display=swap');

:root {
  --clay: #C4956A;
  --clay-l: #DEB896;
  --clay-p: #EDD5B8;
  --sand: #E8D5B0;
  --sand-l: #F2E8D5;
  --cream: #FAF5EE;
  --off: #FDFAF6;
  --brown: #6B3F2A;
  --dark: #3D1F0E;
  --text: #2A1508;
  --mid: #7A4A30;
  --light: #B08060;
  --border: rgba(180,130,80,0.16);
  --sh: rgba(100,50,20,0.09);
  --nav-h: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--off);
  color: var(--text);
  direction: rtl;
  text-align: right;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(61,31,14,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,149,106,0.15);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  width: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-wrap {
  height: 52px; overflow: hidden; display: flex; align-items: center;
}
.nav-logo-img {
  height: 108px; width: auto; object-fit: contain;
  margin-top: 28px;
  filter: brightness(10) sepia(0.5) saturate(0.6) hue-rotate(-10deg);
  opacity: 0.92;
}
.nav-links-desktop {
  display: none;
  gap: 6px;
}
.nav-links-desktop .nl {
  font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 400;
  color: rgba(240,220,190,0.55); letter-spacing: 0.04em;
  padding: 7px 12px; text-decoration: none;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links-desktop .nl:hover,
.nav-links-desktop .nl.active {
  color: var(--clay-l);
  background: rgba(196,149,106,0.1);
}
.nav-cta {
  background: var(--clay); color: white; border: none;
  border-radius: 100px; padding: 10px 22px;
  font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  box-shadow: 0 3px 14px rgba(180,100,50,0.35);
  white-space: nowrap; transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(180,100,50,0.45); }

/* mobile nav strip */
.nav-links-mobile {
  display: flex; justify-content: center;
  overflow-x: auto; gap: 0;
  background: rgba(30,10,3,0.6);
  border-top: 1px solid rgba(196,149,106,0.1);
}
.nav-links-mobile::-webkit-scrollbar { display: none; }
.nav-links-mobile .nl {
  font-family: 'Heebo', sans-serif; font-size: 11px; font-weight: 400;
  color: rgba(240,220,190,0.45); letter-spacing: 0.05em;
  padding: 7px 9px; white-space: nowrap; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links-mobile .nl.active,
.nav-links-mobile .nl:hover {
  color: var(--clay-l); border-bottom-color: var(--clay);
}
.nav-mobile-wrap {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199;
  display: block;
}

/* page offset */
.page-body { padding-top: calc(var(--nav-h) + 36px); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 500;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45); cursor: pointer;
  text-decoration: none; animation: waPulse 3s ease infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}
.wa-float svg { width: 27px; height: 27px; fill: white; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: 100vh;
  overflow: hidden; background: #1a0a02;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  opacity: 0; animation: revealHero 1.8s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
@keyframes revealHero {
  0% { opacity:0; transform:scale(1.08); }
  100% { opacity:0.85; transform:scale(1); }
}
.hero-over {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,10,2,.35) 0%, transparent 35%, rgba(26,10,2,.9) 100%),
    linear-gradient(to left, rgba(26,10,2,.2) 0%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute; bottom: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,106,.18) 0%, transparent 70%);
  animation: pulse 7s ease-in-out infinite; pointer-events: none;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.8;} 50%{transform:scale(1.15);opacity:.4;} }

.hero-badge {
  position: absolute; top: 32px; left: 32px;
  background: rgba(26,10,2,.75); backdrop-filter: blur(10px);
  border: 1px solid rgba(196,149,106,.28); border-radius: 16px;
  padding: 12px 18px; text-align: center;
  opacity: 0; animation: fu .7s ease 1.8s forwards;
}
.hb-num { font-family:'Heebo',sans-serif; font-size:28px; font-weight:800; color:var(--clay-l); display:block; line-height:1; }
.hb-lbl { font-size:10px; letter-spacing:.14em; color:rgba(240,220,190,.45); text-transform:uppercase; display:block; margin-top:4px; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fi .6s ease 2.2s forwards;
}
.hs-line { width:1px; height:36px; background:linear-gradient(to bottom,var(--clay),transparent); animation:sd 2s ease infinite 2.5s; transform-origin:top; }
@keyframes sd { 0%{transform:scaleY(0);opacity:0;} 50%{transform:scaleY(1);opacity:1;} 100%{transform:scaleY(1);opacity:0;} }
.hs-lbl { font-size:10px; letter-spacing:.2em; color:rgba(240,220,190,.28); text-transform:uppercase; writing-mode:vertical-rl; }

.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 28px 52px;
  max-width: 700px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,149,106,.16); border: 1px solid rgba(196,149,106,.38);
  color: var(--clay-p); font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px; opacity: 0; animation: fu .8s ease 1s forwards;
}
.hp-dot { width:5px; height:5px; border-radius:50%; background:var(--clay-l); animation:blink 1.5s ease infinite 1.5s; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.hero h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 900; font-size: 40px; line-height: 1.15;
  color: #FDF6ED; margin-bottom: 10px;
  opacity: 0; animation: fu .9s ease 1.1s forwards;
}
.hero h1 .sub-line {
  display: block; font-weight: 300; font-size: 32px;
  color: var(--clay-p); line-height: 1.3;
}
.hero-sub {
  font-size: 16px; color: rgba(253,246,237,.5); line-height: 1.8;
  margin-bottom: 8px; opacity: 0; animation: fu .9s ease 1.25s forwards;
}
.hero-sub2 {
  font-size: 14px; color: rgba(253,246,237,.35); line-height: 1.7;
  margin-bottom: 28px; opacity: 0; animation: fu .9s ease 1.35s forwards;
  font-weight: 300;
}
.hero-cta {
  display: inline-block; background: var(--clay); color: white; border: none;
  border-radius: 100px; padding: 15px 36px;
  font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: .05em; cursor: pointer; text-align: center;
  box-shadow: 0 6px 28px rgba(180,100,50,.42);
  opacity: 0; animation: fu .9s ease 1.5s forwards, glow 3s ease infinite 2.5s;
  transition: transform .15s;
}
.hero-cta:hover { transform: translateY(-2px); }
@keyframes glow {
  0%,100% { box-shadow:0 6px 28px rgba(180,100,50,.42); }
  50% { box-shadow:0 8px 36px rgba(196,149,106,.65), 0 0 0 6px rgba(196,149,106,.1); }
}
@keyframes fu { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }
@keyframes fi { from{opacity:0;} to{opacity:1;} }

/* ── TICKER ── */
.ticker { background: var(--clay); overflow: hidden; height: 40px; position: relative; white-space: nowrap; }
.ti { position: absolute; top: 0; left: 0; display: flex; align-items: center; height: 100%; will-change: transform; }
.ti span { font-size: 11px; font-weight: 600; letter-spacing: .18em; color: white; padding: 0 22px; text-transform: uppercase; flex-shrink: 0; }
.ti .td { font-size: 8px; padding: 0 6px; opacity: .6; flex-shrink: 0; }

/* ── QUOTE ── */
.qw { background: var(--dark); padding: 56px 32px; position: relative; overflow: hidden; }
.qw::before {
  content: '"'; position: absolute; top: -20px; right: 24px;
  font-family: 'Heebo', sans-serif; font-weight: 900;
  font-size: 180px; color: rgba(196,149,106,.07); line-height: 1;
}
.qw-inner { max-width: 800px; margin: 0 auto; }
.qt { font-family: 'Heebo', sans-serif; font-size: 22px; font-weight: 300; color: var(--clay-p); line-height: 1.75; position: relative; z-index: 1; margin-bottom: 14px; }
.qa { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(196,149,106,.38); }

/* ── SECTION WRAPPER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── SECTIONS ── */
.sec { padding: 80px 0; opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.sec.vis { opacity: 1; transform: none; }
.lbl { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: 10px; }
h2 { font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 36px; color: var(--dark); line-height: 1.2; }
.rule { width: 36px; height: 3px; background: var(--clay); margin: 14px 0 24px; border-radius: 2px; }
.sec-intro { font-size: 17px; color: var(--mid); line-height: 1.8; max-width: 600px; margin-bottom: 32px; }

/* ── ID ── */
.id-bg { background: var(--sand-l); padding: 80px 0; opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.id-bg.vis { opacity:1; transform:none; }
.thoughts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px; margin-top: 8px;
}
.thought {
  background: white; border-radius: 14px; padding: 14px 18px;
  font-size: 15px; color: var(--text); line-height: 1.5;
  border-right: 3px solid var(--clay-l); box-shadow: 0 2px 12px var(--sh);
  display: flex; gap: 12px; align-items: flex-start;
}
.td { color: var(--clay); font-weight: 700; flex-shrink: 0; margin-top: 2px; font-size: 18px; }

/* ── REFRAME ── */
.rfw { background: linear-gradient(150deg, #2A1508, #5C2E14); padding: 80px 32px; text-align: center; }
.rfw-inner { max-width: 700px; margin: 0 auto; }
.rfl { width: 1px; height: 40px; background: rgba(196,149,106,.3); margin: 24px auto; }
.rfb { font-size: 17px; color: rgba(253,246,237,.58); line-height: 1.9; margin-bottom: 20px; }
.rfp { font-family: 'Heebo', sans-serif; font-size: 24px; font-weight: 700; color: var(--clay-p); line-height: 1.4; }

/* ── ABOUT ── */
.about-wrap { display: grid; grid-template-columns: 1fr; gap: 0; }
.about-hero-img {
  position: relative; height: 460px; overflow: hidden; background: var(--dark);
}
.about-hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 12%;
  display: block; opacity: .9;
}
.about-over { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 38%, rgba(61,31,14,.97) 100%); }
.about-txt-over { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px 32px; }
.about-name { font-family:'Heebo',sans-serif; font-size:32px; font-weight:900; color:white; margin-bottom:4px; }
.about-role { font-size:11px; color:var(--clay-l); letter-spacing:.16em; text-transform:uppercase; margin-bottom:14px; }
.about-tag { font-family:'Heebo',sans-serif; font-size:17px; font-weight:300; color:rgba(253,246,237,.7); line-height:1.6; }
.about-body { background: var(--off); padding: 48px 28px; }
.about-body-inner { max-width: 700px; }
.ap { font-size: 16px; color: var(--mid); line-height: 1.9; margin-bottom: 16px; }
.ap strong { color: var(--dark); font-weight: 700; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.cred { background: var(--sand-l); border-radius: 100px; padding: 7px 16px; font-size: 13px; color: var(--mid); border: 1px solid var(--border); font-weight: 400; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.stat { background: white; border-radius: 16px; padding: 20px 10px; text-align: center; box-shadow: 0 2px 12px var(--sh); }
.sn { font-family:'Heebo',sans-serif; font-size:36px; font-weight:900; color:var(--clay); line-height:1; display:block; }
.sl { font-size:12px; color:var(--light); margin-top:5px; line-height:1.35; }

/* ── STORY ── */
.story-bg { background: var(--sand-l); padding: 80px 0; opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.story-bg.vis { opacity:1; transform:none; }
.story-card {
  background: white; border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 4px 24px var(--sh); position: relative; max-width: 760px;
}
.story-card::before {
  content: '"'; position: absolute; top: 8px; right: 24px;
  font-family: 'Heebo', sans-serif; font-weight: 900;
  font-size: 90px; color: var(--clay-p); line-height: 1;
}
.sp { font-size: 16px; color: var(--mid); line-height: 2; margin-bottom: 14px; }
.spiv { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); font-family:'Heebo',sans-serif; font-size:18px; font-weight:700; color:var(--brown); line-height:1.55; }

/* ── WORK ── */
.work-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; margin-top: 8px;
}
.wi {
  background: white; border-radius: 16px; padding: 20px 24px;
  display: flex; gap: 18px; align-items: center;
  box-shadow: 0 2px 12px var(--sh);
  transition: transform .2s, box-shadow .2s;
}
.wi:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--sh); }
.wn { font-family:'Heebo',sans-serif; font-size:28px; font-weight:900; color:var(--clay-l); line-height:1; flex-shrink:0; width:36px; }
.wt { font-size:15px; font-weight:700; color:var(--dark); margin-bottom:3px; }
.wd { font-size:13px; color:var(--light); }

/* ── PROCESS ── */
.proc-wrap { background: var(--dark); padding: 80px 0; }
.proc-head { margin-bottom: 40px; }
.proc-head h2 { color: var(--cream); }
.proc-head .lbl { color: var(--clay); }
.proc-head .rule { background: var(--clay); opacity: .4; }
.proc-steps { display: flex; flex-direction: column; max-width: 760px; }
.ps { display: flex; gap: 20px; position: relative; }
.ps-left { display: flex; flex-direction: column; align-items: center; width: 48px; flex-shrink: 0; }
.ps-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), #7A3A1A);
  display: flex; align-items: center; justify-content: center;
  font-family:'Heebo',sans-serif; font-size:20px; font-weight:900;
  color: white; flex-shrink: 0; z-index: 1;
  box-shadow: 0 4px 16px rgba(180,100,50,.4);
}
.ps-conn { width:2px; flex:1; min-height:20px; background:linear-gradient(rgba(196,149,106,.5),rgba(196,149,106,.05)); margin-top:8px; margin-bottom:8px; }
.ps-card {
  flex: 1; background: rgba(255,255,255,.042);
  border: 1px solid rgba(196,149,106,.13);
  border-radius: 20px; padding: 22px 20px 26px; margin-bottom: 16px;
  backdrop-filter: blur(3px);
}
.ps-tag { font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--clay); font-weight:600; margin-bottom:7px; }
.ps-title { font-family:'Heebo',sans-serif; font-size:18px; font-weight:800; color:var(--cream); margin-bottom:10px; }
.ps-desc { font-size:14px; color:rgba(253,246,237,.55); line-height:1.8; }
.ps-desc strong { color:var(--clay-l); font-weight:600; }

/* ── TESTIMONIALS ── */
.testi-sec { background: var(--cream); padding: 80px 0 90px; overflow: hidden; }
.testi-head { margin-bottom: 40px; }
.phones-scene { position: relative; height: 440px; width: 100%; overflow: hidden; }
.pm { position:absolute; width:108px; border-radius:16px; box-shadow:0 8px 24px rgba(60,25,8,.22),0 2px 6px rgba(60,25,8,.14),inset 0 0 0 1.5px rgba(255,255,255,.55); background:#f8f4ef; overflow:hidden; cursor:pointer; transition:transform .25s cubic-bezier(.34,1.56,.64,1),box-shadow .25s; }
.pm::after { content:''; display:block; height:8px; background:#1a1208; position:absolute; top:0; left:0; right:0; border-radius:16px 16px 0 0; }
.pm-notch { width:34px; height:4px; background:#1a1208; border-radius:0 0 4px 4px; margin:0 auto; position:relative; z-index:2; margin-top:8px; }
.pm img { width:100%; height:158px; object-fit:cover; object-position:top; display:block; }
.pm:active,.pm:hover { transform:scale(1.06) rotate(0deg) !important; box-shadow:0 16px 40px rgba(60,25,8,.35); z-index:20!important; }
.pm-0{left:5%;top:60px;transform:rotate(-12deg);z-index:3;}
.pm-1{left:18%;top:22px;transform:rotate(-6deg);z-index:4;}
.pm-2{left:33%;top:10px;transform:rotate(-1deg);z-index:5;}
.pm-3{left:50%;top:14px;transform:rotate(4deg);z-index:4;}
.pm-4{left:65%;top:26px;transform:rotate(9deg);z-index:3;}
.pm-5{left:79%;top:58px;transform:rotate(14deg);z-index:2;}
.pm-6{left:8%;top:210px;transform:rotate(-8deg);z-index:6;}
.pm-7{left:26%;top:178px;transform:rotate(-3deg);z-index:7;}
.pm-8{left:44%;top:166px;transform:rotate(2deg);z-index:8;}
.pm-9{left:62%;top:174px;transform:rotate(7deg);z-index:7;}
.pm-10{left:78%;top:204px;transform:rotate(12deg);z-index:6;}
.pm-11{left:50%;top:308px;transform:translateX(-50%) rotate(0deg);z-index:10;width:120px;}
.tap-hint { text-align:center; font-size:12px; color:var(--light); letter-spacing:.1em; padding-top:18px; }

/* ── LIGHTBOX ── */
.lb { display:none; position:fixed; inset:0; z-index:9999; background:rgba(42,21,8,.93); align-items:center; justify-content:center; backdrop-filter:blur(10px); }
.lb.open { display:flex; }
.lb-in { max-width:420px; width:90%; position:relative; animation:lbIn .3s cubic-bezier(.16,1,.3,1); max-height:90vh; overflow-y:auto; border-radius:20px; }
@keyframes lbIn { from{transform:scale(.85);opacity:0;} to{transform:scale(1);opacity:1;} }
.lb-in img { width:100%; border-radius:20px; box-shadow:0 24px 60px rgba(0,0,0,.55); display:block; height:auto; object-fit:contain; }
.lb-x { position:absolute; top:-16px; left:-16px; width:36px; height:36px; border-radius:50%; background:var(--clay); color:white; border:none; font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.lb-nav { display:flex; justify-content:center; gap:14px; margin-top:16px; }
.lb-nav button { background:rgba(255,255,255,.1); border:1px solid rgba(196,149,106,.3); color:var(--clay-p); width:40px; height:40px; border-radius:50%; font-size:22px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.lb-nav button:hover { background:rgba(196,149,106,.2); }

/* ── RESULTS ── */
.res-w { background: var(--dark); padding: 80px 0; }
.res-w h2 { color: var(--cream); }
.res-grid { display:grid; grid-template-columns:1fr; gap:13px; margin-top:10px; max-width:700px; }
.rr { font-size:16px; color:rgba(253,246,237,.7); display:flex; gap:14px; align-items:flex-start; line-height:1.6; }
.rd { width:7px; height:7px; border-radius:50%; background:var(--clay); flex-shrink:0; margin-top:8px; }

/* ── FIT ── */
.fit-bg { background: var(--sand-l); padding: 80px 0; opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.fit-bg.vis { opacity:1; transform:none; }
.fit-cols { display:grid; grid-template-columns:1fr; gap:16px; }
.fit-col { background:white; border-radius:18px; padding:24px; box-shadow:0 2px 12px var(--sh); }
.fch { font-size:14px; font-weight:700; letter-spacing:.04em; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.fit-col.yes .fch { color:#3D6B48; }
.fit-col.no .fch { color:#8B4030; }
.fr { font-size:15px; color:var(--mid); padding:8px 0; border-bottom:1px solid var(--border); line-height:1.5; }
.fr:last-child { border:none; padding-bottom:0; }

/* ── CTA ── */
.cta-w { background:linear-gradient(150deg,#1E0A03,#4A2010); padding:100px 32px; text-align:center; }
.cta-inner { max-width:700px; margin:0 auto; }
.cta-w h2 { color:var(--cream); font-size:36px; line-height:1.3; margin-bottom:12px; }
.cta-sub { font-size:16px; color:rgba(253,246,237,.42); margin-bottom:32px; }
.cta-btn { background:var(--clay); color:white; border:none; border-radius:100px; padding:18px 48px; font-family:'Heebo',sans-serif; font-size:16px; font-weight:700; cursor:pointer; letter-spacing:.05em; box-shadow:0 8px 30px rgba(180,100,50,.4); transition:transform .15s; }
.cta-btn:hover { transform:translateY(-2px); }

/* ── FORM ── */
.form-bg { background:var(--off); padding:80px 0; opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.form-bg.vis { opacity:1; transform:none; }
.form-inner { max-width:600px; }
.fg { margin-bottom:14px; }
label { display:block; font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--light); margin-bottom:6px; }
input, select { width:100%; background:white; border:1.5px solid var(--border); border-radius:12px; padding:14px 16px; font-size:15px; font-family:'Heebo',sans-serif; color:var(--text); direction:rtl; outline:none; font-weight:300; box-shadow:0 1px 4px var(--sh); transition:border-color .2s, box-shadow .2s; }
input:focus, select:focus { border-color:var(--clay); box-shadow:0 0 0 3px rgba(196,149,106,.18); }
.sub-btn { background:var(--dark); color:white; border:none; border-radius:100px; padding:16px; font-family:'Heebo',sans-serif; font-size:15px; font-weight:700; cursor:pointer; width:100%; letter-spacing:.06em; margin-top:8px; transition:background .2s; }
.sub-btn:hover { background:var(--brown); }

/* ── DETAILS ── */
.det-bg { background:var(--sand-l); padding:80px 0; opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.det-bg.vis { opacity:1; transform:none; }
.det-grid { display:grid; grid-template-columns:1fr; gap:10px; margin-top:24px; max-width:600px; }
.det-r { background:white; border-radius:14px; padding:16px 20px; display:flex; gap:14px; align-items:center; box-shadow:0 2px 10px var(--sh); }
.det-ic { width:40px; height:40px; border-radius:12px; background:var(--sand-l); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.det-svg svg { width:20px; height:20px; stroke:var(--clay); }
.det-t { font-size:14px; font-weight:700; color:var(--dark); margin-bottom:2px; }
.det-v { font-size:13px; color:var(--light); }

/* ── SOCIAL ── */
.soc-w { background:var(--dark); padding:70px 0; text-align:center; }
.soc-inner { max-width:500px; margin:0 auto; }
.soc-w h3 { font-family:'Heebo',sans-serif; font-weight:900; font-size:28px; color:var(--cream); margin-bottom:28px; }
.soc-list { display:flex; flex-direction:column; gap:12px; }
.sb { display:flex; align-items:center; justify-content:center; gap:12px; border-radius:16px; padding:16px; font-family:'Heebo',sans-serif; font-size:15px; font-weight:600; cursor:pointer; text-decoration:none; border:none; letter-spacing:.04em; transition:transform .15s; }
.sb:hover { transform:translateY(-2px); }
.sw { background:#1FAD54; color:white; }
.si { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:white; }
.sc2 { background:rgba(255,255,255,.07); color:var(--clay-p); border:1px solid rgba(196,149,106,.2); }

/* ── FOOTER ── */
footer { background:#150802; padding:36px 24px; text-align:center; }
footer img { height:60px; margin-bottom:12px; display:block; margin-inline:auto; filter:brightness(10) sepia(.5) saturate(.6) hue-rotate(-10deg); opacity:.65; }
footer p { font-size:12px; color:rgba(253,246,237,.2); letter-spacing:.06em; }

/* ═══════════════════ DESKTOP ═══════════════════ */
@media (min-width: 768px) {
  :root { --nav-h: 70px; }

  .nav-links-desktop { display: flex; }
  .nav-mobile-wrap { display: none; }
  .page-body { padding-top: var(--nav-h); }

  .hero-content { padding: 0 60px 80px; max-width: 780px; }
  .hero h1 { font-size: 58px; }
  .hero h1 .sub-line { font-size: 46px; }
  .hero-sub { font-size: 18px; }

  .thoughts-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .fit-cols { grid-template-columns: 1fr 1fr; }
  .res-grid { grid-template-columns: 1fr 1fr; }
  .det-grid { grid-template-columns: 1fr 1fr; }

  .about-wrap { grid-template-columns: 480px 1fr; min-height: 560px; }
  .about-hero-img { height: 100%; }
  .about-body { display: flex; align-items: center; }

  h2 { font-size: 46px; }
  .qt { font-size: 26px; }
  .soc-list { flex-direction: row; justify-content: center; }
  .sb { flex: 1; }

  .hero-badge { top: 48px; left: 60px; }
  .phones-scene { max-width: 900px; margin: 0 auto; }

  .proc-steps { max-width: 900px; }
  .ps-card { padding: 26px 24px 30px; }
  .ps-title { font-size: 20px; }
  .ps-desc { font-size: 15px; }

  .cta-w h2 { font-size: 48px; }

  .form-inner { max-width: 700px; }

  footer img { height: 70px; }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: 68px; }
  .hero h1 .sub-line { font-size: 54px; }
}


/* ═══ HERO DESKTOP: תמונה שמאל, טקסט ימין ═══ */
@media (min-width: 768px) {

  .hero {
    aspect-ratio: unset;
    height: max(calc(100vh - var(--nav-h)), 620px);
    display: flex;
    flex-direction: row-reverse;
  }

  .hero-img {
    position: relative;
    inset: unset;
    width: 50%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-content {
    position: relative;
    inset: unset;
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    max-width: unset;
    transform: none;
    background: #1a0a02;
    z-index: 2;
  }

  .hero-over { display: none; }
  .hero-grain { display: none; }
  .hero-orb { display: none; }
  .hero-scroll { display: none; }
  .hero-badge { display: none; }
}

/* ═══ לוגו נאב — גודל מלא, לא נחתך ═══ */
.nav-logo-wrap {
  height: 64px;
  overflow: visible;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  margin-top: 0;
  filter: brightness(6) sepia(0.3) saturate(0.8);
  opacity: 1;
}

/* ═══ פוטר — לוגו גדול ויפה ═══ */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 24px;
}

footer img {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(6) sepia(0.3) saturate(0.8);
  opacity: 0.9;
}

/* ── FORM SUCCESS ── */
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; gap: 16px; }
.fs-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--clay); color: white; font-size: 32px; display: flex; align-items: center; justify-content: center; }
.form-success h3 { font-size: 1.5rem; color: var(--cream); }
.form-success p { color: var(--muted); font-size: 0.95rem; }

/* ── FORM SUCCESS DETAILS ── */
.fs-details { background: rgba(0,0,0,.06); border-radius: 10px; padding: 12px 18px; font-size: 0.9rem; color: var(--mid); line-height: 1.9; margin-top: 4px; text-align: right; width: 100%; max-width: 300px; }
