/* =====================================================
   VARIÁVEIS & RESET
   ===================================================== */
:root {
  --bg:         #0B0D14;
  --bg2:        #0F1120;
  --purple:     #6B5CF6;
  --purple-l:   #A78BFA;
  --purple-ll:  #D1D5FE;
  --text:       #E5E7EB;
  --muted:      #9CA3AF;
  --white:      #FFFFFF;
  --glass:      rgba(107, 92, 246, 0.07);
  --glass-b:    rgba(107, 92, 246, 0.18);
  --glow:       0 0 40px rgba(107, 92, 246, 0.28);
  --r:          16px;
  --ease:       all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --fh:         'Orbitron', sans-serif;
  --fb:         'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--purple);
  color: #fff;
}

::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--purple); border-radius: 3px; }


/* =====================================================
   UTILITÁRIOS
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: block;
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title span {
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 560px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--glass-b);
  border-radius: 999px;
  background: var(--glass);
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--purple-l);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 999px;
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #7C3AED);
  color: #fff;
  box-shadow: 0 4px 28px rgba(107, 92, 246, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(107, 92, 246, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--glass);
  border-color: var(--purple);
  transform: translateY(-2px);
}


/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: var(--ease);
}

.nav.stuck {
  background: rgba(11, 13, 20, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-b);
  padding: 14px 0;
}

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

.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--ease);
}

.nav-links a:hover { color: var(--white); }

.nav-cta { padding: 10px 22px; font-size: 0.72rem; }

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* Menu mobile */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11, 13, 20, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mob-menu.open { display: flex; }

.mob-menu a {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}


/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#c3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(107, 92, 246, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 85%,  rgba(107, 92, 246, 0.07) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 80%, var(--bg) 100%);
}

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

.hero-chip {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(28px);
}

.hero-title span {
  background: linear-gradient(135deg, var(--purple), var(--purple-l), #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(18px);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero-scroll span {
  font-family: var(--fh);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}


/* =====================================================
   PILARES
   ===================================================== */
.pillars {
  padding: 100px 0;
  border-top: 1px solid var(--glass-b);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  padding: 38px 30px;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--glass-b);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
}

.pillar-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
  opacity: 0;
  transition: var(--ease);
}

.pillar-card:hover {
  border-color: rgba(107, 92, 246, 0.4);
  transform: translateY(-7px);
  box-shadow: var(--glow);
}

.pillar-card:hover::after { opacity: 1; }

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(107, 92, 246, 0.18), rgba(167, 139, 250, 0.08));
  border: 1px solid var(--glass-b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-l);
  fill: none;
  stroke-width: 1.5;
}

.pillar-title {
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}


/* =====================================================
   PROPÓSITO
   ===================================================== */
.purpose {
  padding: 120px 0;
}

.purpose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.purpose-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--glass-b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring:nth-child(1) { width: 300px; height: 300px; animation: ring-spin 22s linear infinite; }
.ring:nth-child(2) { width: 210px; height: 210px; border-style: dashed; border-color: rgba(167, 139, 250, 0.18); animation: ring-spin 16s linear infinite reverse; }
.ring:nth-child(3) { width: 130px; height: 130px; border-color: rgba(107, 92, 246, 0.3); animation: ring-spin 11s linear infinite; }

.ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 14px var(--purple);
}

.purpose-logo {
  position: relative;
  z-index: 1;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 0 28px rgba(107, 92, 246, 0.55));
}

.purpose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.purpose-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}

.purpose-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}


/* =====================================================
   ESTATÍSTICAS
   ===================================================== */
.stats {
  padding: 70px 0;
  border-top: 1px solid var(--glass-b);
  border-bottom: 1px solid var(--glass-b);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(26px);
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: var(--glass-b);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}


/* =====================================================
   SERVIÇOS
   ===================================================== */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(107, 92, 246, 0.03), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-item {
  padding: 30px 28px;
  border-radius: var(--r);
  border: 1px solid var(--glass-b);
  background: var(--glass);
  transition: var(--ease);
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateX(-28px);
}

.service-item:nth-child(even) {
  transform: translateX(28px);
}

.service-item:hover {
  border-color: rgba(107, 92, 246, 0.4);
  background: rgba(107, 92, 246, 0.1);
}

.service-num {
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.55;
  flex-shrink: 0;
  padding-top: 3px;
}

.service-title {
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.74;
}


/* =====================================================
   CONTATO
   ===================================================== */
.contact {
  padding: 120px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(107, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-sub {
  max-width: 100%;
  margin-bottom: 38px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--purple-l);
  fill: none;
  stroke-width: 1.5;
}

.feat-title {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.feat-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}


/* =====================================================
   FORMULÁRIO
   ===================================================== */
.form-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 22px;
  padding: 44px 38px;
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateX(38px);
}

.form-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-label em {
  color: var(--purple);
  font-style: normal;
}

.form-control {
  width: 100%;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-b);
  border-radius: 11px;
  color: #fff;
  font-family: var(--fb);
  font-size: 0.93rem;
  transition: var(--ease);
  outline: none;
  appearance: none;
}

.form-control::placeholder { color: rgba(156, 163, 175, 0.45); }

.form-control:focus {
  border-color: var(--purple);
  background: rgba(107, 92, 246, 0.07);
  box-shadow: 0 0 0 3px rgba(107, 92, 246, 0.14);
}

.form-control.valid   { border-color: #10B981; background: rgba(16, 185, 129, 0.05); }
.form-control.invalid { border-color: #EF4444; background: rgba(239, 68, 68, 0.05); }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B5CF6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px;
  padding-right: 42px;
}

select.form-control option { background: #151826; color: #fff; }

textarea.form-control {
  resize: vertical;
  min-height: 96px;
}

.form-hint {
  margin-top: 6px;
  font-size: 0.76rem;
  min-height: 20px;
}

.hint-loading,
.hint-valid,
.hint-invalid {
  display: none;
  align-items: center;
  gap: 6px;
}

.hint-loading.show,
.hint-valid.show,
.hint-invalid.show {
  display: flex;
}

.hint-loading { color: var(--muted); }
.hint-valid   { color: #10B981; }
.hint-invalid  { color: #EF4444; }

.spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(156, 163, 175, 0.3);
  border-top-color: var(--muted);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.btn-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--purple), #7C3AED);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 28px rgba(107, 92, 246, 0.42);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 38px rgba(107, 92, 246, 0.62);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Estado de sucesso */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}

.form-success.show { display: block; }

.success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 34px;
  height: 34px;
  stroke: #10B981;
  fill: none;
  stroke-width: 2;
}

.success-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.success-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}


/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--glass-b);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-logo { height: 30px; width: auto; }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-family: var(--fh);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--ease);
}

.footer-links a:hover { color: var(--purple-l); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(156, 163, 175, 0.45);
}


/* =====================================================
   BOTÃO FLUTUANTE WHATSAPP
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--ease);
}

.wa-float:hover { transform: translateY(-4px); }

.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.42);
  position: relative;
  flex-shrink: 0;
}

.wa-btn::before,
.wa-btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.4s ease-out infinite;
}

.wa-btn::before { inset: -8px; }
.wa-btn::after  { inset: -16px; animation-delay: 0.5s; border-color: rgba(37, 211, 102, 0.18); }

.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

.wa-label {
  background: rgba(11, 13, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-b);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: var(--ease);
  pointer-events: none;
  order: -1;
}


/* =====================================================
   KEYFRAMES
   ===================================================== */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.25; }
}

@keyframes ring-spin { to { transform: rotate(360deg); } }
@keyframes spin      { to { transform: rotate(360deg); } }
@keyframes wa-pulse  { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 1024px) {
  .purpose-inner { grid-template-columns: 1fr; gap: 50px; }
  .purpose-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item,
  .service-item:nth-child(even) { transform: translateY(22px); opacity: 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .form-card { padding: 30px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .wa-float { bottom: 18px; right: 18px; }
}
