/* ═══════════════════════════════════════════════════════════
   AGÊNCIA BBOLD — style.css
   Paleta: Preto #0A0A0A | Amarelo #F5C518 | Branco #F0EFE8
   Fontes: Bebas Neue (títulos) + Barlow (corpo)
═══════════════════════════════════════════════════════════ */

:root {
  --yellow: #F5C518;
  --yellow-dark: #D4AA10;
  --black: #0A0A0A;
  --black-mid: #141414;
  --black-light: #1E1E1E;
  --gray: #2A2A2A;
  --gray-mid: #444;
  --off-white: #F0EFE8;
  --white: #FFFFFF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ─── SELECTION ──────────────────────────────────────────── */
::selection { background: var(--yellow); color: var(--black); }

/* ─── UTILITIES ──────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}
.section-title em {
  font-style: normal;
  color: var(--yellow);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(240,239,232,0.3);
}
.btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn--black {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn--black:hover {
  background: var(--black-mid);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,239,232,0.75);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--yellow); }
.nav__cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
}
.nav__cta:hover { background: var(--yellow-dark) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--off-white);
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  gap: 60px;
}
.hero__bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.hero__content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 1.4rem;
}
.hero__title--accent { color: var(--yellow); }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(240,239,232,0.65);
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__icon {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.hero__icon img {
  width: clamp(180px, 28vw, 380px);
  filter: drop-shadow(0 0 60px rgba(245,197,24,0.25));
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,239,232,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245,197,24,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── NUMBERS ────────────────────────────────────────────── */
.numbers {
  background: var(--yellow);
  padding: 48px 40px;
}
.numbers__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.numbers__item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.numbers__item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(10,10,10,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.numbers__value {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--black);
  line-height: 1;
}
.numbers__plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--black);
}
.numbers__divider {
  width: 1px;
  height: 60px;
  background: rgba(10,10,10,0.2);
  flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  padding: 100px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--black-light);
  padding: 40px 36px;
  position: relative;
  border: 1px solid rgba(240,239,232,0.05);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { background: var(--black-mid); border-color: rgba(245,197,24,0.15); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245,197,24,0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.service-card:hover .service-card__num { color: rgba(245,197,24,0.18); }
.service-card__icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: rgba(240,239,232,0.55);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card ul { display: flex; flex-direction: column; gap: 6px; }
.service-card ul li {
  font-size: 0.82rem;
  color: rgba(240,239,232,0.4);
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* ─── HOW ────────────────────────────────────────────────── */
.how {
  background: var(--black-mid);
  padding: 100px 40px;
  border-top: 1px solid rgba(240,239,232,0.04);
  border-bottom: 1px solid rgba(240,239,232,0.04);
}
.how__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how__text p {
  font-size: 1rem;
  color: rgba(240,239,232,0.6);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.how__text .btn { margin-top: 1.4rem; }
.how__steps { display: flex; flex-direction: column; gap: 28px; }
.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(240,239,232,0.07);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.how-step:hover {
  border-color: rgba(245,197,24,0.25);
  background: rgba(245,197,24,0.03);
}
.how-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.how-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--off-white);
  margin-bottom: 4px;
}
.how-step p {
  font-size: 0.88rem;
  color: rgba(240,239,232,0.5);
  line-height: 1.6;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 100px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.about__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 25vw, 22rem);
  color: rgba(245,197,24,0.03);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
  user-select: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__photo-frame {
  aspect-ratio: 4/5;
  background: var(--black-light);
  border: 1px solid rgba(240,239,232,0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.8));
}
.about__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  height: 100%;
  width: 100%;
}
.about__icon-img {
  width: 120px;
  opacity: 0.8;
  filter: drop-shadow(0 0 30px rgba(245,197,24,0.4));
}
.about__photo-placeholder span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: rgba(240,239,232,0.4);
  position: relative;
  z-index: 1;
}
.about__image { position: relative; }
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--black);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
  z-index: 2;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}
.about__badge-txt {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.about__lead {
  font-size: 1.05rem;
  color: rgba(240,239,232,0.75);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about__lead strong { color: var(--yellow); font-weight: 700; }
.about__text p {
  font-size: 0.95rem;
  color: rgba(240,239,232,0.55);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__text strong { color: var(--off-white); }
.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.6rem;
}
.skill-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 5px 12px;
  border-radius: 2px;
  transition: var(--transition);
}
.skill-tag:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ─── CUSTOM PROJECTS ────────────────────────────────────── */
.custom {
  background: var(--black-mid);
  border-top: 1px solid rgba(240,239,232,0.04);
  border-bottom: 1px solid rgba(240,239,232,0.04);
  padding: 100px 40px;
}
.custom__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.custom__header {
  max-width: 640px;
  margin-bottom: 64px;
}
.custom__lead {
  font-size: 1rem;
  color: rgba(240,239,232,0.55);
  line-height: 1.75;
  margin-top: 0.4rem;
}
.custom__scenarios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}
.custom-scenario {
  background: var(--black-light);
  border: 1px solid rgba(240,239,232,0.05);
  padding: 40px 36px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.custom-scenario::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.custom-scenario:hover {
  background: rgba(245,197,24,0.03);
  border-color: rgba(245,197,24,0.12);
}
.custom-scenario:hover::before { transform: scaleX(1); }
.custom-scenario__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(245,197,24,0.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  transition: color var(--transition);
}
.custom-scenario:hover .custom-scenario__num { color: rgba(245,197,24,0.15); }
.custom-scenario h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 12px;
}
.custom-scenario p {
  font-size: 0.92rem;
  color: rgba(240,239,232,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.custom-scenario__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.custom-scenario__tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.25);
  padding: 4px 10px;
  border-radius: 2px;
}
.custom__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.custom__cta p {
  font-size: 1.1rem;
  color: rgba(240,239,232,0.5);
}

@media (max-width: 768px) {
  .custom { padding: 72px 24px; }
  .custom__scenarios { grid-template-columns: 1fr; }
  .custom__header { margin-bottom: 40px; }
}

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--yellow);
  padding: 70px 40px;
}
.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.cta-band__text p {
  font-size: 1rem;
  color: rgba(10,10,10,0.65);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: 100px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__text p {
  font-size: 1rem;
  color: rgba(240,239,232,0.6);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.contact__info { display: flex; flex-direction: column; gap: 14px; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(240,239,232,0.6);
  transition: color var(--transition);
}
.contact__link:hover { color: var(--yellow); }
.contact__link-icon { font-size: 1.1rem; }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-light);
  border: 1px solid rgba(240,239,232,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F5C518' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}
.form-group select option {
  background: var(--black-light);
  color: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,239,232,0.25); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem;
  color: rgba(240,239,232,0.35);
  text-align: center;
}
/* Form label trick */
.form-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: rgba(240,239,232,0.3);
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black-mid);
  border-top: 1px solid rgba(240,239,232,0.06);
  padding: 70px 40px 28px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(240,239,232,0.06);
}
.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(240,239,232,0.4);
  line-height: 1.7;
}
.footer__links h4,
.footer__social h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links ul li a {
  font-size: 0.88rem;
  color: rgba(240,239,232,0.45);
  transition: color var(--transition);
}
.footer__links ul li a:hover { color: var(--off-white); }
.footer__social-links { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240,239,232,0.5);
  padding: 8px 14px;
  border: 1px solid rgba(240,239,232,0.1);
  border-radius: 2px;
  transition: var(--transition);
  text-align: center;
}
.social-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.social-btn--wpp:hover { background: #25D366; color: var(--white); border-color: #25D366; }
.footer__bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(240,239,232,0.25);
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom strong { color: rgba(240,239,232,0.45); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr 1.5fr; gap: 48px; }
  .how__inner { gap: 48px; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 24px; }
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.4rem !important; }
  .nav__hamburger { display: flex; z-index: 100; position: relative; }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    min-height: auto;
  }
  .hero__icon { order: -1; }
  .hero__icon img { width: 200px; margin: 0 auto; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }

  .numbers__inner { flex-direction: column; gap: 28px; }
  .numbers__divider { width: 60px; height: 1px; }

  .services { padding: 72px 24px; }
  .services__grid { grid-template-columns: 1fr; }

  .how { padding: 72px 24px; }
  .how__inner { grid-template-columns: 1fr; gap: 48px; }

  .about { padding: 72px 24px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-frame { aspect-ratio: 3/2; }
  .about__badge { bottom: -12px; right: 20px; }

  .cta-band { padding: 56px 24px; }
  .cta-band__inner { flex-direction: column; text-align: center; }

  .contact { padding: 72px 24px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer { padding: 56px 24px 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3.2rem; }
  .section-title { font-size: 2rem; }
  .numbers__value { font-size: 3rem; }
  .btn { padding: 12px 22px; font-size: 0.82rem; }
}
