/* ===== TOKENS ===== */
:root {
  --rust:    #97362A;
  --teal:    #7AD8C6;
  --cream:   #FAF8F4;
  --charcoal:#575335;
  --dark:    #111110;
  --mid:     #1a1a18;
  --surface: #F4F2EE;
  --text:    #1a1a18;
  --muted:   #6b6b60;
  --border:  rgba(26,26,24,0.1);

  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--rust); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
  pointer-events: none;
}
.nav-logo span { color: var(--rust); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-left { }
.nav-right { }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.45);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  color: var(--cream) !important;
  background: var(--rust);
  padding: 0.45rem 1.3rem;
  border-radius: 100px;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(151,54,42,0.35);
}
.nav-cta:hover {
  background: #b04030 !important;
  box-shadow: 0 4px 20px rgba(151,54,42,0.5) !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(20%) brightness(0.35);
  opacity: 0;
  animation: heroFade 20s infinite;
}
@keyframes heroFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* Dark gradient overlay for readability */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,16,0.82) 0%,
    rgba(17,17,16,0.45) 55%,
    rgba(17,17,16,0.1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 780px;
  margin-top: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.45s; }
.hero-title .line:nth-child(2) { animation-delay: 0.58s; }
.hero-title .line:nth-child(3) { animation-delay: 0.71s; }
.hero-title .accent { color: var(--cream); font-style: normal; }
.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--rust);
  margin: 1.75rem 0;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.9s forwards;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(250,248,244,0.6);
  max-width: 460px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 1s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 1.15s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #7d2c22; transform: translateY(-1px); }
.btn-ghost {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(250,248,244,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost svg { width: 16px; height: 16px; }
.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 1.3s forwards;
}
.stat {
  text-align: right;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.35);
  margin-top: 0.25rem;
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(250,248,244,0.07);
  border: 1px solid rgba(250,248,244,0.1);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(250,248,244,0.4);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.lang-btn:hover { color: rgba(250,248,244,0.75); }
.lang-btn.active {
  background: var(--teal);
  color: var(--dark);
}
.ticker-wrap {
  background: var(--rust);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.85);
}
.ticker-item::after {
  content: '·';
  color: rgba(250,248,244,0.4);
}

/* ===== INTRO ===== */
#intro {
  padding: 5rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.intro-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  padding-top: 0.35rem;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}
.intro-text em {
  font-style: italic;
  color: var(--rust);
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--rust);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--rust);
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--teal); }

/* ===== SERVICES SECTION ===== */
#services {
  padding: 5rem 0;
  background: var(--dark);
}
#services .section-label { color: rgba(122,216,198,0.7); }
#services .section-label::before { background: var(--teal); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.services-intro {
  font-size: 1rem;
  color: rgba(250,248,244,0.5);
  line-height: 1.85;
  max-width: 440px;
}

/* ===== SERVICES LIST ===== */
.services-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 2.5rem 3.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
  cursor: default;
}
.svc-row:hover { background: rgba(255,255,255,0.025); padding-left: 0.5rem; }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: rgba(122,216,198,0.35);
  font-style: italic;
}
.svc-icon {
  width: 38px;
  height: 38px;
  color: var(--teal);
  opacity: 0.7;
  flex-shrink: 0;
}
.svc-icon svg { width: 100%; height: 100%; }
.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.svc-body p {
  font-size: 0.925rem;
  color: rgba(250,248,244,0.45);
  line-height: 1.75;
  max-width: 560px;
}
.svc-arrow {
  font-size: 1rem;
  color: rgba(122,216,198,0.2);
  transition: color 0.2s, transform 0.2s;
}
.svc-row:hover .svc-arrow { color: var(--teal); transform: translateX(4px); }

/* ===== GEOGRAPHIC REACH ===== */
#globe-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--mid);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.reach-layout {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 3rem;
  align-items: center;
}
.map-wrap {
  position: relative;
  width: 100%;
}
.map-bg { position: relative; }
.map-svg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}
.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.city-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
}
.teal-label { fill: rgba(122,216,198,0.65); }
.white-label { fill: rgba(250,248,244,0.6); }
.globe-text {
  position: relative;
  z-index: 2;
}
.globe-text .section-label { color: rgba(122,216,198,0.7); }
.globe-text .section-label::before { background: var(--teal); }
.globe-text p {
  font-size: 1rem;
  color: rgba(250,248,244,0.5);
  line-height: 1.85;
  max-width: 400px;
}

/* Arc dash animation */
.arc {
  stroke-dasharray: 6 4;
  opacity: 0.45;
  animation: arcFlow 2s linear infinite;
}
@keyframes arcFlow {
  to { stroke-dashoffset: -20; }
}

/* Pulse rings */
.pulse-ring {
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0%   { r: 5;  opacity: 0.6; }
  100% { r: 20; opacity: 0; }
}

/* ===== CAPABILITIES SECTION ===== */
#capabilities {
  padding: 5rem 0;
  background: var(--cream);
}
.cap-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.cap-header-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== CAPABILITIES LIST ===== */
.cap-list { display: flex; flex-direction: column; }
.cap-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.cap-row:first-child { border-top: 1px solid var(--border); }
.cap-row:hover { background: rgba(151,54,42,0.025); }
.cap-visual {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cap-visual svg { width: 44px; height: 44px; }
.cap-v1 { background: rgba(151,54,42,0.08); color: var(--rust); }
.cap-v2 { background: rgba(87,83,53,0.1); color: var(--charcoal); }
.cap-v3 { background: rgba(122,216,198,0.08); color: #4aaa98; }
.cap-v4 { background: rgba(151,54,42,0.06); color: var(--rust); }
.cap-v5 { background: rgba(87,83,53,0.08); color: var(--charcoal); }
.cap-tag-inline {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid rgba(151,54,42,0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.cap-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.cap-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ===== PROJECTS ===== */
#projects {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.projects-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.project-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: transform 0.3s var(--ease-out);
}
.project-card:hover { transform: translateY(-4px); }
.project-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
  filter: none;
}
.project-card:hover .project-img { transform: scale(1.04); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.88) 0%, rgba(17,17,16,0.3) 55%, rgba(17,17,16,0.1) 100%);
}
.project-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.project-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(122,216,198,0.6);
  margin-bottom: 0.5rem;
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.project-card p {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.6);
  line-height: 1.7;
}

/* ===== WHY ===== */
#why {
  padding: 5rem 0;
  background: var(--dark);
}
#why .section-label { color: rgba(122,216,198,0.7); }
#why .section-label::before { background: var(--teal); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.why-item {
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.02); }
.why-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-bottom: 1rem;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.why-item p {
  font-size: 0.925rem;
  color: rgba(250,248,244,0.45);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
#contact {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-steps {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}
.contact-block { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-block p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}
.contact-block a {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-block a:hover { color: var(--rust); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-form select:invalid { color: rgba(26,26,24,0.3); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(26,26,24,0.3); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--rust); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 0.25rem; }

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-loading { display: none; }
.btn-primary.loading .btn-text    { display: none; }
.btn-primary.loading .btn-loading { display: inline; }
.btn-primary.loading { opacity: 0.7; cursor: not-allowed; }

.form-status {
  font-size: 0.825rem;
  line-height: 1.5;
}
.form-status.success { color: var(--teal); }
.form-status.error   { color: #e07060; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(250,248,244,0.25);
}
footer p, footer a {
  font-size: 0.775rem;
  color: rgba(250,248,244,0.25);
}
footer a:hover { color: rgba(250,248,244,0.6); }

/* ===== REVEAL — handled entirely by GSAP ===== */
.reveal { opacity: 1; transform: none; }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .services-header,
  .cap-header,
  .projects-header,
  .why-layout,
  .contact-layout,
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .services-table .td-desc { display: none; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 1.75rem; }
  #nav { padding-left: 2rem; padding-right: 2rem; }
}

@media (max-width: 900px) {
  #nav { justify-content: space-between; }
  .nav-left { display: none; }
  .nav-logo {
    position: static;
    transform: none;
    pointer-events: auto;
    order: -1;
  }
}

@media (max-width: 640px) {
  .nav-links.nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { position: static; transform: none; pointer-events: auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .capabilities-table .cap-td-tag { display: none; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
}
