:root {
  --bg: #070c14;
  --panel: rgba(16, 24, 39, 0.9);
  --accent: #73e0a9;
  --accent-2: #4aa1ff;
  --text: #e9eef7;
  --muted: #a9b4c8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Cairo", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(74, 161, 255, 0.12), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(115, 224, 169, 0.14), transparent 35%),
              radial-gradient(circle at 30% 70%, rgba(74, 161, 255, 0.1), transparent 40%),
              #070c14;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
  padding-bottom: 60px;
}

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

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

.brand__logo {
  background: linear-gradient(135deg, rgba(74, 161, 255, 0.16), rgba(115, 224, 169, 0.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(7, 12, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand__name {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  background: rgba(115, 224, 169, 0.16);
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.hero {
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(115, 224, 169, 0.06), rgba(74, 161, 255, 0.1));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__panel--primary {
  background: linear-gradient(135deg, rgba(74, 161, 255, 0.08), rgba(7, 12, 20, 0.9));
}

.hero__panel--secondary {
  background: linear-gradient(135deg, rgba(115, 224, 169, 0.08), rgba(7, 12, 20, 0.9));
}

.hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 12px;
}

.hero .lede {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__actions--rtl {
  justify-content: flex-end;
}

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

.hero__tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 600;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.stat__value {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.stat__label {
  color: var(--muted);
}

.hero__mockup {
  margin: 26px auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.mockup__card {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(7, 12, 20, 0.6), rgba(7, 12, 20, 0.9));
  position: relative;
}

.mockup__card--photo {
  padding: 0;
}

.mockup__photo {
  position: relative;
  height: clamp(240px, 50vw, 360px);
}

.mockup__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  display: block;
}

.mockup__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.1), rgba(7, 12, 20, 0.75)),
              radial-gradient(circle at 20% 20%, rgba(115, 224, 169, 0.18), transparent 55%);
  mix-blend-mode: soft-light;
}

.mockup__caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(7, 12, 20, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--muted);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1220;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(74, 161, 255, 0.25);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.section {
  padding: 100px 24px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 12px;
}

.lede {
  color: var(--muted);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.about__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.about__card h3 {
  margin-bottom: 10px;
}

.about__card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.about__photos {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.about__photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  filter: saturate(1.05);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  background: linear-gradient(160deg, rgba(16, 27, 46, 0.9), rgba(16, 27, 46, 0.75));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 161, 255, 0.06), rgba(115, 224, 169, 0.06));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  font-size: 1.6rem;
}

.service-card h3 {
  margin-bottom: 6px;
}

.service-card p {
  color: var(--muted);
}

.highlights .highlight-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 161, 255, 0.08), rgba(115, 224, 169, 0.08));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.highlight-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-card__stack span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 700;
}

.contact {
  width: min(1100px, 100%);
}

.contact__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, rgba(16, 27, 46, 0.9), rgba(16, 27, 46, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact__info ul {
  list-style: none;
  margin-top: 10px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.contact__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
}

.footer {
  padding: 30px 24px 40px;
  text-align: center;
  color: var(--muted);
  background: #070c14;
  border-top: 1px solid var(--border);
}

.footer .small {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    background: rgba(7, 12, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    display: none;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
