:root {
  --yellow: #ffb800;
  --yellow-2: #f5c400;
  --yellow-dark: #d99800;
  --black: #090a0b;
  --dark: #111315;
  --ink: #151515;
  --muted: #666666;
  --soft: #f6f6f4;
  --line: #e6e6e6;
  --white: #ffffff;
  --header: 76px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
#why { scroll-margin-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.yellow-text { color: var(--yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-2); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.08); }

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  background: #050607;
  border-bottom: 1px solid #1e2022;
}
.nav-wrap {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}
.brand-word {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #fff;
  line-height: 1;
}
.brand-word .dot {
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
}
.nav > a,
.nav-drop > a {
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.nav > a:hover,
.nav > a.active,
.nav-drop > a.active,
.nav-drop:hover > a {
  color: var(--yellow);
}
.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 11px 18px;
  border-radius: 3px;
  font-weight: 800;
}
.nav-cta:hover { background: var(--yellow-2); color: var(--black) !important; }

.nav-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
.nav-drop > a small { font-size: 10px; margin-left: 4px; opacity: .8; }
.drop-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  z-index: 20;
  min-width: 210px;
  padding: 10px;
  background: #111;
  border: 1px solid #222;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  display: none;
}
.drop-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.drop-menu a {
  display: block;
  padding: 11px 12px;
  color: #fff;
  font-size: 13px;
}
.drop-menu a:hover,
.drop-menu a.active {
  background: #1d1d1d;
  color: var(--yellow);
}
.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu { display: block; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* Home hero slider */
.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
  background-size: cover;
  background-position: center right;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 800;
}
.hero-copy h1 span { color: var(--yellow); }
.hero-copy p {
  margin: 0;
  max-width: 480px;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.7;
}
.actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 42px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(8,8,8,.45);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.slider-arrow.left { left: 18px; }
.slider-arrow.right { right: 18px; }
.slider-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.slider-dots button.active { background: var(--yellow); }

/* Trusted */
.trusted {
  background: #0d0f10;
  color: #fff;
  padding: 28px 0;
}
.trusted-row {
  display: flex;
  align-items: center;
  gap: 40px;
}
.trusted strong {
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .08em;
  color: var(--yellow);
}
.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 22px;
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .78;
}
.logos span { white-space: nowrap; }

/* Services */
.section { padding: 88px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.8px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 34px 30px 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
  min-height: 280px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.round-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
}
.round-icon i { font-size: 20px; line-height: 1; color: var(--black); }
.service-card h3 { margin: 0 0 12px; font-size: 20px; }
.service-card p { margin: 0; color: #555; font-size: 14px; line-height: 1.7; }
.service-card .more {
  display: inline-block;
  margin-top: 18px;
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 700;
}

/* Technology expertise */
.tech-section {
  background: #000;
  color: #fff;
  padding: 92px 0;
}
.tech-section .eyebrow { margin-bottom: 14px; }
.tech-section h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.2px;
}
.tech-section h2 span { color: var(--yellow); }
.tech-section > .container > p {
  margin: 0 0 42px;
  max-width: 640px;
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tech-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #121212;
}
.tech-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.tech-logo svg,
.tech-logo img { width: 36px; height: 36px; }
.tech-logo i { font-size: 32px; line-height: 1; }
.tech-logo .fa-aws { color: #ff9900; }
.tech-logo .fa-square-js { color: #f7df1e; }
.tech-logo .fa-python { color: #3776ab; }
.tech-logo .fa-react { color: #61dafb; }
.tech-logo .fa-node-js { color: #3c873a; }
.tech-logo .fa-mobile-screen { color: #fff; }
.tech-card strong { display: block; font-size: 16px; }
.tech-card small { display: block; margin-top: 3px; color: #888; font-size: 12px; }

/* Stats */
.stats {
  background: var(--dark);
  color: #fff;
  padding: 36px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-grid article {
  padding: 8px 12px;
  border-right: 1px solid #333;
}
.stat-grid article:last-child { border-right: 0; }
.stat-grid i {
  display: block;
  color: var(--yellow);
  font-size: 26px;
  margin-bottom: 10px;
}
.stat-grid b {
  display: block;
  font-size: 30px;
  letter-spacing: -.5px;
}
.stat-grid span {
  display: block;
  margin-top: 4px;
  color: #d5d5d5;
  font-size: 13px;
}

/* CTA strip */
.cta-strip {
  background: var(--yellow);
  padding: 52px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -.6px;
}
.cta-inner p { margin: 0 0 22px; font-size: 15px; }
.contact-mini { font-size: 15px; line-height: 1.5; }
.contact-mini p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.contact-mini i { width: 18px; text-align: center; }

/* Footer */
.footer {
  background: #090b0c;
  color: #fff;
  padding: 28px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex: 1;
  font-size: 13px;
  color: #d0d0d0;
}
.footer-links a:hover { color: var(--yellow); }
.social { display: flex; gap: 10px; }
.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #666;
  border-radius: 50%;
  color: #ddd;
}
.social a:hover { border-color: var(--yellow); color: var(--yellow); }
.social a i { font-size: 13px; }
.footer small { color: #aaa; font-size: 12px; }

/* Inner page heroes — framed exactly like the home hero slider */
.inner-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  color: #fff;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center right;
}
.inner-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}
.crumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: #cfcfcf;
  font-size: 12px;
}
.crumbs a:hover { color: var(--yellow); }
.crumbs .current { color: var(--yellow); }
.inner-hero h1 {
  margin: 14px 0 18px;
  max-width: 560px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 800;
}
.inner-hero h1 span { color: var(--yellow); }
.inner-hero p {
  margin: 0;
  max-width: 520px;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.7;
}

/* Two-column service content */
.page-content { padding: 72px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.content-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
}
.content-grid > div > p {
  margin: 0 0 22px;
  color: #555;
  font-size: 15px;
  line-height: 1.75;
}
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}
.checklist .check {
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-top: 3px;
  color: var(--yellow);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.feature-grid article {
  padding: 8px 4px;
}
.feature-grid i {
  color: var(--yellow);
  font-size: 22px;
}
.feature-grid h4 { margin: 10px 0 8px; font-size: 16px; }
.feature-grid p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.65;
}

.bottom-banner {
  background: var(--yellow);
  padding: 22px 0;
}
.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.banner-inner strong { font-size: 18px; }

/* About extras */
.about-stats {
  background: #fff;
  padding: 48px 0 12px;
}
.about-stats .stat-grid article { border-right: 1px solid #eee; }
.about-stats .stat-grid article:last-child { border-right: 0; }
.about-stats .stat-grid b,
.about-stats .stat-grid span { color: var(--ink); }
.about-stats .stat-grid span { color: var(--muted); }
.values { padding: 28px 0 80px; }
.values h3 {
  margin: 0 0 28px;
  font-size: 26px;
  text-align: center;
}
.values .feature-grid { gap: 28px 32px; }
.values .feature-grid article {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: #fff;
}
.values .icon { width: 36px; height: 36px; }

/* How we work */
.process-steps {
  padding: 88px 0;
  background: var(--soft);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 2px dashed var(--yellow);
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--yellow);
  color: var(--yellow);
  position: relative;
  z-index: 1;
}
.step-icon i { font-size: 24px; color: var(--yellow); }
.process-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.process-step p {
  margin: 0 auto;
  max-width: 220px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Contact */
.contact-page {
  position: relative;
  min-height: calc(100vh - var(--header) - 88px);
  color: #fff;
  background: #0d0f10;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.contact-grid h1 {
  margin: 10px 0 16px;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -1.4px;
}
.contact-grid > div > p {
  margin: 0;
  max-width: 460px;
  color: #ddd;
  line-height: 1.7;
}
.contact-details { margin-top: 32px; }
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 15px;
}
.contact-details i,
.contact-page .social i { color: var(--yellow); }
.contact-page .social { margin-top: 28px; }
.contact-page .social a { border-color: #777; }

.contact-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #444;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fafafa;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,184,0,.18);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.form-note { margin: 0; color: #777; font-size: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #080909;
    padding: 18px 22px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .drop-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 6px 0 0 12px;
  }
  .drop-menu::before { display: none; }
  .nav-drop:hover .drop-menu { display: none; }
  .nav.open .drop-menu { display: block; }
  .footer-row { flex-wrap: wrap; }
}

@media (max-width: 980px) {
  .service-grid,
  .tech-grid,
  .content-grid,
  .contact-grid,
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
  .trusted-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .logos { flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 800px) {
  :root { --header: 66px; }
  .container { width: min(100% - 32px, 1180px); }
  .hero-slider { height: 560px; }
  .inner-hero { min-height: 560px; }
  .hero-copy h1 { font-size: 36px; }
  .slider-arrow { display: none; }
  .service-grid,
  .tech-grid,
  .stat-grid,
  .content-grid,
  .feature-grid,
  .contact-grid,
  .process-track { grid-template-columns: 1fr; }
  .stat-grid article,
  .about-stats .stat-grid article {
    border-right: 0;
    border-bottom: 1px solid #333;
    padding: 18px 0;
  }
  .about-stats .stat-grid article { border-bottom-color: #eee; }
  .cta-inner,
  .footer-row,
  .banner-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .section,
  .tech-section,
  .page-content { padding: 64px 0; }
  .inner-hero h1 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
