:root {
  --orange: #f5c100;
  --orange-hot: #ffe566;
  --gold-glow: rgba(245, 193, 0, 0.55);
  --gold-glow-hot: rgba(255, 229, 102, 0.7);
  --navy: #0d1f4e;
  --near-black: #080808;
  --silver: #b0b0b0;
  --off-white: #f5f3ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--off-white);
  color: var(--near-black);
  overflow-x: hidden;
}

::selection {
  background: var(--orange);
  color: #fff;
}

/* ── TYPOGRAPHY ─────────────────── */
.font-display {
  font-family: "Bebas Neue", cursive;
}

/* ── GRID LINES ─────────────────── */
#grid-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
#grid-lines span {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
#grid-lines span:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── HEADER ─────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--near-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding 0.4s ease;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-inner .left-slot {
  display: flex;
  align-items: center;
}
.header-inner .center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.header-inner .right-slot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.logo-icon {
  color: var(--orange);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 53, 3, 0.7));
  margin-bottom: 2px;
}
.logo-text {
  font-family: "Bebas Neue", cursive;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

/* Hamburger */
#menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
#menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
#menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menu-btn.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
#menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown nav */
#nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--near-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 99;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}
#nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
#nav-drawer ul {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}
#nav-drawer ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#nav-drawer ul li:last-child {
  border-bottom: none;
}
#nav-drawer ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
#nav-drawer ul li a:hover {
  color: var(--orange);
}
#nav-drawer ul li a .nav-num {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.1em;
}

/* ── SCROLL ANIM ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.from-left {
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.from-right {
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.blur-in {
  filter: blur(8px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
  filter: blur(0);
}
.reveal.delay-1 {
  transition-delay: 0.1s;
}
.reveal.delay-2 {
  transition-delay: 0.2s;
}
.reveal.delay-3 {
  transition-delay: 0.3s;
}
.reveal.delay-4 {
  transition-delay: 0.4s;
}
.reveal.delay-5 {
  transition-delay: 0.5s;
}

/* ── HERO ───────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem 5rem;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* #hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", cursive;
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
} */

#hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

#hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 193, 0, 0.7),
    transparent
  );
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}
.outer-eyebrow {
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}

#hero-title {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(56px, 9vw, 130px);
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.01em;
  /* margin-bottom: 3rem; */
  text-align: center;
}

#hero-title .accent {
  display: inline-block;
  filter: drop-shadow(0 0 7px rgba(228, 200, 101, 0.4))
    drop-shadow(0 0 20px rgba(245, 193, 0, 0.3));
  /* filter: drop-shadow(0 0 7px rgba(228, 200, 101, 0.4)); */
  /* background: linear-gradient(
    0deg,
    #f5c100 0%,
    #f5c100 40%,
    #ceb747 70%,
    #f1e0a2 100%
  ); */
}
#hero-title .hero-subtitle {
  display: block;
  padding-top: 12px;
  font-size: 0.55em;
  font-weight: 400;
  line-height: 1.2;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
  /*border-top: 1px solid rgba(255, 255, 255, 0.1);*/
  padding-top: 2rem;
  margin-top: 1rem;
}
.hero-quote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  font-style: italic;
  max-width: 480px;
  line-height: 1.7;
}

/* ── BTN ────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(160deg, #fff8c0 0%, #f5c100 40%, #c98f00 100%);
  color: #0a0a0a;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s, gap 0.25s;
  box-shadow: 0 0 18px rgba(245, 193, 0, 0.5), 0 0 40px rgba(245, 193, 0, 0.2);
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(160deg, #ffffff 0%, #ffe566 40%, #f5c100 100%);
  box-shadow: 0 0 28px rgba(255, 229, 102, 0.75),
    0 0 60px rgba(245, 193, 0, 0.35);
  gap: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, gap 0.25s;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  gap: 16px;
}

/* ── PLATFORM STRIP ─────────────── */
#platform-strip {
  background: var(--near-black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
.marquee-item iconify-icon {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── STATS BAR ──────────────────── */
#stats-bar {
  background: linear-gradient(
    135deg,
    #c98f00 0%,
    #f5c100 40%,
    #ffe040 70%,
    #f5c100 100%
  );
  padding: 3.5rem 2rem;
  box-shadow: 0 0 60px rgba(245, 193, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  background: transparent;
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(48px, 5vw, 72px);
  background: linear-gradient(0deg, #070707 0%, #33311e 50%, #685202 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

/* ── SECTION HEADERS ────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.section-tag.dark {
  color: rgba(255, 255, 255, 0.35);
}
.section-tag.dark::before {
  background: rgba(255, 255, 255, 0.2);
}

.section-h2 {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* ── WHAT I DO ──────────────────── */
#what-i-do {
  padding: 8rem 2rem;
  background: var(--off-white);
  position: relative;
}
.wid-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.wid-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 5rem;
}
.wid-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cap-card:nth-child(4) {
  grid-column: span 1;
}
.cap-card:nth-child(5) {
  grid-column: span 2;
}
.cap-card {
  background: var(--off-white);
  padding: 2.5rem;
  transition: background 0.1s;
  cursor: default;
}
.cap-card:hover {
  background: var(--near-black);
}
.cap-card:hover .cap-title {
  color: #fff;
}
.cap-card:hover .cap-desc,
.cap-card:hover .cap-num {
  color: rgba(255, 255, 255, 0.45);
}
.cap-card:hover .cap-icon {
  color: var(--orange);
}
.cap-num {
  font-family: "Bebas Neue", cursive;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}
.cap-icon {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  transition: color 0.2s;
}
.cap-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.cap-desc {
  font-size: 0.83rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.75;
  font-weight: 300;
  transition: color 0.2s;
}

/* ── ABOUT ──────────────────────── */
#about {
  background: var(--near-black);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* filter: grayscale(1);
        transition: opacity 0.6s, filter 0.6s; */
}
/* .about-img-wrap:hover img {
        opacity: 1;
        filter: grayscale(0);
      } */
.about-name-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #fff0a0 0%, #f5c100 50%, #c98f00 100%);
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(245, 193, 0, 0.5);
}
.bracket-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.bracket-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.about-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 300;
}
.about-text p {
  margin-bottom: 1.2rem;
}
.about-pullquote {
  border-left: 2px solid var(--orange);
  padding: 0.75rem 0 0.75rem 1.2rem;
  color: #fff;
  font-style: italic;
  margin: 1.8rem 0;
  font-size: 0.95rem;
}

/* ── SERVICES ───────────────────── */
#services {
  background: var(--off-white);
  padding: 8rem 2rem;
}
.svc-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.svc-header {
  text-align: center;
  margin-bottom: 5rem;
}
.svc-sub {
  color: var(--navy);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-weight: 400;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.svc-card {
  background: var(--navy);
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.svc-card:hover {
  background: #0a1840;
}
.svc-card-num {
  position: absolute;
  right: -10px;
  top: -10px;
  font-family: "Bebas Neue", cursive;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.svc-card:hover .svc-card-num {
  color: rgba(245, 193, 0, 0.1);
}
.svc-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  position: relative;
}
.svc-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  space-y: 0.75rem;
  position: relative;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.svc-list li:first-child {
  border-top: none;
}
.svc-list li iconify-icon {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TESTIMONIALS ───────────────── */
#testimonials {
  background: var(--near-black);
  padding: 8rem 2rem;
}
.test-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.test-header {
  margin-bottom: 4rem;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.test-card {
  background: var(--near-black);
  padding: 3rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
}
.test-card:hover {
  border-color: rgba(245, 193, 0, 0.4);
}
.quote-mark {
  font-family: "Bebas Neue", cursive;
  font-size: 5rem;
  color: rgba(245, 193, 0, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.test-card:hover .quote-mark {
  color: rgba(245, 193, 0, 0.45);
}
.test-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.test-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
.test-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* ── FAQS ───────────────────────── */
#faqs {
  background: var(--off-white);
  padding: 8rem 2rem;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.8rem 0;
}
.faq-q {
  font-size: 1rem;
  font-weight: 500;
  color: var(--near-black);
  display: flex;
  gap: 1rem;
  cursor: pointer;
  align-items: flex-start;
}
.faq-q-label {
  color: var(--orange);
  font-weight: 600;
  flex-shrink: 0;
}
.faq-a {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 300;
  line-height: 1.8;
  display: flex;
  gap: 1rem;
}
.faq-a-label {
  color: var(--navy);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── CONTACT ────────────────────── */
#contact {
  background: var(--near-black);
  padding: 8rem 2rem;
}
.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}
.contact-info-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.contact-icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.form-field {
  margin-bottom: 1.2rem;
}
.form-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-input:focus {
  border-color: var(--orange);
}

/* ── FOOTER ─────────────────────── */
footer {
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 2rem;
  text-align: center;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 900px) {
  .wid-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cap-card:nth-child(5) {
    grid-column: span 2;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-wrap {
    aspect-ratio: 3/2;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-card:nth-child(5) {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}