:root {
  --black: #070707;
  --black-2: #0d0d0d;
  --black-3: #151515;
  --white: #ffffff;
  --soft: #f5f5f5;
  --text: #d7d7d7;
  --muted: #9b9b9b;
  --orange: #ff8a00;
  --orange-2: #ffb15c;
  --line: rgba(255, 255, 255, 0.1);
  --orange-line: rgba(255, 138, 0, 0.35);
  --shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.orange {
  color: var(--orange);
}

/* HEADER */
.header {
  width: 100%;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(7, 7, 7, 0.96);
  border-bottom-color: rgba(255, 138, 0, 0.22);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text strong,
.footer-brand strong {
  font-size: 22px;
  letter-spacing: 0.2px;
}

.brand-text strong span,
.footer-brand strong span {
  color: var(--orange);
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #dedede;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  position: relative;
}

.nav a:not(.nav-btn)::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--orange);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--orange-2);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-btn {
  background: var(--orange);
  color: #111 !important;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900 !important;
  box-shadow: 0 16px 42px rgba(255, 138, 0, 0.16);
}

.nav-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 21px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 138, 0, 0.2), transparent 34%),
    radial-gradient(circle at 10% 76%, rgba(255, 138, 0, 0.09), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111111 55%, #1a0f05 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 90%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.3);
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(44px, 6.2vw, 80px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: 0.28s ease;
  cursor: pointer;
  will-change: transform;
}

.btn:hover {
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--orange);
  color: #111;
  box-shadow: 0 18px 45px rgba(255, 138, 0, 0.18);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-2);
  transform: translateY(-4px);
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: #fff;
  color: #111;
  transform: translateY(-4px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d6d6d6;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.32);
  box-shadow: var(--shadow);
  min-height: 540px;
}

.hero-visual img {
  height: 540px;
  object-fit: cover;
  opacity: 0.92;
  filter: contrast(1.05);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 62%);
}

.hero-card {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-card h3 {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 10px;
}

.hero-card p {
  margin: 0;
  color: #d6d6d6;
  font-size: 15px;
  line-height: 1.65;
}

/* PAGE HERO */
.page-hero {
  padding: 145px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 138, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #050505 0%, #111 60%, #1a0f05 100%);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
}

.page-image {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.28);
  box-shadow: var(--shadow);
}

.page-image img {
  height: 430px;
  object-fit: cover;
}

/* COMMON SECTIONS */
.section {
  padding: 105px 0;
  position: relative;
}

.section-dark {
  background: var(--black-2);
}

.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 56px;
}

.section-head span,
.mini-title {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-head h2,
.split-content h2,
.career-content h2,
.contact-panel h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin: 14px 0 16px;
}

.section-head p,
.split-content p,
.career-content p,
.contact-panel p {
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}

/* SERVICE CARDS */
.service-preview-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-preview-card,
.service-card,
.process-card,
.role-card,
.info-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    #111111;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 32px;
  padding: 34px;
  transition: 0.32s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.service-preview-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.service-preview-card::before,
.service-card::before,
.process-card::before,
.role-card::before,
.info-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  right: -40px;
  top: -40px;
  background: rgba(255, 138, 0, 0.11);
  filter: blur(10px);
}

.service-preview-card:hover,
.service-card:hover,
.process-card:hover,
.role-card:hover,
.info-card:hover {
  background:
    linear-gradient(180deg, rgba(255,138,0,0.16), rgba(255,255,255,0.025)),
    #151515;
  transform: translateY(-10px);
  border-color: rgba(255, 138, 0, 0.65);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,138,0,0.18);
}

.service-number,
.card-number {
  color: var(--orange);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 24px;
  transition: 0.28s ease;
}

.service-preview-card:hover .service-number {
  color: #ffffff;
}

.service-preview-card h3,
.service-card h3,
.process-card h3,
.role-card h3,
.info-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: 0.28s ease;
}

.service-preview-card:hover h3 {
  color: var(--orange);
}

.service-preview-card p,
.service-card p,
.process-card p,
.role-card p,
.info-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-preview-card p {
  min-height: 86px;
  margin-bottom: 18px;
}

.service-preview-card a,
.service-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--orange-2);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: 0.28s ease;
}

.service-preview-card:hover a {
  color: #ffffff;
  transform: translateX(8px);
}

.mini-service-line {
  flex: 1;
  margin-top: 8px;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.mini-service-line div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d8d8d8;
  line-height: 1.6;
  font-size: 15px;
}

.mini-service-line b {
  color: var(--orange);
  min-width: 22px;
  line-height: 1.5;
}

/* SPLIT */
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-image {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.25);
  box-shadow: var(--shadow);
}

.split-image img {
  height: 500px;
  object-fit: cover;
}

.split-content p {
  margin-bottom: 28px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.check-grid div {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 20px;
  transition: 0.28s ease;
}

.check-grid div:hover {
  background: rgba(255, 138, 0, 0.09);
  border-color: rgba(255, 138, 0, 0.36);
  transform: translateY(-4px);
}

.check-grid strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}

.check-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.simple-list,
.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 25px 0 28px;
}

.feature-list {
  margin: 18px 0 0;
}

.simple-list li,
.feature-list li {
  color: #d7d7d7;
  line-height: 1.5;
  font-size: 14px;
}

.simple-list li::before,
.feature-list li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 900;
}

/* PREMIUM SOLUTIONS */
.premium-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.premium-solution-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 34px;
  padding: 34px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.premium-solution-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.14);
  filter: blur(20px);
}

.premium-solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.solution-top span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #111;
  font-size: 22px;
  font-weight: 900;
  transition: 0.28s ease;
}

.premium-solution-card:hover .solution-top span {
  background: #ffffff;
  color: #111;
}

.solution-top b {
  color: var(--orange-2);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.premium-solution-card h3 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.premium-solution-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.premium-solution-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.premium-solution-card li {
  color: #d8d8d8;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.premium-solution-card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

/* SYSTEMS */
.systems-preview-grid,
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.system-card,
.system-detail-card {
  background: #f5f5f5;
  color: #111;
  border-radius: 32px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 6px solid var(--orange);
  transition: 0.32s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.system-card:hover,
.system-detail-card:hover {
  background:
    linear-gradient(180deg, rgba(255,138,0,0.18), rgba(255,255,255,0.03)),
    #121212;
  color: #ffffff;
  border-color: rgba(255,138,0,0.55);
  border-bottom-color: #ffffff;
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,138,0,0.18);
}

.system-card h3,
.system-detail-card h3 {
  font-size: 27px;
  line-height: 1.15;
  margin-bottom: 18px;
  transition: 0.28s ease;
}

.system-card:hover h3,
.system-detail-card:hover h3 {
  color: var(--orange);
}

.system-card p,
.system-detail-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5a5a;
  transition: 0.28s ease;
}

.system-card:hover p,
.system-detail-card:hover p {
  color: #dddddd;
}

.system-detail-card ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.system-detail-card li {
  color: #333;
  font-size: 14px;
}

.system-detail-card:hover li {
  color: #d7d7d7;
}

.system-detail-card li::before {
  content: "• ";
  color: var(--orange);
  font-weight: 900;
}

.system-tag {
  display: inline-block;
  width: max-content;
  background: #111;
  color: var(--orange);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.center-btn {
  text-align: center;
  margin-top: 42px;
}

/* BUSINESS FOCUS */
.business-focus-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.business-focus-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 30px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.business-focus-card:hover {
  border-color: rgba(255, 138, 0, 0.42);
  transform: translateY(-6px);
}

.business-focus-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255,138,0,0.14);
  filter: blur(18px);
}

.business-focus-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.business-focus-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.business-focus-list {
  list-style: none;
  display: grid;
  gap: 13px;
  position: relative;
  z-index: 1;
}

.business-focus-list li {
  color: #dcdcdc;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.business-focus-list li::before {
  content: "•";
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card span {
  display: block;
  color: var(--orange);
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 18px;
}

.compact-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.compact-step {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 22px;
  transition: 0.3s ease;
}

.compact-step:hover {
  background:
    linear-gradient(180deg, rgba(255,138,0,0.15), rgba(255,255,255,0.025)),
    #141414;
  transform: translateY(-6px);
  border-color: rgba(255,138,0,0.45);
}

.compact-step span {
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
}

.compact-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.compact-step:hover h3 {
  color: var(--orange);
}

.compact-step p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.compact-step:hover p {
  color: #dddddd;
}

/* CAREER */
.career-preview {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.career-content p {
  margin-bottom: 30px;
}

.career-image {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.25);
  box-shadow: var(--shadow);
}

.career-image img {
  height: 430px;
  object-fit: cover;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.role-card .role-type {
  display: inline-block;
  color: #111;
  background: var(--orange);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

/* DETAILS PAGE */
.details-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px;
  align-items: start;
}

.sidebar {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 22px;
  position: sticky;
  top: 110px;
}

.sidebar a {
  display: block;
  padding: 14px 15px;
  border-radius: 14px;
  color: #ddd;
  font-weight: 800;
  transition: 0.25s ease;
}

.sidebar a:hover {
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
}

.detail-box {
  background: #151515;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 34px;
  margin-bottom: 22px;
}

.detail-box h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 15px;
}

.detail-box p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
  align-items: start;
}

.contact-panel {
  background: linear-gradient(180deg, #181818, #111);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 18px;
  transition: 0.28s ease;
}

.contact-item:hover {
  background: rgba(255,138,0,0.09);
  border-color: rgba(255,138,0,0.38);
  transform: translateY(-4px);
}

.contact-item strong {
  display: block;
  color: var(--orange);
  margin-bottom: 7px;
}

.contact-item a,
.contact-item span {
  color: #e1e1e1;
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 15px 16px;
  color: #fff;
  outline: none;
}

.form select option {
  color: #111;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(255, 138, 0, 0.72);
}

/* CTA */
.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--orange), #ffc06d);
  color: #111;
}

.final-cta-inner {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.final-cta h2 {
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

.final-cta p {
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 30px;
}

/* FOOTER */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 0.85fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-about p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 15px;
  max-width: 370px;
}

.footer h4 {
  color: var(--orange-2);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer a {
  display: block;
  color: #bfbfbf;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.footer a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.copyright {
  text-align: center;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.copyright span {
  color: var(--orange);
  font-weight: 900;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.soft-up {
  animation: softUp 0.9s ease both;
}

.soft-up-delay {
  animation: softUp 1s ease 0.18s both;
}

.soft-up-delay-2 {
  animation: softUp 1s ease 0.35s both;
}

@keyframes softUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .nav {
    gap: 16px;
  }

  .service-preview-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .systems-preview-grid,
  .systems-grid,
  .process-grid,
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-solutions-grid {
    grid-template-columns: 1fr;
  }

  .compact-process {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .business-focus-grid {
    grid-template-columns: 1fr;
  }

  .premium-solution-card {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 84px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: rgba(7, 7, 7, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 35px 8%;
    transition: 0.35s ease;
    border-top: 1px solid rgba(255, 138, 0, 0.18);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .split-grid.reverse,
  .career-preview,
  .details-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: auto;
    height: 440px;
  }

  .split-image img,
  .page-image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: 92%;
  }

  .hero {
    padding-top: 128px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -2px;
  }

  .brand-text small {
    display: none;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .service-preview-grid,
  .services-grid,
  .systems-preview-grid,
  .systems-grid,
  .process-grid,
  .check-grid,
  .footer-grid,
  .roles-grid,
  .compact-process {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 82px 0;
  }

  .hero-visual,
  .hero-visual img,
  .split-image img,
  .career-image img,
  .page-image img {
    height: 360px;
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .service-preview-card,
  .system-card,
  .premium-solution-card {
    min-height: auto;
    padding: 26px;
  }

  .service-preview-card p {
    min-height: auto;
  }

  .service-preview-card a {
    font-size: 17px;
  }
}

/* ==================================================
   TECH HUNTER PREMIUM NAV + MOBILE MENU FIX
   Final fixed block - keep this at the END of style.css
================================================== */

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a,
.nav-dropdown > .nav-main-link {
  color: #dedede;
  font-size: 15px;
  font-weight: 850;
  transition: 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav > a:not(.nav-btn)::after,
.nav-dropdown > .nav-main-link::after {
  content: "";
  width: 0;
  height: 3px;
  background: var(--orange);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav > a:hover,
.nav > a.active,
.nav-dropdown:hover > .nav-main-link,
.nav-dropdown > .nav-main-link.active {
  color: var(--orange-2);
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-dropdown:hover > .nav-main-link::after,
.nav-dropdown > .nav-main-link.active::after {
  width: 100%;
}

.dropdown-arrow {
  font-size: 16px;
  line-height: 1;
  opacity: 0.85;
  transform: translateY(-1px);
  transition: 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg) translateY(1px);
  color: var(--orange);
}

.nav-btn {
  background: var(--orange);
  color: #111 !important;
  padding: 14px 27px;
  border-radius: 999px;
  font-weight: 950 !important;
  box-shadow: 0 18px 46px rgba(255, 138, 0, 0.22);
}

.nav-btn:hover {
  background: #ffffff;
  color: #111 !important;
  transform: translateY(-2px);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* invisible hover bridge - prevents dropdown closing on desktop */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  top: 26px;
  width: 340px;
  height: 24px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 46px;
  left: -24px;
  width: 350px;
  padding: 14px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 138, 0, 0.17), transparent 36%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.99), rgba(8, 8, 8, 0.99));
  border: 1px solid rgba(255, 138, 0, 0.28);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: 0.25s ease;
  z-index: 9999;
  overflow: hidden;
}

.nav-dropdown-menu::before {
  content: "Tech Hunter Services";
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  color: #e6e6e6;
  padding: 13px;
  border-radius: 18px;
  transition: 0.25s ease;
  position: relative;
}

.nav-dropdown-menu a:not(:last-child) {
  margin-bottom: 5px;
}

.drop-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 138, 0, 0.24);
  font-size: 14px;
  font-weight: 950;
  transition: 0.25s ease;
}

.nav-dropdown-menu b {
  display: block;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 5px;
}

.nav-dropdown-menu small {
  display: block;
  color: #9e9e9e;
  font-size: 12.5px;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active-service {
  background: rgba(255, 138, 0, 0.12);
  transform: translateX(5px);
}

.nav-dropdown-menu a:hover .drop-icon,
.nav-dropdown-menu a.active-service .drop-icon {
  background: var(--orange);
  color: #111;
  border-color: var(--orange);
  box-shadow: 0 16px 34px rgba(255, 138, 0, 0.18);
}

.nav-dropdown-menu a:hover b,
.nav-dropdown-menu a.active-service b {
  color: var(--orange-2);
}

.nav-dropdown-menu a.active-service::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.65);
}

.nav-main-link.active {
  color: var(--orange-2) !important;
}

/* MOBILE MENU */
@media (max-width: 920px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-btn {
    display: flex;
    position: relative;
    z-index: 10002;
  }

  .nav {
    position: fixed;
    top: 84px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 28px 8%;
    transition: right 0.35s ease;
    border-top: 1px solid rgba(255, 138, 0, 0.18);
    overflow-y: auto;
    z-index: 10001;
  }

  .nav.active {
    right: 0;
  }

  .nav > a,
  .nav-dropdown > .nav-main-link {
    font-size: 18px;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown > .nav-main-link {
    display: flex;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    margin-top: 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .nav-dropdown-menu::before {
    padding-left: 8px;
  }

  .nav-dropdown-menu a {
    grid-template-columns: 44px 1fr;
    padding: 12px;
  }

  .drop-icon {
    width: 44px;
    height: 44px;
  }
}
