:root {
  color-scheme: light;
  --bg: #f4eee6;
  --bg-soft: #eee4d9;
  --ink: #171310;
  --muted: #6b625a;
  --line: rgba(23, 19, 16, 0.12);
  --card: rgba(255, 250, 244, 0.72);
  --card-strong: #fbf6ef;
  --accent: #d85f3f;
  --accent-dark: #9e3e2e;
  --gold: #c99654;
  --green: #44a06d;
  --shadow: 0 24px 70px rgba(67, 45, 26, 0.13);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 10% 3%, rgba(216, 95, 63, 0.12), transparent 26rem),
    radial-gradient(circle at 90% 26%, rgba(68, 160, 109, 0.12), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-strong);
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  animation: fade-in-up 700ms ease 1900ms both;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1120px, 100%);
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(250, 244, 236, 0.76);
  box-shadow: 0 20px 54px rgba(24, 18, 12, 0.12);
  padding: 10px 10px 10px 18px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(23, 19, 16, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 220, 203, 0.7)),
    var(--card-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  content: "";
  background: var(--ink);
}

.brand-mark::before {
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
}

.brand-mark::after {
  width: 10px;
  height: 2px;
  transform: translate(8px, 8px) rotate(45deg);
  border-radius: 10px;
}

.brand-mark span::before {
  width: 4px;
  height: 4px;
  transform: translate(-7px, -7px);
  border-radius: 50%;
  background: var(--accent);
}

.brand-mark span::after {
  width: 4px;
  height: 4px;
  transform: translate(8px, -7px);
  border-radius: 50%;
  background: var(--green);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(23, 19, 16, 0.74);
  font-size: 0.86rem;
  font-weight: 620;
}

.nav-links a,
.footer-links a,
.social-links a {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--accent-dark);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 3px;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle span {
  min-width: 28px;
  border-radius: 999px;
  padding: 6px 7px;
  text-align: center;
}

.lang-toggle .is-active {
  background: var(--ink);
  color: #fff8ef;
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff8ef;
  padding: 0 18px;
  font-size: 0.84rem;
  font-weight: 760;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: clip;
  background: #171310;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(0.92);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.18), rgba(10, 8, 6, 0.68)),
    radial-gradient(circle at 50% 48%, rgba(244, 238, 230, 0.08), transparent 40rem);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.hero-content {
  width: min(780px, calc(100% - 36px));
  margin-top: 90px;
  color: #fff8ef;
  text-align: center;
}

.intro-delayed {
  animation: fade-in-up 900ms ease 2500ms both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 248, 239, 0.82);
  font-size: 0.78rem;
  font-weight: 740;
}

.eyebrow span:first-child,
.section-kicker {
  border: 1px solid rgba(255, 248, 239, 0.26);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.13);
  padding: 6px 10px;
}

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

h1 {
  max-width: 730px;
  margin: 0 auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8.2vw, 8.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin: 0 auto 28px;
  color: rgba(255, 248, 239, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.91rem;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: #fff8ef;
  box-shadow: 0 14px 34px rgba(23, 19, 16, 0.22);
}

.button-light {
  border: 1px solid rgba(255, 248, 239, 0.46);
  background: rgba(255, 248, 239, 0.72);
  color: var(--ink);
}

.floating-logo {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(23, 19, 16, 0.58);
  color: #fff8ef;
  padding: 8px 13px 8px 8px;
  font-size: 0.86rem;
  font-weight: 760;
  backdrop-filter: blur(16px);
}

.floating-logo .brand-mark {
  width: 28px;
  height: 28px;
}

.trust-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.trust-strip p {
  margin-bottom: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
  color: rgba(23, 19, 16, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 116px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .section-kicker,
.why-panel .section-kicker,
.contact-card .section-kicker {
  color: var(--accent-dark);
  border-color: rgba(158, 62, 46, 0.16);
  background: rgba(216, 95, 63, 0.09);
}

.section-heading p:not(.section-kicker),
.why-panel p,
.contact-meta,
.footer-about p {
  color: var(--muted);
  line-height: 1.65;
}

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

.service-card,
.testimonial-card,
.stat-card,
.contact-card {
  border: 1px solid rgba(23, 19, 16, 0.1);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(14px);
}

.service-card {
  min-height: 260px;
  padding: 22px;
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  border-color: rgba(216, 95, 63, 0.35);
  box-shadow: 0 24px 60px rgba(216, 95, 63, 0.12);
}

.service-card p {
  min-height: 72px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card strong {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(23, 19, 16, 0.06);
  padding: 8px 11px;
  color: var(--accent-dark);
  font-size: 0.84rem;
}

.service-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border: 1px solid rgba(23, 19, 16, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 220, 203, 0.3)),
    var(--card-strong);
  position: relative;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.pc-clean::before {
  inset: 14px 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.pc-clean::after {
  left: 22px;
  bottom: 13px;
  width: 10px;
  height: 2px;
  background: var(--ink);
}

.laptop::before {
  left: 12px;
  right: 12px;
  top: 17px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 3px 3px 1px 1px;
}

.laptop::after {
  left: 10px;
  right: 10px;
  top: 34px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--ink);
}

.console::before {
  inset: 15px 11px;
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.console::after {
  left: 21px;
  top: 25px;
  width: 12px;
  height: 4px;
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.transform::before {
  inset: 13px;
  border: 2px solid var(--accent-dark);
  border-radius: 50%;
}

.transform::after {
  left: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  transform: rotate(45deg);
}

.troubleshoot::before {
  left: 17px;
  top: 13px;
  width: 16px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 10px 10px 2px 2px;
}

.troubleshoot::after {
  left: 25px;
  top: 35px;
  width: 2px;
  height: 7px;
  background: var(--accent);
}

.build::before {
  inset: 15px;
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.build::after {
  left: 24px;
  top: 12px;
  width: 6px;
  height: 30px;
  background: var(--green);
  border-radius: 999px;
}

.software::before {
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 6px;
}

.software::after {
  left: 22px;
  top: 24px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.onsite::before {
  left: 16px;
  top: 14px;
  width: 22px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 12px 12px 12px 2px;
  transform: rotate(-45deg);
}

.onsite::after {
  left: 25px;
  top: 23px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.process-section {
  padding-top: 60px;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  z-index: -1;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-flow li {
  min-height: 120px;
  border: 1px solid rgba(23, 19, 16, 0.1);
  border-radius: var(--radius);
  background: rgba(251, 246, 239, 0.68);
  padding: 22px 18px;
  text-align: center;
}

.process-flow span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ef;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-flow strong {
  display: block;
  font-size: 1rem;
}

.why-section {
  padding-top: 34px;
}

.why-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  align-items: end;
  gap: 28px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.86), rgba(238, 228, 217, 0.66)),
    var(--card-strong);
  padding: clamp(24px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.promise {
  border-left: 3px solid var(--accent);
  margin: 0;
  padding-left: 18px;
  font-weight: 720;
}

body[dir="rtl"] .promise {
  border-right: 3px solid var(--accent);
  border-left: 0;
  padding-right: 18px;
  padding-left: 0;
}

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

.stat-card {
  min-height: 168px;
  padding: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.45;
}

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

.testimonial-card {
  min-height: 260px;
  padding: 24px;
}

.avatar {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(23, 19, 16, 0.12);
}

.avatar-one {
  background:
    radial-gradient(circle at 50% 36%, #6b4a36 0 12%, transparent 13%),
    radial-gradient(circle at 50% 58%, #c18d6b 0 26%, transparent 27%),
    linear-gradient(135deg, #d9a27b, #6c8f87);
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 35%, #2f2724 0 12%, transparent 13%),
    radial-gradient(circle at 50% 58%, #c79a7b 0 26%, transparent 27%),
    linear-gradient(135deg, #a95d4a, #e7c6a4);
}

.avatar-three {
  background:
    radial-gradient(circle at 50% 36%, #3c2b25 0 12%, transparent 13%),
    radial-gradient(circle at 50% 58%, #b87f5d 0 26%, transparent 27%),
    linear-gradient(135deg, #83705d, #c3d5ce);
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 110px;
}

.contact-card {
  display: grid;
  justify-items: center;
  padding: clamp(32px, 7vw, 74px);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 740px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 28px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 58px 18px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 34px;
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
}

.footer-about p {
  max-width: 300px;
  margin: 18px 0 0;
}

.footer-links,
.social-links {
  display: grid;
  align-content: start;
  gap: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

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

.copyright {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  color: rgba(23, 19, 16, 0.52);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease var(--delay, 0ms), transform 620ms ease var(--delay, 0ms);
}

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

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

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

  .process-flow,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .process-flow::before {
    display: none;
  }

  .why-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
    padding: 0;
    display: block;
  }

  .nav-shell {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }

  .nav-shell {
    gap: 12px;
    min-height: 54px;
    padding: 8px;
  }

  .brand-word,
  .nav-cta,
  .floating-logo span:last-child {
    display: none;
  }

  .hero-content {
    margin-top: 64px;
  }

  .hero-copy {
    max-width: 32ch;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 3.25rem);
  }

  .eyebrow {
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .mini-tags {
    gap: 18px;
  }

  .service-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card p {
    min-height: 0;
  }

  .floating-logo {
    right: 16px;
    bottom: 16px;
    padding: 7px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}
