:root {
  color-scheme: dark;
  --navy-950: #000000;
  --navy-900: #050505;
  --navy-800: #0d0d0d;
  --blue-600: #ff003c;
  --cyan-400: #ff3b30;
  --green-500: #d1d5db;
  --ink: #ffffff;
  --muted: #a3a3a3;
  --line: #222222;
  --surface: #050505;
  --surface-soft: #0d0d0d;
  --shadow: 0 22px 60px rgba(0, 0, 0, .8);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Cairo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

:lang(ar) body,
body[data-lang="ar"] {
  font-family: Cairo, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 850px);
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: 8px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--cyan-400);
  color: var(--navy-950);
  transform: translateY(-140%);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 5, 5, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .3s ease;
}

.brand:hover .brand-logo-img {
  border-color: var(--blue-600);
}

.brand-text {
  font-size: 18px;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding-inline: 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: #121212;
  color: var(--blue-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.language-switcher a {
  min-width: 38px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.language-switcher a.active {
  background: var(--blue-600);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
}

.nav-toggle .close-icon,
.nav-toggle[aria-expanded="true"] .open-icon {
  display: none;
}

.nav-toggle[aria-expanded="true"] .close-icon {
  display: inline;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
}

[dir="rtl"] .button svg,
[dir="rtl"] .text-link svg {
  transform: scaleX(-1);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: 0 12px 30px rgba(255, 0, 60, .26);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .98), rgba(13, 13, 13, .96)),
    repeating-linear-gradient(90deg, rgba(255, 0, 60, .03) 0 1px, transparent 1px 128px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 46px;
}

.hero::after,
.page-intro::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
  opacity: .65;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 48px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--cyan-400);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 52px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.hero-lead,
.page-intro p,
.large-text {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.large-text {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.proof-list,
.check-list,
.tech-list,
.industry-grid,
.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-list li,
.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.proof-list svg,
.check-list svg {
  flex: 0 0 20px;
  color: var(--blue-600);
}

.proof-list li {
  white-space: nowrap;
  font-size: 14px;
}

.hero-visual {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

/* Vertical logo */
.vertical-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 0;
}

.vertical-logo-img {
  width: 120px !important;
  height: 120px !important;
  aspect-ratio: 1 !important;
  border-radius: 18px;
  object-fit: contain;
  border: 2px solid rgba(255, 0, 60, .25);
  box-shadow: 0 0 60px rgba(255, 0, 60, .15), 0 24px 48px rgba(0, 0, 0, .4);
  animation: glowPulse 4s ease-in-out infinite;
  transition: transform .4s ease, box-shadow .4s ease;
}

.vertical-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px rgba(255, 0, 60, .25), 0 24px 48px rgba(0, 0, 0, .5);
}

.vertical-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .02em;
  line-height: 1;
}

.vertical-logo-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Hero background glow */
.hero-bg-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 0, 60, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Header scroll state */
.site-header.is-scrolled {
  border-bottom-color: rgba(255, 0, 60, .15);
  background: rgba(5, 5, 5, .95);
}

.page-intro {
  position: relative;
  padding: 78px 0;
}

.page-intro p {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-600);
}

.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  align-items: flex-start;
  color: var(--muted);
}

.services-section,
.portfolio-section,
.contact-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.service-card:hover {
  border-color: rgba(255, 0, 60, .3);
  box-shadow: 0 12px 40px rgba(255, 0, 60, .08);
  transform: translateY(-4px);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--blue-600);
  background: rgba(255, 0, 60, .1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-600);
  font-weight: 800;
}

.section-cta {
  margin-top: 32px;
}

.why-section {
  background: var(--surface);
}

.why-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.why-item:hover {
  border-color: rgba(255, 0, 60, .3);
  box-shadow: 0 10px 28px rgba(255, 0, 60, .08);
}

.why-item svg {
  flex: 0 0 22px;
  color: var(--blue-600);
}

.process-section {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-soft)),
    repeating-linear-gradient(90deg, rgba(255, 0, 60, .02) 0 1px, transparent 1px 130px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  transition: border-color .3s ease;
}

.process-step:hover {
  border-color: rgba(255, 0, 60, .3);
}

.step-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue-600);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.process-step p,
.project-card p,
.testimonial span {
  color: var(--muted);
}

.industries-section {
  background: var(--navy-950);
  color: #fff;
}

.industries-section h2 {
  color: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industry-grid li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: rgba(255,255,255,.9);
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .3);
  transition: border-color .3s ease;
}

.project-card:hover {
  border-color: rgba(255, 0, 60, .3);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.project-body {
  padding: 24px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tech-list li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 60, .1);
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
}

.result {
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
  transition: border-color .3s ease;
}

.testimonial:hover {
  border-color: rgba(255, 0, 60, .3);
}

.testimonial blockquote {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 18px;
}

.testimonial figcaption {
  display: grid;
  gap: 2px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.contact-method svg {
  flex: 0 0 22px;
  color: var(--blue-600);
}

.contact-method span {
  display: grid;
  color: var(--muted);
}

.contact-method strong {
  color: var(--ink);
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(255, 0, 60, .12);
}

.contact-form.was-validated input:invalid,
.contact-form.was-validated select:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: #c52b2b;
}

.contact-form input.honeypot {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 800;
}

.form-status.success {
  color: #34d399;
}

.form-status.error {
  color: #f87171;
}

.site-footer {
  padding: 60px 0 30px;
  color: rgba(255,255,255,.8);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 46px;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
}

.site-footer li {
  margin-bottom: 10px;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
  max-width: none;
}

.floating-actions {
  position: fixed;
  z-index: 25;
  inset-inline-end: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.floating-whatsapp {
  background: #0f9f76;
}

.floating-call {
  display: none !important;
  background: var(--blue-600);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-soft);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .4);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 50px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-grid,
  .split-layout,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand-text {
    font-size: 16px;
  }

  .header-actions .button {
    display: none;
  }

  .site-nav {
    inset-block-start: 70px;
  }

  .hero {
    padding: 40px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .page-intro p,
  .large-text {
    font-size: 17px;
  }

  .section {
    padding: 68px 0;
  }

  .page-intro {
    padding: 58px 0;
  }

  .hero-actions,
  .proof-list {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid,
  .process-grid,
  .industry-grid,
  .portfolio-grid,
  .testimonials-grid,
  .form-grid,
  .footer-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .testimonial {
    min-height: auto;
  }

  .contact-form {
    padding: 22px;
  }

  .floating-actions {
    inset-inline: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions a {
    padding: 11px 12px;
    font-size: 14px;
  }

  .floating-call {
    display: inline-flex !important;
  }
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 60, .15); }
  50% { box-shadow: 0 0 40px rgba(255, 0, 60, .3); }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(255, 0, 60, .2); }
  50% { border-color: rgba(255, 0, 60, .5); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  animation: fadeInUp .9s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-visual {
  animation: fadeInScale 1s cubic-bezier(.16, 1, .3, 1) .2s both;
}

.hero-visual img {
  animation: glowPulse 4s ease-in-out infinite;
}

.floating-actions a {
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-actions a:nth-child(2) {
  animation-delay: .4s;
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.service-card,
.process-step,
.project-card,
.testimonial,
.why-item,
.contact-method {
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.text-link {
  transition: gap .3s ease, color .3s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--cyan-400);
}

.step-number {
  transition: transform .3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.15);
}

.brand {
  transition: opacity .3s ease;
}

.brand:hover {
  opacity: .8;
}

.site-header {
  transition: background .3s ease, border-color .3s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
