/* =========================================================================
   MAYA EDITORIAL — Identidad "Maya" (color derivado del logo oficial)
   Verde MaYa · Azul Comunicación · Carmín mexicano · Ámbar · Esmeralda
   ========================================================================= */

:root {
	--paper: #FBFAF6;
	--paper-2: #F2EFE6;
	--ink: #16244F;          /* azul índigo profundo (del logo) */
	--ink-soft: #33405F;
	--green: #4E9E28;        /* verde MaYa — acentos */
	--green-deep: #3B7D1E;   /* verde para fondos/botones con texto blanco */
	--emerald: #147A55;      /* esmeralda (cabello) */
	--blue: #23479E;         /* azul COMUNICACIÓN */
	--pink: #CE1F45;         /* carmín / rosa mexicano */
	--orange: #C86A1A;
	--amber: #E2A81C;        /* ámbar/dorado (reemplaza el metálico) */
	--mist: #6E6A62;
	--line: rgba(22, 36, 79, 0.14);
	--line-ink: rgba(251, 250, 246, 0.16);

	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Hanken Grotesk", system-ui, sans-serif;
	--font-mono: "Space Mono", ui-monospace, monospace;

	--wrap: 1180px;
	--gutter: clamp(20px, 5vw, 56px);
	--radius: 3px;
}

/* --------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.08; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 12px; top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
	outline: 2px solid var(--green); outline-offset: 3px;
}

/* --------------------------------- Eyebrow -------------------------------- */
.eyebrow { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); margin: 0 0 1rem; }
.eyebrow--wine { color: var(--green); }
.eyebrow--brass { color: var(--pink); }

/* --------------------------------- Botones -------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--font-body); font-weight: 600; font-size: .96rem; letter-spacing: .01em;
	padding: .92em 1.6em; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
	transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: .68em 1.15em; font-size: .86rem; }
.btn--wine { background: var(--green-deep); color: #fff; }
.btn--wine:hover { background: #2f6417; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #0f1a3a; }
.btn--paper { background: #fff; color: var(--ink); }
.btn--paper:hover { background: var(--paper-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-deep); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: color-mix(in srgb, var(--paper) 90%, transparent);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: 0 8px 30px -18px rgba(22,36,79,.5); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: auto; height: 52px; }
.brand__tag { font-style: normal; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); border-left: 1px solid var(--line); padding-left: 12px; align-self: center; }

.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a { font-size: .93rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .22s ease; }
.site-nav a:hover::after { width: 100%; }
.site-nav a:hover { color: var(--green-deep); }

.nav-cta { flex: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 6px; padding: 12px var(--gutter) 24px; border-bottom: 1px solid var(--line); background: var(--paper); }
.mobile-nav a { padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border: 0; margin-top: 12px; justify-content: center; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding: clamp(64px, 11vw, 128px) 0 clamp(48px, 8vw, 96px); }
.hero__inner { max-width: 900px; }
.hero__title { font-size: clamp(2.6rem, 8vw, 5.4rem); letter-spacing: -.025em; margin-bottom: .5rem; }
.hero__whisper { display: block; font-weight: 300; color: var(--mist); font-variation-settings: "opsz" 40; }
.hero__loud { display: block; font-weight: 800; color: var(--ink); font-variation-settings: "opsz" 144; }

/* Signature: la señal que emerge del silencio */
.signal { color: var(--green); margin: .4rem 0 1.8rem; max-width: 620px; }
.signal__line { stroke-dasharray: 900; stroke-dashoffset: 900; animation: signal-draw 2.4s ease .3s forwards; }
@keyframes signal-draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .signal__line { stroke-dashoffset: 0; animation: none; } }

.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); max-width: 620px; margin: 0 0 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   STATS — números vivos
   ========================================================================= */
.stats { background: var(--ink); color: var(--paper); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat { padding: clamp(28px, 4vw, 44px) clamp(16px, 2vw, 28px); border-left: 1px solid var(--line-ink); display: flex; flex-direction: column; gap: .5rem; }
.stat:first-child { border-left: 0; }
.stat__num {
	font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.7rem);
	letter-spacing: -.02em; color: var(--paper);
	display: inline-block; transition: transform .28s cubic-bezier(.34,1.56,.64,1), color .28s ease; cursor: default;
}
.stat__num--word { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.stat__plus { color: var(--amber); font-weight: 500; }
.stat__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,250,246,.6); }
/* hover: cada cifra salta y toma un color del logo */
.stat:hover .stat__num { transform: translateY(-6px) scale(1.06); }
.stat:nth-child(1):hover .stat__num { color: #7DC63E; }
.stat:nth-child(2):hover .stat__num { color: #EAC53A; }
.stat:nth-child(3):hover .stat__num { color: #F0537B; }
.stat:nth-child(4):hover .stat__num { color: #F0A030; }
.stat:hover .stat__plus { color: inherit; }
/* pulso al entrar en viewport */
.stat__num.is-live { animation: num-pop .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes num-pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* =========================================================================
   INTRO
   ========================================================================= */
.intro { padding: clamp(64px, 10vw, 120px) 0; }
.intro__inner { max-width: 820px; }
.intro__title { font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -.02em; margin-bottom: 1.4rem; }
.intro__body { font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--ink-soft); }

/* =========================================================================
   SECTION HEAD
   ========================================================================= */
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head__title { font-size: clamp(1.7rem, 3.8vw, 2.6rem); letter-spacing: -.02em; }
.section-head__sub { color: var(--mist); margin-top: .8rem; font-size: 1rem; }

/* =========================================================================
   SERVICIOS
   ========================================================================= */
.services { padding: clamp(56px, 8vw, 100px) 0; border-top: 1px solid var(--line); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service { background: var(--paper); padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; gap: .7rem; transition: background .2s ease; }
.service:hover { background: #fff; }
.service__idx { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--green); line-height: 1; }
.service:nth-child(1) .service__idx { color: var(--green); }
.service:nth-child(3) .service__idx { color: var(--blue); }
.service:nth-child(4) .service__idx { color: var(--emerald); }
.service:nth-child(5) .service__idx { color: var(--orange); }
.service:nth-child(6) .service__idx { color: var(--pink); }
.service h3 { font-size: 1.24rem; letter-spacing: -.01em; }
.service p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.service--feature { background: var(--ink); color: var(--paper); }
.service--feature:hover { background: #10193a; }
.service--feature p { color: rgba(251,250,246,.78); }
.service--feature .service__idx { color: var(--amber); }
.service__link { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; color: var(--amber); margin-top: auto; }
.service__link:hover { text-decoration: underline; }

/* =========================================================================
   AMPLIFICACIÓN EDITORIAL
   ========================================================================= */
.amp { padding: clamp(64px, 9vw, 110px) 0; background: var(--paper-2); }
.amp__inner { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.amp__title { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.02em; margin-bottom: 1rem; color: var(--green-deep); }
.amp__lead { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 2rem; }
.amp__list { list-style: none; padding: 0; margin: 0 0 2.2rem; display: grid; gap: 1.4rem; }
.amp__list li { display: flex; flex-direction: column; gap: .25rem; padding-left: 1.2rem; border-left: 3px solid var(--green); color: var(--ink-soft); font-size: .98rem; }
.amp__list li:nth-child(2) { border-color: var(--blue); }
.amp__list li:nth-child(3) { border-color: var(--pink); }
.amp__list li:nth-child(4) { border-color: var(--orange); }
.amp__list strong { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }

.amp__panel { background: var(--ink); color: var(--paper); padding: clamp(28px, 3.5vw, 44px); border-radius: var(--radius); position: sticky; top: 96px; }
.amp__panel-eyebrow { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin: 0 0 1rem; }
.amp__panel-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.1; margin: 0 0 1rem; }
.amp__panel-desc { color: rgba(251,250,246,.78); font-size: .96rem; margin: 0 0 1.6rem; }
.amp__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.amp__tags span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; padding: 6px 11px; border: 1px solid var(--line-ink); border-radius: 40px; color: rgba(251,250,246,.85); transition: background .2s ease, color .2s ease; }
.amp__tags span:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* =========================================================================
   MÉTODO — números multicolor animados
   ========================================================================= */
.method { padding: clamp(64px, 9vw, 110px) 0; }
.method__steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.method__steps li { background: var(--paper); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: .5rem; transition: background .2s ease; }
.method__steps li:hover { background: #fff; }
.method__n {
	font-family: var(--font-display); font-weight: 700; font-size: 2rem; letter-spacing: -.02em; line-height: 1;
	display: inline-block; transition: transform .3s cubic-bezier(.34,1.56,.64,1), color .25s ease;
}
.method__steps li:nth-child(1) .method__n { color: var(--green); }
.method__steps li:nth-child(2) .method__n { color: var(--emerald); }
.method__steps li:nth-child(3) .method__n { color: var(--blue); }
.method__steps li:nth-child(4) .method__n { color: var(--pink); }
.method__steps li:nth-child(5) .method__n { color: var(--orange); }
.method__steps li:nth-child(6) .method__n { color: var(--amber); }
.method__steps li:hover .method__n { transform: translateY(-5px) rotate(-4deg) scale(1.12); color: var(--pink); }
.method__steps h3 { font-size: 1.2rem; }
.method__steps p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* =========================================================================
   CASOS / PRUEBA SOCIAL
   ========================================================================= */
.cases { padding: clamp(64px, 9vw, 110px) 0; background: var(--ink); color: var(--paper); }
.cases .eyebrow { color: var(--amber); }
.cases .section-head__title { color: var(--paper); }
.cases .section-head__sub { color: rgba(251,250,246,.6); }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: clamp(36px, 5vw, 56px); }
.case { border: 1px solid var(--line-ink); padding: clamp(24px, 3vw, 34px); border-radius: var(--radius); transition: border-color .25s ease, transform .25s ease; }
.case:hover { transform: translateY(-4px); }
.case:nth-child(1):hover { border-color: var(--green); }
.case:nth-child(2):hover { border-color: var(--amber); }
.case:nth-child(3):hover { border-color: var(--pink); }
.case__tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin: 0 0 1rem; }
.case:nth-child(2) .case__tag { color: #7DC63E; }
.case:nth-child(3) .case__tag { color: #F0537B; }
.case__quote { font-family: var(--font-display); font-weight: 400; font-size: 1.14rem; line-height: 1.4; margin: 0; color: var(--paper); }

.testimonial { margin: 0; max-width: 760px; border-top: 1px solid var(--line-ink); padding-top: clamp(28px, 4vw, 40px); }
.testimonial p { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.4rem, 3.5vw, 2.1rem); line-height: 1.3; margin: 0 0 1rem; font-variation-settings: "opsz" 120; }
.testimonial cite { font-family: var(--font-mono); font-style: normal; font-size: .8rem; letter-spacing: .06em; color: rgba(251,250,246,.6); }

/* =========================================================================
   MANIFIESTO
   ========================================================================= */
.manifesto { padding: clamp(72px, 11vw, 130px) 0; background: var(--green-deep); color: #fff; }
.manifesto__inner { max-width: 900px; }
.manifesto .eyebrow--brass { color: #EAF3D9; }
.manifesto__title { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 400; letter-spacing: -.015em; margin-bottom: 2rem; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { padding: clamp(64px, 9vw, 110px) 0; border-top: 1px solid var(--line); }
.faq__list { max-width: 820px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.35rem 2.5rem 1.35rem 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; transition: color .2s ease; }
.faq__item summary:hover { color: var(--green-deep); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.5rem; color: var(--green); transition: transform .2s ease; }
.faq__item[open] summary::after { content: "–"; color: var(--pink); }
.faq__item p { margin: 0 0 1.4rem; color: var(--ink-soft); max-width: 66ch; }

/* =========================================================================
   CONTACTO
   ========================================================================= */
.contact { padding: clamp(64px, 9vw, 110px) 0; background: var(--paper-2); }
.contact__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact__title { font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -.02em; margin-bottom: 1rem; }
.contact__sub { color: var(--ink-soft); margin: 0 0 2rem; }
.contact__direct { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact__direct li { display: flex; flex-direction: column; gap: .2rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.contact__direct span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mist); }
.contact__direct a { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.contact__direct a:hover { color: var(--green-deep); }

.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact__form label { display: flex; flex-direction: column; gap: .4rem; font-size: .84rem; font-weight: 600; color: var(--ink-soft); }
.contact__form-wide { grid-column: 1 / -1; }
.contact__form input, .contact__form select, .contact__form textarea { font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: .8em .9em; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; width: 100%; transition: border-color .2s ease, box-shadow .2s ease; }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(78,158,40,.15); }
.contact__form textarea { resize: vertical; }
.contact__submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact__submit small { color: var(--mist); font-size: .82rem; }
.contact__submit small a { color: var(--green-deep); text-decoration: underline; }

.form-note { grid-column: 1 / -1; padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .92rem; font-weight: 600; margin: 0 0 8px; }
.form-note--ok { background: #E7F1DE; color: #2E6015; border: 1px solid #B9D9A5; }
.form-note--err { background: #F8E3E7; color: #9A1B34; border: 1px solid #E6B0BC; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink); color: var(--paper); padding-top: clamp(48px, 6vw, 72px); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(40px, 5vw, 60px); }
.footer__logo-plate { display: inline-block; background: #fff; padding: 14px 18px; border-radius: 8px; }
.footer__logo-plate img { height: 56px; width: auto; }
.footer__claim { font-family: var(--font-display); color: var(--amber); font-size: 1.05rem; margin: 1.1rem 0 .4rem; }
.footer__brand p { color: rgba(251,250,246,.62); margin: 0; max-width: 40ch; font-size: .94rem; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col h4 { font-family: var(--font-mono); font-weight: 400; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: .3rem; }
.footer__col a { color: rgba(251,250,246,.8); font-size: .95rem; transition: color .2s ease; }
.footer__col a:hover { color: #7DC63E; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid var(--line-ink); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; color: rgba(251,250,246,.55); }
.footer__bottom a { color: var(--amber); }

/* =========================================================================
   LEGAL / ENTRY
   ========================================================================= */
.legal { padding: clamp(72px, 10vw, 120px) 0; }
.legal__inner { max-width: 760px; }
.legal__title { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.02em; margin-bottom: 1.6rem; }
.entry__content { color: var(--ink-soft); }
.entry__content p { margin: 0 0 1.2rem; }
.legal__back { margin-top: 2.4rem; }
.legal__back a { color: var(--green-deep); font-weight: 600; }

/* =========================================================================
   WHATSAPP FLOTANTE
   ========================================================================= */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #1FA855; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(0,0,0,.5); transition: transform .2s ease; }
.wa-float:hover { transform: scale(1.07); }

/* =========================================================================
   CHATBOT
   ========================================================================= */
.bot { position: fixed; left: 22px; bottom: 22px; z-index: 91; font-family: var(--font-body); }
.bot__toggle { background: var(--green-deep); color: #fff; border: 0; border-radius: 50%; width: 56px; height: 56px; cursor: pointer; box-shadow: 0 10px 26px -8px rgba(0,0,0,.5); display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.bot__toggle:hover { background: #2f6417; transform: scale(1.07); }
.bot__toggle-close { font-size: 1.7rem; line-height: 1; }
.bot__panel { position: absolute; left: 0; bottom: 58px; width: min(340px, calc(100vw - 44px)); background: var(--paper); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.5); overflow: hidden; display: flex; flex-direction: column; }
.bot__panel[hidden] { display: none; }
.bot__head { background: var(--ink); color: var(--paper); padding: 16px 18px; }
.bot__head strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.bot__head span { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; color: var(--amber); }
.bot__log { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 280px; overflow-y: auto; }
.bot__msg { margin: 0; padding: 10px 13px; border-radius: 10px; font-size: .9rem; max-width: 86%; }
.bot__msg--in { background: var(--paper-2); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 3px; }
.bot__msg--out { background: var(--green-deep); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.bot__chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 12px; }
.bot__chips button { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); border-radius: 40px; padding: 7px 12px; font-size: .78rem; cursor: pointer; font-family: var(--font-body); transition: border-color .2s ease, color .2s ease; }
.bot__chips button:hover { border-color: var(--green); color: var(--green-deep); }
.bot__form { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); }
.bot__form input { flex: 1; border: 1px solid var(--line); border-radius: 40px; padding: 9px 14px; font-family: var(--font-body); font-size: .88rem; }
.bot__form button { background: var(--ink); color: #fff; border: 0; border-radius: 50%; width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; flex: none; }
.bot__wa { display: block; text-align: center; background: #1FA855; color: #fff; padding: 11px; font-weight: 600; font-size: .88rem; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
	.amp__inner, .contact__inner { grid-template-columns: 1fr; }
	.amp__panel { position: static; }
	.services__grid, .method__steps, .cases__grid { grid-template-columns: repeat(2, 1fr); }
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-ink); }
	.stat:nth-child(3) { border-left: 0; }
}
@media (max-width: 760px) {
	.site-nav, .nav-cta { display: none; }
	.nav-toggle { display: flex; }
	.mobile-nav.is-open { display: flex; }
	.footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.services__grid, .method__steps, .cases__grid, .stats__grid, .contact__form { grid-template-columns: 1fr; }
	.stat { border-left: 0 !important; border-bottom: 1px solid var(--line-ink); }
	.contact__form label { grid-column: 1 / -1; }
	.brand__tag { display: none; }
}
