@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Tajawal:wght@400;500;700&display=swap");

:root {
  --bg: #030303;
  --bg-elevated: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f8f8f2;
  --muted: #a8a8a8;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --container: min(1220px, calc(100% - 2rem));
  --font-en: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Tajawal", "Noto Sans Arabic", "Alexandria", "Thmanyah", sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[dir="rtl"] { direction: rtl; }
body {
  margin: 0;
  font-family: var(--font-en);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

body[dir="rtl"] {
  font-family: var(--font-ar);
}

body[dir="rtl"] .section-title,
body[dir="rtl"] .hero h1 {
  line-height: 1.2;
  letter-spacing: -0.01em;
}

body[dir="rtl"] p,
body[dir="rtl"] li,
body[dir="rtl"] .section-copy,
body[dir="rtl"] .card p,
body[dir="rtl"] .card li {
  line-height: 1.8;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}
body::before { top: -7rem; right: -6rem; background: #ffffff; }
body::after { left: -6rem; bottom: -8rem; background: #b9b9b9; }
body[dir="rtl"] .site-header__inner,
body[dir="rtl"] .nav-links,
body[dir="rtl"] .header-actions,
body[dir="rtl"] .hero__actions,
body[dir="rtl"] .hero__meta,
body[dir="rtl"] .trust-bar,
body[dir="rtl"] .filter-group,
body[dir="rtl"] .newsletter,
body[dir="rtl"] .footer__top {
  flex-direction: row-reverse;
}
body[dir="rtl"] .hero__actions,
body[dir="rtl"] .hero__meta,
body[dir="rtl"] .trust-bar,
body[dir="rtl"] .filter-group,
body[dir="rtl"] .newsletter {
  justify-content: flex-end;
}
body[dir="rtl"] .eyebrow::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
}
body[dir="rtl"] .process-item::after {
  right: auto;
  left: -0.7rem;
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 7rem 0; position: relative; }
.section + .section { border-top: 1px solid rgba(255,255,255,0.04); }
.section-heading { margin-bottom: 2.2rem; max-width: 760px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.25vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 0.9rem;
}
.section-copy {
  color: var(--muted);
  margin: 0;
  font-size: 1.03rem;
  max-width: 700px;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(140deg, #060606, #111111);
  display: grid;
  place-items: center;
  z-index: 3000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader__ring {
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255,255,255,0.16);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0.05) 45%, transparent 74%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  backdrop-filter: blur(24px);
  background: rgba(3, 3, 3, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0.35rem;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.lang-switcher {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); transform: translateY(-1px); }
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  color: var(--text);
}

.hero {
  padding: 6.5rem 0 4.5rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
}
.hero h1 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 0 0 1.1rem;
  max-width: 760px;
}
.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(140deg, #fefefe, #dfdfdf);
  color: #050505;
  box-shadow: 0 14px 40px rgba(255,255,255,0.16);
}
.btn--secondary {
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero__visual {
  position: relative;
  padding: 1rem;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.46;
  z-index: 0;
}
.hero__visual::before { top: -2.4rem; left: -2rem; background: #ffffff; }
.hero__visual::after { bottom: -2rem; right: -2rem; background: #8f8f8f; }
.hero__visual img { position: relative; z-index: 1; border-radius: 24px; }

.trust-bar,
.stats-grid,
.service-grid,
.project-grid,
.testimonial-grid,
.pricing-grid,
.blog-grid,
.contact-grid,
.about-grid,
.value-grid,
.timeline-grid,
.faq-list { display: grid; gap: 1.25rem; }
.trust-bar {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.trust-pill {
  padding: 0.8rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.glass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 35%, rgba(255,255,255,0.04));
  pointer-events: none;
  opacity: 0.9;
}
.glass-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}
.card { padding: 1.45rem; position: relative; z-index: 1; }
.card__icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}
.card h3, .card h4 {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  font-family: "Manrope", "Inter", sans-serif;
}
.card p, .card li { color: var(--muted); }

.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 1.6rem; }
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 2.2rem; margin-bottom: 0.2rem; font-family: "Manrope", "Inter", sans-serif; }

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid .card { min-height: 270px; }
.service-grid .card ul { padding-left: 1rem; display: grid; gap: 0.35rem; }

.process-list { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 2rem; }
.process-item { position: relative; padding: 1.25rem; }
.process-item::after {
  content: "";
  position: absolute;
  top: 1.9rem;
  right: -0.7rem;
  width: 1rem;
  height: 1px;
  background: rgba(255,255,255,0.16);
}
.process-item:last-child::after { display: none; }

.project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-card { overflow: hidden; padding: 0; }
.project-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.project-card__body { padding: 1.2rem; position: relative; z-index: 1; }
.project-card__meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.86rem; margin-bottom: 0.5rem; }
.project-card .btn { margin-top: 1rem; }

.filter-group { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.5rem 0 2rem; }
.filter-chip {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.filter-chip.active, .filter-chip:hover {
  background: #fafafa;
  color: #040404;
  transform: translateY(-1px);
}
.project-card.is-hidden { display: none; }

.tech-list { display: flex; flex-wrap: wrap; gap: 0.84rem; margin-top: 1.4rem; }
.tag {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}

.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-mark { font-size: 2.3rem; line-height: 1; color: rgba(255,255,255,0.3); }
.person { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; }
.person__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { padding: 1.5rem; position: relative; }
.price-card--featured {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-6px);
}
.price-card__price {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0.55rem 0 1rem;
  font-family: "Manrope", "Inter", sans-serif;
}
.price-card ul { padding-left: 1rem; display: grid; gap: 0.45rem; color: var(--muted); }
.price-card .btn { margin-top: 1rem; width: 100%; }

.table-wrap { overflow-x: auto; margin-top: 1.25rem; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
th { color: var(--text); }
td:first-child { color: var(--text); }

.faq-list { margin-top: 1.6rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.faq-item button {
  width: 100%; padding: 1rem 1.2rem;
  background: transparent; border: 0; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
}
.faq-item__answer { display: none; padding: 0 1.2rem 1rem; color: var(--muted); }
.faq-item.active .faq-item__answer { display: block; }
.faq-item .icon { transition: transform 0.2s ease; }
.faq-item.active .icon { transform: rotate(45deg); }

.contact-grid { grid-template-columns: 1fr 1fr; }
.form-group { display: grid; gap: 0.42rem; margin-bottom: 1rem; }
label { color: var(--text); font-size: 0.95rem; }
input, textarea, select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  color: var(--text);
  box-sizing: border-box;
  line-height: 1.4;
  min-height: 3rem;
  width: 100%;
  display: block;
  vertical-align: middle;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
input::placeholder, textarea::placeholder { color: #8d8d8d; }
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-block: 0.92rem;
  padding-inline: 1.1rem;
}
.field-message {
  color: #f1b0b0;
  font-size: 0.88rem;
  min-height: 1.1rem;
}
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  pointer-events: none;
}
.toast {
  min-width: 280px;
  max-width: min(92vw, 420px);
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(22,22,22,0.94);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}
.toast--visible {
  opacity: 1;
  transform: translateY(0);
}
.toast--success { background: rgba(10, 140, 92, 0.95); }
.toast--error { background: rgba(165, 40, 48, 0.95); }
.button-spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top-color: #050505;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
select:focus, input:focus, textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
body[dir="rtl"] select,
body[dir="rtl"] select option {
  direction: rtl;
  text-align: right;
}
body[dir="ltr"] select,
body[dir="ltr"] select option {
  direction: ltr;
  text-align: left;
}
select option {
  padding: 0.85rem 1.1rem;
  min-height: 2.9rem;
  line-height: 1.4;
  color: var(--text);
  background-color: #0f1014;
}
select option:hover,
select option:focus,
select option:checked {
  background: rgba(255,255,255,0.14);
  color: var(--text);
}
select option:checked {
  font-weight: 600;
}
.form-submit { margin-top: 0.7rem; }
.contact-card { padding: 1.45rem; }
.contact-card ul { padding-left: 1rem; color: var(--muted); }
.map-placeholder {
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  margin-top: 1rem;
}

.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-card { padding: 0; overflow: hidden; }
.blog-card__body { padding: 1.2rem; }
.blog-card__meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.6rem; }
.newsletter { display: flex; gap: 0.8rem; align-items: center; margin-top: 1.8rem; flex-wrap: wrap; }
.newsletter input { min-width: 280px; }

.about-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.timeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 2rem; }
.timeline-item { padding: 1.2rem; }
.value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  align-items: start;
  grid-auto-rows: 1fr;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.footer-column__title,
.footer-brand strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.footer-column__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-column__list a,
.footer-column__email {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-column__list a:hover,
.footer-column__email:hover {
  color: var(--text);
}
.footer-column__copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.footer-follow {
  justify-content: flex-start;
}
.footer-follow__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-follow__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  color: var(--text);
  text-decoration: none;
}
.footer-follow__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.footer-follow__icon i {
  font-size: 22px;
  color: var(--primary);
}
.footer-follow__item:hover .footer-follow__icon {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}
.footer-follow__label {
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-brand__copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.footer-brand__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.footer-brand__copyright {
  color: var(--muted);
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .footer-follow__list {
    align-items: center;
  }
  .footer-privacy { order: 5; }
  .footer-terms { order: 4; }
  .footer-contact { order: 3; }
  .footer-follow { order: 2; }
  .footer-brand { order: 1; }
}

@media (max-width: 640px) {
  .footer-follow__list {
    gap: 1rem;
  }
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  z-index: 1600;
  display: none;
}
.back-to-top.is-visible { display: grid; place-items: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.counter { font-size: 2rem; font-weight: 700; }

.policy, .terms { max-width: 800px; margin: 0 auto; padding-top: 2rem; }
.policy h2, .terms h2 { margin-top: 1.5rem; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(2,2,2,0.8);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__card {
  width: min(640px, 100%);
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.modal__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.modal__close { border: 0; background: transparent; color: var(--text); font-size: 1.3rem; }

@media (max-width: 980px) {
  .hero__grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .project-grid, .testimonial-grid, .pricing-grid, .blog-grid, .stats-grid, .process-list, .timeline-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(8,8,8,0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .hero { padding-top: 3.4rem; }
  .section { padding: 5.5rem 0; }
  .service-grid, .project-grid, .testimonial-grid, .pricing-grid, .blog-grid, .stats-grid, .process-list, .timeline-grid, .value-grid, .trust-bar { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: stretch; }
  .newsletter input { min-width: 0; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; }
}
