/* ============================================
   MWDW Mirror — Design System
   Design System
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #0072ce;
  --blue-hover:  #006ec7;
  --blue-dark:   #003866;
  --dark-blue:   #13294b;
  --deep-blue:   #102442;
  --mid-blue:    #00589e;
  --heading:     #003465;
  --body:        #3f4142;
  --gray:        #55595b;
  --dark-gray:   #2b2d2e;
  --light-gray:  #ededed;
  --white:       #fff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans', Arial, 'Helvetica Neue', sans-serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.6;
  padding-top: 83px; /* fixed header */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'M PLUS 1', 'IBM Plex Sans', Arial, sans-serif;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
}

h1 { font-size: 52px; }
h2 { font-size: 37px; }
h3 { font-size: 25px; }
h4 { font-size: 22px; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark-blue);
  border-top: 3px solid var(--blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo svg {
  height: 52px;
  width: auto;
}

/* NAV */
.site-nav > ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.site-nav > ul > li {
  position: relative;
}

.site-nav > ul > li > a {
  display: block;
  padding: 28px 16px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-nav > ul > li > a:hover {
  color: #7ec8e3;
}

/* Dropdown */
.site-nav .has-dropdown {
  position: relative;
}

.site-nav .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blue);
  min-width: 230px;
  list-style: none;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.dropdown-menu.is-open {
  display: block;
}

.site-nav > ul > li.active > a {
  color: #7ec8e3;
}

/* Mobile nav open */
@media (max-width: 768px) {
  .site-nav.is-open {
    display: block;
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    padding: 16px 0;
  }
  .site-nav.is-open > ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.is-open > ul > li {
    width: 100%;
  }
  .site-nav.is-open .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
  }
}

/* Inner page hero */
.page-hero {
  background: var(--dark-blue);
  padding: 72px 24px 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: white; }

.page-hero h1 {
  color: white;
  font-size: 48px;
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 19px;
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.65;
}

/* Content section */
.content-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.bg-gray {
  max-width: 100%;
  background: var(--light-gray);
  padding: 80px 24px;
}

.content-section.bg-gray .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.bg-dark {
  max-width: 100%;
  background: var(--deep-blue);
  padding: 80px 24px;
  color: white;
}

.content-section.bg-dark .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.bg-dark h2,
.content-section.bg-dark h3 { color: white; }
.content-section.bg-dark p { color: rgba(255,255,255,0.82); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-image {
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark-blue);
}

.content-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.content-text h2 { margin-bottom: 20px; }
.content-text h3 { margin-bottom: 14px; margin-top: 32px; }
.content-text p { margin-bottom: 16px; line-height: 1.75; }

.bullet-list {
  list-style: none;
  margin: 20px 0;
}

.bullet-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 17px;
  color: var(--body);
  border-bottom: 1px solid var(--light-gray);
  line-height: 1.5;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.testimonial-box {
  background: var(--light-gray);
  border-left: 4px solid var(--blue);
  padding: 28px 32px;
  border-radius: 0 10px 10px 0;
  margin: 40px 0;
}

.testimonial-box blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--dark-blue);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-box cite {
  font-size: 14px;
  color: var(--gray);
  font-style: normal;
  font-weight: 600;
}

/* Projects grid page */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: white;
  border: 2px solid var(--light-gray);
  color: var(--gray);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,114,206,0.05);
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  text-align: center;
  padding: 32px 20px 28px;
}

.team-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark-blue);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 800;
  font-family: 'M PLUS 1', sans-serif;
}

.team-card h4 {
  font-size: 17px;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 20px; }

.contact-info .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info .info-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,114,206,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info .info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
}

.contact-info p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-info a { color: var(--blue); }

.offices-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.office-tag {
  background: var(--light-gray);
  color: var(--dark-blue);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--body);
  transition: border-color 0.2s;
  outline: none;
  background: white;
}

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

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .projects-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
}

.dropdown-menu li a {
  display: block;
  padding: 14px 22px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.18);
}

/* Contact nav button */
.nav-cta a {
  background: var(--blue) !important;
  color: white !important;
  padding: 12px 26px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  margin-left: 8px;
  display: inline-block;
}

.nav-cta a:hover {
  background: var(--blue-hover) !important;
}

/* Mobile toggle (hidden on desktop) */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 792px;
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 37, 74, 0.92) 0%,
    rgba(13, 37, 74, 0.72) 55%,
    rgba(13, 37, 74, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 32px;
}

.hero-content h1 {
  color: white;
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
}

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

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 22px 44px 20px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  border-right: 4px solid var(--blue-dark);
  border-bottom: 4px solid var(--blue-dark);
  transition: background 0.2s;
  cursor: pointer;
  font-family: 'M PLUS 1', sans-serif;
}

.btn-primary:hover {
  background: var(--blue-hover);
  color: white;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 16px 34px 14px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: 'M PLUS 1', sans-serif;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--dark-blue);
  padding: 22px 44px 20px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: 'M PLUS 1', sans-serif;
}

.btn-white:hover {
  background: var(--light-gray);
  color: var(--dark-blue);
}

/* ============================================
   SECTION DECORATOR (angled SVG transitions)
   ============================================ */

.dec-wrap {
  display: block;
  line-height: 0;
  overflow: hidden;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--deep-blue);
  padding: 56px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-divider:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */

.services-section {
  background: white;
  padding: 90px 24px;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 20px;
}

.section-intro p {
  font-size: 19px;
  color: var(--body);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 30px rgba(105, 105, 105, 0.10);
  border-top: 4px solid var(--blue);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 44px rgba(0, 114, 206, 0.14);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 114, 206, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card .learn-more::after {
  content: ' →';
}

/* ============================================
   INTRO / ABOUT STRIP
   ============================================ */

.intro-strip {
  background: var(--deep-blue);
  padding: 80px 24px;
  color: white;
  text-align: center;
}

.intro-strip h2 {
  color: white;
  margin-bottom: 20px;
}

.intro-strip p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ============================================
   FEATURED PROJECTS
   ============================================ */

.projects-section {
  background: var(--light-gray);
  padding: 90px 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(105, 105, 105, 0.08);
  transition: box-shadow 0.25s;
}

.project-card:hover {
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.12);
}

.project-image {
  height: 300px;
  overflow: hidden;
  background: var(--dark-blue);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-body {
  padding: 28px 32px 32px;
}

.project-tag {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.project-body h3 {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 8px;
  line-height: 1.25;
}

.project-location {
  color: var(--gray);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-location::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   CAREERS
   ============================================ */

.careers-section {
  position: relative;
  background: var(--deep-blue);
  padding: 110px 24px;
  text-align: center;
  border-top: 10px solid var(--blue);
  border-bottom: 10px solid var(--blue);
  overflow: hidden;
}

.careers-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}

.careers-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.careers-content h2 {
  color: white;
  font-size: 52px;
  margin-bottom: 24px;
}

.careers-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.states-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.state-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 114, 206, 0.45);
  color: white;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--mid-blue);
  padding: 80px 24px;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  margin-bottom: 36px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: white;
  padding: 64px 24px 0;
  border-top: 1px solid var(--light-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light-gray);
  align-items: start;
}

.footer-brand .footer-logo {
  margin-bottom: 22px;
}

.footer-brand .footer-logo svg {
  height: 44px;
  width: auto;
}

.footer-brand p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 6px;
}

.footer-brand a {
  color: var(--blue);
  font-size: 15px;
}

.footer-brand a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-blue);
  border-radius: 50%;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--blue);
}

.footer-social img {
  width: 16px;
  height: 16px;
}

.footer-nav-col h4 {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-nav-col ul {
  list-style: none;
}

.footer-nav-col ul li {
  margin-bottom: 8px;
}

.footer-nav-col ul li a {
  color: var(--gray);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gray);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--blue);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body { padding-top: 68px; }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  .site-nav { display: none; }
  .mobile-toggle { display: flex; }

  .hero { min-height: 560px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 17px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-divider:nth-child(2) {
    border-right: none;
  }

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

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .careers-content h2 { font-size: 36px; }
}
