/* =========================================
   KMUNOZ — Corporate Design System
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A1628;
  --navy-mid:   #112040;
  --navy-light: #1C3358;
  --gold:       #C9A96E;
  --gold-light: #DFC08E;
  --gold-dark:  #A8864E;
  --cream:      #F5F2ED;
  --cream-dark: #EDE8E1;
  --white:      #FFFFFF;
  --gray-100:   #F8F7F5;
  --gray-200:   #ECEAE5;
  --gray-400:   #9C9589;
  --gray-600:   #6B6459;
  --gray-800:   #3A342C;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:      1200px;
  --nav-h:      72px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 52ch;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
}
.btn-full { width: 100%; justify-content: center; }

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2).reveal { transition-delay: 0.1s; }
.service-card:nth-child(3).reveal { transition-delay: 0.2s; }
.step:nth-child(2).reveal { transition-delay: 0.1s; }
.step:nth-child(3).reveal { transition-delay: 0.2s; }
.step:nth-child(4).reveal { transition-delay: 0.3s; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  background: rgba(10, 22, 40, 0.99);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-k { color: var(--gold); }
.logo-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 18px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0 24px;
}
.mobile-link {
  padding: 14px clamp(20px, 5vw, 64px);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--gold); background: rgba(255,255,255,0.03); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28,51,88,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: rgba(255,255,255,0.65);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.stat {
  flex: 1;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 20px;
}
.marquee-track .dot {
  color: var(--navy-mid);
  opacity: 0.5;
  padding: 0 4px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   SOLUTIONS
   ========================================= */
.solutions {
  padding: 120px 0;
  background: var(--white);
}

.section-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--gray-100); }
.service-card--featured {
  background: var(--navy);
}
.service-card--featured:hover { background: var(--navy-mid); }

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 32px;
}
.service-card--featured .service-icon { color: var(--gold); }

.service-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.service-card--featured .service-number { color: var(--gold); opacity: 0.7; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-card--featured h3 { color: var(--white); }

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-card--featured p { color: rgba(255,255,255,0.6); }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--gray-200);
  color: var(--gray-600);
}
.service-card--featured .service-tags span {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}

/* =========================================
   QUOTE
   ========================================= */
.quote-section {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.pull-quote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.pull-quote em {
  font-style: italic;
  color: var(--gold-dark);
}
.pull-quote cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

/* =========================================
   APPROACH
   ========================================= */
.approach {
  padding: 120px 0;
  background: var(--navy);
}
.approach .section-eyebrow { color: var(--gold); }
.approach .section-title { color: var(--white); }
.approach-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 42ch;
  font-weight: 300;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.approach-left { position: sticky; top: calc(var(--nav-h) + 40px); }

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.05);
}
.step-marker span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { display: flex; justify-content: center; }
.about-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 4s ease-in-out infinite;
}
.graphic-ring--1 {
  width: 280px; height: 280px;
  border-color: rgba(201,169,110,0.15);
  animation-delay: 0s;
}
.graphic-ring--2 {
  width: 220px; height: 220px;
  border-color: rgba(201,169,110,0.2);
  animation-delay: 0.5s;
}
.graphic-ring--3 {
  width: 160px; height: 160px;
  border-color: rgba(201,169,110,0.3);
  animation-delay: 1s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.graphic-center { position: relative; z-index: 1; }
.about-wordmark {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--navy);
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(10,22,40,0.25);
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.badge-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.about-text p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.career-highlights {
  margin: 32px 0 36px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}
.career-highlight-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.career-firms {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.career-firm {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.career-firm:last-child { border-bottom: none; }
.firm-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.firm-detail {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: right;
}
.career-education {
  font-size: 0.8125rem;
  color: var(--gray-600);
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  letter-spacing: 0.02em;
}

.regions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.region {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 40px;
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.region-icon { font-size: 1.125rem; line-height: 1; }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 44ch;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,169,110,0.1);
}
.contact-item-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  color: var(--gold-dark);
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6459' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Form states */
.btn-sending { display: none; }
.btn.sending .btn-label { display: none; }
.btn.sending .btn-sending { display: inline; }
.btn.sending { opacity: 0.7; pointer-events: none; }

.form-success,
.form-error { display: none; font-size: 0.9rem; padding: 14px 18px; border-radius: 6px; margin-top: 4px; }
.form-success:not([hidden]) { display: block; background: rgba(201,169,110,0.12); color: var(--gold-dark); border: 1px solid rgba(201,169,110,0.3); }
.form-error:not([hidden]) { display: block; background: rgba(200,60,60,0.07); color: #a83232; border: 1px solid rgba(200,60,60,0.2); }
.form-error a { color: inherit; text-decoration: underline; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer .logo-text { color: var(--white); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .approach-layout { grid-template-columns: 1fr; gap: 56px; }
  .approach-left { position: static; }
  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* Section padding */
  .solutions, .approach, .about, .contact { padding: 72px 0; }
  .quote-section { padding: 64px 0; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .mobile-nav { display: block; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 36px 28px; }

  /* Steps */
  .step { padding: 28px 0; gap: 20px; }
  .step-marker { width: 40px; height: 40px; }

  /* Form — 16px prevents iOS auto-zoom */
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 36px; }
  .footer-inner { padding-bottom: 48px; }

  /* Hero */
  .hero { padding-bottom: 60px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .hero-scroll-indicator { display: none; }

  /* About wordmark inside rings */
  .about-wordmark { font-size: 1rem; }
}

@media (max-width: 480px) {
  /* Section padding */
  .solutions, .approach, .about, .contact { padding: 56px 0; }
  .quote-section { padding: 52px 0; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  /* Services */
  .service-card { padding: 32px 20px; }
  .service-tags { display: none; }

  /* Pull quote */
  .pull-quote p { font-size: 1.5rem; }

  /* Regions */
  .regions { flex-direction: column; gap: 12px; }

  /* Contact */
  .contact-left p { margin-bottom: 32px; }

  /* Footer */
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { gap: 28px; }
}
