/* ── VARIABLES ── */
:root {
  --red:       #D62B2B;
  --red-dark:  #B01E1E;
  --red-glow:  rgba(214,43,43,0.25);
  --red-dim:   rgba(214,43,43,0.08);
  --charcoal:  #111214;
  --surface:   #191B1F;
  --surface2:  #1F2227;
  --border:    #2A2D34;
  --border2:   #353840;
  --white:     #FFFFFF;
  --text:      #E8EAED;
  --muted:     #6B7280;
  --light:     #9CA3AF;
  --green:     #10B981;
  --amber:     #F59E0B;
  --shadow:    rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--charcoal);
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(17,18,20,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled {
  border-bottom-color: var(--red);
  box-shadow: 0 2px 30px rgba(214,43,43,.15);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-logo { margin-bottom: 1rem; }

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'DM Mono', monospace;
  font-size: .78rem;
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--red);
  border-radius: 3px;
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 2px solid var(--red);
  z-index: 199;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 40px var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block;
  padding: .9rem 0;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mob-cta { color: var(--red) !important; font-family: 'DM Mono', monospace; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 30px var(--red-glow);
  transform: translateY(-2px);
}
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: .9rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 1.5px solid var(--border2);
  transition: all .2s;
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── SECTION SHARED ── */
.section-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding: .1rem 0 .1rem .6rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .04em;
  margin-bottom: .8rem;
}

.title-red { color: var(--red); }

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-intro { margin-bottom: 3.5rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--charcoal);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214,43,43,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,43,43,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: fixed;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214,43,43,.12), transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--light);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  padding: .4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--red); }
  50% { opacity: .6; box-shadow: 0 0 16px var(--red); }
}

.hero-headline {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.headline-top {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: .06em;
}

.headline-bottom {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--red);
  letter-spacing: .06em;
}

.headline-bottom em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  display: inline-flex;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: .06em;
}

.stat span {
  font-size: .65rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border2);
}

/* ── TERMINAL ── */
.hero-visual { position: relative; z-index: 1; }

.terminal-window {
  background: #0D0F12;
  border: 1px solid var(--border2);
  border-top: 2px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 40px rgba(214,43,43,.1);
  overflow: hidden;
}

.terminal-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.t-dots { display: flex; gap: .4rem; }
.td { width: 10px; height: 10px; border-radius: 50%; }
.td.red { background: #FF5F57; }
.td.yellow { background: #FFBD2E; }
.td.green { background: #28CA42; }

.t-title {
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  color: var(--muted);
  margin-left: .4rem;
}

.terminal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.t-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'DM Mono', monospace;
  font-size: .8rem;
}

.t-prompt { color: var(--red); font-weight: 700; }
.t-cmd { color: var(--text); }
.t-ok { color: var(--green); font-weight: 700; }
.t-txt { color: #9CA3AF; }

.t-blink .t-cmd {
  color: var(--red);
  font-weight: 700;
}

.t-blink::after {
  content: '▊';
  color: var(--red);
  animation: blink .8s infinite;
}

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

.terminal-badge {
  position: absolute;
  bottom: -14px;
  right: 20px;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  font-weight: 500;
  padding: .35rem .8rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 4px 16px rgba(16,185,129,.4);
}

.tb-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── GRIT STRIP ── */
.grit-strip {
  background: var(--red);
  padding: 1.6rem 2rem;
  position: relative;
  overflow: hidden;
}

.grit-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,.05) 10px,
    rgba(0,0,0,.05) 20px
  );
}

.grit-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.grit-icon { font-size: 1.8rem; flex-shrink: 0; }

.grit-strip-inner p {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.6;
  flex: 1;
}

.grit-strip-inner strong { color: var(--white); }

.grit-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,.4);
  padding: .5rem 1.2rem;
  border-radius: 3px;
  transition: all .2s;
  flex-shrink: 0;
}
.grit-link:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ── SERVICES ── */
.services {
  padding: 6rem 0;
  background: var(--charcoal);
}

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

.service-card {
  background: var(--surface);
  padding: 2rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .3s;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--surface2); }

.service-card.featured {
  background: var(--surface2);
}

.service-card.featured::before { height: 100%; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(214,43,43,.15);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  letter-spacing: .04em;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--red-dim);
  border: 1px solid rgba(214,43,43,.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .6rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.service-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  font-size: .85rem;
  color: var(--light);
  padding: .3rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: .8rem;
}

.service-price {
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  color: var(--muted);
  padding: .4rem .8rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: inline-block;
}
.service-price strong { color: var(--red); }

/* ── WHY ── */
.why {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.why-body {
  font-size: .98rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.why-left .btn-primary { margin-top: 1rem; }

.why-right { display: flex; flex-direction: column; }

.why-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  opacity: .4;
}

.why-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .3rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.why-content p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  padding: 6rem 0;
  background: var(--charcoal);
}

.pricing-track-label {
  margin-bottom: 1.5rem;
}

.track-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding: .1rem 0 .1rem .6rem;
  margin-bottom: .5rem;
}

.pricing-track-label p {
  font-size: .95rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  background: var(--surface);
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}

.pricing-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.pricing-card.popular {
  border-color: var(--red);
  background: var(--surface2);
  box-shadow: 0 0 40px var(--red-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 16px var(--red-glow);
}

.pricing-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: .8rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .8rem;
}

.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
}

.per { font-size: .9rem; color: var(--muted); }

.pricing-blurb {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-list li {
  font-size: .88rem;
  color: var(--light);
  padding: .45rem 0;
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: .85rem;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 1.5px solid var(--border2);
  transition: all .2s;
}
.pricing-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.pricing-card.popular .pricing-btn {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}
.pricing-card.popular .pricing-btn:hover { background: var(--red-dark); }

.pricing-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: var(--muted);
  justify-content: center;
  margin-top: 1.5rem;
}
.pricing-note a { color: var(--red); }
.pricing-note svg { color: var(--red); flex-shrink: 0; }

/* ── ENTERPRISE ── */
.enterprise-card {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.enterprise-tag {
  color: var(--red) !important;
  border-left-color: var(--red) !important;
  margin-bottom: .8rem;
}

.enterprise-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .8rem;
  letter-spacing: .04em;
}

.enterprise-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.enterprise-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.ei-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--light);
}
.ei-item svg { color: var(--green); flex-shrink: 0; }

.enterprise-cta-box {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 2rem;
  width: 280px;
  text-align: center;
}

.enterprise-price-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: .6rem;
  letter-spacing: .04em;
}

.enterprise-cta-box p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.enterprise-trust {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: 1rem;
}

.enterprise-trust span {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ── WORK ── */
.work {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.work-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s;
}

.work-card:hover::after { transform: scaleX(1); }
.work-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.work-card.in-progress {
  border-style: dashed;
  opacity: .7;
}

.work-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.work-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.work-loc {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: var(--red);
  letter-spacing: .06em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.work-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.work-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .8rem;
}

.work-chips span {
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  letter-spacing: .06em;
  padding: .2rem .5rem;
  background: var(--red-dim);
  border: 1px solid rgba(214,43,43,.2);
  color: var(--red);
  border-radius: 2px;
  text-transform: uppercase;
}

.work-link {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--red);
  text-transform: uppercase;
  transition: color .2s;
}
.work-card:hover .work-link { color: var(--white); }

/* ── CONTACT ── */
.contact {
  padding: 6rem 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: .98rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: var(--red);
}

.contact-detail div { display: flex; flex-direction: column; gap: .15rem; }

.contact-detail strong {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'DM Mono', monospace;
}

.contact-detail a, .contact-detail span {
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.contact-detail a:hover { color: var(--red); }

.contact-vet-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 1.2rem 1.5rem;
  border-radius: 3px;
}

.vet-star {
  font-size: 2rem;
  color: var(--red);
  flex-shrink: 0;
}

.contact-vet-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .2rem;
}

.contact-vet-badge p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FORM ── */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: .4rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border2);
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface2);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group select option { background: var(--surface2); }
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .8rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
}

/* ── FOOTER ── */
.footer {
  background: #0A0B0D;
  border-top: 2px solid var(--red);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: .6rem;
}

.footer-legal {
  font-family: 'DM Mono', monospace;
  font-size: .65rem !important;
  color: var(--border2) !important;
  letter-spacing: .04em;
}

.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }

.footer-col a {
  font-size: .87rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--red); }

.footer-vet {
  margin-top: 1.2rem;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--red);
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: .78rem;
  color: var(--border2);
  font-family: 'DM Mono', monospace;
  letter-spacing: .02em;
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: .78rem;
  color: var(--border2);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  transition: color .2s;
}
.footer-links a:hover { color: var(--muted); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .enterprise-card { grid-template-columns: 1fr; }
  .enterprise-cta-box { width: 100%; }
  .enterprise-includes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .grit-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .container { padding: 0 1.2rem; }
  .headline-top, .headline-bottom { font-size: 3rem; }
}
