/* ============================================
   Handy Skills For Hire LLC — Shared Stylesheet
   Used across home, blog landing, and blog posts
   ============================================ */

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a2e;
  --gold: #d4a24e;
  --gold-light: #e8c375;
  --gold-glow: rgba(212,162,78,0.15);
  --warm-white: #faf8f5;
  --warm-gray: #f0ece6;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --green-trust: #2d8a4e;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.topbar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

/* ─── NAV ─── */
nav {
  background: var(--navy);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform, filter;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  cursor: pointer;
}
.nav-logo img:hover {
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg) translateY(-4px) scale(1.06);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 8px rgba(212, 162, 78, 0.4));
}
@media (prefers-reduced-motion: reduce) {
  .nav-logo img:hover { transform: translateY(-2px); }
}
.nav-logo span {
  font-family: 'DM Serif Display', serif;
  color: #fff;
  font-size: 1.5rem;
}
.nav-logo span em {
  font-style: normal;
  color: var(--gold);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212,162,78,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,162,78,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 100px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
}
.badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,162,78,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
}
.hero-img-wrapper:first-child {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hero-img-wrapper:hover img { transform: scale(1.04); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--warm-gray);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 32px 40px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon.gold { background: var(--gold-glow); color: var(--gold); }
.trust-icon.green { background: rgba(45,138,78,0.1); color: var(--green-trust); }
.trust-icon.navy { background: rgba(26,39,68,0.08); color: var(--navy); }
.trust-stat {
  font-size: 1.6rem;
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.services h2 {
  font-size: 2.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.services .subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-card .time-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-trust);
  background: rgba(45,138,78,0.08);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,162,78,0.06) 0%, transparent 60%);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.how-it-works .section-label { color: var(--gold-light); }
.how-it-works h2 { color: #fff; font-size: 2.6rem; margin-bottom: 60px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { position: relative; padding-left: 0; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: rgba(212,162,78,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery h2 { font-size: 2.6rem; color: var(--navy); margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── CTA SECTION ─── */
.cta-section {
  margin: 0 auto 100px;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,162,78,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,162,78,0.1) 0%, transparent 50%);
}
.cta-section h2 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.6;
}
.cta-section .btn-primary {
  font-size: 1.1rem;
  padding: 18px 40px;
  position: relative;
}
.cta-phone { margin-top: 20px; position: relative; }
.cta-phone a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 1.6rem;
  font-family: 'DM Serif Display', serif;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand h3 em { font-style: normal; color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text { animation: fadeUp 0.8s ease-out; }
.hero-images { animation: fadeUp 0.8s 0.2s ease-out both; }

/* ============================================
   BLOG STYLES
   ============================================ */

.blog-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,162,78,0.08) 0%, transparent 60%);
}
.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-hero h1 em { font-style: normal; color: var(--gold); }
.blog-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  line-height: 1.6;
}

.blog-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.blog-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--warm-gray);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.blog-card-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.blog-card h2 {
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-readmore {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.blog-card:hover .blog-card-readmore {
  gap: 10px;
  color: var(--gold);
}

/* ─── BLOG POST PAGE ─── */
.post-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}
.post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(212,162,78,0.08) 0%, transparent 60%);
}
.post-header-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: var(--gold-light);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 10px; opacity: 0.4; }
.post-header h1 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.post-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.post-author { font-weight: 600; color: var(--gold-light); }

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}
.post-body p { margin-bottom: 1.4em; }
.post-body h2 {
  font-size: 1.85rem;
  color: var(--navy);
  margin: 2em 0 0.7em;
  line-height: 1.25;
}
.post-body h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.6em 0 0.5em;
  line-height: 1.3;
}
.post-body ul, .post-body ol {
  margin: 0 0 1.4em 1.4em;
  padding-left: 0.5em;
}
.post-body li { margin-bottom: 0.5em; }
.post-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.post-body a:hover { color: var(--gold); }
.post-body strong { color: var(--navy); font-weight: 700; }

.post-callout {
  background: var(--warm-gray);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2em 0;
  font-size: 1rem;
}
.post-callout p:last-child { margin-bottom: 0; }
.post-callout strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.post-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  margin: 60px auto;
  max-width: 760px;
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,162,78,0.08) 0%, transparent 60%);
}
.post-cta h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 12px;
  position: relative;
}
.post-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  position: relative;
}
.post-cta .btn-primary { position: relative; }

/* ─── MORE POSTS (footer of post) ─── */
.more-posts {
  background: var(--warm-gray);
  padding: 80px 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.more-posts-inner { max-width: 1100px; margin: 0 auto; }
.more-posts h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 36px;
  text-align: center;
}
.more-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-images { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { justify-content: center; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .cta-section { padding: 60px 28px; margin: 0 20px 60px; }
  .services, .gallery { padding: 60px 24px; }
  .blog-hero h1 { font-size: 2.2rem; }
  .blog-hero { padding: 70px 24px 60px; }
  .blog-list { grid-template-columns: 1fr; padding: 50px 24px; gap: 24px; }
  .post-header { padding: 60px 24px 70px; }
  .post-header h1 { font-size: 1.9rem; }
  .post-body { padding: 50px 24px 40px; font-size: 1rem; }
  .post-body h2 { font-size: 1.55rem; }
  .post-cta { padding: 40px 28px; margin: 40px 20px; }
  .more-posts-grid { grid-template-columns: 1fr; }
  .more-posts { padding: 50px 24px; }
}
@media (max-width: 500px) {
  .hero-images { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
