@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg-primary: #060a12;
  --bg-secondary: #0a1020;
  --bg-card: #0e1828;
  --accent-gold: #c9a84c;
  --accent-gold-light: #e8c87a;
  --accent-gold-dim: rgba(201, 168, 76, 0.12);
  --accent-cyan: #00d4ff;
  --accent-cyan-dim: rgba(0, 212, 255, 0.08);
  --text-primary: #eceae3;
  --text-secondary: #7a8fa8;
  --text-muted: #3d5068;
  --border: rgba(201, 168, 76, 0.18);
  --border-subtle: rgba(255,255,255,0.05);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 2px; }

/* ══════════════════════════════════════════
   TECH BACKGROUND CANVAS
══════════════════════════════════════════ */
#techCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(6, 10, 18, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(6, 10, 18, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: 0.06em;
}
.nav-logo-text span { color: var(--accent-gold); }

.nav-links {
  display: flex; align-items: center; gap: 0.1rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--accent-gold-dim);
}
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px;
  background: var(--accent-gold); border-radius: 50%;
}

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; padding: 0.5rem 0.65rem; border-radius: 7px;
  color: var(--text-secondary);
}
.dropdown-menu a:hover { color: var(--text-primary); }
.dropdown-menu a .icon { font-size: 0.9rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 3.5rem) 3.5rem 3.5rem;
}

/* Circuit-board SVG overlay on hero */
.hero-circuit {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-circuit svg {
  width: 100%; height: 100%;
  opacity: 0.18;
}

/* Radial glow blobs */
.hero-glow-a {
  position: absolute; z-index: 1;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 65%);
  top: 30%; right: 5%;
  animation: floatA 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-b {
  position: absolute; z-index: 1;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 65%);
  bottom: 10%; left: 20%;
  animation: floatB 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatA {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px,-30px) scale(1.08); }
}
@keyframes floatB {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(15px,20px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.72rem; font-weight: 500;
  color: var(--accent-gold); background: var(--accent-gold-dim);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent-gold); border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.12;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title .gold { color: var(--accent-gold); }

.hero-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 520px; margin-bottom: 2.25rem;
  line-height: 1.75; font-weight: 300;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.btn-group {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.75rem 1.75rem;
  background: var(--accent-gold); color: var(--bg-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  text-decoration: none; border-radius: 7px;
  transition: all 0.22s; letter-spacing: 0.04em;
}
.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,168,76,0.28);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--border); color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 0.82rem;
  text-decoration: none; border-radius: 7px;
  transition: all 0.22s;
}
.btn-secondary:hover {
  background: var(--accent-gold-dim);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 14px; overflow: hidden;
  margin-top: 4rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat-item {
  background: rgba(14, 24, 40, 0.8);
  backdrop-filter: blur(8px);
  padding: 1.75rem;
  text-align: center; transition: background 0.3s;
}
.stat-item:hover { background: rgba(201,168,76,0.06); }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.1rem; font-weight: 800;
  color: var(--accent-gold); display: block;
}
.stat-label {
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section { padding: 6rem 3.5rem; position: relative; z-index: 2; }

.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--accent-gold);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.9rem; color: var(--text-secondary);
  max-width: 520px; line-height: 1.75;
}

.container { max-width: 1240px; margin: 0 auto; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 3.5rem 3.5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 55%);
}
/* Tech HUD lines decoration for inner pages */
.page-hero-hud {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.page-hero-hud svg { width: 100%; height: 100%; opacity: 0.12; }
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb span { color: var(--accent-gold); }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 18px; overflow: hidden; margin-top: 3.5rem;
}
.service-card {
  background: rgba(14,24,40,0.7); backdrop-filter: blur(8px);
  padding: 2.25rem; transition: all 0.3s;
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: rgba(18,30,52,0.8); }
.service-card:hover::after { opacity: 1; }
.service-icon { font-size: 2.1rem; margin-bottom: 1rem; display: block; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem;
}
.service-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.7rem; font-weight: 600;
  color: var(--accent-gold); letter-spacing: 0.07em;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual-main {
  background: rgba(14,24,40,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 18px; padding: 2.5rem;
}
.about-logo-display {
  width: 100%; display: flex; align-items: center; justify-content: center; padding: 1.75rem;
}
.about-logo-display img { max-width: 180px; width: 100%; filter: brightness(0) invert(1); }
.values-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.value-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-secondary);
}
.value-item::before { content: '◆'; color: var(--accent-gold); font-size: 0.45rem; flex-shrink: 0; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.team-card {
  background: rgba(14,24,40,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 1.75rem 1.25rem;
  text-align: center; transition: all 0.3s;
}
.team-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #7a5c12);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--bg-primary);
  margin: 0 auto 1.1rem;
  border: 2px solid var(--border);
}
.team-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-role { font-size: 0.72rem; color: var(--accent-gold); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 0.65rem; }
.team-bio { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   SUCCESS STORIES
══════════════════════════════════════════ */
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.story-card {
  background: rgba(14,24,40,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 2.25rem;
  position: relative; transition: all 0.3s;
}
.story-card:hover { border-color: var(--border); transform: translateY(-4px); }
.story-quote { font-size: 2.5rem; color: var(--accent-gold); line-height: 1; margin-bottom: 0.85rem; font-family: 'Syne', sans-serif; }
.story-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.story-client { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border-subtle); padding-top: 1.1rem; }
.story-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #4a3510);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: var(--bg-primary); flex-shrink: 0;
}
.story-client-name { font-size: 0.82rem; font-weight: 600; }
.story-client-co { font-size: 0.7rem; color: var(--text-muted); }
.story-metric {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--accent-gold);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem; align-items: start; margin-top: 3.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; gap: 0.9rem;
  padding: 1.25rem;
  background: rgba(14,24,40,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 10px; transition: border-color 0.3s;
}
.contact-item:hover { border-color: var(--border); }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-label { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.85rem; color: var(--text-primary); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.72rem; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.04em; }
.form-input, .form-textarea, .form-select {
  background: rgba(14,24,40,0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 7px; padding: 0.75rem 0.9rem;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif; font-size: 0.83rem;
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--bg-card); }
.form-submit {
  padding: 0.85rem 2.25rem;
  background: var(--accent-gold); color: var(--bg-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  border: none; border-radius: 7px; cursor: pointer;
  transition: all 0.22s; align-self: flex-start;
}
.form-submit:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,168,76,0.26);
}

/* ══════════════════════════════════════════
   SERVICES FULL (what-we-do)
══════════════════════════════════════════ */
.services-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.service-full-card {
  background: rgba(14,24,40,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px; padding: 2.25rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-full-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-full-card:hover {
  border-color: var(--border); transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.4);
}
.service-full-card:hover::before { opacity: 1; }
.service-full-icon { font-size: 2.6rem; margin-bottom: 1.25rem; display: block; }
.service-full-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.85rem;
}
.service-full-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-size: 0.65rem; font-weight: 600;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--border); border-radius: 100px;
  color: var(--text-muted); letter-spacing: 0.07em;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem;
  background: rgba(6,10,18,0.95);
  backdrop-filter: blur(12px);
  position: relative; z-index: 2;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem; margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.72rem; color: var(--text-muted); }
.footer-copy span { color: var(--accent-gold); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in   { animation: fadeInUp 0.6s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav, section, .hero, .page-hero, footer { padding-left: 2rem; padding-right: 2rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(6,10,18,0.98); backdrop-filter: blur(20px);
    padding: 1.5rem; gap: 0.4rem; overflow-y: auto; z-index: 999;
  }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: var(--bg-secondary); grid-template-columns: 1fr;
  }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.85rem; text-align: center; }
  .services-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
