/* =========================================================
   TechGuide Guild LLC — Stylesheet
   Aesthetic: Dark navy + electric blue, technical & confident
   ========================================================= */

:root {
  --bg:           #07101f;
  --bg-elev:      #0d1a2e;
  --bg-elev-2:    #122440;
  --surface:      rgba(255, 255, 255, 0.03);
  --surface-2:    rgba(255, 255, 255, 0.06);
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong:rgba(255, 255, 255, 0.16);

  --text:         #eaf2ff;
  --text-muted:   #9fb3d1;
  --text-dim:     #6b809f;

  --accent:       #2c7bff;
  --accent-bright:#4f9bff;
  --accent-soft:  rgba(44, 123, 255, 0.16);
  --accent-glow:  rgba(44, 123, 255, 0.45);

  --navy:         #1a3a7a;
  --navy-deep:    #0e2454;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.5);
  --shadow-glow: 0 20px 50px -20px var(--accent-glow);

  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Background atmosphere */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(44,123,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,123,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
}
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.bg-glow--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(44,123,255,0.35), transparent 60%);
  top: -160px; right: -120px;
}
.bg-glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,58,122,0.45), transparent 60%);
  bottom: -200px; left: -180px;
}

/* ====== NAV ====== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 16, 31, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 42px; height: 42px; object-fit: contain; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 500;
}
.accent { color: var(--accent-bright); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--accent);
  color: white !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav__cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px var(--accent-glow);
}
.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== HERO ====== */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both;
}
.hero__title-accent {
  background: linear-gradient(120deg, var(--accent-bright) 0%, #7eb6ff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px var(--accent-glow);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent-bright);
}
.btn--block { width: 100%; }

.hero__stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent-bright);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  animation: fadeIn 1s ease 0.5s both;
}
.hero__shield {
  position: absolute;
  inset: 14%;
  display: grid; place-items: center;
  z-index: 2;
  filter: drop-shadow(0 20px 40px var(--accent-glow));
  animation: float 6s ease-in-out infinite;
}
.hero__shield img { width: 100%; height: 100%; object-fit: contain; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__orbit {
  position: absolute; inset: 0;
  border: 1px dashed var(--border-strong);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero__orbit--1 { inset: 6%; }
.hero__orbit--2 { inset: -8%; border-style: solid; border-color: var(--border); animation-duration: 50s; animation-direction: reverse; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.code-card {
  position: absolute;
  bottom: -10px;
  right: -30px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  width: 280px;
  animation: floatCard 8s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(-1deg); }
}
.code-card__header {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.code-card__header span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong);
}
.code-card__header span:first-child { background: #ff5f57; }
.code-card__header span:nth-child(2) { background: #febc2e; }
.code-card__header span:nth-child(3) { background: #28c840; }
.code-card__header em {
  margin-left: auto;
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.72rem;
}
.code-card__body {
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
  font-family: var(--font-mono);
}
.c-key { color: #c084fc; }
.c-var { color: var(--accent-bright); }
.c-str { color: #4ade80; }
.c-fn  { color: #fbbf24; }

/* ====== Section heads ====== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-head__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ====== SERVICES ====== */
.services { padding: 100px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: linear-gradient(155deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(44,123,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--accent-bright);
  margin-bottom: 22px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-card__list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.service-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--accent);
}

/* ====== PRICING ====== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(13, 26, 46, 0.4), transparent);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
  background: linear-gradient(180deg, rgba(44,123,255,0.10), var(--bg-elev) 60%);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.price-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-card__head p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.price-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.price-card__from {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
}
.price-card__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-card__amount--text { font-size: 1.8rem; }
.price-card__per {
  color: var(--text-dim);
  font-size: 0.88rem;
}
.price-card__features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-card__features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.price-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent-bright);
  border-bottom: 2px solid var(--accent-bright);
  transform: rotate(-45deg);
}
.pricing__note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* ====== ABOUT ====== */
.about { padding: 100px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__content .section-head__title {
  text-align: left;
  margin-bottom: 22px;
}
.about__content .section-head__kicker { display: block; text-align: left; }
.about__content > p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}
.about__values {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.value {
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.value p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about__visual {
  display: grid;
  place-items: center;
}
.about__card {
  background: linear-gradient(145deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.about__card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.about__card-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about__card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ====== CONTACT ====== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(13, 26, 46, 0.5));
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__intro .section-head__kicker { display: block; }
.contact__intro .section-head__title {
  text-align: left;
  margin-bottom: 18px;
}
.contact__intro > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contact__methods {
  display: grid;
  gap: 14px;
}
.contact__method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact__method:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.contact__method svg { color: var(--accent-bright); flex-shrink: 0; }
.contact__method strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.contact__method span { font-size: 0.95rem; }

/* Form */
.contact__form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.field__optional { color: var(--text-dim); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.contact__form .btn { grid-column: 1 / -1; margin-top: 6px; }
.contact__form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 1em;
}
.contact__form-note.is-success { color: #4ade80; }
.contact__form-note.is-error   { color: #f87171; }

/* ====== FOOTER ====== */
.footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand {
  display: flex; align-items: center; gap: 14px;
}
.footer__brand img { width: 44px; height: 44px; object-fit: contain; }
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
}
.footer__brand span {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--accent-bright); }
.footer__copy {
  font-size: 0.85rem;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ====== Animations ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .hero__inner,
  .about__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .code-card { right: -10px; width: 240px; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 73px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0 28px;
    background: rgba(7, 16, 31, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.35s ease;
  }
  .nav.is-open .nav__links {
    max-height: 400px;
    padding: 12px 28px 24px;
  }
  .nav__links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; }

  .hero { padding: 50px 0 70px; }
  .services, .pricing, .about, .contact { padding: 70px 0; }
  .section-head { margin-bottom: 44px; }
  .contact__form { grid-template-columns: 1fr; padding: 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hero__stats { gap: 24px; }
  .stat__num { font-size: 1.4rem; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
