/* =========================================================
   AMILCAR FLORES — PHP Replica visual inspirada en Seonex Home 2
   Mantiene intención SEO/textos, cambia estructura visual/animaciones.
========================================================= */
:root {
  --primary-color: #1F1F1F;
  --secondary-color: #797979;
  --third-color: #DCF247;
  --four-color: #0B1BE6;
  --body-bg-color: #fff;
  --black: #090705;
  --white: #ffffff;
  --soft: #f5f5f0;
  --soft-2: #ededdf;
  --border: rgba(31,31,31,.13);
  --dark-border: rgba(255,255,255,.12);
  --shadow: 0 34px 100px rgba(31,31,31,.10);
  --shadow-dark: 0 34px 100px rgba(0,0,0,.28);
  --font-heading: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1280px, calc(100% - 44px));
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--primary-color);
  background: var(--body-bg-color);
  font-family: var(--font-body);
  line-height: 1.68;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--third-color); color: var(--primary-color); }

.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: clamp(82px, 9vw, 138px) 0; }
.pxl-section-soft { background: var(--soft); }
.pxl-section-dark { background: var(--primary-color); color: var(--white); }

/* Loader */
.pxl-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--primary-color);
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.pxl-loader.hidden { opacity: 0; visibility: hidden; }
.loading-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--third-color);
  color: var(--primary-color);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -1px;
  position: relative;
}
.loading-mark::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  border: 1px solid rgba(220,242,71,.35);
  animation: pulse-ring 1.3s linear infinite;
}
@keyframes pulse-ring {
  from { transform: scale(.9); opacity: 1; }
  to { transform: scale(1.3); opacity: 0; }
}

.mouse-follower {
  width: 16px;
  height: 16px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--third-color);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s ease, width .28s ease, height .28s ease;
}
.mouse-follower.active { opacity: 1; }
.mouse-follower.grow { width: 54px; height: 54px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.header-shell {
  min-height: 82px;
  padding: 14px 18px;
  border-radius: 999px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  background: rgba(31,31,31,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(16px);
}
.site-header.scrolled { top: 0; }
.site-header.scrolled .header-shell { background: rgba(31,31,31,.96); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--third-color);
  color: var(--primary-color);
  font-size: .9rem;
  font-weight: 900;
}
.brand-text { font-family: var(--font-heading); font-size: .98rem; }
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255,255,255,.78);
  font-size: .91rem;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  transition: color .25s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--third-color);
  transition: width .3s var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.header-phone {
  color: rgba(255,255,255,.88);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
  font-size: .9rem;
}
.phone-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--third-color);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  cursor: pointer;
  padding: 13px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--white);
  transition: .3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  padding: 14px 22px 14px 26px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease), color .32s var(--ease);
}
.btn span, .btn i { position: relative; z-index: 2; font-style: normal; }
.btn i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--primary-color);
  transition: transform .32s var(--ease), background .32s var(--ease), color .32s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover i { transform: rotate(45deg); }
.btn-default,
.btn-two-icon {
  background: var(--third-color);
  color: var(--primary-color);
  box-shadow: 0 14px 32px rgba(220,242,71,.22);
}
.btn-default:hover,
.btn-two-icon:hover { box-shadow: 0 20px 44px rgba(220,242,71,.32); }
.btn-outline {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
}
.btn-outline i { background: rgba(255,255,255,.13); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary-color);
  border-color: rgba(31,31,31,.22);
}
.btn-outline-dark i { background: var(--primary-color); color: var(--white); }
.header-cta { padding-inline: 20px 14px; min-height: 52px; }
.header-cta i { width: 30px; height: 30px; }

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 162px 0 0;
}
.pxl-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto 6% 11% auto;
  width: 36vw;
  height: 36vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,242,71,.32), rgba(220,242,71,0) 62%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.hero-orbit-one { width: 680px; height: 680px; right: -240px; top: 84px; animation: spin 24s linear infinite; }
.hero-orbit-two { width: 380px; height: 380px; left: -140px; bottom: 84px; animation: spin 18s linear reverse infinite; }
.hero-orbit::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--third-color);
  top: 12%;
  left: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-grid {
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  position: relative;
  z-index: 2;
}
.pxl-feature--wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  margin-bottom: 28px;
}
.pxl-feature--wrap span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: -.01em;
}
.pxl-item--feature { background: var(--third-color); color: var(--primary-color); }
.pxl-item--feature2 { color: rgba(255,255,255,.78); }
.pxl-item--title {
  margin: 0;
  max-width: 720px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.8vw, 5.85rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
}
.pxl-item--title span {
  display: inline;
  color: var(--third-color);
  text-shadow: 0 0 52px rgba(220,242,71,.26);
}
.hero-subtitle {
  max-width: 640px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}
.hero-subtitle strong { color: var(--white); }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.search-card {
  width: min(520px, 100%);
  min-height: 560px;
  border-radius: 44px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    #111;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.search-card::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.1);
}
.search-card::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(220,242,71,.25);
  filter: blur(60px);
  bottom: -110px;
  right: -80px;
}
.search-cloud {
  width: 88%;
  color: #00B1EB;
  opacity: .98;
  filter: drop-shadow(0 28px 60px rgba(0,177,235,.18));
  transform: translateY(-22px);
}
.floating-search {
  width: calc(100% - 90px);
  position: absolute;
  left: 45px;
  top: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  align-items: center;
  padding: 16px 16px 16px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  z-index: 2;
}
.floating-search span { grid-column: 1 / 2; color: var(--secondary-color); font-size: .72rem; font-weight: 800; }
.floating-search strong { grid-column: 1 / 2; line-height: 1.1; font-size: .96rem; }
.floating-search button {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--third-color);
  color: var(--primary-color);
  font-weight: 900;
  cursor: pointer;
}
.rank-card {
  position: absolute;
  z-index: 3;
  border-radius: 24px;
  padding: 18px 20px;
  background: rgba(255,255,255,.96);
  color: var(--primary-color);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  animation: floatY 4.5s ease-in-out infinite;
}
.rank-card small { display: block; color: var(--secondary-color); font-weight: 900; text-transform: uppercase; font-size: .68rem; letter-spacing: .08em; }
.rank-card strong { display: block; font-family: var(--font-heading); font-size: 2rem; line-height: 1; letter-spacing: -.06em; }
.rank-card-one { left: 26px; bottom: 126px; }
.rank-card-two { right: 18px; bottom: 62px; animation-delay: -2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.marquee-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 28px 0;
  animation: marquee 23s linear infinite;
}
.marquee-track h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  letter-spacing: -.06em;
  color: rgba(255,255,255,.18);
  white-space: nowrap;
  line-height: 1;
}
.marquee-track h2:nth-child(odd) { color: var(--third-color); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Results */
.results-section { padding: 34px 0; background: var(--third-color); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(31,31,31,.18);
}
.result-card {
  background: var(--third-color);
  padding: clamp(26px, 3vw, 42px);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .9;
}
.result-card p { margin: 20px 0 0; max-width: 260px; color: rgba(31,31,31,.76); font-weight: 800; line-height: 1.35; }

/* Sections */
.section-head {
  max-width: 790px;
  margin: 0 auto clamp(42px, 6vw, 76px);
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--four-color);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .74rem;
}
.section-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--third-color);
  box-shadow: 0 0 0 6px rgba(220,242,71,.35);
}
.section-head h2,
.section-copy h2,
.sticky-copy h2,
.cta-inner h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.25vw, 4.45rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}
.section-head p,
.section-copy p,
.sticky-copy p,
.cta-inner p {
  margin: 22px 0 0;
  color: var(--secondary-color);
  font-size: 1.05rem;
  max-width: 680px;
}
.section-head.light .section-kicker { color: var(--third-color); }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,.66); margin-inline: auto; }

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}
.portrait-card {
  border-radius: 44px;
  padding: 30px;
  min-height: 610px;
  background:
    radial-gradient(circle at 25% 16%, rgba(220,242,71,.54), transparent 28%),
    linear-gradient(145deg, #222, #0f0f0f);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait-card::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--third-color);
  right: -80px;
  top: 150px;
  filter: blur(2px);
}
.portrait-card::after {
  content: 'Marketing\A Digital';
  white-space: pre;
  position: absolute;
  right: -14px;
  bottom: 24px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: .85;
  font-weight: 950;
  letter-spacing: -.09em;
  color: rgba(255,255,255,.06);
}
.portrait-top,
.skill-stack,
.cert-list { position: relative; z-index: 2; }
.portrait-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 180px;
}
.portrait-top > span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--third-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 950;
}
.portrait-top strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; }
.portrait-top small { color: rgba(255,255,255,.62); font-weight: 700; }
.skill-stack {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.skill-stack div {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.skill-stack span,
.skill-stack b { display: inline-block; font-size: .86rem; font-weight: 900; }
.skill-stack b { float: right; color: var(--third-color); }
.skill-stack i {
  display: block;
  clear: both;
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.skill-stack i::after {
  content: '';
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--third-color);
  transform-origin: left;
  animation: growBar 1.4s var(--ease) both;
}
@keyframes growBar { from { transform: scaleX(0); } }
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.cert-list span,
.about-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
}
.cert-list span {
  padding: 10px 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.78);
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about-tags span {
  padding: 12px 16px;
  background: var(--soft);
  border: 1px solid var(--border);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(31,31,31,.08);
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--third-color);
  right: -80px;
  top: -80px;
  transform: scale(0);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-10px);
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scale(1.65); }
.service-index {
  color: var(--four-color);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -.08em;
  margin-bottom: 40px;
}
.service-card:hover .service-index { color: var(--primary-color); }
.service-card h3 {
  max-width: 350px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.service-card p { margin: 0; color: var(--secondary-color); }
.service-card:hover p { color: rgba(255,255,255,.72); }
.tag-row { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; padding-top: 28px; }
.tag-row span {
  padding: 9px 10px;
  background: var(--soft);
  color: var(--primary-color);
}
.service-card:hover .tag-row span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); }
.circle-link {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 950;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.service-card:hover .circle-link { background: var(--third-color); color: var(--primary-color); transform: rotate(45deg); }

/* Process */
.process-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}
.sticky-copy { position: sticky; top: 130px; }
.text-arrow { display: inline-flex; margin-top: 28px; color: var(--primary-color); font-weight: 950; }
.timeline { display: grid; gap: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--soft);
  border: 1px solid rgba(31,31,31,.08);
  transition: transform .32s var(--ease), background .32s var(--ease);
}
.timeline-item:hover { transform: translateX(10px); background: var(--third-color); }
.timeline-item > span {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.09em;
  color: var(--four-color);
}
.timeline-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.timeline-item p { margin: 0; color: var(--secondary-color); }
.timeline-item:hover p { color: rgba(31,31,31,.78); }

/* Cases */
.cases { position: relative; overflow: hidden; }
.cases::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,242,71,.18), transparent 60%);
  left: -120px;
  top: 90px;
}
.testimonial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.testimonial-card:hover { transform: translateY(-10px); background: rgba(255,255,255,.1); }
.stars { color: var(--third-color); letter-spacing: 4px; font-size: .9rem; }
.testimonial-card blockquote {
  margin: 28px 0;
  color: rgba(255,255,255,.8);
  font-size: 1.03rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-author > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--third-color);
  color: var(--primary-color);
  font-weight: 950;
}
.testimonial-author strong { display: block; color: var(--white); }
.testimonial-author small { display: block; color: rgba(255,255,255,.55); line-height: 1.35; }
.case-result {
  margin-top: 22px;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--third-color);
  color: var(--primary-color);
  font-weight: 950;
  line-height: 1;
}

/* CTA */
.cta-band {
  padding: 92px 0;
  background: var(--third-color);
}
.cta-inner {
  max-width: 950px;
  text-align: center;
}
.cta-inner p { margin-inline: auto; color: rgba(31,31,31,.72); }
.cta-inner .btn-two-icon { background: var(--primary-color); color: var(--white); box-shadow: none; }
.cta-inner .btn-two-icon i { background: var(--third-color); }

/* FAQ */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31,31,31,.08);
  background: var(--soft);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -.035em;
}
.faq-question i {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--third-color);
  font-style: normal;
  transition: transform .35s var(--ease);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  color: var(--secondary-color);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 26px; }
.faq-item.open .faq-question i { transform: rotate(45deg); background: var(--primary-color); color: var(--white); }

/* Contact */
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(31,31,31,.08);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.contact-list a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-list b { font-family: var(--font-heading); }
.contact-list span { color: var(--secondary-color); }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label span { color: rgba(255,255,255,.76); font-weight: 900; font-size: .9rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  outline: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 12px 14px;
  transition: border-color .25s ease, background .25s ease;
}
.form-select option { color: var(--primary-color); }
.form-textarea { resize: vertical; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--third-color);
  background: rgba(255,255,255,.12);
}
.form-submit { width: 100%; margin-top: 8px; border: 0; }
.form-submit.sent { background: #45da76; }

/* Footer */
.site-footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 76px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}
.footer-grid p {
  max-width: 390px;
  color: rgba(255,255,255,.62);
  margin: 18px 0 0;
}
.footer-grid h3 {
  font-family: var(--font-heading);
  margin: 0 0 16px;
  font-size: 1rem;
}
.footer-grid a,
.footer-grid span:not(.brand-mark):not(.brand-text) {
  display: block;
  color: rgba(255,255,255,.62);
  margin: 10px 0;
  transition: color .25s ease;
}
.footer-grid a:hover { color: var(--third-color); }
.footer-brand { color: var(--white); justify-content: flex-start; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 56px;
  padding-top: 24px;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--third-color);
  color: var(--primary-color);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .32s var(--ease);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Animations */
.reveal,
.wow {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .78s var(--ease), transform .78s var(--ease);
}
.reveal.visible,
.wow.visible { opacity: 1; transform: translateY(0); }
.zoomIn { transform: scale(.94); }
.zoomIn.visible { transform: scale(1); }
.PXLfadeInUp {
  opacity: 0;
  transform: translateY(58px) skewY(2deg);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.PXLfadeInUp.visible { opacity: 1; transform: translateY(0) skewY(0); }

/* SEO landing pages */
.landing-page .site-header + main { background: var(--white); }
.landing-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-color);
  padding: 150px 0 88px;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .14;
}
.landing-hero .container { position: relative; z-index: 2; }
.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--third-color);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.landing-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--third-color);
}
.landing-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 950;
}
.landing-title span { color: var(--third-color); }
.landing-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}
.landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
.landing-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 850;
  font-size: .82rem;
}
.landing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.landing-media {
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  margin: 0;
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-dark);
  background: #111;
}
.landing-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.landing-media::before,
.landing-media::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.landing-media::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(220,242,71,.18), transparent 34%),
    linear-gradient(45deg, transparent 0 46%, rgba(255,255,255,.08) 46% 47%, transparent 47% 100%);
  background-size: auto, 42px 42px;
}
.landing-media::after {
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(14px);
}
.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: end;
}
.ads-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.consultor-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}
.pymes-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}
.pymes-hero-grid .landing-copy {
  max-width: 980px;
  text-align: center;
  margin-inline: auto;
}
.pymes-hero-grid .landing-lead { margin-inline: auto; }
.pymes-hero-grid .landing-proof,
.pymes-hero-grid .landing-actions { justify-content: center; }
.pymes-media { min-height: 330px; border-radius: 28px; }
.landing-seo .landing-media { transform: rotate(-1.5deg); }
.landing-ads .landing-media { min-height: 560px; border-radius: 18px; }
.landing-consultor .landing-media { border-radius: 999px 999px 34px 34px; }
.landing-pymes .landing-hero { padding-bottom: 62px; }
.insight-band {
  padding: 28px 0;
  background: var(--third-color);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.insight-item {
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(31,31,31,.08);
}
.insight-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.035em;
}
.insight-item span {
  display: block;
  margin-top: 10px;
  color: rgba(31,31,31,.72);
  font-weight: 800;
  line-height: 1.3;
}
.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}
.content-panel {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid rgba(31,31,31,.08);
}
.content-panel.dark {
  background: var(--primary-color);
  color: var(--white);
}
.content-panel h2,
.content-panel h3,
.comparison-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.content-panel h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); }
.content-panel p { margin: 0 0 16px; color: var(--secondary-color); }
.content-panel.dark p { color: rgba(255,255,255,.68); }
.keyword-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.keyword-list a,
.keyword-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(31,31,31,.08);
  font-weight: 850;
}
.content-panel.dark .keyword-list a,
.content-panel.dark .keyword-list span {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.12);
}
.topic-cluster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.topic-card,
.comparison-card {
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(31,31,31,.08);
}
.topic-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.topic-card p,
.comparison-card p { margin: 0; color: var(--secondary-color); }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.landing-cta {
  padding: 72px 0;
  background: var(--primary-color);
  color: var(--white);
}
.landing-cta .cta-inner { margin-inline: auto; }
.landing-cta .cta-inner p { color: rgba(255,255,255,.68); }
.lead-hero {
  position: relative;
  overflow: hidden;
  padding: 152px 0 92px;
  color: var(--white);
  background: var(--primary-color);
}
.lead-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .16;
}
.lead-hero .container { position: relative; z-index: 2; }
.web-hero-grid,
.ads-lead-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, .78fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.ads-lead-hero-grid { grid-template-columns: minmax(380px, .82fr) minmax(0, .95fr); }
.lead-title {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.4vw, 5.65rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 950;
}
.lead-title span { color: var(--third-color); }
.lead-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}
.hero-image-slot {
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 24% 20%, rgba(220,242,71,.42), transparent 28%),
    linear-gradient(145deg, #262626, #090909);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-dark);
}
.hero-image-slot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.hero-image-slot::after { display: none; }
.pain-grid,
.include-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pain-card,
.include-card,
.use-case-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(31,31,31,.08);
}
.pain-card { background: var(--soft); }
.pain-card h3,
.include-card h3,
.use-case-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.pain-card p,
.include-card p,
.use-case-card p { margin: 0; color: var(--secondary-color); }
.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.before-after article {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 28px;
  background: var(--primary-color);
  color: var(--white);
}
.before-after article:last-child { background: var(--third-color); color: var(--primary-color); }
.before-after h3 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.before-after ul,
.lead-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.before-after li,
.lead-checklist li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}
.before-after li::before,
.lead-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--third-color);
}
.before-after article:last-child li::before { background: var(--primary-color); }
.step-form-shell {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(246,246,240,.34);
  backdrop-filter: blur(16px);
}
.lead-modal.active { display: flex; }
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31,31,31,.22);
  backdrop-filter: blur(18px);
}
.lead-modal-panel {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: min(84vh, 680px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(31,31,31,.24);
  border: 1px solid rgba(31,31,31,.08);
}
.lead-modal-close {
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  color: var(--primary-color);
  background: rgba(31,31,31,.08);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background .22s ease, transform .22s ease;
}
.lead-modal-close:hover { background: var(--third-color); transform: rotate(90deg); }
.lead-modal .step-form-shell {
  padding: 12px;
  max-height: inherit;
  overflow: hidden;
}
.step-form-aside {
  position: relative;
  top: auto;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(220,242,71,.72), transparent 28%),
    radial-gradient(circle at 18% 26%, rgba(11,27,230,.82), transparent 34%),
    linear-gradient(145deg, #1f1f1f 0%, #151515 45%, #dcf247 140%);
  color: var(--white);
  overflow: hidden;
}
.step-form-aside::before {
  content: '*';
  position: absolute;
  top: 0;
  left: 22px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 4.8rem;
  line-height: .8;
  font-weight: 950;
}
.step-form-aside > * { position: relative; z-index: 2; }
.step-form-aside h2 {
  max-width: 260px;
  margin: auto 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.step-form-aside p {
  max-width: 290px;
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.45;
  font-weight: 700;
}
.step-progress {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}
.step-progress span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  overflow: hidden;
}
.step-progress span::before {
  content: '';
  display: block;
  width: var(--step-progress, 0%);
  height: 100%;
  background: var(--third-color);
  transition: width .25s ease;
}
.step-lead-form {
  min-height: 520px;
  max-height: calc(min(84vh, 680px) - 24px);
  overflow: auto;
  padding: clamp(28px, 4vw, 52px) clamp(26px, 4.2vw, 56px);
  border-radius: 18px;
  background: var(--white);
  color: var(--primary-color);
  box-shadow: none;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 {
  max-width: 460px;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid label,
.choice-group label {
  display: grid;
  gap: 7px;
  color: var(--primary-color);
  font-weight: 900;
  font-size: .9rem;
}
.form-grid label.full { grid-column: 1 / -1; }
.choice-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.choice-group input {
  position: absolute;
  opacity: 0;
}
.choice-group span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 12px;
  color: rgba(31,31,31,.76);
  background: #f7f7f2;
  border: 1px solid rgba(31,31,31,.14);
  cursor: pointer;
  transition: .22s ease;
}
.choice-group input:checked + span {
  color: var(--primary-color);
  background: var(--third-color);
  border-color: var(--third-color);
  box-shadow: 0 10px 22px rgba(220,242,71,.22);
}
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.step-actions .btn { min-width: 132px; min-height: 48px; padding: 12px 18px; }
.step-success {
  display: none;
  padding: 24px;
  border-radius: 20px;
  background: #f7f7f2;
  border: 1px solid rgba(31,31,31,.09);
}
.step-success.active { display: block; }
.step-success h3 { color: var(--primary-color); }
.lead-modal .form-input,
.lead-modal .form-select,
.lead-modal .form-textarea {
  min-height: 42px;
  border-radius: 10px;
  border-color: rgba(31,31,31,.18);
  background: var(--white);
  color: var(--primary-color);
  padding: 10px 12px;
  font-weight: 700;
}
.lead-modal .form-textarea { min-height: 96px; }
.lead-modal .form-input:focus,
.lead-modal .form-select:focus,
.lead-modal .form-textarea:focus {
  border-color: var(--four-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11,27,230,.08);
}
.lead-modal .btn-outline {
  color: var(--primary-color);
  border-color: rgba(31,31,31,.14);
  background: #f4f4ef;
}
.lead-modal .btn-outline i {
  background: var(--primary-color);
  color: var(--white);
}
.not-for-you {
  padding: 34px;
  border-radius: 28px;
  background: var(--primary-color);
  color: var(--white);
}
.not-for-you p { color: rgba(255,255,255,.68); }

/* Responsive */
@media (max-width: 1180px) {
  .header-shell { grid-template-columns: auto 1fr auto; }
  .main-nav {
    position: fixed;
    top: 104px;
    left: 22px;
    right: 22px;
    justify-self: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px;
    border-radius: 28px;
    background: rgba(31,31,31,.98);
    box-shadow: var(--shadow-dark);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .35s var(--ease);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 0; }
  .header-phone { justify-self: end; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .about-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .sticky-copy { position: static; }
  .service-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-hero-grid,
  .ads-hero-grid,
  .consultor-hero-grid,
  .seo-content-grid { grid-template-columns: 1fr; }
  .consultor-hero-grid .landing-media { order: 2; }
  .topic-cluster { grid-template-columns: 1fr 1fr; }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .web-hero-grid,
  .ads-lead-hero-grid,
  .step-form-shell { grid-template-columns: 1fr; }
  .step-form-aside { position: static; }
  .pain-grid,
  .include-grid,
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1280px); }
  .site-header { top: 0; }
  .header-shell {
    min-height: 66px;
    padding: 10px 12px 10px 18px;
    gap: 10px;
    grid-template-columns: 1fr auto;
  }
  .brand { min-width: 0; }
  .brand-text {
    display: inline;
    max-width: 62vw;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .86rem;
    letter-spacing: .05em;
  }
  .nav-toggle { justify-self: end; width: 46px; height: 46px; }
  .main-nav {
    top: 88px;
    left: 14px;
    right: 14px;
    border-radius: 22px;
    padding: 18px 22px;
  }
  .header-phone { display: none; }
  .hero { padding-top: 88px; }
  .hero-grid { min-height: auto; padding: 28px 0 58px; gap: 30px; }
  .pxl-feature--wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
  }
  .pxl-feature--wrap span {
    flex: 1 1 0;
    justify-content: center;
    min-height: 31px;
    padding: 7px 9px;
    font-size: .68rem;
    white-space: nowrap;
  }
  .pxl-item--title {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
    line-height: 1;
    letter-spacing: -.045em;
  }
  .hero-subtitle { margin: 20px 0 24px; font-size: 1rem; line-height: 1.55; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .hero-visual { min-height: 440px; }
  .search-card { min-height: 430px; border-radius: 30px; }
  .floating-search { left: 18px; top: 36px; width: calc(100% - 36px); }
  .rank-card { padding: 14px 16px; }
  .rank-card strong { font-size: 1.55rem; }
  .rank-card-one { left: 14px; bottom: 112px; }
  .rank-card-two { right: 14px; bottom: 34px; }
  .results-grid, .service-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .result-card { min-height: 160px; }
  .section-pad { padding: 76px 0; }
  .section-head { text-align: left; }
  .section-head h2, .section-copy h2, .sticky-copy h2, .cta-inner h2 {
    font-size: clamp(2.15rem, 9.5vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -.035em;
  }
  .portrait-card { min-height: 520px; padding: 22px; border-radius: 30px; }
  .portrait-top { padding-bottom: 118px; }
  .service-card { min-height: auto; }
  .timeline-item { grid-template-columns: 1fr; padding: 24px; }
  .contact-form { grid-template-columns: 1fr; border-radius: 28px; }
  .contact-form label.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mouse-follower { display: none; }
  .landing-hero { padding: 108px 0 58px; }
  .landing-title { font-size: clamp(2.55rem, 11.5vw, 3.75rem); line-height: 1; }
  .landing-media,
  .landing-ads .landing-media,
  .pymes-media { min-height: 300px; border-radius: 24px; transform: none; }
  .landing-proof,
  .landing-actions { gap: 10px; }
  .landing-actions .btn { width: 100%; justify-content: space-between; }
  .topic-cluster,
  .comparison-grid,
  .insight-grid { grid-template-columns: 1fr; }
  .insight-item { min-height: auto; }
  .content-panel,
  .topic-card,
  .comparison-card { border-radius: 20px; }
  .lead-hero { padding: 108px 0 58px; }
  .lead-title { font-size: clamp(2.5rem, 11vw, 3.7rem); line-height: 1; }
  .hero-image-slot { min-height: 300px; border-radius: 24px; }
  .lead-modal {
    align-items: stretch;
    padding: 0;
  }
  .lead-modal-panel {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }
  .lead-modal .step-form-shell {
    max-height: none;
    min-height: 100dvh;
    overflow: auto;
    padding: 0;
  }
  .step-form-aside {
    min-height: 190px;
    border-radius: 0 0 22px 22px;
    padding: 28px 22px 22px;
  }
  .step-form-aside::before {
    font-size: 3.8rem;
    top: 16px;
    left: 18px;
  }
  .step-form-aside h2 {
    margin-top: 54px;
    max-width: 100%;
  }
  .step-form-aside p { max-width: 100%; }
  .step-lead-form {
    min-height: auto;
    max-height: none;
    overflow: visible;
    border-radius: 0;
    padding: 26px 20px 34px;
  }
  .lead-modal-close {
    top: 14px;
    right: 14px;
    color: var(--white);
    background: rgba(31,31,31,.42);
  }
  .pain-grid,
  .include-grid,
  .use-case-grid,
  .before-after,
  .form-grid,
  .choice-group { grid-template-columns: 1fr; }
  .step-actions { flex-direction: column; }
  .step-actions .btn { width: 100%; justify-content: space-between; }
}
