/* ═══════════════════════════════════════════════
   MINA GROUP MAKINA — Professional Industrial
   ═══════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:    #080808;
  --c900:     #141414;
  --c800:     #222222;
  --c700:     #3C3C3C;
  --c500:     #717171;
  --c400:     #9A9A9A;
  --c200:     #CBCBC8;
  --c100:     #E4E3E0;
  --c50:      #F3F2EF;
  --white:    #FFFFFF;
  --accent:   #C43B00;
  --accent-h: #9E2E00;
  --accent-l: #D95010;

  --nav-h: 76px;
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --max: 1320px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--c900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] { direction: rtl; }
[lang="ar"] * { font-family: 'Segoe UI', 'Arial', sans-serif; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c100); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── LAYOUT ── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

.section      { padding: 96px 0; }
.section-sm   { padding: 60px 0; }
.section-dark { background: var(--black); }
.section-tint { background: var(--c50); }

.section-head        { margin-bottom: 64px; }
.section-head .label { display: block; margin-bottom: 14px; }
.section-head p      { margin-top: 14px; max-width: 520px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}

.t-xl  { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
.t-h1  { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.t-h2  { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.t-h3  { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.body-lg { font-size: 18px; line-height: 1.75; color: var(--c700); }
.body-md { font-size: 15px; line-height: 1.75; color: var(--c700); }
.body-sm { font-size: 13px; line-height: 1.6; color: var(--c500); }

em-acc { font-style: normal; color: var(--accent); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.22s var(--ease);
  border-radius: 0;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
[dir="rtl"] .btn:hover svg { transform: translateX(-3px) scaleX(-1); }

.btn-primary  { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-h); }

.btn-dark  { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--c800); }

.btn-outline {
  border: 1.5px solid var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-w {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-outline-w:hover { background: var(--white); color: var(--black); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.nav-light {
  background: var(--white);
  border-color: var(--c100);
}
.nav.nav-dark { background: transparent; }
.nav.nav-scrolled {
  background: var(--white) !important;
  border-color: var(--c100) !important;
}

.nav__wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 20px; height: 20px; fill: var(--white); }
.nav__logo-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--black);
}
.nav__logo-text small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c500);
}
.nav-dark .nav__logo-text          { color: var(--white); }
.nav-dark .nav__logo-text small    { color: rgba(255,255,255,0.4); }
.nav-scrolled .nav__logo-text      { color: var(--black) !important; }
.nav-scrolled .nav__logo-text small{ color: var(--c500) !important; }

/* Nav links */
.nav__links { display: flex; align-items: center; }
.nav__link {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c700);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav__link:hover { color: var(--black); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--accent); }

.nav-dark .nav__link        { color: rgba(255,255,255,0.6); }
.nav-dark .nav__link:hover  { color: var(--white); }
.nav-scrolled .nav__link    { color: var(--c700) !important; }

/* Nav right */
.nav__right { display: flex; align-items: center; gap: 12px; }

/* Language selector */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c700);
  border: 1px solid var(--c200);
  transition: all 0.2s;
}
.lang__btn svg { width: 14px; height: 14px; }
.lang__btn:hover { border-color: var(--accent); color: var(--accent); }
.nav-dark .lang__btn        { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
.nav-scrolled .lang__btn    { color: var(--c700) !important; border-color: var(--c200) !important; }

.lang__dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white);
  border: 1px solid var(--c100);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 170px;
  z-index: 200;
}
[dir="rtl"] .lang__dropdown { right: auto; left: 0; }
.lang__dropdown.open { display: block; }

.lang__opt {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--c700);
  border: none; background: none;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}
[dir="rtl"] .lang__opt { text-align: right; }
.lang__opt:hover { background: var(--c50); }
.lang__opt.active { color: var(--accent); font-weight: 700; }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--black);
  transition: all 0.25s;
}
.nav-dark .nav__burger span    { background: var(--white); }
.nav-scrolled .nav__burger span{ background: var(--black) !important; }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--c100);
  padding: 16px 20px 24px;
  z-index: 99;
}
.nav__mobile.open { display: block; }

.nav__m-link {
  display: block; padding: 13px 0;
  border-bottom: 1px solid var(--c100);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c800);
}
.nav__m-link.active { color: var(--accent); }
.nav__m-link:last-of-type { border-bottom: none; }

.nav__m-langs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--c100);
}
.nav__m-lang {
  padding: 6px 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c500); border: 1px solid var(--c200);
  background: none; cursor: pointer;
  transition: all 0.18s;
}
.nav__m-lang:hover, .nav__m-lang.active {
  border-color: var(--accent); color: var(--accent);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.04);
  transition: transform 6s ease, opacity 1.2s ease;
}
.hero.loaded .hero__bg { transform: scale(1); opacity: 0.38; }

.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.45) 60%, rgba(8,8,8,0.2) 100%);
}
[dir="rtl"] .hero__shade {
  background: linear-gradient(260deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.45) 60%, rgba(8,8,8,0.2) 100%);
}

.hero__body {
  position: relative; z-index: 2;
  padding-top: var(--nav-h);
  max-width: 680px;
}

.hero__kicker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero__kicker-line { width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }
.hero__kicker span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__title { color: var(--white); margin-bottom: 22px; }
.hero__title span { color: var(--accent); }

.hero__desc {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 500px; margin-bottom: 40px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; opacity: 0.4;
  animation: bob 2.2s ease infinite;
}
.hero__scroll span {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
}
.hero__scroll svg { width: 20px; height: 20px; color: var(--white); }
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── PAGE HERO (sub pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--c50);
  border-bottom: 1px solid var(--c100);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -80px; bottom: -80px;
  width: 400px; height: 400px;
  border: 1px solid var(--c100);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .label { display: block; margin-bottom: 14px; }
.page-hero__title { margin-bottom: 18px; }
.page-hero__desc { max-width: 540px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--black); }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat {
  padding: 40px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: clamp(2.4rem,4vw,3.8rem);
  font-weight: 900; letter-spacing: -0.05em;
  line-height: 1; color: var(--accent);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── SERVICE GRID ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--c100);
  border: 1px solid var(--c100);
}
.svc-card {
  background: var(--white); padding: 48px 40px;
  transition: background 0.2s;
  position: relative;
}
.svc-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover { background: var(--c50); }
.svc-card:hover::before { transform: scaleY(1); }

.svc-card__num {
  font-size: 72px; font-weight: 900;
  color: var(--c100); line-height: 1;
  letter-spacing: -0.05em; margin-bottom: -16px;
}
.svc-card__icon {
  width: 48px; height: 48px;
  color: var(--accent); margin-bottom: 20px;
}
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-card__title {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 10px;
}
.svc-card__desc {
  font-size: 14px; line-height: 1.75; color: var(--c500);
  margin-bottom: 24px;
}
.svc-card__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.svc-card__more svg { width: 14px; height: 14px; }
.svc-card__more:hover { gap: 12px; }

/* ── PRODUCT GRID ── */
.prod-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--c100);
  border: 1px solid var(--c100);
}
.prod-card {
  background: var(--white); overflow: hidden;
  transition: all 0.28s var(--ease);
}
.prod-card:hover { background: var(--c50); }

.prod-card__img {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--c100); position: relative;
}
.prod-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.prod-card:hover .prod-card__img img { transform: scale(1.05); }

.prod-card__body { padding: 28px 28px 32px; border-top: 1px solid var(--c100); }
.prod-card__cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.prod-card__name {
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 8px;
}
.prod-card__desc {
  font-size: 13px; color: var(--c500);
  line-height: 1.6; margin-bottom: 22px;
}
.prod-card__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c700);
  border-bottom: 1px solid var(--c200);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.prod-card__cta svg { width: 12px; height: 12px; }
.prod-card__cta:hover { color: var(--accent); border-color: var(--accent); }

/* ── SPLIT ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.split-r > *:first-child { order: 2; }
.split-r > *:last-child  { order: 1; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-r > * { order: unset; }
}

.split__img {
  overflow: hidden; background: var(--c100);
  aspect-ratio: 4/5; position: relative;
}
.split__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.split__img:hover img { transform: scale(1.04); }

.split__tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white);
  padding: 8px 16px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black);
}
[dir="rtl"] .split__tag { left: auto; right: 24px; }

/* ── FEATURES ── */
.feat-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
}
.feat {
  padding: 32px;
  border-right: 1px solid var(--c100);
  border-bottom: 1px solid var(--c100);
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.2s;
}
.feat:hover { background: var(--c50); }
.feat:nth-child(2n) { border-right: none; }
.feat:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat { border-right: none; }
  .feat:nth-last-child(-n+2) { border-bottom: 1px solid var(--c100); }
  .feat:last-child { border-bottom: none; }
}

.feat__icon { width: 42px; height: 42px; flex-shrink: 0; color: var(--accent); }
.feat__icon svg { width: 100%; height: 100%; }
.feat__title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.feat__desc  { font-size: 13px; color: var(--c500); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-band { background: var(--accent); padding: 80px 0; }
.cta-band__in {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-band__title {
  color: var(--white);
  font-size: clamp(1.5rem,2.5vw,2.2rem);
  max-width: 520px;
}
.cta-band__btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── PROCESS ── */
.process { counter-reset: step; }
.process__item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--c100);
  align-items: flex-start;
}
.process__item:last-child { border-bottom: none; }
.process__num {
  font-size: 2.4rem; font-weight: 900;
  color: var(--c100); letter-spacing: -0.05em; line-height: 1;
}
.process__title { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.process__desc  { font-size: 14px; color: var(--c500); line-height: 1.7; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 2px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 10px 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c500); border: 1px solid var(--c200);
  background: none; cursor: pointer;
  transition: all 0.18s;
}
.filter-tab:hover { border-color: var(--c700); color: var(--c700); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ── CONTACT ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full  { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c700);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--c200);
  background: var(--white);
  color: var(--black); font-size: 15px;
  transition: border-color 0.2s; outline: none;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.c-info { display: flex; flex-direction: column; gap: 20px; }
.c-info__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--c50);
  border: 1px solid var(--c100);
}
.c-info__icon { width: 38px; height: 38px; flex-shrink: 0; color: var(--accent); padding: 7px; background: rgba(196,59,0,0.07); }
.c-info__icon svg { width: 100%; height: 100%; }
.c-info__label { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c400); margin-bottom: 4px; }
.c-info__val   { font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.5; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 80px 0 0; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.3);
  margin-top: 18px; max-width: 240px;
}
.footer__socials { display: flex; gap: 8px; margin-top: 28px; }
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); transition: all 0.2s;
}
.footer__social svg { width: 15px; height: 15px; }
.footer__social:hover { border-color: var(--accent); color: var(--accent); }

.footer__col-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__link:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.18); }

/* ── WHATSAPP ── */
.wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
}
[dir="rtl"] .wa { right: auto; left: 28px; }
.wa__btn {
  width: 52px; height: 52px; background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3.5s ease infinite;
}
.wa__btn:hover { transform: scale(1.1); animation: none; }
.wa__btn svg { width: 26px; height: 26px; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.28); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 40px; }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 40px; }
.timeline::before {
  content: ''; position: absolute;
  left: 8px; top: 0; bottom: 0; width: 2px;
  background: var(--c100);
}
[dir="rtl"] .timeline::before { left: auto; right: 8px; }
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item::before {
  content: '';
  position: absolute; left: -36px; top: 4px;
  width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
}
[dir="rtl"] .timeline__item::before { left: auto; right: -36px; }
.timeline__year {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.timeline__title { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.timeline__desc  { font-size: 14px; color: var(--c500); line-height: 1.7; }

/* ── CERT ROW ── */
.cert-row {
  display: flex; gap: 0;
  border: 1px solid var(--c100);
  flex-wrap: wrap;
}
.cert-item {
  flex: 1; min-width: 160px;
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--c100);
  transition: background 0.2s;
}
.cert-item:last-child { border-right: none; }
.cert-item:hover { background: var(--c50); }
.cert-item__icon { width: 36px; height: 36px; color: var(--accent); margin: 0 auto 12px; }
.cert-item__icon svg { width: 100%; height: 100%; }
.cert-item__title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.cert-item__sub   { font-size: 11px; color: var(--c400); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stat:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .svc-grid   { grid-template-columns: 1fr 1fr; }
  .prod-grid  { grid-template-columns: repeat(2,1fr); }
  .footer__top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__right .lang { display: none; }
  .nav__burger { display: flex; }
  .svc-grid    { grid-template-columns: 1fr; }
  .prod-grid   { grid-template-columns: 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .cta-band__in{ flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .section  { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__btns  { flex-direction: column; }
  .btn         { justify-content: center; }
  .process__item { grid-template-columns: 1fr; }
}
