/* =========================================================
   אריאל יוסופוב — אתר תדמית אישי
   פלטת פסטל בהירה, RTL, אנימציות עדינות
   ========================================================= */

:root{
  --bg: #F6F8FB;
  --bg-alt: #EDF1F5;
  --ink: #1F2A36;
  --ink-soft: #55606C;
  --lavender: #C4DBF2;
  --lavender-deep: #2F6FCC;
  --peach: #CFD9E4;
  --peach-deep: #47607C;
  --mint: #C3EDE1;
  --mint-deep: #2E9E82;
  --sky: #C2E0F5;
  --hero-blue: #8CC0F0;
  --hero-indigo: #9DAEEF;
  --card-bg: #FFFFFF;
  --border: #DBE2E9;
  --shadow: 0 20px 45px -20px rgba(30, 50, 80, 0.3);
  --shadow-soft: 0 10px 30px -15px rgba(30, 50, 80, 0.2);
  --radius: 26px;
  --radius-sm: 16px;
  --ease: cubic-bezier(.22,1,.36,1);
}

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

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Heebo','Rubik',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

h1,h2,h3{ font-family:'Rubik','Heebo',sans-serif; margin:0 0 .4em; }
p{ margin:0 0 1em; color:var(--ink-soft); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.eyebrow{
  display:inline-block;
  font-weight:600;
  font-size:.85rem;
  letter-spacing:.03em;
  color:var(--lavender-deep);
  background:var(--bg-alt);
  padding:.35em 1em;
  border-radius:999px;
  margin-bottom:1em;
}

/* ---------- custom cursor ---------- */
.cursor-dot{
  position:fixed; top:0; left:0;
  width:14px; height:14px;
  border-radius:50%;
  background:var(--lavender-deep);
  pointer-events:none;
  z-index:9999;
  mix-blend-mode:multiply;
  transform:translate(-50%,-50%);
  transition:width .2s var(--ease), height .2s var(--ease), background .2s;
  opacity:0;
}
@media (hover:hover) and (pointer:fine){
  .cursor-dot{ opacity:1; }
}

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* ---------- nav ---------- */
.nav{
  position:sticky; top:0; z-index:500;
  padding:0 16px;
  transition:padding .45s var(--ease);
}
.nav.scrolled{ padding:14px 16px 0; }

.nav-inner{
  max-width:1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px;
  background:rgba(246,248,251,.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid transparent;
  border-bottom-color:var(--border);
  border-radius:0;
  transition:max-width .45s var(--ease), padding .45s var(--ease), border-radius .45s var(--ease),
             background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.nav.scrolled .nav-inner{
  max-width:980px;
  padding:10px 22px;
  border-radius:999px;
  border-color:var(--border);
  background:rgba(246,248,251,.7);
  backdrop-filter:blur(22px) saturate(1.6);
  -webkit-backdrop-filter:blur(22px) saturate(1.6);
  box-shadow:0 16px 36px -16px rgba(30,50,80,.4);
}
.logo{
  display:flex; align-items:center; gap:.55rem;
  font-weight:800; font-size:1.15rem; letter-spacing:-.01em;
}
.logo-img{ width:38px; height:38px; border-radius:50%; transition:width .35s var(--ease), height .35s var(--ease); }
.nav.scrolled .logo-img{ width:30px; height:30px; }
.logo-text .dot{ color:var(--lavender-deep); }
.nav-links{ display:flex; gap:2rem; }
.nav-links a{
  font-weight:500; font-size:.95rem; color:var(--ink-soft);
  position:relative; padding:4px 0;
  transition:color .25s;
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a::after{
  content:''; position:absolute; inset-inline-start:0; bottom:-2px;
  width:0; height:2px; background:var(--lavender-deep);
  transition:width .3s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.burger{ display:none; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9em 1.8em;
  border-radius:999px;
  font-weight:600; font-size:.98rem;
  border:none; cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change:transform;
}
.btn-primary{
  background:linear-gradient(135deg, var(--lavender-deep), var(--peach-deep));
  color:#fff;
  box-shadow:var(--shadow-soft);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.btn-ghost{
  background:var(--card-bg);
  color:var(--ink);
  border:1.5px solid var(--border);
}
.btn-ghost:hover{ transform:translateY(-3px); border-color:var(--lavender-deep); }
.btn-small{ padding:.6em 1.4em; font-size:.9rem; }

.lang-switch{
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.82rem; font-weight:700; letter-spacing:.02em;
  padding:.42em .95em .42em .7em; border-radius:999px;
  background:linear-gradient(135deg, var(--lavender), var(--sky));
  color:var(--ink);
  box-shadow:var(--shadow-soft);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lang-switch svg{ width:16px; height:16px; flex:0 0 auto; }
.lang-switch:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  width:100%;
  padding:7rem 24px 4rem;
  overflow:hidden;
  background:linear-gradient(120deg, var(--sky) 0%, var(--lavender) 50%, var(--sky) 100%);
}
.hero-container{
  position:relative; z-index:2;
  max-width:1180px; width:100%;
  margin:0 auto;
}
.hero-inner{ max-width:820px; width:100%; }

.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(50px);
  opacity:.55;
  z-index:0;
  animation:float 14s ease-in-out infinite;
}
.blob-1{ width:420px; height:420px; background:var(--lavender); top:-160px; left:-120px; }
.blob-2{ width:340px; height:340px; background:var(--peach); top:120px; right:-140px; animation-delay:-4s; }
.blob-3{ width:260px; height:260px; background:var(--mint); bottom:-120px; left:30%; animation-delay:-8s; }
.blob-4{ width:380px; height:380px; background:var(--sky); top:-140px; right:-100px; opacity:.5; filter:blur(60px); animation:float 16s ease-in-out infinite; }

@keyframes float{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(20px,-30px) scale(1.08); }
}

.eyebrow{ display:inline-block; }
.hero h1{
  font-size:clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight:900;
  line-height:1.12;
  letter-spacing:-.02em;
}
.highlight{
  background:linear-gradient(135deg, var(--lavender-deep), var(--peach-deep));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-sub{
  font-size:clamp(1.05rem, 2vw, 1.35rem);
  font-weight:500;
  color:var(--ink-soft);
  max-width:640px;
}
.hero-text{
  font-size:1.05rem;
  max-width:640px;
}
.hero-actions{ display:flex; gap:1rem; flex-wrap:wrap; margin:2rem 0 3rem; }

.stats{
  display:flex; flex-wrap:wrap; gap:2.5rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
}
.stat{ display:flex; flex-direction:column; gap:.2rem; }
.stat-num{ font-size:2rem; font-weight:800; color:var(--ink); }
.stat-label{ font-size:.85rem; color:var(--ink-soft); }

.scroll-hint{
  position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid var(--lavender-deep);
  border-radius:20px; display:flex; justify-content:center; padding-top:8px;
  opacity:.6;
}
.scroll-hint span{
  width:4px; height:8px; border-radius:2px; background:var(--lavender-deep);
  animation:scrollhint 1.6s ease-in-out infinite;
}
@keyframes scrollhint{
  0%{ opacity:1; transform:translateY(0); }
  100%{ opacity:0; transform:translateY(12px); }
}

/* ---------- section shared ---------- */
section{ padding:6rem 24px; max-width:1180px; margin:0 auto; position:relative; }
.section-head{ max-width:680px; margin:0 auto 3.5rem; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem, 3.4vw, 2.6rem); font-weight:800; letter-spacing:-.01em; }
.section-text{ font-size:1.05rem; }

/* ---------- about ---------- */
.about-body{
  max-width:720px; margin:0 auto 3rem; text-align:center;
  font-size:1.05rem;
}
.about-body p{ margin-bottom:1rem; }

/* ---------- services cards ---------- */
.cards{ display:grid; gap:1.6rem; }
.services-cards, .about-cards{ grid-template-columns:repeat(3, 1fr); }

.card{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2.4rem 2rem;
  box-shadow:var(--shadow-soft);
  transition:transform .1s linear, box-shadow .35s var(--ease);
}
.card:hover{ box-shadow:var(--shadow); }
.card-icon{
  width:56px; height:56px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--lavender), var(--sky));
  color:var(--ink);
  margin-bottom:1.4rem;
}
.card-icon svg{ width:26px; height:26px; }
.card h3{ font-size:1.25rem; font-weight:700; }
.card p{ font-size:.95rem; margin:0; }
.card-time{
  display:inline-block;
  margin-top:1.1rem;
  padding:.3em .9em;
  border-radius:999px;
  font-size:.8rem; font-weight:700;
  color:var(--lavender-deep);
  background:var(--bg-alt);
}

/* ---------- process ---------- */
.steps{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:1.6rem;
  position:relative;
}
.steps::before{
  content:'';
  position:absolute; top:22px; right:12.5%; left:12.5%;
  height:2px;
  background:linear-gradient(90deg, var(--lavender-deep), var(--peach-deep));
  opacity:.35; z-index:0;
}
.step{
  position:relative; z-index:1;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem 1.6rem;
  box-shadow:var(--shadow-soft);
}
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg, var(--lavender-deep), var(--peach-deep));
  color:#fff; font-weight:800; font-size:.95rem;
  margin-bottom:1rem;
}
.step h3{ font-size:1.1rem; font-weight:700; }
.step p{ font-size:.9rem; margin:0; }

/* ---------- experience / comparison table ---------- */
.experience{ background:var(--bg-alt); border-radius:40px; }

.compare-table{
  max-width:760px; margin:0 auto;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.compare-head, .compare-row{
  display:grid;
  grid-template-columns:1fr 110px 110px;
  align-items:center;
  gap:1rem;
  padding:1rem 1.6rem;
}
.compare-head{
  background:var(--bg-alt);
  font-weight:700; font-size:.9rem;
  color:var(--ink-soft);
}
.compare-head span:last-child{ color:var(--lavender-deep); }
.compare-row{ border-top:1px solid var(--border); }
.compare-row:nth-child(even){ background:var(--bg-alt); }
.compare-label-text{ font-size:.95rem; font-weight:500; }
.cell{
  justify-self:center;
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:50%;
  font-size:.95rem; font-weight:700;
}
.cell-x{ background:#F1E4E4; color:#B45252; }
.cell-check{ background:var(--bg-alt); color:var(--mint-deep); }
.compare-head span:nth-child(2), .compare-head span:nth-child(3){ text-align:center; }

/* ---------- portfolio carousel ---------- */
.portfolio-cards{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  scroll-behavior:smooth;
  cursor:grab;
  padding-bottom:.6rem;
  margin-bottom:-.6rem;
  -ms-overflow-style:none;
  scrollbar-width:none;
  user-select:none;
}
.portfolio-cards::-webkit-scrollbar{ display:none; }
.portfolio-cards.dragging{ cursor:grabbing; scroll-snap-type:none; }
.p-card{
  display:block;
  flex:0 0 auto;
  width:340px;
  scroll-snap-align:start;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.p-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.p-visual{
  position:relative;
  height:170px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.6rem; color:var(--ink);
  overflow:hidden;
}
.p-visual svg{ width:38px; height:38px; opacity:.85; transition:transform .5s var(--ease); }
.p-card:hover .p-visual svg{ transform:scale(1.15) rotate(-4deg); }
.p-name{ font-size:.85rem; font-weight:600; letter-spacing:.02em; opacity:.85; }

.p-visual.p-photo{
  align-items:flex-start; justify-content:flex-end;
  padding:.9rem 1.1rem;
}
.p-photo-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:top center;
  transition:transform .6s var(--ease), opacity .6s var(--ease);
}
.p-card:hover .p-photo-img{ transform:scale(1.08); }
.p-photo-img-alt{ opacity:0; }
.p-card:hover .p-photo-img-alt{ opacity:1; }
.p-visual.p-photo::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(12,18,28,.78), rgba(12,18,28,0) 58%);
}
.p-visual.p-photo .p-name{ position:relative; z-index:1; color:#fff; opacity:1; }
.grad-1{ background:linear-gradient(135deg, var(--lavender), var(--sky)); }

.p-info{ padding:1.4rem 1.6rem 1.6rem; }
.p-info h3{ font-size:1.1rem; font-weight:700; }
.p-info p{ font-size:.9rem; margin:0 0 .8rem; }
.p-link{ font-size:.85rem; font-weight:700; color:var(--lavender-deep); }

/* ---------- faq ---------- */
.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:1rem; }
.faq-item{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:1.3rem 1.6rem;
  box-shadow:var(--shadow-soft);
}
.faq-item summary{
  cursor:pointer;
  font-weight:700;
  font-size:1.02rem;
  color:var(--ink);
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+';
  flex:0 0 auto;
  font-size:1.3rem;
  font-weight:400;
  color:var(--lavender-deep);
  transition:transform .3s var(--ease);
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ margin:.9rem 0 0; font-size:.95rem; }

/* ---------- contact page ---------- */
.contact-page{ padding-bottom:3rem; }
.contact-inner{ max-width:640px; margin:0 auto; text-align:center; position:relative; z-index:2; }
.contact-form{
  margin-top:2.4rem;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2.2rem;
  box-shadow:var(--shadow);
  text-align:start;
  display:flex; flex-direction:column; gap:1.2rem;
}
.field{ display:flex; flex-direction:column; gap:.4rem; }
.field label{ font-size:.88rem; font-weight:600; color:var(--ink-soft); }
.field input, .field select{
  padding:.85em 1em;
  border-radius:12px;
  border:1.5px solid var(--border);
  background:var(--bg);
  font-family:inherit; font-size:1rem; color:var(--ink);
  transition:border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus{
  outline:none; border-color:var(--lavender-deep);
  box-shadow:0 0 0 4px rgba(47,111,204,.18);
}
.btn-submit{ width:100%; margin-top:.4rem; }
.form-msg{
  margin:0; font-size:.9rem; font-weight:600; min-height:1.2em;
  color:var(--mint-deep);
}
.form-msg.error{ color:#E0687A; }

/* ---------- cta banner ---------- */
.cta-banner{
  position:relative;
  max-width:none;
  background:linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-radius:40px;
  overflow:hidden;
}
.cta-banner-inner{
  max-width:640px; margin:0 auto; text-align:center;
  position:relative; z-index:2;
}
.cta-banner-inner .btn{ margin-top:1rem; }

/* ---------- site footer ---------- */
.site-footer{ max-width:none; padding:0; margin-top:2rem; }
.footer-legal{
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  padding:1.6rem 24px 0; font-size:.82rem; color:var(--ink-soft);
}
.footer-legal a{ color:var(--ink-soft); transition:color .2s; }
.footer-legal a:hover{ color:var(--lavender-deep); }
.footer-dot{ opacity:.5; }
.footer-bottom{
  padding:1rem 24px 2.4rem;
  display:flex; align-items:center; justify-content:center; gap:.7rem;
  text-align:center; font-size:.85rem; color:var(--ink-soft);
  max-width:1180px; margin:0 auto;
}
.footer-logo{ width:30px; height:30px; border-radius:50%; }

/* ---------- direct contact line ---------- */
.direct-contact{
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  flex-wrap:wrap;
  margin-top:1.2rem; font-size:.95rem; font-weight:600;
}
.direct-contact a{ color:var(--lavender-deep); }
.direct-contact a:hover{ text-decoration:underline; }

/* ---------- section "read more" links ---------- */
.section-more{ text-align:center; margin-top:2.5rem; }
.section-more a{
  font-weight:700; font-size:.95rem; color:var(--lavender-deep);
}
.section-more a:hover{ text-decoration:underline; }

/* ---------- active nav link ---------- */
.nav-links a.active{ color:var(--ink); }
.nav-links a.active::after{ width:100%; }

/* ---------- legal pages ---------- */
.legal-page{ max-width:820px; }
.legal-body h3{
  font-size:1.15rem; font-weight:700; margin:2.2rem 0 .6rem;
  color:var(--ink);
}
.legal-body h3:first-child{ margin-top:0; }
.legal-body p{ font-size:.98rem; }
.legal-body a{ color:var(--lavender-deep); }
.legal-body a:hover{ text-decoration:underline; }
.article-page{ max-width:760px; margin:0 auto; }

/* ---------- blog ---------- */
.blog-grid{
  max-width:900px; margin:0 auto;
  display:grid; grid-template-columns:repeat(2, 1fr); gap:1.6rem;
}
.blog-card{
  display:block;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow-soft);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.blog-card-time{
  display:inline-block;
  font-size:.78rem; font-weight:700; color:var(--lavender-deep);
  background:var(--bg-alt); padding:.3em .8em; border-radius:999px;
  margin-bottom:1rem;
}
.blog-card h3{ font-size:1.15rem; font-weight:700; margin:0 0 .6rem; }
.blog-card p{ font-size:.92rem; margin:0 0 1rem; }

/* ---------- whatsapp float ---------- */
.whatsapp-float{
  position:fixed; bottom:24px; right:24px; z-index:600;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px -10px rgba(30,50,80,.5);
  transition:transform .3s var(--ease);
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:30px; height:30px; }

/* ---------- accessibility widget ---------- */
.a11y-toggle{
  position:fixed; bottom:24px; left:24px; z-index:600;
  width:52px; height:52px; border-radius:50%;
  background:var(--lavender-deep); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px -10px rgba(30,50,80,.5);
  transition:transform .3s var(--ease);
}
.a11y-toggle:hover{ transform:scale(1.08); }
.a11y-toggle svg{ width:26px; height:26px; }

.a11y-panel{
  position:fixed; bottom:88px; left:24px; z-index:601;
  width:270px;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow);
  padding:1.1rem;
  display:flex; flex-direction:column; gap:.7rem;
}
.a11y-panel[hidden]{ display:none; }
.a11y-head{
  display:flex; align-items:center; justify-content:space-between;
  font-weight:700; padding-bottom:.6rem; border-bottom:1px solid var(--border);
}
.a11y-close{ background:none; border:none; cursor:pointer; font-size:1rem; color:var(--ink-soft); }
.a11y-row{ display:flex; align-items:center; justify-content:space-between; font-size:.9rem; }
.a11y-btns{ display:flex; gap:.3rem; }
.a11y-btns button{
  width:30px; height:30px; border-radius:8px; border:1px solid var(--border);
  background:var(--bg-alt); cursor:pointer; font-size:.8rem; font-weight:700;
}
.a11y-option{
  text-align:start; padding:.6em .8em; border-radius:10px;
  border:1px solid var(--border); background:var(--bg-alt);
  cursor:pointer; font-size:.88rem; font-family:inherit; color:var(--ink);
}
.a11y-option.active{ background:var(--lavender-deep); color:#fff; border-color:var(--lavender-deep); }
.a11y-statement{
  text-align:center; font-size:.82rem; margin-top:.3rem;
  color:var(--lavender-deep);
}

/* accessibility states applied to <html> */
html.a11y-contrast{ filter:contrast(1.25) saturate(1.15); }
html.a11y-underline a{ text-decoration:underline !important; }
html.a11y-motion *{ animation:none !important; transition:none !important; }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .services-cards, .about-cards{ grid-template-columns:repeat(2, 1fr); }
  .steps{ grid-template-columns:repeat(2, 1fr); }
  .steps::before{ display:none; }
}
@media (max-width: 720px){
  .nav-links{
    position:fixed; inset:64px 0 auto 0; background:var(--bg);
    flex-direction:column; padding:1.5rem 24px; gap:1rem;
    border-bottom:1px solid var(--border);
    transform:translateY(-120%); opacity:0;
    transition:transform .35s var(--ease), opacity .35s var(--ease);
  }
  .nav-links.open{ transform:translateY(0); opacity:1; }
  .nav .btn-small{ display:none; }
  .burger{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:34px; height:34px; background:none; border:none; cursor:pointer;
  }
  .burger span{ height:2px; background:var(--ink); border-radius:2px; transition:transform .3s, opacity .3s; }
  .services-cards, .about-cards{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .stats{ gap:1.6rem; }
  section{ padding:4rem 20px; }
  .hero{ padding:6.5rem 20px 4rem; }
}
