/* ===== INTIGREAT SOLUTIONS — INDUSTRIAL REDESIGN ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

:root {
  --black:    #080c12;
  --dark:     #0e1520;
  --panel:    #141c28;
  --border:   #1e2d42;
  --blue:     #0047ab;
  --blue-lt:  #0066cc;
  --orange:   #ff5c00;
  --orange-lt:#ff7a2a;
  --steel:    #8fa3b8;
  --text:     #c8d8e8;
  --white:    #eef3f8;
  --grid: repeating-linear-gradient(
    0deg, transparent, transparent 39px,
    rgba(0,71,171,0.06) 39px, rgba(0,71,171,0.06) 40px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 39px,
    rgba(0,71,171,0.06) 39px, rgba(0,71,171,0.06) 40px
  );
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== GRID OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grid);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ===== SITE LOGO IMAGE ===== */
.site-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1.05);
}

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,12,18,0.96);
  border-bottom: 2px solid var(--orange);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.logo-icon svg { width: 26px; height: 26px; fill: #fff; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: all .2s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(255,92,0,0.08);
}

.nav-cta {
  margin-left: 12px;
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--orange-lt) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8,12,18,0.98);
    border-bottom: 2px solid var(--orange);
    padding: 16px;
    gap: 4px;
    align-items: flex-start;
  }
  nav.open { display: flex; }
  nav a { width: 100%; }
  .nav-cta { margin-left: 0 !important; width: 100%; text-align: center; }
}

/* ===== PAGE HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,71,171,0.45) 0%, transparent 60%),
    linear-gradient(225deg, rgba(255,92,0,0.25) 0%, transparent 50%),
    url('../images/s1.jpg') center/cover no-repeat;
  filter: brightness(0.35);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,92,0,0.08) 79px, rgba(255,92,0,0.08) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,71,171,0.08) 79px, rgba(0,71,171,0.08) 80px);
}

.hero-accent {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,92,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,0,0.15);
  border: 1px solid rgba(255,92,0,0.4);
  padding: 6px 16px;
  margin-bottom: 24px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  animation: fadeUp .6s ease both;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  animation: blink 1.2s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  animation: fadeUp .7s .1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--steel);
  max-width: 560px;
  margin: 24px 0 40px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp .8s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .9s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
  transition: all .2s;
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 2px solid var(--blue-lt);
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(0,71,171,0.2); border-color: var(--orange); color: var(--orange); }

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  animation: fadeUp 1s .4s ease both;
}

.stat-item {
  border-left: 3px solid var(--orange);
  padding: 8px 24px;
  flex: 1;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--orange); }

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ===== SECTION STYLES ===== */
section {
  position: relative;
  z-index: 1;
}

.section-pad { padding: 100px 24px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

h2 span { color: var(--orange); }

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* ===== SERVICE CARDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.card:hover {
  border-color: rgba(255,92,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card:hover::before { transform: scaleX(1); }

.card-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,92,0,0.12);
  border: 1px solid rgba(255,92,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.card-icon svg { width: 24px; height: 24px; fill: var(--orange); }

.card p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

/* ===== DARK SECTION ===== */
.section-dark { background: var(--dark); }
.section-darker { background: var(--panel); }
.section-accent {
  background: linear-gradient(135deg, var(--blue) 0%, #001f5e 100%);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--orange), var(--border), transparent);
  margin: 0;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 2px solid var(--orange);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,71,171,0.3) 0%, transparent 60%),
    url('../images/s2.jpg') center/cover;
  filter: brightness(0.18);
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb span { color: var(--border); }
.page-banner h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}
.page-banner p {
  color: var(--steel);
  font-size: 16px;
  max-width: 560px;
  font-weight: 300;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
.product-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(255,92,0,0.15);
}
.product-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #0a1020;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: all .4s;
}
.product-img img.thumb {
  width: auto;
  height: 140px;
  object-fit: contain;
  filter: saturate(0.8) brightness(0.9);
}
.product-card:hover .product-img img {
  filter: saturate(1) brightness(1);
  transform: scale(1.05);
}
.product-card:hover .product-img img.thumb {
  filter: saturate(1) brightness(1);
  transform: scale(1.08);
}
.product-body { padding: 24px; }
.product-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-body ul {
  list-style: none;
  margin-top: 12px;
}
.product-body ul li {
  font-size: 13px;
  color: var(--steel);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-body ul li::before {
  content: '▸';
  color: var(--orange);
  font-size: 10px;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--blue), var(--orange));
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.timeline-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 6px;
}
.timeline-content {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 24px;
}

/* ===== CLIENT LOGOS ===== */
.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.client-logo-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 80px;
  transition: all .2s;
  overflow: hidden;
}
.client-logo-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 16px rgba(255,92,0,0.12);
}
.client-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  transition: filter .2s;
}
.client-logo-card:hover img {
  filter: grayscale(0) brightness(1);
}

/* ===== CLIENT BADGE (text fallback) ===== */
.client-badge {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  transition: all .2s;
}
.client-badge:hover {
  border-color: var(--orange);
  color: var(--white);
}

/* ===== PROCESS STEPS ===== */
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}
.step-body h3 { font-size: 18px; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--steel); line-height: 1.6; }

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  transition: all .3s;
}
.team-card:hover { border-color: var(--orange); }
.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
}
.team-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.team-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--steel);
  text-decoration: none;
}
.team-contact a:hover { color: var(--orange); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0a1628, #001040);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--blue);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,92,0,0.12), transparent 60%);
  pointer-events: none;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
  transition: all .2s;
}
.btn-wa:hover { background: #1fb855; transform: translateY(-2px); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 2px solid var(--blue-lt);
  transition: all .2s;
}
.btn-call:hover { background: var(--blue-lt); transform: translateY(-2px); }

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-wa, .float-call {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: all .2s;
  position: relative;
}
.float-wa  { background: #25d366; }
.float-call{ background: var(--blue); }
.float-wa:hover, .float-call:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
.float-wa svg, .float-call svg { width: 26px; height: 26px; fill: #fff; }

.float-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  padding: 6px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.float-wa:hover .float-tooltip,
.float-call:hover .float-tooltip { opacity: 1; }

/* ===== FOOTER ===== */
footer {
  background: #040609;
  border-top: 2px solid var(--border);
  padding: 60px 24px 32px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
  margin: 16px 0;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--steel);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 1px;
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ===== ABOUT IMAGE SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.7);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}
.about-img-accent span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
.about-img-accent span:last-child {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.check-list { list-style: none; margin: 24px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
}

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,92,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.ci-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.ci-value {
  font-size: 15px;
  color: var(--white);
}
.ci-value a { color: var(--white); text-decoration: none; }
.ci-value a:hover { color: var(--orange); }

/* ===== SERVICES LIST ===== */
.service-item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: all .2s;
}
.service-item:hover {
  border-left: 3px solid var(--orange);
  transform: translateX(4px);
}
.si-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  flex-shrink: 0;
  width: 36px;
}
.si-text {
  font-size: 14px;
  color: var(--text);
}

/* ===== UTILITY ===== */
.text-orange { color: var(--orange); }
.text-steel { color: var(--steel); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.text-sm { font-size: 13px; }
.font-mono { font-family: 'Share Tech Mono', monospace; }
.uppercase { text-transform: uppercase; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== HIGHLIGHT BAR ===== */
.highlight-bar {
  background: var(--orange);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.highlight-bar p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.highlight-bar a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
}
