:root {
  --ink: #15202e;
  --muted: #607086;
  --line: #dde5ef;
  --soft: #f5f7fa;
  --white: #ffffff;
  --charcoal: #101722;
  --gold: #c78a22;
  --gold-light: #f0b44f;
  --amber-soft: #fff4df;
  --cyan: #28b8d8;
  --shadow: 0 20px 60px rgba(16, 23, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(16, 23, 34, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
}

.planet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff4c6 0 17%, transparent 18%),
    linear-gradient(145deg, var(--gold-light), #b66f12 62%, #7d4310);
  box-shadow: 0 0 0 5px rgba(240, 180, 79, 0.18), 0 10px 22px rgba(0, 0, 0, 0.25);
}

.orbit {
  position: absolute;
  width: 44px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.orbit-two {
  width: 34px;
  height: 11px;
  border-color: rgba(40, 184, 216, 0.9);
  border-left-color: transparent;
  border-right-color: transparent;
  transform: rotate(26deg);
}

.brand-text {
  display: grid;
  line-height: 1.02;
}

.brand-text strong {
  font-size: 1.22rem;
  letter-spacing: 0;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.6vw, 32px);
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 118px clamp(20px, 6vw, 84px) 34px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-it-oman.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 20, 0.96) 0%, rgba(12, 19, 29, 0.88) 34%, rgba(12, 19, 29, 0.46) 68%, rgba(12, 19, 29, 0.34) 100%),
    linear-gradient(180deg, rgba(16, 23, 34, 0.28) 0%, rgba(16, 23, 34, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0;
  max-width: 13.4ch;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.full-width {
  width: 100%;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.split.reverse {
  align-items: center;
}

.section h2,
.contact-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-band {
  background: var(--soft);
}

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

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

.service-card,
.value-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 255px;
  padding: 28px;
  box-shadow: 0 12px 38px rgba(21, 32, 46, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  color: #2c1b06;
  border-radius: 50%;
  background: var(--amber-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-card h3,
.value-item h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.service-card p,
.value-item p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.industries-section {
  color: var(--white);
  background: var(--charcoal);
}

.industries-section p {
  color: rgba(255, 255, 255, 0.68);
}

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

.industry-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.why-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.value-item {
  padding: 24px;
}

.contact-section {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 23, 34, 0.96), rgba(31, 35, 42, 0.96)),
    var(--charcoal);
}

.contact-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
}

.contact-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--white);
  font-size: 1.05rem;
}

.contact-panel .button {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: #0c1119;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 860px;
    padding-top: 174px;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 13, 20, 0.96) 0%, rgba(7, 13, 20, 0.83) 48%, rgba(7, 13, 20, 0.62) 100%),
      linear-gradient(90deg, rgba(7, 13, 20, 0.86), rgba(7, 13, 20, 0.2));
  }

  .split,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 780px;
    padding: 164px 18px 58px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
    max-width: 10ch;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .value-grid,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
