@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #050508;
  --bg2:      #0a0a14;
  --bg3:      #060609;
  --border:   #1c1c2e;
  --teal:     #00c9a7;
  --teal-dim: #071a16;
  --teal-bdr: #0d3a28;
  --white:    #f0f0f0;
  --grey1:    #cccccc;
  --grey2:    #aaaaaa;
  --grey3:    #888888;
  --grey4:    #555555;
  --grey5:    #333333;
  --font-main: 'Inter', sans-serif;
  --font-logo: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-main); }
input, textarea { font-family: var(--font-main); }

/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4, h5 { line-height: 1.1; letter-spacing: -0.03em; }

.eyebrow {
  font-size: 10px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* =====================
   NAV
===================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: var(--font-logo);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--grey3);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--teal);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 15px;
  color: var(--grey2);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.nav-mobile a:last-child { border-bottom: none; }

/* =====================
   LOGO SVG
===================== */
.logo-svg { width: 32px; height: 32px; flex-shrink: 0; }

/* =====================
   HERO
===================== */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-bdr);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

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

.hero h1 {
  font-size: 66px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3.5px;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: 17px;
  color: var(--grey1);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9px;
  border: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  background: transparent;
  color: var(--grey1);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 9px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--grey3);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.hero-stat {
  background: var(--bg);
  padding: 24px 12px;
  text-align: center;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat-num span { color: var(--teal); }

.hero-stat-label {
  font-size: 10px;
  color: var(--grey3);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* =====================
   TICKER
===================== */
.ticker {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg3);
}

.ticker-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-size: 11px;
  color: var(--grey4);
  font-weight: 700;
  letter-spacing: 2.5px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
  flex-shrink: 0;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.section:last-child { border-bottom: none; }

.section-header { margin-bottom: 52px; }

.section-header h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 15px;
  color: var(--grey2);
  line-height: 1.85;
  max-width: 580px;
}

/* =====================
   SERVICES GRID
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.service-card:hover { background: #080812; }

.service-num {
  font-size: 11px;
  color: var(--border);
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-bdr);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--teal);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  color: var(--grey2);
  line-height: 1.9;
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.service-tag {
  font-size: 10px;
  color: var(--teal);
  border: 1px solid var(--teal-bdr);
  border-radius: 4px;
  padding: 4px 10px;
  font-weight: 700;
  background: var(--teal-dim);
}

/* =====================
   PROCESS
===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.process-card {
  background: var(--bg);
  padding: 36px 26px 40px;
  position: relative;
}

.process-num {
  font-size: 34px;
  font-weight: 900;
  color: var(--border);
  letter-spacing: -2px;
  margin-bottom: 14px;
  font-family: var(--font-logo);
}

.process-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 12px;
  color: var(--grey3);
  line-height: 1.8;
}

.process-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border);
}

.process-bar-fill {
  height: 100%;
  background: var(--teal);
}

/* =====================
   ABOUT / TWO COL
===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-h {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-body {
  font-size: 14px;
  color: var(--grey2);
  line-height: 2.0;
  margin-bottom: 18px;
}

.about-body b { color: var(--white); font-weight: 700; }

.pillars { margin-top: 28px; }

.pillar {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.pillar h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0;
}

.pillar p {
  font-size: 12px;
  color: var(--grey3);
  line-height: 1.7;
}

/* =====================
   STATS
===================== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-num span { color: var(--teal); }

.stat-label {
  font-size: 10px;
  color: var(--grey3);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-top: 8px;
  text-transform: uppercase;
}

.stat-desc {
  font-size: 12px;
  color: var(--grey5);
  margin-top: 6px;
  line-height: 1.5;
}

/* =====================
   MANIFESTO
===================== */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.manifesto-item {
  background: var(--bg);
  padding: 48px 40px;
}

.manifesto-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.manifesto-item p {
  font-size: 14px;
  color: var(--grey2);
  line-height: 1.85;
}

/* =====================
   PORTFOLIO
===================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.portfolio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.portfolio-card:hover { border-color: var(--grey4); }

.portfolio-preview {
  height: 155px;
  padding: 16px;
  position: relative;
}

.portfolio-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 9px;
  color: var(--teal);
  padding: 3px 9px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.portfolio-body { padding: 18px; }

.portfolio-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 7px;
  letter-spacing: -0.3px;
}

.portfolio-body p {
  font-size: 12px;
  color: var(--grey3);
  line-height: 1.75;
}

.portfolio-link {
  font-size: 11px;
  color: var(--teal);
  margin-top: 10px;
  display: inline-block;
  font-weight: 700;
  transition: opacity 0.2s;
}

.portfolio-link:hover { opacity: 0.7; }

/* =====================
   TESTIMONIALS
===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.testimonial-quote {
  font-size: 13px;
  color: var(--grey1);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--grey1);
}

.testimonial-role {
  font-size: 11px;
  color: var(--grey4);
  margin-top: 2px;
}

/* =====================
   CTA SECTION
===================== */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 18px;
  position: relative;
}

.cta-section h2 span { color: var(--teal); }

.cta-section p {
  font-size: 15px;
  color: var(--grey2);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.cta-form input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--grey1);
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input:focus { border-color: var(--teal); }

.cta-form button {
  background: var(--teal);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 9px;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cta-form button:hover { opacity: 0.85; }

/* =====================
   CONTACT
===================== */
.contact-info h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 14px;
  color: var(--grey2);
  line-height: 1.85;
  margin-bottom: 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 14px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-bdr);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--teal);
}

.contact-detail-label {
  font-size: 9px;
  color: var(--grey4);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 13px;
  color: var(--grey2);
}

/* =====================
   FORM
===================== */
.form-group { margin-bottom: 12px; }

.form-label {
  display: block;
  font-size: 10px;
  color: var(--grey4);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--grey1);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--teal); }

.form-textarea { height: 120px; resize: vertical; }

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

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--bg);
  border: none;
  border-radius: 9px;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.form-submit:hover { opacity: 0.85; }

.form-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: none;
}

.form-message.success {
  background: #071a16;
  border: 1px solid var(--teal-bdr);
  color: var(--teal);
  display: block;
}

.form-message.error {
  background: #1a0707;
  border: 1px solid #3a0a0a;
  color: #f87171;
  display: block;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #030305;
  border-top: 1px solid #111120;
  padding: 48px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--grey5);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 200px;
}

.footer-col h5 {
  font-size: 9px;
  color: var(--grey4);
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--grey5);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--grey2); }

.footer-bottom {
  border-top: 1px solid #0d0d18;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 11px; color: #2a2a3a; }

.footer-legal {
  display: flex;
  gap: 14px;
}

.footer-legal a {
  font-size: 11px;
  color: #2a2a3a;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--grey4); }

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 2px;
}

.footer-logo-text {
  font-family: var(--font-logo);
  font-size: 15px;
  font-weight: 700;
  color: var(--grey5);
}

/* =====================
   PAGE HERO (inner pages)
===================== */
.page-hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2.5px;
  margin-bottom: 16px;
  line-height: 1.0;
}

.page-hero h1 span { color: var(--teal); }

.page-hero p {
  font-size: 16px;
  color: var(--grey2);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* =====================
   FAQ
===================== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 13px;
  color: var(--grey2);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* =====================
   PAGE-SPECIFIC HERO PREVIEW BOXES
===================== */
.preview-box {
  border-radius: 8px;
  padding: 12px;
  margin-top: 28px;
}

.mini-bar {
  border-radius: 2px 2px 0 0;
}

/* =====================
   ALERTS / NOTICES
===================== */
.notice {
  background: var(--teal-dim);
  border: 1px solid var(--teal-bdr);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 24px;
}

/* =====================
   UTILITY
===================== */
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 42px; letter-spacing: -2px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 64px 24px; }
  .section-header h2 { font-size: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 64px 24px; }
  .cta-section h2 { font-size: 36px; }
  .cta-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero { padding: 60px 24px 52px; }
  .page-hero h1 { font-size: 36px; }

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

  .two-col.contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =====================
   MOBILE RESPONSIVE ADDITIONS
===================== */

/* Process steps — stack on mobile */
.process-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  background: #050508;
  padding: 48px 40px;
}

.process-step-num { }
.process-step-num .step-n {
  font-size: 48px;
  font-weight: 900;
  color: #1c1c2e;
  letter-spacing: -3px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}
.process-step-num .step-title {
  font-size: 18px;
  font-weight: 800;
  color: #f0f0f0;
  margin-top: 8px;
}
.process-step-num .step-week {
  font-size: 11px;
  color: #444;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 6px;
}

.step-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.step-box {
  background: #0a0a14;
  border: 1px solid #1c1c2e;
  border-radius: 8px;
  padding: 14px;
}

.step-box-label {
  font-size: 10px;
  color: #444;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.step-box-text {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* Stats inline grid */
.inline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

/* Oblixa preview */
.oblixa-preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 20px;
  }

  .step-boxes {
    grid-template-columns: 1fr;
  }

  .inline-stats {
    grid-template-columns: 1fr 1fr;
  }

  .oblixa-preview-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Tighten all section padding on mobile */
  .section {
    padding: 56px 20px;
  }

  .page-hero {
    padding: 48px 20px 40px;
  }

  .page-hero h1 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .hero {
    padding: 56px 20px 48px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .nav {
    padding: 14px 20px;
  }

  .footer {
    padding: 36px 20px 24px;
  }

  .cta-section {
    padding: 56px 20px;
  }

  .cta-section h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }

  /* Work page capability cards */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Manifesto */
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  /* Process grid */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .inline-stats {
    grid-template-columns: 1fr;
  }

  .oblixa-preview-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-h {
    font-size: 28px;
  }

  .cta-form {
    flex-direction: column;
  }
}
