:root {
  --blue: #2c6ae5;
  --blue-deep: #1a4fb8;
  --green: #32c98d;
  --ink: #0d1b2a;
  --ink-soft: #3d4f63;
  --paper: #f4f7fb;
  --paper-2: #e8eef7;
  --white: #ffffff;
  --line: rgba(13, 27, 42, 0.08);
  --shadow: 0 24px 60px rgba(28, 74, 160, 0.14);
  --radius: 22px;
  --font: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 85% -10%, rgba(44, 106, 229, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 5% 20%, rgba(50, 201, 141, 0.12), transparent 50%),
    linear-gradient(180deg, #eef3fb 0%, var(--paper) 35%, #f7f9fc 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(44, 106, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 106, 229, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(44, 106, 229, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 8px 28px rgba(28, 74, 160, 0.06);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: auto;
  height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:not(.nav-cta) {
  position: relative;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: width 0.25s var(--ease);
}

.nav a:not(.nav-cta):hover {
  color: var(--ink);
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white) !important;
  box-shadow: 0 8px 18px rgba(44, 106, 229, 0.22);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(44, 106, 229, 0.3);
}

.credibility {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem) 0;
  text-align: start;
}

.credibility-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.credibility-text {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.credibility-text strong {
  color: var(--ink);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 140px);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
}

.brand-lockup {
  margin: 0 0 0.35rem;
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.02em;
  animation: rise 0.9s var(--ease) both;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  max-width: 14ch;
  animation: rise 0.9s var(--ease) 0.08s both;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  animation: rise 0.9s var(--ease) 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(44, 106, 229, 0.35);
}

.hero-visual {
  position: relative;
  animation: float-in 1.1s var(--ease) 0.2s both;
}

.hero-orbit {
  position: absolute;
  inset: -8% -6%;
  border-radius: 40% 60% 55% 45%;
  background:
    radial-gradient(circle at 70% 30%, rgba(50, 201, 141, 0.28), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(44, 106, 229, 0.22), transparent 50%);
  filter: blur(8px);
  animation: drift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-shot {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: perspective(1200px) rotateY(4deg) rotateX(2deg);
}

.products {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 5.5rem);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.product.is-visible {
  opacity: 1;
  transform: none;
}

.product--flip .product-copy {
  order: 2;
}

.product--flip .product-shot {
  order: 1;
}

.product-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.product-copy h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.product-copy p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 34ch;
}

.product-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.45s var(--ease);
}

.product.is-visible .product-shot {
  transform: translateY(0);
}

.product-shot img {
  width: 100%;
  height: auto;
}

.customers {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem);
  max-width: 920px;
  margin: 0 auto;
}

.customer-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.customer-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  flex: 0 0 auto;
}

.customer-logos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.25rem, 5vw, 3.25rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(44, 106, 229, 0.08), rgba(50, 201, 141, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(28, 74, 160, 0.08);
}

.contact-card h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.contact-card > p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(44, 106, 229, 0.25), rgba(50, 201, 141, 0.25), transparent) 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(232, 238, 247, 0.85));
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.25rem clamp(1.25rem, 4vw, 3rem) 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1.1rem;
}

.footer-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.footer-tag {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-12px, 10px) scale(1.04);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero h1,
  .lead {
    max-width: none;
  }

  .hero-shot {
    transform: none;
  }

  .product,
  .product--flip {
    grid-template-columns: 1fr;
  }

  .product--flip .product-copy,
  .product--flip .product-shot {
    order: initial;
  }

  .customer-logos li {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 560px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .site-footer-inner {
    text-align: center;
  }

  .footer-main,
  .footer-links {
    justify-content: center;
  }
}

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

  .product {
    opacity: 1;
    transform: none;
  }
}
