*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-50: #e8f5e6;
  --green-100: #c2e6bc;
  --green-200: #97d48f;
  --green-400: #4caf50;
  --green-500: #2e9e34;
  --green-600: #1a7d20;
  --green-700: #0d5e12;
  --green-800: #063d09;
  --black: #0a0d0b;
  --white: #f5f7f4;
  --off-white: #eff3ee;
  --text-muted: #6b7a6a;
  --border: rgba(26, 125, 32, 0.15);
  --border-strong: rgba(26, 125, 32, 0.3);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,13,11,0.85);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo img { display: block; }
.nav-logo span { color: var(--green-400); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem;
  color: rgba(245,247,244,0.6);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--green-500);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-600) !important; color: var(--white) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,158,52,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,158,52,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(46,158,52,0.12) 0%, transparent 70%);
  top: -100px; right: -200px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(46,158,52,0.12);
  border: 1px solid rgba(46,158,52,0.3);
  color: var(--green-200);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-400);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(245,247,244,0.55);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-500);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-600); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: rgba(245,247,244,0.7);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.35); color: var(--white); transform: translateY(-1px); }

/* TICKER */
.ticker {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.ticker-inner {
  display: flex; gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,247,244,0.4);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 7rem 2.5rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--green-500);
}
h2.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1.05rem;
  color: rgba(245,247,244,0.55);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  margin-top: 5rem;
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: rgba(255,255,255,0.02);
  padding: 2.5rem;
  position: relative;
  transition: background 0.25s;
  border: 1.5px solid rgba(255,255,255,0.04);
}
.service-card:hover { background: rgba(46,158,52,0.06); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(46,158,52,0.12);
  border: 1px solid rgba(46,158,52,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--green-300);
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.925rem;
  color: rgba(245,247,244,0.5);
  line-height: 1.7;
  font-weight: 300;
}
.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
}

/* OUR WORK */
.work-section { background: var(--black); }
.work-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.work-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.work-card:hover {
  border-color: rgba(46,158,52,0.35);
  transform: translateY(-4px);
}
.work-preview {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #0d1109;
  flex-shrink: 0;
}
.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.work-card:hover .work-preview img { transform: scale(1.03); }
.work-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,13,11,0.95) 100%);
  pointer-events: none;
  z-index: 2;
}
.work-browser-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(20,24,20,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  z-index: 3;
}
.work-browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.work-browser-dot:nth-child(1) { background: #ff5f57; }
.work-browser-dot:nth-child(2) { background: #febc2e; }
.work-browser-dot:nth-child(3) { background: #28c840; }
.work-browser-url {
  margin-left: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.65rem;
  color: rgba(245,247,244,0.3);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  flex: 1;
  max-width: 220px;
}
.work-info {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.work-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
  background: rgba(46,158,52,0.1);
  border: 1px solid rgba(46,158,52,0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}
.work-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.work-info p {
  font-size: 0.9rem;
  color: rgba(245,247,244,0.5);
  line-height: 1.7;
  font-weight: 300;
}

/* FEATURED WORK CARD */
.work-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
  border-color: rgba(46,158,52,0.2);
}
.work-card--featured .work-preview--iframe {
  height: 480px;
  flex-shrink: unset;
}
.work-iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.work-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 166.667%;
  height: 166.667%;
  transform: scale(0.6);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}
.work-iframe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,13,11,0.9) 100%);
  z-index: 2;
  cursor: pointer;
}
.work-browser-open {
  margin-left: auto;
  color: rgba(245,247,244,0.4);
  font-size: 0.8rem;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
}
.work-browser-open:hover {
  color: var(--green-400);
  background: rgba(46,158,52,0.1);
}
.work-tag--featured {
  background: rgba(46,158,52,0.2);
  border-color: rgba(46,158,52,0.4);
  color: var(--green-300);
}
.work-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-400);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}
.work-visit-link:hover {
  color: var(--green-300);
  gap: 0.55rem;
}
.work-card--featured .work-info {
  padding: 2.5rem 2.5rem;
  justify-content: center;
  gap: 1rem;
}
.work-card--featured .work-info h3 {
  font-size: 1.75rem;
}
.work-card--featured .work-info p {
  font-size: 0.975rem;
  line-height: 1.75;
  max-width: 380px;
}

@media (max-width: 768px) {
  .work-card--featured {
    grid-template-columns: 1fr;
  }
  .work-card--featured .work-preview--iframe {
    height: 300px;
  }
}

/* WHO ARE WE */
.who-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.who-content { }
.who-pull-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}
.who-pull-quote em {
  font-style: normal;
  color: var(--green-400);
}
.who-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.who-body p {
  font-size: 0.975rem;
  color: rgba(245,247,244,0.55);
  line-height: 1.8;
  font-weight: 300;
}
.who-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.who-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.who-card:hover { border-color: rgba(46,158,52,0.3); }
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--green-500), var(--green-800));
  border-radius: 3px 0 0 3px;
}
.who-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 0.5rem;
}
.who-card p {
  font-size: 0.9rem;
  color: rgba(245,247,244,0.6);
  line-height: 1.65;
  font-weight: 300;
}
.who-origin-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,247,244,0.4);
  margin-top: 2rem;
  letter-spacing: 0.02em;
}
.who-origin-tag::before {
  content: '📍';
  font-size: 0.85rem;
}

/* STATS */
.stats-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-content { padding: 4rem 0 4rem 0; padding-right: 5rem; }
.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  align-self: center;
}
.stat-item {
  background: rgba(10,13,11,1);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(245,247,244,0.45);
  font-weight: 300;
}

/* PROCESS */
.process-steps {
  margin-top: 5rem;
  display: flex; flex-direction: column; gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  align-items: start;
  transition: background 0.2s;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245,247,244,0.2);
  padding-top: 0.25rem;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.process-step:hover .step-content h3 { color: var(--green-300); }
.step-content p {
  font-size: 0.925rem;
  color: rgba(245,247,244,0.5);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

/* TESTIMONIAL */
.testimonial-section {
  background: linear-gradient(135deg, rgba(46,158,52,0.08) 0%, transparent 60%);
  border-top: 1px solid rgba(46,158,52,0.15);
  border-bottom: 1px solid rgba(46,158,52,0.15);
}
.testimonial-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-600);
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--white);
}
.testimonial-attribution {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.attribution-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-100);
}
.attribution-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245,247,244,0.8);
}
.attribution-role {
  font-size: 0.8rem;
  color: rgba(245,247,244,0.4);
  font-weight: 300;
}

/* CTA */
.cta-section { text-align: center; padding: 8rem 2.5rem; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.cta-section h2 em { font-style: normal; color: var(--green-400); }
.cta-section p {
  font-size: 1.05rem;
  color: rgba(245,247,244,0.5);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.75;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(245,247,244,0.25);
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: rgba(46,158,52,0.6);
  background: rgba(46,158,52,0.05);
  box-shadow: 0 0 0 3px rgba(46,158,52,0.08);
}
.cta-select-wrap {
  position: relative;
}
.cta-select-wrap::after {
  content: '';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(245,247,244,0.35);
  pointer-events: none;
  transition: border-top-color 0.2s;
}
.cta-select-wrap:focus-within::after {
  border-top-color: var(--green-400);
}
.cta-form select {
  cursor: pointer;
  padding-right: 2.75rem;
  background-color: rgba(255,255,255,0.04);
}
.cta-form select option {
  background: #111a12;
  color: var(--white);
  font-weight: 300;
}
.cta-form select.empty {
  color: rgba(245,247,244,0.25);
}
.cta-form textarea {
  resize: none;
  height: 130px;
  line-height: 1.65;
}
.cta-form .btn-primary {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 10px;
  letter-spacing: 0.01em;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}
.footer-logo span { color: var(--green-400); }
.footer-links { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,247,244,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(245,247,244,0.8); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,247,244,0.25);
  font-weight: 300;
}

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE NAV */
.nav-mobile-btn { display: none; }

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(10,13,11,0.97);
  padding: 1.25rem 1.5rem;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.nav-links.open li { width: 100%; }

.nav-links.open a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(245,247,244,0.7);
}

.nav-links.open li:last-child a {
  border-bottom: none;
  margin-top: 0.5rem;
}

.nav-links.open .nav-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-mobile-btn {
    display: block;
    background: none; border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); padding: 0.4rem 0.9rem;
    border-radius: 6px; font-size: 0.85rem; cursor: pointer;
  }
  .hero { padding: 7rem 1.25rem 4rem; }
  section { padding: 5rem 1.25rem; }
  .stats-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-content { padding-right: 0; }
  .stats-numbers { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2.5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-preview { height: 280px; }
  .who-inner { grid-template-columns: 1fr; gap: 3rem; }
}
