/*
Theme Name: Mouse Media Studio
Theme URI: https://mousemediastudio.com
Author: Mouse Media Studio
Author URI: https://mousemediastudio.com
Description: Premium dark editorial theme for Mouse Media Studio. Elementor compatible.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mousemediastudio
Tags: creative, dark, portfolio, agency, elementor
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background-color: #0d0d0d !important; }

:root {
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --surface:  #202020;
  --border:   rgba(255,255,255,0.08);
  --gold:     #c9a84c;
  --gold2:    #e2c07a;
  --white:    #f5f0e8;
  --muted:    rgba(245,240,232,0.5);
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

body,
body.elementor-page,
body .elementor,
body .elementor-section-wrap {
  background-color: #0d0d0d !important;
  background: #0d0d0d !important;
}
body {
  background: var(--bg) !important;
  background-color: var(--bg) !important;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===========================
   UTILITY
=========================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ===========================
   NAV
=========================== */
#mms-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
  border-bottom: 1px solid transparent;
}
#mms-nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===========================
   HERO
=========================== */
#mms-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d !important;
  background: #0d0d0d !important;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 7.2rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 2.5rem;
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); color: var(--bg); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ===========================
   MARQUEE
=========================== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: mms-marquee 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
@keyframes mms-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
=========================== */
#mms-about {
  padding: 7rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 50%),
    linear-gradient(225deg, rgba(201,168,76,0.08) 0%, transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder svg { width: 60%; opacity: 0.15; }
.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--bg);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
}
.about-badge .badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 0.2rem;
}
.about-content .label { margin-bottom: 1.2rem; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.9;
}
.about-content .btn-primary { margin-top: 1rem; }

/* ===========================
   SERVICES
=========================== */
#mms-services {
  padding: 7rem 0;
  background: var(--bg2);
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-head .section-title { max-width: 18ch; }
.services-head p {
  max-width: 36ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg2);
  padding: 2.8rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.25); }
.service-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ===========================
   WORK / PORTFOLIO
=========================== */
#mms-work {
  padding: 7rem 0;
}
.work-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.work-head .label { margin-bottom: 0.8rem; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.work-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.work-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.work-item:nth-child(2) { grid-column: span 5; }
.work-item:nth-child(3) { grid-column: span 5; }
.work-item:nth-child(4) { grid-column: span 4; }
.work-item:nth-child(5) { grid-column: span 4; }
.work-item:nth-child(6) { grid-column: span 4; }
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  transition: transform 0.5s ease;
}
.work-item:nth-child(1) img { min-height: 460px; }
.work-item:hover img { transform: scale(1.04); }
.work-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  position: relative;
}
.work-item:nth-child(1) .work-placeholder { min-height: 460px; }
.work-placeholder-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  text-align: center;
  padding: 1rem;
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.work-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===========================
   PROCESS
=========================== */
#mms-process {
  padding: 7rem 0;
  background: var(--bg2);
}
.process-head {
  text-align: center;
  margin-bottom: 5rem;
}
.process-head .label { margin-bottom: 1rem; }
.process-head .section-title { margin-bottom: 1.2rem; }
.process-head p { color: var(--muted); max-width: 50ch; margin: 0 auto; font-size: 0.95rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step { text-align: center; padding: 0 2rem; }
.step-circle {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===========================
   TESTIMONIALS
=========================== */
#mms-testimonials {
  padding: 7rem 0;
}
.testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.testi-head .label { margin-bottom: 0.8rem; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2.8rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.testi-card.featured { background: var(--surface); border-color: rgba(201,168,76,0.25); }
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}
.testi-card blockquote {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); }
.author-info span { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }
.testi-stars { display: flex; gap: 0.2rem; margin-bottom: 1.2rem; }
.testi-stars span { color: var(--gold); font-size: 0.85rem; }

/* ===========================
   CTA
=========================== */
#mms-cta {
  padding: 7rem 0;
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#mms-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-label { margin-bottom: 1.5rem; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 16ch;
  margin: 0 auto 1.5rem;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-subtitle {
  color: var(--muted);
  max-width: 45ch;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.cta-contact-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.contact-item { display: flex; align-items: center; gap: 0.8rem; }
.contact-item svg { width: 1.1rem; height: 1.1rem; color: var(--gold); flex-shrink: 0; }
.contact-item > span { font-size: 0.88rem; color: var(--muted); }
.contact-item a { font-size: 0.88rem; font-weight: 500; color: var(--white); transition: color 0.25s; }
.contact-item a:hover { color: var(--gold); }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===========================
   FOOTER
=========================== */
#mms-footer {
  background: #090909;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 1.2rem; display: inline-block; }
.footer-brand p { color: var(--muted); font-size: 0.85rem; line-height: 1.8; max-width: 30ch; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.social-link {
  width: 2.2rem; height: 2.2rem;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s;
}
.social-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.social-link svg { width: 0.85rem; height: 0.85rem; color: var(--muted); }
.social-link:hover svg { color: var(--gold); }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-bottom a { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; transition: color 0.25s; }
.footer-legal a:hover { color: var(--white); }

/* ===========================
   WORDPRESS CONTENT STYLES
=========================== */
.site-content { padding: 7rem 0 5rem; }
.entry-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.entry-content p { color: var(--muted); margin-bottom: 1.2rem; font-size: 0.97rem; line-height: 1.9; }
.entry-content h2, .entry-content h3 { font-family: var(--serif); color: var(--white); margin: 2rem 0 1rem; }
.entry-content a { color: var(--gold); }
.entry-content a:hover { text-decoration: underline; }
.wp-block-image { margin: 2rem 0; }

/* Elementor overrides */
.elementor-section { position: relative; }
.elementor-widget-text-editor p { color: var(--muted); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 0; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: -1rem; right: -0.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .services-head, .work-head, .testi-head { flex-direction: column; align-items: flex-start; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
}
