:root {
  --bs-body-font-family: 'Gabarito', sans-serif;
  --accent: #ffffff;
}
* { scrollbar-width: thin; scrollbar-color: #333 #0a0a0a; }

body { background: #000; color: #ccc; }

.navbar { backdrop-filter: blur(16px); background: rgba(0,0,0,.85) !important; border-bottom: 1px solid #1a1a1a; transition: .3s; }
.navbar .nav-link { color: #999 !important; font-weight: 500; transition: color .3s; position: relative; }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff !important; }
.navbar .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: #fff; transition: all .3s; transform: translateX(-50%); }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 60%; }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a1a1a 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 80%, #111 0%, transparent 60%); }
.hero-title { font-size: clamp(2.4rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; }
.hero-title .highlight { background: linear-gradient(135deg, #fff 30%, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.section-label { font-size: .75rem; letter-spacing: .35em; text-transform: uppercase; color: #666; font-weight: 600; margin-bottom: .75rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; }
.section-sub { color: #888; max-width: 600px; }

/* Process timeline */
.process-timeline {
  position: relative;
  padding: 0.5rem 0;
}

.process-timeline::before {
  content: none;
}
@media (min-width: 992px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 72px;
    right: 72px;
    height: 2px;
    background: linear-gradient(90deg, #1a1a1a, #333 50%, #1a1a1a);
    z-index: 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: #0a0a0a;
  border: 2px solid #1a1a1a;
  font-size: 1.3rem;
  font-weight: 800;
  color: #555;
  position: relative;
  transition: all .4s;
}

.process-step:hover .process-step-num {
  border-color: #666;
  color: #fff;
  background: #111;
  box-shadow: 0 0 24px rgba(255,255,255,0.06);
}

.process-step-card {
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #0a0a0a;
  transition: all .4s;
}

.process-step:hover .process-step-card {
  border-color: #2a2a2a;
  background: #111;
  transform: translateY(-3px);
}

.process-step-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
}

.process-step-card p {
  color: #888;
  font-size: .85rem;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #1a1a1a, #333 50%, #1a1a1a);
  }

  .process-step {
    display: flex;
    gap: 1.25rem;
    text-align: left;
    align-items: flex-start;
  }

  .process-step-num {
    margin: 0;
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .process-step-card {
    flex: 1;
    min-width: 0;
  }
}

.service-card { border: 1px solid #1a1a1a; border-radius: 1.25rem; padding: 2rem; background: #0a0a0a; transition: all .4s; }
.service-card:hover { border-color: #333; background: #111; transform: translateY(-6px); }
.service-icon { font-size: 2rem; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: #111; border: 1px solid #222; color: #fff; margin-bottom: 1.25rem; }
.service-card h5 { color: #fff; font-weight: 700; }
.service-card .badge { background: #1a1a1a !important; color: #999; font-weight: 500; border: 1px solid #262626; font-size: .75rem; }

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}
.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  box-shadow: 0 0 0 1px #1a1a1a;
  transition: box-shadow .4s, transform .4s;
  aspect-ratio: 16/11;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.portfolio-item:hover {
  box-shadow: 0 0 0 1px #333;
  transform: translateY(-3px);
}

.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity .4s; z-index: 2; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-scroll { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.portfolio-scroll::-webkit-scrollbar { height: 4px; }
.portfolio-scroll::-webkit-scrollbar-track { background: #0a0a0a; }
.portfolio-scroll::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
.portfolio-scroll > .col-sm-6 { min-width: 280px; scroll-snap-align: start; }
@media (min-width: 768px) {
  .portfolio-scroll { overflow-x: visible; flex-wrap: wrap; }
  .portfolio-scroll > .col-sm-6 { min-width: auto; }
}

.trusted-item { display: flex; align-items: center; justify-content: center; height: 60px; font-weight: 700; font-size: 1.1rem; color: #444; letter-spacing: .05em; transition: color .3s; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

.cta-section { border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }

.footer { border-top: 1px solid #1a1a1a; font-size: .85rem; color: #555; }

.btn-outline-light { border-color: #333; color: #ccc; }
.btn-outline-light:hover { background: #fff; color: #000; border-color: #fff; }
.btn-light { background: #fff; color: #000; border: none; }
.btn-light:hover { background: #e6e6e6; color: #000; }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .py-6 { padding-top: 7rem; padding-bottom: 7rem; } }

.portfolio-scroll-wrap {
  position: relative;
}

.portfolio-scroll-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  background: rgba(10,10,10,.85);
  color: #ccc;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  backdrop-filter: blur(8px);
  padding: 0;
}
.portfolio-scroll-arrow:hover {
  border-color: #555;
  color: #fff;
  background: #1a1a1a;
}
.portfolio-scroll-prev { left: -8px; }
.portfolio-scroll-next { right: -8px; }

@media (max-width: 767px) {
  .portfolio-scroll-arrow { display: flex; }
}
