/*
Theme Name: El Simio Técnico Pro Landing
Theme URI: https://elsimiotec.com
Author: El Simio Técnico
Description: Sitio premium, oscuro y orientado a conversión para El Simio Técnico. Incluye contacto directo, noticias tech y secciones visuales profesionales.
Version: 1.2.2
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: el-simio-tecnico
*/

:root {
  --bg: #050608;
  --bg-soft: #0a0d12;
  --bg-card: rgba(16, 20, 27, 0.78);
  --bg-card-solid: #10151d;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(255,122,0,.38);
  --text: #f7f8fb;
  --muted: #aeb7c3;
  --muted-2: #7d8794;
  --orange: #ff7a00;
  --orange-2: #ff4d00;
  --orange-soft: rgba(255,122,0,.15);
  --blue: #13a0ff;
  --blue-soft: rgba(19,160,255,.12);
  --success: #7ef0be;
  --danger: #ff7979;
  --shadow: 0 28px 90px rgba(0,0,0,.46);
  --glow: 0 0 34px rgba(255,122,0,.24);
  --radius: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1220px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  background:
    radial-gradient(circle at 14% 0%, rgba(255,122,0,.15), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(19,160,255,.10), transparent 24rem),
    linear-gradient(180deg, #030406 0%, #080a0e 44%, #050608 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 960' fill='none'%3E%3Cg stroke='%23ff7a00' stroke-opacity='.18' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M76 124h200v86h116v150h168v90h130v96h194'/%3E%3Cpath d='M120 830v-144h140v-86h178v-132h168v-72h120v-88h118'/%3E%3Cpath d='M332 210v-118h132v118'/%3E%3Cpath d='M560 468v-108h138'/%3E%3Cpath d='M260 600v108h126'/%3E%3Cpath d='M690 450v120h120'/%3E%3C/g%3E%3Cg fill='%23ffb347' fill-opacity='.20'%3E%3Ccircle cx='76' cy='124' r='8'/%3E%3Ccircle cx='276' cy='124' r='7'/%3E%3Ccircle cx='276' cy='210' r='7'/%3E%3Ccircle cx='392' cy='210' r='7'/%3E%3Ccircle cx='392' cy='360' r='8'/%3E%3Ccircle cx='560' cy='360' r='8'/%3E%3Ccircle cx='560' cy='450' r='7'/%3E%3Ccircle cx='690' cy='450' r='7'/%3E%3Ccircle cx='690' cy='546' r='8'/%3E%3Ccircle cx='884' cy='546' r='8'/%3E%3Ccircle cx='120' cy='686' r='7'/%3E%3Ccircle cx='260' cy='686' r='7'/%3E%3Ccircle cx='260' cy='600' r='7'/%3E%3Ccircle cx='438' cy='600' r='8'/%3E%3Ccircle cx='438' cy='468' r='7'/%3E%3Ccircle cx='606' cy='468' r='7'/%3E%3Ccircle cx='726' cy='396' r='7'/%3E%3Ccircle cx='844' cy='396' r='8'/%3E%3Ccircle cx='120' cy='830' r='8'/%3E%3Ccircle cx='386' cy='708' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: min(980px, 100vw) auto;
  background-position: center top;
  background-repeat: repeat-y;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.72));
}

body::after {
  opacity: .46;
  background:
    radial-gradient(circle at 30% 16%, rgba(255,122,0,.12), transparent 24rem),
    radial-gradient(circle at 82% 42%, rgba(19,160,255,.10), transparent 26rem),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(255,122,0,.32); color: #fff; }

.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.section { padding: 72px 0; position: relative; }
.section-tight { padding: 56px 0; }
.site-shell { min-height: 100vh; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: .75rem 1rem;
  background: var(--orange);
  color: #111;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5,6,8,.94), rgba(5,6,8,.78));
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}
.brand-mark {
  width: 64px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255,122,0,.28));
  transform: translateY(1px);
}
.brand-copy strong {
  display: block;
  line-height: 1;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.brand-copy span {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu {
  display: flex;
  gap: .18rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .55rem .82rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 850;
  font-size: .92rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.menu a:hover,
.menu a:focus-visible {
  background: rgba(255,255,255,.06);
  color: #fff;
  transform: translateY(-1px);
}
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.08rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: #170900;
  background: linear-gradient(135deg, #ffb347, var(--orange) 56%, var(--orange-2));
  box-shadow: 0 12px 34px rgba(255,122,0,.30);
}
.btn-primary:hover { box-shadow: 0 16px 46px rgba(255,122,0,.40); }
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.12);
}
.btn-secondary:hover { border-color: rgba(255,122,0,.48); box-shadow: var(--glow); }
.btn-outline {
  color: #fff;
  border-color: rgba(255,122,0,.32);
  background: linear-gradient(180deg, rgba(255,122,0,.12), rgba(255,255,255,.035));
}
.btn-outline:hover { box-shadow: var(--glow); }
.btn-sm { min-height: 40px; padding: .6rem .85rem; font-size: .9rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 34px;
  padding: .38rem .72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,122,0,.12), rgba(255,255,255,.035));
  border: 1px solid rgba(255,122,0,.28);
  color: #ffd7ad;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .105em;
}
.kicker .dot {
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,122,0,.12), 0 0 18px rgba(255,122,0,.6);
}

.hero-whatsapp {
  padding: 42px 0 52px;
  overflow: hidden;
}
.hero-whatsapp::before {
  content: "";
  position: absolute;
  inset: -10% -8% auto;
  height: 620px;
  background:
    radial-gradient(circle at 26% 22%, rgba(255,122,0,.18), transparent 24rem),
    radial-gradient(circle at 78% 0%, rgba(19,160,255,.12), transparent 22rem);
  pointer-events: none;
}
.hero-stack {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}
.hero-panel {
  position: relative;
  padding: clamp(1.2rem, 2.3vw, 2rem);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(16,20,27,.86), rgba(9,12,17,.78)),
    radial-gradient(circle at 70% 0%, rgba(255,122,0,.18), transparent 17rem);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,122,0,.08) inset;
  backdrop-filter: blur(14px);
}
.hero-panel-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,122,0,.32), rgba(255,255,255,.08), rgba(19,160,255,.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-copy {
  text-align: center;
}
.hero-copy-inner {
  max-width: 860px;
  margin-inline: auto;
}
.hero-media {
  position: relative;
  border-radius: clamp(22px, 3vw, 34px);
  padding: clamp(.45rem, 1vw, .68rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,122,0,.12) inset;
  background:
    linear-gradient(180deg, rgba(16,20,27,.72), rgba(9,12,17,.88)),
    linear-gradient(135deg, rgba(255,122,0,.08), rgba(19,160,255,.08));
  isolation: isolate;
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(clamp(22px, 3vw, 34px) - 8px);
}
.hero-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 26%),
    linear-gradient(90deg, rgba(255,122,0,.08), transparent 35%, rgba(19,160,255,.06));
  pointer-events: none;
}
.hero-media-glow {
  position: absolute;
  inset: auto 10% -12% 10%;
  height: 96px;
  border-radius: 999px;
  background: rgba(255,122,0,.34);
  filter: blur(48px);
  z-index: -1;
}
.hero-logo {
  width: min(360px, 78%);
  margin: 0 auto .9rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.48)) drop-shadow(0 0 28px rgba(255,122,0,.18));
}
.hero h1 {
  margin: .75rem 0 .7rem;
  font-size: clamp(2.15rem, 5vw, 4.25rem);
  line-height: .9;
  letter-spacing: -.07em;
  max-width: 760px;
}
.accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #fff, #ffd0a2 38%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255,122,0,.08);
}
.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  max-width: 760px;
  margin-inline: auto;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.1rem;
}
.hero-cta .btn { flex: 1 1 170px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin: 1.15rem auto 0;
  max-width: 980px;
}
.trust-strip span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: .42rem;
  padding: .68rem .72rem;
  border-radius: 16px;
  color: #dfe5eb;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 780;
  font-size: .9rem;
}
.trust-strip strong { color: var(--success); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.55rem;
}
.compact-head { margin-bottom: 1.15rem; }
.section-head h2 {
  margin: .35rem 0 0;
  font-size: clamp(1.7rem, 3.8vw, 2.75rem);
  line-height: .96;
  letter-spacing: -.052em;
}
.section-head p {
  margin: .58rem 0 0;
  max-width: 690px;
  color: var(--muted);
}
.section-actions { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.section-action { white-space: nowrap; }

.service-card,
.proof-card,
.announce-card,
.partner-card,
.community-card,
.news-card,
.social-card,
.contact-card,
.form-card,
.brand-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    var(--bg-card);
  box-shadow: 0 18px 54px rgba(0,0,0,.26);
  border-radius: var(--radius);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .82rem;
}
.services-compact { align-items: stretch; }
.service-pill {
  min-height: 112px;
  padding: .92rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .78rem;
  align-items: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.service-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255,122,0,.34);
  background:
    linear-gradient(180deg, rgba(255,122,0,.075), rgba(255,255,255,.025)),
    var(--bg-card);
}
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,122,0,.18), rgba(255,77,0,.07));
  color: #ffb66f;
  border: 1px solid rgba(255,122,0,.22);
}
.service-icon svg { width: 24px; height: 24px; }
.service-pill h3 {
  margin: 0 0 .14rem;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.service-pill p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.35;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.proof-featured { grid-template-columns: 1.18fr .92fr .92fr; }
.proof-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.proof-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.offer-main img { object-position: center top; }
.card-copy { padding: 1rem; }
.card-copy h3,
.announce-card h3,
.partner-card h3,
.community-card h3,
.brand-card h3,
.contact-card h3,
.form-card h3 {
  margin: .2rem 0 .45rem;
  font-size: 1.15rem;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.card-copy p,
.announce-card p,
.partner-card p,
.community-card p,
.brand-card p,
.contact-card p,
.form-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}
.eyebrow,
.label {
  display: inline-flex;
  color: #ffd7ad;
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .085em;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.compact-promo > * { padding: 1.1rem; }
.partner-card { border-color: rgba(19,160,255,.15); }
.community-card .social-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
}
.social-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.085);
  color: #e6ebf1;
  font-weight: 880;
  font-size: .9rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.news-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .75rem;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffd5a7;
}
.news-source {
  padding: .32rem .55rem;
  border-radius: 999px;
  background: rgba(255,122,0,.12);
  border: 1px solid rgba(255,122,0,.2);
}
.news-card h3 {
  margin: 0 0 .55rem;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.news-card p { margin: 0 0 1rem; color: var(--muted); font-size: .93rem; }
.news-card .news-link { margin-top: auto; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.social-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.social-card .card-copy { padding: .9rem 1rem 1rem; }
.social-card h3 { margin: 0 0 .35rem; font-size: 1rem; }
.social-card p { margin: 0; color: var(--muted); }

.humor-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-inline: auto;
}
.humor-card { overflow: hidden; }
.humor-card img { transition: transform .28s ease, filter .28s ease; }
.humor-card:hover img { transform: scale(1.025); filter: brightness(1.05); }

.brand-card {
  padding: 1.1rem;
  display: grid;
  align-content: center;
  text-align: center;
}
.brand-card img {
  width: min(330px, 94%);
  margin: 0 auto .85rem;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.5)) drop-shadow(0 0 28px rgba(255,122,0,.16));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 1rem;
}
.contact-card,
.form-card { padding: 1.15rem; }
.contact-card figure {
  margin: .9rem 0 1rem;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  background: linear-gradient(180deg, #edf0f5, #dde2ea);
}
.contact-card figure img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}
.contact-list,
.tick-list,
.inline-list {
  display: grid;
  gap: .65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li,
.tick-list li,
.inline-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: #dce3ea;
}
.tick {
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #101010;
  background: linear-gradient(135deg, #ffd39b, var(--orange));
  font-size: .78rem;
  font-weight: 950;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.field { display: grid; gap: .38rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: #f5f7fa; font-size: .91rem; font-weight: 780; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.043);
  color: #fff;
  padding: .82rem .95rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field select option { color: #111; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255,122,0,.45);
  box-shadow: 0 0 0 4px rgba(255,122,0,.09);
  background: rgba(255,255,255,.058);
}
.form-actions { margin-top: 1.05rem; display: grid; gap: .72rem; }
.form-actions .btn { width: 100%; }
.form-note { margin: 0; color: var(--muted-2); font-size: .86rem; }
.form-status {
  margin: 0 0 1rem;
  padding: .82rem .92rem;
  border-radius: 14px;
  font-weight: 780;
}
.form-status.ok { background: rgba(126,240,190,.12); border: 1px solid rgba(126,240,190,.2); color: #dffbef; }
.form-status.error { background: rgba(255,121,121,.1); border: 1px solid rgba(255,121,121,.2); color: #ffe1e1; }

.proof-card > img,
.social-card > img,
.contact-card figure img {
  border-radius: calc(var(--radius) - 10px);
}

.proof-card > img,
.social-card > img {
  padding: .4rem;
}

.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

.footer {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-brand img { width: 72px; height: 48px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(255,122,0,.2)); }
.footer-brand small { color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }

.mobile-quick-actions { display: none; }

@media (max-width: 1120px) {
  .hero-logo { width: min(340px, 64%); }
  .services-grid,
  .proof-featured,
  .news-grid,
  .social-grid,
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-card { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .hero-copy { text-align: left; }
  .hero-copy-inner,
  .hero-lead { margin-inline: 0; }
  .trust-strip { max-width: none; }
  .nav-wrap {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8,10,14,.975);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-wrap.is-open { display: flex; }
  .menu { flex-direction: column; }
  .menu a { width: 100%; border-radius: 14px; }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-actions .btn { width: 100%; }
  .hero-whatsapp { padding-top: 28px; }
  .section { padding: 54px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .section-action { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .container { width: min(var(--max), calc(100% - 22px)); }
  .nav { min-height: 70px; }
  .brand-mark { width: 54px; height: 42px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy span { font-size: .68rem; }
  .hero-whatsapp { padding: 18px 0 38px; }
  .hero-media { border-radius: 20px; }
  .hero-panel { padding: 1rem; border-radius: 22px; }
  .hero-logo { width: min(270px, 86%); }
  .hero h1 { font-size: clamp(2.05rem, 12vw, 3.05rem); }
  .hero-cta { display: grid; grid-template-columns: 1fr; }
  .services-grid,
  .proof-featured,
  .proof-grid,
  .news-grid,
  .social-grid,
  .promo-grid,
  .form-grid { grid-template-columns: 1fr; }
  .service-pill { min-height: auto; padding: .82rem; grid-template-columns: 42px 1fr; }
  .service-icon { width: 42px; height: 42px; border-radius: 14px; }
  .offer-main { order: -1; }
  .news-card { min-height: auto; }
  .card-copy, .compact-promo > *, .contact-card, .form-card { padding: .95rem; }
  .field.full { grid-column: auto; }
  .section-actions { width: 100%; }
  .section-actions .btn { flex: 1 1 120px; }
  .mobile-quick-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 998;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: .58rem;
    padding: .58rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(7,9,12,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 54px rgba(0,0,0,.5);
  }
  .mobile-quick-actions .btn { min-height: 46px; padding: .65rem .72rem; font-size: .9rem; }
}

@media (max-width: 390px) {
  .brand-copy span { display: none; }
  .hero h1 { letter-spacing: -.06em; }
  .mobile-quick-actions { grid-template-columns: 1fr; }
  body { padding-bottom: calc(126px + env(safe-area-inset-bottom)); }
}
