/* ─────────────────────────────────────────────
   DESIGN SYSTEM — digitalmacha
   Brand: Emerald Green × Slate × Clean White
   Aesthetic: Refined Corporate, Trustworthy, Modern
───────────────────────────────────────────── */
:root {
  --green:    #2563eb;
  --green-d:  #1d4ed8;
  --green-l:  #dbeafe;
  --green-xl: #eff6ff;
  --slate:    #0f172a;
  --slate-m:  #1e293b;
  --slate-s:  #334155;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --border-g: rgba(37,99,235,.2);
  --white:    #ffffff;
  --off:      #f8fafc;
  --gold:     #f59e0b;
  --radius:   16px;
  --shadow:   0 4px 24px rgba(15,23,42,.08);
  --shadow-g: 0 8px 32px rgba(37,99,235,.18);
  --fh: 'Cabinet Grotesk', sans-serif;
  --fb: 'Instrument Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--slate);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.logo {
  font-family: var(--fh); font-weight: 900; font-size: 1.55rem;
  letter-spacing: -1px; color: var(--slate); text-decoration: none;
  display: flex; align-items: center; gap: 4px;
}
.logo-dot { color: var(--green); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .9rem;
  font-weight: 500; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--slate); }
.nav-links a:hover::after, .nav-links .current-menu-item > a::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-btn {
  background: var(--off); border: 1px solid var(--border);
  color: var(--muted); padding: 7px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: all .2s;
}
.lang-btn:hover { border-color: var(--green); color: var(--green); }
.nav-cta {
  background: var(--green); color: #fff;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: all .25s; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.nav-cta:hover { background: var(--green-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }

/* ── PAGE SYSTEM ── */
.page { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 3px;
  background: var(--slate); border-radius: 50px;
  padding: 5px; z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.bnav-btn {
  background: none; border: none; color: rgba(255,255,255,.5);
  padding: 9px 20px; border-radius: 50px; cursor: pointer;
  font-family: var(--fb); font-size: .8rem; font-weight: 600;
  transition: all .25s; text-decoration: none;
  display: inline-block;
}
.bnav-btn.active, .bnav-btn:hover { background: var(--green); color: #fff; }

/* ── SECTIONS ── */
section { padding: 96px 6%; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-l); color: var(--green-d);
  padding: 6px 16px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 18px;
}
h2 {
  font-family: var(--fh); font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.12;
  color: var(--slate); margin-bottom: 16px;
}
h2 .hl { color: var(--green); }
.sec-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 56px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: all .25s; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn-primary:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--slate);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: all .25s; border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-xl); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }

/* ─────────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 6% 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-decor {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.decor-blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--green-l), transparent 70%);
}
.blob1 { width: 700px; height: 700px; top: -200px; right: -150px; opacity: .6; }
.blob2 { width: 400px; height: 400px; bottom: -100px; left: -100px; opacity: .4; }
.decor-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .4;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border-g);
  background: var(--green-xl);
  padding: 8px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; color: var(--green-d);
  letter-spacing: .5px; margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
h1 {
  font-family: var(--fh); font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1.06; color: var(--slate);
  margin-bottom: 20px;
}
h1 .hl { color: var(--green); position: relative; }
h1 .hl::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 6px;
  background: var(--green-l); border-radius: 3px; z-index: -1;
}
.hero-p { color: var(--muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hstat-num { font-family: var(--fh); font-size: 2rem; font-weight: 900; color: var(--green); line-height: 1; }
.hstat-lbl { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-visual { position: relative; }
.hero-card-stack { position: relative; min-height: 460px; }
.hcard {
  position: absolute; background: var(--white);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 24px 28px; box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.hcard-main {
  width: 100%; top: 40px; left: 0;
  background: linear-gradient(135deg, var(--slate), var(--slate-m));
  border-color: transparent; color: #fff;
  animation-duration: 6s;
}
.hcard-a { width: 65%; bottom: 30px; right: -10px; animation-delay: .8s; animation-duration: 5.5s; }
.hcard-b { width: 58%; top: 0; left: -16px; animation-delay: 1.4s; animation-duration: 7s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hcard-icon { font-size: 2.2rem; margin-bottom: 12px; }
.hcard-title { font-family: var(--fh); font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.hcard-sub { font-size: .82rem; opacity: .7; }
.live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,.2); color: #93c5fd;
  padding: 5px 12px; border-radius: 50px; font-size: .72rem; font-weight: 700;
  margin-top: 14px;
}
.live-dot { width: 6px; height: 6px; background: #60a5fa; border-radius: 50%; animation: blink 1.5s infinite; }
.status-row { display: flex; justify-content: space-between; margin-top: 12px; }
.status-item { text-align: center; }
.status-n { font-family: var(--fh); font-weight: 800; font-size: 1.2rem; color: var(--green); }
.status-l { font-size: .72rem; color: var(--muted); }

/* INDUSTRIES TABS */
.industries { background: var(--off); }
.ind-tabs { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.ind-tab {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 2px solid var(--border);
  padding: 14px 24px; border-radius: 14px; cursor: pointer;
  transition: all .25s; font-weight: 600; font-size: .9rem;
  font-family: var(--fb);
}
.ind-tab:hover, .ind-tab.active {
  border-color: var(--green); background: var(--green-xl); color: var(--green-d);
}
.ind-tab.active { box-shadow: var(--shadow-g); }
.ind-icon { font-size: 1.4rem; }
.ind-content { display: none; animation: fadeIn .3s; }
.ind-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ind-text h3 { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
.ind-text p { color: var(--muted); margin-bottom: 20px; }
.ind-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ind-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem; color: var(--slate-s);
}
.ind-list li::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-l); color: var(--green-d);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; flex-shrink: 0;
}
.ind-visual {
  background: linear-gradient(135deg, var(--slate), var(--slate-m));
  border-radius: 24px; padding: 50px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; color: #fff; font-size: 5rem;
  min-height: 300px; justify-content: center;
  position: relative; overflow: hidden;
}
.ind-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.25), transparent 60%);
}
.ind-visual p { font-size: 1rem; opacity: .7; position: relative; }

/* SERVICES CARDS */
.services-sec { background: var(--white); }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.srv-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 34px 28px;
  transition: all .3s; cursor: default; position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), #60a5fa);
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.srv-card:hover { transform: translateY(-6px); border-color: var(--border-g); box-shadow: var(--shadow-g); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-xl); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 18px;
  transition: background .3s;
}
.srv-card:hover .srv-icon { background: var(--green-l); }
.srv-card h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.srv-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }
.srv-link { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-size: .82rem; font-weight: 700; margin-top: 16px; text-decoration: none; transition: gap .2s; }
.srv-link:hover { gap: 9px; }

/* WHY US */
.why-sec { background: var(--slate); color: #fff; }
.why-sec h2 { color: #fff; }
.why-sec .sec-sub { color: rgba(255,255,255,.55); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.why-cell { background: var(--slate-m); padding: 44px 40px; transition: background .3s; }
.why-cell:hover { background: rgba(37,99,235,.12); }
.why-cell-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-cell h4 { font-family: var(--fh); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.why-cell p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; }

/* PROCESS */
.process-sec { background: var(--off); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--green), #60a5fa, var(--green)); opacity: .3;
}
.proc-step { padding: 0 20px; position: relative; z-index: 1; }
.proc-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.4rem; font-weight: 900;
  color: var(--green); margin-bottom: 24px; box-shadow: var(--shadow); transition: all .3s;
}
.proc-step:hover .proc-num { background: var(--green); color: #fff; border-color: var(--green); transform: scale(1.08); }
.proc-step h4 { font-family: var(--fh); font-weight: 800; margin-bottom: 8px; }
.proc-step p { color: var(--muted); font-size: .86rem; }

/* TESTIMONIALS */
.testi-sec { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--off); border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; transition: all .3s; }
.testi-card:hover { border-color: var(--border-g); transform: translateY(-4px); box-shadow: var(--shadow-g); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-q { color: var(--slate-s); font-size: .92rem; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: #fff; }
.av-g { background: linear-gradient(135deg, var(--green), #60a5fa); }
.av-b { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.av-o { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--muted); }
.client-logos { display: flex; gap: 16px; margin-top: 56px; flex-wrap: wrap; }
.c-logo { flex: 1; min-width: 120px; background: var(--off); border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 20px; text-align: center; font-family: var(--fh); font-weight: 700; font-size: .88rem; color: var(--muted); transition: all .25s; }
.c-logo:hover { border-color: var(--green); color: var(--slate); }

/* FAQ */
.faq-sec { background: var(--off); }
.faq-list { max-width: 760px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--border-g); }
.faq-q { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: .95rem; background: var(--white); transition: background .2s; }
.faq-item.open .faq-q { background: var(--green-xl); color: var(--green-d); }
.faq-arrow { font-size: 1.2rem; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; background: var(--white); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 16px 24px 22px; color: var(--muted); font-size: .9rem; line-height: 1.75; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--green-d), var(--green)); padding: 80px 6%; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-band h2 { color: #fff; font-size: 2.2rem; max-width: 540px; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: 8px; }
.btn-white { background: #fff; color: var(--green-d); padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: .95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 88px; right: 24px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.5); text-decoration: none; z-index: 400; animation: waPulse 2.5s ease-in-out infinite; transition: transform .25s; }
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.5)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.8),0 0 0 10px rgba(37,211,102,.1)} }

/* ─────────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────────── */
.srv-page-hero { padding: 140px 6% 60px; background: linear-gradient(180deg, var(--green-xl) 0%, var(--white) 100%); text-align: center; }
.srv-page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.srv-page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.srv-detail { padding: 80px 6%; border-bottom: 1px solid var(--border); }
.srv-detail:last-of-type { border-bottom: none; }
.srv-detail:nth-child(even) { background: var(--off); }
.srv-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.srv-detail:nth-child(even) .srv-detail-inner .srv-d-visual { order: -1; }
.srv-d-tag { font-size: .75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.srv-d-text h3 { font-family: var(--fh); font-size: 2rem; font-weight: 900; letter-spacing: -.5px; margin-bottom: 14px; }
.srv-d-text p { color: var(--muted); margin-bottom: 20px; font-size: .95rem; }
.srv-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.srv-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; }
.srv-benefits li span:first-child { background: var(--green-l); color: var(--green-d); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.chip { background: var(--green-xl); border: 1px solid var(--border-g); padding: 5px 14px; border-radius: 50px; font-size: .76rem; font-weight: 600; color: var(--green-d); }
.srv-d-visual { border-radius: 24px; overflow: hidden; min-height: 320px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; background: linear-gradient(135deg, var(--slate) 0%, var(--slate-m) 100%); font-size: 5rem; position: relative; }
.srv-d-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(37,99,235,.2), transparent 60%); }
.srv-d-visual p { font-size: .95rem; color: rgba(255,255,255,.6); position: relative; z-index: 1; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-hero { padding: 140px 6% 70px; background: var(--slate); color: #fff; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 45%; background: radial-gradient(ellipse at right, rgba(37,99,235,.2), transparent 70%); }
.about-hero h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 640px; }
.about-hero p { color: rgba(255,255,255,.65); max-width: 540px; margin-top: 16px; font-size: 1.05rem; }
.about-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-img { border-radius: 24px; background: linear-gradient(135deg, var(--green-xl), var(--green-l)); border: 2px solid var(--border-g); min-height: 380px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; font-size: 5rem; position: relative; }
.story-badge { position: absolute; bottom: 24px; right: 24px; background: var(--green); color: #fff; padding: 12px 20px; border-radius: 12px; font-family: var(--fh); font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-g); }
.story-text h3 { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.story-text p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.mv-sec { background: var(--off); }
.mv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; padding: 36px; transition: all .3s; }
.mv-card:hover { border-color: var(--border-g); box-shadow: var(--shadow-g); transform: translateY(-4px); }
.mv-card-icon { font-size: 2.6rem; margin-bottom: 16px; }
.mv-card h4 { font-family: var(--fh); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.mv-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.diff-sec { background: var(--white); }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.diff-item { display: flex; gap: 20px; padding: 28px; border: 1.5px solid var(--border); border-radius: 16px; transition: all .3s; }
.diff-item:hover { border-color: var(--border-g); background: var(--green-xl); }
.diff-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-l); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.diff-item h4 { font-family: var(--fh); font-weight: 800; margin-bottom: 6px; }
.diff-item p { color: var(--muted); font-size: .87rem; }
.team-sec { background: var(--off); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; padding: 28px; text-align: center; transition: all .3s; }
.team-card:hover { border-color: var(--border-g); transform: translateY(-5px); box-shadow: var(--shadow-g); }
.team-av { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 14px; }
.team-card h4 { font-family: var(--fh); font-weight: 800; margin-bottom: 4px; }
.team-card .role { color: var(--green); font-size: .8rem; font-weight: 600; }
.team-card .bio { color: var(--muted); font-size: .8rem; margin-top: 10px; }
.cert-sec { background: var(--white); }
.cert-list { display: flex; gap: 14px; flex-wrap: wrap; }
.cert-badge { display: flex; align-items: center; gap: 10px; background: var(--off); border: 1.5px solid var(--border); padding: 14px 22px; border-radius: 12px; font-size: .88rem; font-weight: 600; transition: all .25s; }
.cert-badge:hover { border-color: var(--green); background: var(--green-xl); color: var(--green-d); }

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-hero { padding: 140px 6% 60px; background: linear-gradient(180deg, var(--green-xl) 0%, var(--white) 100%); text-align: center; }
.contact-grid { padding: 80px 6%; display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.cinfo { display: flex; flex-direction: column; gap: 28px; }
.cinfo-item { display: flex; gap: 18px; }
.cinfo-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-xl); border: 1.5px solid var(--border-g); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cinfo-item h4 { font-family: var(--fh); font-weight: 700; margin-bottom: 4px; }
.cinfo-item p { color: var(--muted); font-size: .9rem; }
.cform { background: var(--off); border: 1.5px solid var(--border); border-radius: 24px; padding: 48px; }
.cform h3 { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.fg input, .fg textarea, .fg select { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; color: var(--slate); font-family: var(--fb); font-size: .92rem; outline: none; transition: border-color .25s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); background: var(--green-xl); }
.fg textarea { resize: vertical; min-height: 110px; }
.map-box { margin: 0 6% 80px; background: var(--off); border: 1.5px solid var(--border); border-radius: 20px; min-height: 280px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--muted); }
.map-box span { font-size: 3.5rem; }

/* ── FOOTER ── */
footer { background: var(--slate); color: rgba(255,255,255,.7); padding: 64px 6% 28px; }
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.foot-brand .logo { color: #fff; }
.foot-brand p { margin-top: 12px; font-size: .88rem; max-width: 260px; color: rgba(255,255,255,.5); }
.foot-col h5 { font-family: var(--fh); font-weight: 800; color: #fff; margin-bottom: 18px; font-size: .95rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
.foot-col a:hover { color: var(--green); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner, .grid-2, .story-grid, .ind-content.active,
  .srv-detail-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-card-stack { display: none; }
  .grid-3, .srv-grid, .testi-grid, .mv-cards { grid-template-columns: 1fr 1fr; }
  .grid-4, .team-grid, .process-steps { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
}
@media (max-width: 580px) {
  section { padding: 64px 5%; }
  .grid-3, .srv-grid, .testi-grid, .mv-cards, .grid-4, .team-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { text-align: center; justify-content: center; }
}

/* ── RTL ── */
[dir="rtl"] body { font-family: 'Instrument Sans', 'Segoe UI', Tahoma, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Cabinet Grotesk', 'Segoe UI', Tahoma, sans-serif; }
[dir="rtl"] .section-label { flex-direction: row-reverse; }
[dir="rtl"] .ind-list li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .srv-benefits li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .cinfo-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .diff-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .hero-badge { flex-direction: row-reverse; }
[dir="rtl"] .btns { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
[dir="rtl"] .wa-float { right: auto; left: 24px; }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .foot-grid { direction: rtl; }
[dir="rtl"] .foot-brand p { text-align: right; }
[dir="rtl"] .logo { direction: ltr; }
