/* ============================================================
   GASP — PORTFÓLIO
   Estilo: clean, criativo e ousado.
   Paleta: preto (#111111), branco (#FFFFFF), roxo (#7C3AED), laranja (#FF8A00)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --black: #111111;
  --black-soft: #191919;
  --card: #1a1a1a;
  --card-border: #2a2a2a;
  --white: #FFFFFF;
  --gray: #A1A1AA;
  --gray-dim: #71717a;
  --purple: #7C3AED;
  --purple-dim: #a78bfa;
  --orange: #FF8A00;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Cor de fundo/superfícies usadas via variável, para o tema claro sobrescrever */
  --bg: var(--black);
  --bg-soft: var(--black-soft);
  --surface: var(--card);
  --surface-border: var(--card-border);
  --text: var(--white);
  --text-muted: var(--gray);
  --text-dim: var(--gray-dim);
}

/* ---------- TEMA CLARO ----------
   Ativado via [data-theme="light"] no <html>, alternado pelo botão da navbar.
   A paleta de marca (roxo/laranja) permanece a mesma; só invertemos as
   superfícies para manter a legibilidade. */
html[data-theme="light"] {
  --bg: #FBFAF9;
  --bg-soft: #F2F0ED;
  --surface: #FFFFFF;
  --surface-border: #E6E3DE;
  --text: #111111;
  --text-muted: #52525b;
  --text-dim: #71717a;

  /* Cores auxiliares específicas do tema claro (hovers e navbar translúcida) */
  --navbar-bg: rgba(251, 250, 249, 0.75);
  --hover-purple-tint: #F1EBFC;
  --hover-orange-tint: #FFF0DE;
}

html:not([data-theme="light"]) {
  --navbar-bg: rgba(17, 17, 17, 0.6);
  --hover-purple-tint: #201a2e;
  --hover-orange-tint: #241c14;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* compensa a navbar fixa ao rolar até uma âncora */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

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

/* Foco visível para acessibilidade via teclado */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

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

/* ---------- ELEMENTOS DE TEXTO REUTILIZÁVEIS ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-dim);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 56px;
}

.accent-dot { color: var(--orange); }

.hl { font-weight: 700; }
.hl--purple { color: var(--purple-dim); }
.hl--orange { color: var(--orange); }

/* ---------- BARRA DE PROGRESSO DE SCROLL ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}

.navbar.is-scrolled {
  border-bottom: 1px solid var(--surface-border);
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.navbar__logo .dot { color: var(--orange); }

.navbar__links {
  display: flex;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover { color: var(--text); transform: translateY(-1px); }

/* Destaque da seção ativa na navbar */
.nav-link.is-active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.15);
}
.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}

/* Botão de alternância de tema:
   - fundo com glow radial que muda de cor (roxo → laranja) por trás do ícone
   - ícones de lua/sol se revezam com rotação + escala, nunca com corte seco
   - ao clicar, uma onda (ripple) se espalha a partir do ponto do clique */
.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.25s var(--ease);
}
.theme-toggle:hover {
  border-color: var(--purple);
  transform: scale(1.08);
}
.theme-toggle:active { transform: scale(0.9); }

.theme-toggle__bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.4), transparent 70%);
  opacity: 0.9;
  transition: background 0.6s ease;
}
html[data-theme="light"] .theme-toggle__bg {
  background: radial-gradient(circle at 70% 30%, rgba(255, 138, 0, 0.4), transparent 70%);
}

.theme-toggle__icons {
  position: relative;
  width: 18px;
  height: 18px;
}

.theme-icon {
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.theme-icon--dark { color: var(--purple-dim); opacity: 1; transform: rotate(0deg) scale(1); }
.theme-icon--light { color: var(--orange); opacity: 0; transform: rotate(90deg) scale(0.3); }

html[data-theme="light"] .theme-icon--dark { opacity: 0; transform: rotate(-90deg) scale(0.3); }
html[data-theme="light"] .theme-icon--light { opacity: 1; transform: rotate(0deg) scale(1); }

/* Onda que se espalha a partir do clique (criada e removida via JS) */
.theme-toggle__ripple {
  position: absolute;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  opacity: 0.55;
  transform: scale(0);
  animation: theme-ripple 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes theme-ripple {
  to { transform: scale(9); opacity: 0; }
}

/* ---------- BOTÕES ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s ease;
}
.btn i { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.btn:active { transform: translateY(-1px) scale(0.97); }

/* Animação FORTE: o botão principal ganha um brilho que atravessa a peça no hover */
.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(124, 58, 237, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn--primary:hover::before { left: 130%; }
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px -8px rgba(124, 58, 237, 0.55);
  background: var(--orange);
  color: var(--bg);
}
.btn--primary:hover i { transform: translate(3px, -3px) rotate(8deg); }
.btn--primary:active { transform: translateY(-1px) scale(0.96); }

/* Animação LEVE: o botão secundário só sobe de leve e tinge de roxo */
.btn--ghost {
  border: 1.5px solid var(--surface-border);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, rgba(255, 138, 0, 0.12) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(64px, 15vw, 168px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Faixa marquee de assinatura */
.marquee {
  position: relative;
  margin-top: 72px;
  padding: 20px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  overflow: hidden;
  white-space: nowrap;
  /* Fade nas bordas: o texto "nasce" e "morre" suavemente, sem corte seco */
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 600;
  /* Texto preenchido e discreto (em vez de contorno grosso) = movimento leve */
  color: var(--text-dim);
  animation: marquee 38s linear infinite;
}

.marquee__dot { color: var(--orange); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SEÇÕES GENÉRICAS ---------- */
.section {
  padding: 120px 0;
}

.section--tint {
  background: var(--bg-soft);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.section--dark {
  background: var(--bg);
}

/* ---------- SOBRE ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
}

.about__label { align-self: start; position: sticky; top: 120px; }

.about__content p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 20px;
}
.about__content strong { color: var(--text); }

.about__stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat__number {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--purple-dim), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ---------- SERVIÇOS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  background: var(--hover-purple-tint);
}

.service-card__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  margin-bottom: 22px;
}
.service-card__icon i { width: 21px; height: 21px; }

.service-card__icon--purple { background: rgba(124, 58, 237, 0.18); color: var(--purple-dim); }
.service-card__icon--orange { background: rgba(255, 138, 0, 0.18); color: var(--orange); }

.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- FILTROS DE CATEGORIA (Projetos) ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--surface-border);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

/* Leve: só muda cor e sobe 1px */
.filter-btn:hover {
  color: var(--text);
  border-color: var(--purple);
  transform: translateY(-1px);
}
.filter-btn:active { transform: translateY(0) scale(0.95); }

.filter-btn.is-active {
  color: var(--white);
  background: linear-gradient(90deg, var(--purple), var(--orange));
  border-color: transparent;
}

/* "Pop" tocado via JS toda vez que um filtro é escolhido */
.filter-btn.is-popping { animation: filter-pop 0.4s var(--ease); }
@keyframes filter-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Mensagem exibida quando um filtro não retorna nenhum projeto
   (visibilidade controlada via atributo [hidden] pelo JS) */
.empty-state {
  color: var(--text-dim);
  font-size: 15px;
  padding: 40px 0;
  text-align: center;
}

/* Card escondido pelo filtro: sai de forma suave em vez de sumir abruptamente */
.project-card.is-hidden {
  display: none;
}

/* ---------- PROJETOS ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.6);
}
.project-card:active { transform: translateY(-2px) scale(0.98); }

.project-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--img-a, var(--purple)), var(--img-b, var(--bg)));
  overflow: hidden;
}

/* Placeholder tipográfico: substitua por <img> real quando tiver as artes */
.project-card__initial {
  font-size: 96px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-card__initial { transform: scale(1.12) rotate(-4deg); }

.project-card__body { padding: 22px 22px 26px; }
.project-card__body h3 { font-size: 18px; font-weight: 700; margin: 12px 0 8px; }
.project-card__body p { font-size: 14px; color: var(--text-muted); }

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 100px;
}
.tag--purple { background: rgba(124, 58, 237, 0.18); color: var(--purple-dim); }
.tag--orange { background: rgba(255, 138, 0, 0.18); color: var(--orange); }

/* ---------- CONTATO ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  background: var(--hover-orange-tint);
}

.contact-card__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  color: var(--purple-dim);
  transition: transform 0.4s var(--ease), background 0.4s ease;
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.12) rotate(-10deg);
  background: rgba(255, 138, 0, 0.2);
  color: var(--orange);
}
.contact-card__icon i { width: 20px; height: 20px; }

.contact-card__label {
  display: block;
  font-size: 12.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-card__value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
}

.contact-card__arrow {
  margin-left: auto;
  width: 18px; height: 18px;
  color: var(--text-dim);
  transition: transform 0.35s var(--ease), color 0.35s ease;
}
.contact-card:hover .contact-card__arrow {
  transform: translate(3px, -3px);
  color: var(--orange);
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--surface-border);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo { font-size: 18px; font-weight: 800; }
.footer__logo .dot { color: var(--orange); }

.footer__copy { font-size: 13.5px; color: var(--text-dim); }

.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.footer__socials a:hover {
  color: var(--text);
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.15);
  transform: translateY(-3px);
}
.footer__socials a:active { transform: translateY(0) scale(0.9); }
.footer__socials i { width: 16px; height: 16px; }

/* ---------- MODAL DE PROJETO ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.modal.is-open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(6px);
  color: var(--text);
  transition: background 0.25s ease, transform 0.25s ease;
}
.modal__close:hover { background: var(--orange); color: var(--bg); transform: rotate(180deg) scale(1.1); }
.modal__close:active { transform: rotate(180deg) scale(0.9); }

.modal__image {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--img-a, var(--purple)), var(--img-b, var(--bg)));
  border-radius: 20px 20px 0 0;
}
.modal__initial { font-size: 110px; font-weight: 800; color: rgba(255,255,255,0.9); }

.modal__content { padding: 32px 36px 40px; }
.modal__content h3 { font-size: 26px; font-weight: 800; margin: 14px 0 12px; }
.modal__content p { color: var(--text-muted); font-size: 15.5px; line-height: 1.7; }

.modal__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.modal__tags span {
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
}

/* ---------- ANIMAÇÃO DE ENTRADA (reveal on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }

  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__label { position: static; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .navbar__toggle { display: flex; }

  .navbar__links {
    position: fixed;
    top: 68px; left: 20px; right: 20px;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 14px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .navbar__links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { display: block; }

  .hero { padding-top: 110px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

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

  .about__stats { gap: 28px; }

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