/*
  abi solutions v3 -- Premium Minimal
  Inspired by mont-fort.com: whitespace, geometry, restraint
  3D hero | Clean sections | Montfort typography
*/

/* ========== VARIABLES ========== */
:root {
  --bg: #060b14;
  --bg-alt: #0a0f1c;
  --surface: #0d1322;
  --surface-hover: #121a2e;

  --accent: #a0d72e;
  --accent-soft: rgba(160, 215, 46, 0.12);
  --accent-glow: rgba(160, 215, 46, 0.25);

  --text: #e8edf5;
  --text-secondary: #7b8dab;
  --text-muted: #3f4f6a;

  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.03);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ========== GRAIN ========== */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.03;
  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.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ========== LOADER ========== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
#loader.done {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-logo {
  width: 56px;
  image-rendering: pixelated;
  margin: 0 auto 20px;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { filter: drop-shadow(0 0 12px var(--accent-soft)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 24px var(--accent-glow)); transform: scale(1.08); }
}
.loader-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  font-family: var(--font-display);
}
.loader-text .powered {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
}
.loader-text .brand { font-size: 22px; font-weight: 600; color: var(--accent); }
.loader-line {
  width: 160px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 8px;
  overflow: hidden;
}
.loader-line-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  box-shadow: 0 0 8px var(--accent-glow);
  transition: width 80ms linear;
}
.loader-counter {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ========== NAV ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container { max-width: 1400px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.nav-logo img { width: 28px; image-rendering: pixelated; }
.nav-logo .dot { color: var(--accent); font-size: 22px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-cta:hover { color: var(--accent); }
.nav-cta svg { transition: transform 0.3s var(--ease); }
.nav-cta:hover svg { transform: translate(3px, -3px); }

/* ========== CONTAINER ========== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ========== SECTIONS ========== */
.section {
  position: relative;
}
.section--light {
  background: var(--bg);
}
.section--dark {
  background: var(--bg-alt);
}
.section--contact {
  background: var(--bg);
}

/* Section accent diamond */
.section-accent {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diamond {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-accent::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--accent);
  opacity: 0.3;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
}

.gradient {
  background: linear-gradient(135deg, var(--accent), #d0f060);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-intro {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 32px;
  opacity: 0;
  transform: scaleX(0);
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  opacity: 0;
}
.hero-description br + * { color: var(--text-muted); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  opacity: 0;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(160, 215, 46, 0.2);
}
.hero-cta svg { transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translate(3px, -3px); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow { width: 1px; height: 32px; background: var(--border); position: relative; overflow: hidden; }
.scroll-line {
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ========== TICKER ========== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.ticker-track .sep {
  color: var(--accent);
  font-size: 8px;
  opacity: 0.5;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 100px;
}
.about-text-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.about-label { margin-bottom: 24px; }
.about-desc p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
}
.about-desc p + p { margin-top: 16px; }
.about-desc strong { color: var(--accent); font-weight: 500; }

.about-metrics {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.metric { display: flex; align-items: baseline; gap: 4px; flex-direction: column; }
.metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
}
.metric-suffix {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
}
.metric-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ========== SERVICES ========== */
.services-header {
  margin-bottom: 80px;
}
.services-header .section-accent { margin-bottom: 24px; }
.services-header .section-tag { margin-bottom: 16px; }
.services-header .section-heading { max-width: 500px; }

.services-list {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row:hover {
  padding-left: 16px;
  background: rgba(255,255,255,0.01);
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.service-body { max-width: 420px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.service-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tags span {
  font-size: 11px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.service-row:hover .service-tags span {
  border-color: var(--accent-soft);
  color: var(--accent);
}
.service-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateX(8px);
}
.service-row:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== WORK (hidden until restored) ========== */
.work-header {
  margin-bottom: 80px;
}
.work-header .section-accent { margin-bottom: 24px; }
.work-header .section-tag { margin-bottom: 16px; }
.work-header .section-heading { max-width: 500px; }

.work-projects {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.work-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  opacity: 0;
  transform: translateY(40px);
}
.work-item:nth-child(even) .work-visual { order: 2; }
.work-item:nth-child(even) .work-details { order: 1; }

/* Mockups */
.work-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.mockup {
  border-radius: 12px;
  overflow: hidden;
  background: #081020;
}
.mockup-bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.dot-r { width: 10px; height: 10px; background: #ff5f57; border-radius: 50%; }
.dot-y { width: 10px; height: 10px; background: #ffbd2e; border-radius: 50%; }
.dot-g { width: 10px; height: 10px; background: #28c840; border-radius: 50%; }
.mockup-url {
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
  background: rgba(0,0,0,0.3);
  padding: 4px 14px;
  border-radius: 4px;
  flex: 1;
}
.mockup-content { padding: 24px; min-height: 200px; }

/* Trailer mockup */
.mock-block { height: 12px; background: var(--accent); opacity: 0.15; border-radius: 3px; margin-bottom: 20px; }
.w-60 { width: 60%; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-card { height: 56px; background: rgba(160, 215, 46, 0.04); border: 1px solid var(--border); border-radius: 8px; }
.mt-3 { margin-top: 16px; }
.mock-table { height: 80px; background: rgba(160, 215, 46, 0.02); border: 1px solid var(--border); border-radius: 8px; }
.w-full { width: 100%; }

/* Desk mockup */
.mock-hero-block { height: 48px; background: linear-gradient(135deg, var(--accent-soft), transparent); border-radius: 8px; margin-bottom: 16px; }
.mock-line { height: 1px; background: var(--border); margin-bottom: 16px; }
.mock-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-price { height: 72px; border-radius: 8px; border: 1px solid var(--border); }
.mock-price.featured { background: rgba(160, 215, 46, 0.05); border-color: var(--accent-soft); }

/* OpenClaw mockup */
.mockup-openclaw { position: relative; }
.ai-nodes { position: relative; width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; }
.ai-center {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--accent-glow);
  position: absolute;
  z-index: 2;
  animation: aiPulse 2s ease-in-out infinite;
}
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 0 16px var(--accent-soft); }
  50% { box-shadow: 0 0 32px var(--accent-glow); }
}
.ai-peripheral {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  animation: aiPulse 2s ease-in-out infinite;
}
.p1 { top: 25%; left: 20%; animation-delay: 0.3s; }
.p2 { top: 25%; right: 20%; animation-delay: 0.6s; }
.p3 { bottom: 20%; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }
.ai-connector {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
}
.c1 { width: 35%; top: 35%; left: 22%; transform: rotate(-25deg); }
.c2 { width: 35%; top: 35%; right: 22%; transform: rotate(25deg); }
.c3 { width: 20%; bottom: 35%; left: 50%; transform: translateX(-50%) rotate(90deg); }

.future-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  z-index: 5;
}

/* Work details */
.work-details h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.beta-tag {
  font-size: 10px;
  padding: 2px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 3px;
  letter-spacing: 1px;
  font-weight: 600;
}
.work-details p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.work-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.work-tags span {
  font-size: 11px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
}

/* ========== TECH ========== */
.tech-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 32px auto 0;
}
.tech-pill {
  font-family: var(--font-display);
  font-size: 13px;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}
.tech-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-soft);
}

/* ========== CONTACT ========== */
.section--contact {
  position: relative;
  overflow: hidden;
}
#contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 0;
}
.contact-left .section-accent { margin-bottom: 24px; }
.contact-left .section-tag { margin-bottom: 16px; }
.contact-left .section-heading { margin-bottom: 24px; }
.contact-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 400px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.info-row:hover { color: var(--accent); }
.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.form-field .opt { color: var(--text-muted); font-weight: 300; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(160, 215, 46, 0.02);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237b8dab' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-field select option { background: var(--bg-alt); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.form-submit:hover {
  box-shadow: 0 8px 32px rgba(160, 215, 46, 0.2);
  transform: translateY(-2px);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
#form-status { text-align: center; margin-top: 16px; font-size: 13px; display: none; }
#form-status.success { display: block; color: var(--accent); }
#form-status.error { display: block; color: #ff6b6b; }

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 14px;
}
.footer-logo img { width: 24px; image-rendering: pixelated; }
.footer-dot { color: var(--accent); font-size: 22px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--text-muted); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: all 0.3s;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom .tagline { color: var(--accent); }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .container { padding: 0 28px; }
  .hero { padding: 0 28px; }
  #navbar { padding: 0 28px; }

  .about-intro { flex-direction: column; gap: 24px; }
  .about-metrics { gap: 32px; flex-wrap: wrap; }

  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .service-tags, .service-arrow { display: none; }

  .work-item,
  .work-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-item:nth-child(even) .work-visual { order: 0; }
  .work-item:nth-child(even) .work-details { order: 0; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 0 20px; }
  #navbar { padding: 0 20px; }

  .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
  .section-heading { font-size: 1.8rem; }
  .service-body h3 { font-size: 1.3rem; }

  .about-metrics { flex-direction: column; gap: 24px; align-items: flex-start; }
  .metric-divider { display: none; }

  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom p { font-size: 11px; }
}
