:root {
  --bg-deep: #0a0a0a;
  --bg-card: #111111;
  --bg-mid: #161616;
  --orange: #e07b00;
  --orange-light: #f59c2a;
  --orange-glow: #ff9500;
  --silver: #8a8a8a;
  --silver-light: #c0c0c0;
  --white: #f0f0f0;
  --border: rgba(224,123,0,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
}

/* GRID TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,123,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,123,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--silver-light);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--orange-light);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--orange-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: #000 !important;
  padding: 0.45rem 1.3rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; box-shadow: 0 0 20px rgba(224,123,0,0.5) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-light);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(224,123,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(138,138,138,0.06) 0%, transparent 50%);
}

.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45vw; height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
.hero-accent::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 100%; height: 120%;
  background: linear-gradient(135deg, transparent 45%, rgba(224,123,0,0.04) 45%, rgba(224,123,0,0.04) 55%, transparent 55%);
  transform: skewX(-8deg);
}

.hero-slash {
  position: absolute;
  top: 0; right: 38%;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(224,123,0,0.3) 30%, rgba(224,123,0,0.6) 50%, rgba(224,123,0,0.3) 70%, transparent);
  transform: skewX(-12deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange-light);
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--silver-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: slideUp 0.8s 0.15s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  padding: 0.85rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  display: inline-block;
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 0 30px rgba(224,123,0,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(192,192,192,0.3);
  color: var(--silver-light);
  padding: 0.85rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-light); }

/* STATS BAR */
.stats-bar {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 260px;
  padding: 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.3rem;
  display: block;
}

/* SECTION COMMON */
section { position: relative; z-index: 1; padding: 7rem 6vw; }

.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
}
.section-tag--center { justify-content: center; }
.section-tag--center::before { display: none; }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
}
.section-title span { color: var(--orange-light); }

/* SERVICES */
.services { background: var(--bg-deep); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange-light);
  transition: height 0.35s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: #161616; }

.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  font-weight: 300;
}

.service-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(224,123,0,0.08);
  line-height: 1;
}

/* WHY US */
.why-us {
  background: var(--bg-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 6vw;
}
.why-visual {
  position: relative;
  height: 420px;
}
.why-box {
  position: absolute;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  transition: box-shadow 0.3s;
}
.why-box:hover { box-shadow: 0 0 30px rgba(224,123,0,0.15); }
.why-box:nth-child(1) { top: 0; left: 0; width: 75%; }
.why-box:nth-child(2) { top: 25%; right: 0; width: 65%; }
.why-box:nth-child(3) { top: 52%; left: 5%; width: 70%; }
.why-box:nth-child(4) { bottom: 0; right: 0; width: 60%; }
.why-box-icon {
  width: 36px; height: 36px;
  background: rgba(224,123,0,0.12);
  border: 1px solid rgba(224,123,0,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-box-icon svg { width: 18px; height: 18px; stroke: var(--orange-light); fill: none; stroke-width: 2; }
.why-box-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.why-box-text span {
  font-size: 0.78rem;
  color: var(--silver);
  font-weight: 300;
}

.why-content .feature-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--silver-light);
  line-height: 1.6;
}
.feature-list li::before {
  content: '▸';
  color: var(--orange-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* WEB SECTION */
.web-section {
  background: var(--bg-deep);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 6vw;
}
.web-content { order: 2; }
.web-visual { order: 1; }

.web-intro {
  color: var(--silver-light);
  font-size: 0.93rem;
  line-height: 1.8;
  margin: 1.5rem 0;
  font-weight: 300;
}

.browser-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(224,123,0,0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(224,123,0,0.08);
}
.browser-bar {
  background: #1a1a1a;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #e05a5a; }
.browser-dot:nth-child(2) { background: #e0b95a; }
.browser-dot:nth-child(3) { background: #5ae07d; }
.browser-url {
  flex: 1;
  background: #222;
  border-radius: 3px;
  padding: 0.25rem 0.8rem;
  font-size: 0.72rem;
  color: var(--silver);
  margin-left: 0.5rem;
}
.browser-content { padding: 2rem; min-height: 240px; }
.mock-hero-bar {
  height: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  margin-bottom: 1rem;
  width: 55%;
}
.mock-line {
  height: 8px;
  border-radius: 3px;
  background: #222;
  margin-bottom: 0.7rem;
}
.mock-line.short { width: 40%; }
.mock-line.mid { width: 65%; }
.mock-line.long { width: 90%; }
.mock-cards { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.mock-card {
  flex: 1;
  height: 70px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.mock-card:first-child { border-color: rgba(224,123,0,0.4); }

/* PROCESS */
.process { background: var(--bg-mid); }
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-circle {
  width: 56px; height: 56px;
  border: 2px solid var(--orange);
  background: var(--bg-deep);
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.step-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(224,123,0,0.2);
}
.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-light);
}
.process-step h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--silver);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  background: var(--bg-deep);
  padding: 7rem 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,123,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section h2 span { color: var(--orange-light); }
.cta-section > p {
  color: var(--silver-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-section .btn-primary { position: relative; }

.contact-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  position: relative;
}
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--silver-light);
  font-size: 0.9rem; transition: color 0.2s;
}
.contact-item:hover { color: var(--orange-light); }
.contact-item svg { stroke: var(--orange); fill: none; width: 20px; height: 20px; stroke-width: 1.5; flex-shrink: 0; }

.team-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 220px;
}
.team-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(224,123,0,0.15);
}
.team-card-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(224,123,0,0.3);
  background: rgba(224,123,0,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.team-card-icon svg { width: 20px; height: 20px; stroke: var(--orange-light); fill: none; stroke-width: 1.5; }
.team-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}
.team-card-info strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.team-card-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  font-weight: 600;
}
.team-card-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--silver-light);
  font-weight: 300;
}
.team-card-phone svg { width: 13px; height: 13px; stroke: var(--silver); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* FOOTER */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--silver);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo-img {
  height: 64px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }

/* SINGLE PAGE */
.page-content {
  min-height: 100vh;
  padding: 10rem 6vw 5rem;
  max-width: 800px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.page-body {
  color: var(--silver-light);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}
.page-body h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.8rem;
}
.page-body p { margin-bottom: 1rem; }
.page-body strong { color: var(--white); font-weight: 600; }
.page-body a { color: var(--orange-light); }

/* ANIMATIONS */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding-top: 72px; }
  .why-us, .web-section { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { height: 300px; }
  .web-content { order: 1; }
  .web-visual { order: 2; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .process-steps::before { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem 6vw;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 150px; }
  .contact-bar { flex-direction: column; align-items: stretch; gap: 1rem; }
  .team-card { min-width: unset; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
