﻿/* ═══════════════════════════════════════════
   DESIGN TOKENS — Light theme, Navy accent
   Source: UX Pro Max → color: Home Services
   Style: Swiss Modernism 2.0 + Enterprise Gateway
   ═══════════════════════════════════════════ */
:root {
  /* Brand */
  --navy:        #0E1B29;
  --orange:      #F18E20;
  --orange-dark: #d97a10;

  /* UX Pro Max: Home Services palette */
  --primary:     #00B3AF;   /* group teal — only for accents/CTA */
  --primary-dk:  #008E8A;

  /* Light theme surfaces */
  --bg:          #FFFFFF;
  --bg-alt:      #E7ECF0;   /* brand light gray */
  --bg-blue:     #EFF6FF;   /* very soft blue tint */
  --card:        #FFFFFF;
  --border:      #BFDBFE;
  --border-light:#E2E8F0;

  /* Typography */
  --text:        #0E1B29;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;

  /* Layout */
  --wrap:        1600px;
  --r:           14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.6;
  font-size: 16px;
}

/* ── GROUP BANNER ── */
.group-bar {
  background: var(--navy);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.group-bar a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.group-bar a:hover { color: #fff; }
.group-bar-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  vertical-align: middle;
}
.group-bar-separator { opacity: .4; }
.group-bar-link { font-size: 12px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  position: relative;
  direction: ltr;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all .18s;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-alt); }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F18E20 0%, #FFB04D 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(241,142,32,0.28), 0 0 0 1px rgba(255,255,255,0.35) inset;
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.nav-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(241,142,32,0.34), 0 0 0 1px rgba(255,255,255,0.45) inset;
  filter: brightness(1.02);
}
.nav-call svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  color: var(--navy);
  background: var(--bg);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.nav-lang:hover {
  background: var(--bg-alt);
  border-color: var(--border);
  transform: translateY(-1px);
}
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 9px !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* ── HERO ── */
.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
}

/* Swiss grid: text right, image left */
.hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Geometric background shapes — UX Pro Max: Swiss Modernism */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--bg-blue);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(241,142,32,0.06);
  z-index: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-blue);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: 'Heebo', sans-serif;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(241,142,32,0.3);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(241,142,32,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--navy); background: var(--bg-alt); }

/* Hero image / visual panel */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(14,27,41,0.10));
}
/* Floating stat card — UX Pro Max: trust signals */
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 16px 48px rgba(14,27,41,0.13);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-1 { bottom: -20px; right: -28px; }
.hero-float-2 { top: 24px; left: -28px; }
.float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.float-num { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.float-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 24px;
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat:last-child { border-left: none; }
.stat-n {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }

/* ── SECTION SHARED ── */
section { padding: 96px 24px; }
.wrap { max-width: var(--wrap); margin: 0 auto; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  display: inline-block;
}
.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.sec-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  font-weight: 400;
}

/* ── ABOUT ── */
#about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(14,27,41,0.12);
  background: var(--navy);
}
.about-slider,
.about-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .55s ease;
}
.about-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,27,41,0.25), rgba(14,27,41,0.02) 48%);
  pointer-events: none;
}

/* Decorative accent line — Swiss Modernism */
.about-img::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 5px;
  background: linear-gradient(to left, var(--orange), var(--primary));
  z-index: 3;
}

.about-badge-wrap {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(14,27,41,0.15);
  border: 1px solid var(--border-light);
}
.about-badge-wrap strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.about-badge-wrap span { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }

.about-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 14px;
}
.about-slider-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(14,27,41,0.16);
  cursor: pointer;
  transition: transform .18s, background .18s, box-shadow .18s;
  backdrop-filter: blur(10px);
}
.about-slider-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 14px 30px rgba(14,27,41,0.18);
}
.about-slider-btn svg {
  width: 18px;
  height: 18px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.about-text p:first-of-type {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
}
.about-text p:last-child { margin-bottom: 0; }

/* ── SERVICES ── */
#services { background: var(--bg); }
.services-header { margin-bottom: 56px; }

/* UX Pro Max: Swiss Modernism bento grid */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.svc-card {
  background: var(--card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  transition: width .3s;
}
.svc-card:hover {
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(14,27,41,0.09);
  transform: translateY(-3px);
}
.svc-card:hover::after { width: 100%; }

/* Bento layout: spans matching Swiss 12-col grid */
.svc-card:nth-child(1) { grid-column: span 5; }
.svc-card:nth-child(2) { grid-column: span 7; }
.svc-card:nth-child(3) { grid-column: span 4; }
.svc-card:nth-child(4) { grid-column: span 4; }
.svc-card:nth-child(5) { grid-column: span 4; }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-blue);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; }

/* ── PROCESS ── */
#process { background: var(--bg-alt); }
.process-header { margin-bottom: 60px; }
/* Swiss grid: strict columns */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: var(--r);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
}
.step {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  transition: background .2s;
}
.step:hover { background: var(--bg-blue); }
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  /* Swiss: big numerals as design element */
}
.step:hover .step-num { color: var(--border); }
.step-line {
  width: 32px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-left p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 1.02rem;
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  transition: border-color .2s;
}
.contact-row:hover { border-color: var(--border); }
.contact-row-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-row-label { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 2px; }
.contact-row-val { font-size: .97rem; color: var(--navy); font-weight: 600; }

/* Back-to-group card */
.group-card {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.group-card-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.group-card a {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.group-card a:hover { color: #fff; }
.group-card-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .7;
}

/* Form */
.contact-form {
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 12px 48px rgba(14,27,41,0.07);
}
.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--border-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .2px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  direction: rtl;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
  background: var(--bg);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(241,142,32,0.28);
}
.form-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(241,142,32,0.35); }
.form-btn:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 27, 41, .68);
  backdrop-filter: blur(8px);
}
.modal.open { display: flex; }
.modal-panel {
  width: min(100%, 480px);
  background: var(--bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  border: 1px solid var(--border-light);
}
.modal-status {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.modal-status.success { background: rgba(33, 150, 83, .12); color: #219653; }
.modal-status.error { background: rgba(220, 53, 69, .12); color: #dc3545; }
.modal-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-panel p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
}
.modal-close {
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.modal-close:hover { background: var(--orange-dark); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 64px 24px 36px;
}
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 280px;
}
.footer-brand-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color .18s;
}
.footer-col a:hover { color: var(--orange); }
.footer-group-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-group-logo {
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--primary); text-decoration: none; font-weight: 700; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff !important;
  background: rgba(255,255,255,.04);
}
.footer-lang:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
}
.footer-bottom-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .7;
  vertical-align: middle;
}

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.sr.go { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .05s; }
.sr-d2 { transition-delay: .12s; }
.sr-d3 { transition-delay: .19s; }
.sr-d4 { transition-delay: .26s; }
.sr-d5 { transition-delay: .33s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual {
    display: block;
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .hero-img-wrap {
    max-width: 100%;
  }
  .hero-img-wrap img {
    width: 100%;
    height: auto;
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(even) { border-left: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .services-bento { grid-template-columns: 1fr; }
  .svc-card { grid-column: span 1 !important; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner {
    padding: 0 16px;
    gap: 14px;
  }
  .nav-logo { margin-left: 0; }
  .nav-logo img { height: 40px; }
  .nav-call {
    padding: 10px 14px;
    font-size: 13px;
  }
  .about-slider-controls {
    padding: 0 10px;
  }
  .about-slider-btn {
    width: 38px;
    height: 38px;
  }
  section { padding: 64px 16px; }
  .hero-inner { padding: 56px 16px 64px; }
  .contact-form { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav-call span { display: none; }
  .nav-call {
    padding: 10px;
    min-width: 42px;
    justify-content: center;
  }
}
