/* ==========================================================================
   A4I Theme — Stylesheet
   Minimalist, modern. Mobile-first.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--bg:            #ffffff;
	--bg-alt:        #f8fafc;
	--bg-dark:       #0f172a;
	--fg:            #0f172a;
	--fg-muted:      #475569;
	--fg-subtle:     #64748b;
	--border:        #e5e7eb;
	--border-strong: #cbd5e1;

	--brand:         #16a34a;
	--brand-dark:    #15803d;
	--brand-soft:    #f0fdf4;
	--brand-ring:    rgba(22, 163, 74, 0.25);

	--warn:          #ca8a04;
	--warn-soft:     #fefce8;

	--font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;

	--fs-xs:   0.8125rem;
	--fs-sm:   0.9375rem;
	--fs-base: 1rem;
	--fs-lg:   1.125rem;
	--fs-xl:   1.25rem;
	--fs-2xl:  1.5rem;
	--fs-3xl:  clamp(1.75rem, 2.5vw, 2.25rem);
	--fs-4xl:  clamp(2rem, 3.5vw, 3rem);
	--fs-5xl:  clamp(2.5rem, 5vw, 4rem);

	--radius-sm: 8px;
	--radius:    12px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	--shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
	--shadow:    0 6px 24px rgba(15,23,42,0.06);
	--shadow-lg: 0 20px 60px rgba(15,23,42,0.08);

	--container:    1200px;
	--container-sm: 760px;
	--section-py:   clamp(4.5rem, 9vw, 7.5rem);

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	line-height: 1.6;
	color: var(--fg);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-dark); }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

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

.skip-link {
	position: absolute; left: -9999px;
	background: var(--fg); color: #fff;
	padding: 0.75rem 1rem; border-radius: var(--radius-sm);
	z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Container ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* ---------- Typography ---------- */
.display {
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: var(--fs-5xl);
	line-height: 1.05;
	letter-spacing: -0.02em;
}
.display em {
	font-style: italic;
	color: var(--brand);
	font-weight: 400;
}
.display-sm {
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: var(--fs-4xl);
	line-height: 1.1;
	letter-spacing: -0.015em;
}
.section-title {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: var(--fs-4xl);
	line-height: 1.15;
	letter-spacing: -0.015em;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fg-muted);
	margin-bottom: 1rem;
}
.eyebrow .dot {
	width: 6px; height: 6px; border-radius: 99px;
	background: var(--brand);
	box-shadow: 0 0 0 4px var(--brand-soft);
}
.lede {
	font-size: var(--fs-lg);
	color: var(--fg-muted);
	max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.25rem;
	border-radius: 999px;
	font-weight: 500;
	font-size: var(--fs-sm);
	line-height: 1;
	transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
	border: 1px solid transparent;
	white-space: nowrap;
}
.btn-sm { padding: 0.6rem 1rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1rem 1.5rem; font-size: var(--fs-base); }

.btn-primary {
	background: var(--brand);
	color: #fff;
	box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 2px 8px var(--brand-ring);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 3px solid var(--brand-ring); outline-offset: 2px; }

.btn-ghost {
	background: transparent;
	color: var(--fg);
	border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--fg); }

/* ---------- Store badges ---------- */
.store-buttons {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}
.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.7rem 1.15rem;
	background: var(--bg-dark);
	color: #fff;
	border-radius: 14px;
	border: 1px solid var(--bg-dark);
	transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
	box-shadow: 0 2px 0 rgba(0,0,0,0.06);
}
.store-btn:hover {
	background: #1e293b;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(15,23,42,0.18);
}
.store-btn:focus-visible { outline: 3px solid var(--brand-ring); outline-offset: 2px; }
.store-btn .fa-brands { font-size: 1.5rem; line-height: 1; }
.store-btn .store-label {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.1;
}
.store-btn .store-label small {
	font-size: 0.625rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.72;
	font-weight: 400;
}
.store-btn .store-label strong {
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: -0.01em;
}
.cta-box .store-btn { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.14); }
.cta-box .store-btn:hover { background: rgba(255,255,255,0.16); }

/* ---------- Header / Nav ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-header.is-scrolled {
	border-bottom-color: var(--border);
	background: rgba(255, 255, 255, 0.92);
}
.nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	height: 72px;
}
.brand {
	display: inline-flex;
	align-items: baseline;
	font-weight: 600;
	letter-spacing: -0.015em;
}
.brand:hover { color: var(--fg); }
.brand-text { font-size: var(--fs-lg); }
.brand-accent {
	font-family: var(--font-serif);
	font-weight: 500;
	font-style: italic;
	color: var(--brand);
	padding-inline: 0.04em;
}

.primary-nav { flex: 1; }
.nav-list {
	display: flex;
	gap: 2rem;
	justify-content: center;
	font-size: var(--fs-sm);
	color: var(--fg-muted);
}
.nav-list a:hover { color: var(--fg); }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
	display: none;
	width: 42px; height: 42px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: transparent;
	flex-direction: column; justify-content: center; align-items: center;
	gap: 4px;
}
.nav-toggle span {
	width: 16px; height: 1.5px; background: var(--fg);
	transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
	border-top: 1px solid var(--border);
	background: #fff;
}
.mobile-nav-list {
	display: flex; flex-direction: column;
	padding: 1rem 0;
}
.mobile-nav-list a {
	padding: 0.9rem 1.5rem;
	display: block;
	border-bottom: 1px solid var(--border);
	font-size: var(--fs-base);
}

/* ---------- Sections ---------- */
.site-main > section { padding-block: var(--section-py); }
.site-main > section + section { border-top: 1px solid var(--border); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 6vw, 5rem); }
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hero-copy .display { margin-bottom: 1.25rem; }
.hero-copy .lede { margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-meta {
	display: flex; flex-wrap: wrap; gap: 1.25rem;
	font-size: var(--fs-xs); color: var(--fg-subtle);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta li::before {
	content: ""; width: 5px; height: 5px; border-radius: 99px; background: var(--brand);
}

/* Mockup */
.hero-visual { display: flex; justify-content: center; }
.mockup {
	width: 100%; max-width: 460px;
	background: linear-gradient(180deg, var(--brand-soft), #fff);
	border-radius: var(--radius-xl);
	padding: 1.25rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
}
.mockup-screen {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
}
.mockup-bar {
	display: flex; gap: 6px;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--border);
	background: var(--bg-alt);
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 99px; background: var(--border-strong); }
.mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.mock-header {
	display: flex; align-items: center; gap: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--border);
}
.mock-appicon {
	width: 32px; height: 32px;
	border-radius: 8px;
	background: #fff;
	object-fit: contain;
	box-shadow: 0 1px 3px rgba(15,23,42,0.12);
}
.mock-title { display: flex; flex-direction: column; line-height: 1.15; }
.mock-title strong { font-weight: 600; font-size: 0.875rem; letter-spacing: 0.02em; color: var(--fg); }
.mock-title span { font-size: 0.6875rem; color: var(--fg-subtle); }
.mock-card {
	display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.mock-kpi {
	padding: 0.9rem 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
}
.mock-kpi p { font-size: var(--fs-xs); color: var(--fg-subtle); margin-bottom: 0.25rem; }
.mock-kpi strong {
	font-family: var(--font-serif); font-weight: 500;
	font-size: 1.5rem; letter-spacing: -0.01em;
}
.mock-chart {
	padding: 0.75rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	height: 100px;
}
.mock-chart svg { width: 100%; height: 100%; }
.mock-list { display: flex; flex-direction: column; gap: 0.5rem; font-size: var(--fs-sm); }
.mock-list li {
	display: flex; align-items: center; gap: 0.6rem;
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
}
.pill {
	font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.04em;
	padding: 0.15rem 0.5rem; border-radius: 999px;
	text-transform: uppercase;
}
.pill.ok   { background: var(--brand-soft); color: var(--brand-dark); }
.pill.warn { background: var(--warn-soft);  color: var(--warn); }

/* ---------- Audience ---------- */
.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.audience-card {
	padding: 2rem 1.75rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.audience-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
	border-color: var(--border-strong);
}
.audience-card .icon { color: var(--brand); margin-bottom: 1rem; }
.audience-card h3 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.audience-card p  { color: var(--fg-muted); font-size: var(--fs-sm); }

/* ---------- Contrast ---------- */
.contrast { background: var(--bg-alt); }
.contrast-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: stretch;
}
.contrast-col {
	padding: 2rem 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--bg);
}
.contrast-col.col-after { background: linear-gradient(180deg, var(--brand-soft), #fff); border-color: var(--brand); }
.col-title {
	font-size: var(--fs-sm); font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.08em;
	color: var(--fg-muted);
	margin-bottom: 1.25rem;
}
.col-after .col-title { color: var(--brand-dark); }
.check-list { display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li {
	display: flex; align-items: flex-start; gap: 0.75rem;
	font-size: var(--fs-base);
	color: var(--fg-muted);
	line-height: 1.55;
}
.check-list .bullet {
	flex: 0 0 22px;
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px;
	border-radius: 99px;
	font-size: 0.75rem; font-weight: 700;
}
.check-list .neg { }
.check-list .neg .bullet { background: #f1f5f9; color: var(--fg-subtle); }
.check-list .pos { color: var(--fg); }
.check-list .pos .bullet { background: var(--brand); color: #fff; }

/* ---------- Features ---------- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.feature {
	padding: 2rem 1.75rem;
	background: var(--bg);
	transition: background 0.2s var(--ease);
}
.feature:hover { background: var(--bg-alt); }
.feature .icon {
	width: 32px; height: 32px;
	color: var(--brand);
	margin-bottom: 1rem;
}
.feature h3 { font-size: var(--fs-lg); font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.feature p  { color: var(--fg-muted); font-size: var(--fs-sm); }

/* ---------- How ---------- */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	counter-reset: step;
}
.step { position: relative; padding-top: 1rem; }
.step::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0;
	height: 1px;
	background: var(--border);
}
.step .step-num {
	font-family: var(--font-serif);
	font-size: var(--fs-xl);
	color: var(--brand);
	font-weight: 500;
	display: block;
	margin-bottom: 1rem;
}
.step h3 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.step p  { color: var(--fg-muted); }

/* ---------- Proof ---------- */
.proof { background: var(--bg-alt); padding-block: clamp(3rem, 6vw, 5rem) !important; }
.proof-kicker {
	text-align: center;
	color: var(--fg-muted);
	font-size: var(--fs-sm);
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.proof-logos {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--fg-subtle);
	font-weight: 500;
	letter-spacing: -0.01em;
	opacity: 0.85;
}
.proof-logo { transition: color 0.2s var(--ease), opacity 0.2s var(--ease); }
.proof-logo:hover { color: var(--fg); opacity: 1; }

/* ---------- CTA final ---------- */
.cta-final { padding-block: clamp(4rem, 8vw, 6rem) !important; }
.cta-box {
	background: var(--bg-dark);
	color: #fff;
	padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
	border-radius: var(--radius-xl);
	text-align: center;
	background-image: radial-gradient(circle at 20% 20%, rgba(22,163,74,0.35), transparent 50%),
	                  radial-gradient(circle at 80% 80%, rgba(22,163,74,0.15), transparent 50%);
}
.cta-box .display-sm { color: #fff; margin-bottom: 1rem; }
.cta-box p { color: #cbd5e1; margin-bottom: 2rem; font-size: var(--fs-lg); }
.cta-box .hero-ctas { justify-content: center; margin: 0; }
.cta-box .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.cta-box .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ---------- Page template (legales, etc.) ---------- */
.page-hero {
	padding-block: clamp(4rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid var(--border);
}
.page-hero .lede { margin-top: 0.75rem; }
.page-meta {
	font-size: var(--fs-xs); color: var(--fg-subtle);
	margin-top: 1.5rem;
}

.prose {
	padding-block: clamp(3rem, 6vw, 5rem);
	max-width: var(--container-sm);
	font-size: var(--fs-lg);
	color: var(--fg);
}
.prose > * + * { margin-top: 1.25em; }
.prose h2 {
	font-family: var(--font-serif); font-weight: 500;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-top: 2.5em;
}
.prose h3 {
	font-size: 1.25rem; font-weight: 600;
	margin-top: 2em;
}
.prose p { color: var(--fg); }
.prose a {
	color: var(--brand-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.prose a:hover { text-decoration-thickness: 2px; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 0.4em; }
.prose blockquote {
	border-left: 3px solid var(--brand);
	padding-left: 1.25rem;
	color: var(--fg-muted);
	font-style: italic;
}
.prose code {
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 0.9em;
	background: var(--bg-alt);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}
.prose pre {
	background: var(--bg-dark); color: #e2e8f0;
	padding: 1rem 1.25rem; border-radius: var(--radius);
	overflow-x: auto;
}
.prose pre code { background: transparent; padding: 0; color: inherit; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin-block: 3em; }
.prose img { border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); }
.prose th, .prose td {
	text-align: left; padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--border);
}
.prose th { font-weight: 600; background: var(--bg-alt); }

/* 404 */
.page-404 { text-align: center; }
.page-404 .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--bg-dark);
	color: #cbd5e1;
	padding-block: clamp(3rem, 6vw, 4.5rem);
	margin-top: clamp(4rem, 8vw, 6rem);
}
.site-footer .brand { color: #fff; }
.site-footer .brand-accent { color: #4ade80; } /* green-400, mejor legibilidad sobre fondo oscuro */
.footer-tagline {
	margin-top: 0.75rem;
	font-size: var(--fs-sm);
	color: #94a3b8;
	max-width: 30ch;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-heading {
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 600;
}
.footer-list { display: flex; flex-direction: column; gap: 0.6rem; font-size: var(--fs-sm); }
.footer-list a { color: #cbd5e1; }
.footer-list a:hover { color: #fff; }
.footer-bottom {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 1.5rem;
	font-size: var(--fs-xs);
	color: #94a3b8;
	flex-wrap: wrap; gap: 1rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 99px;
	background: rgba(255,255,255,0.06);
	color: #cbd5e1;
	font-size: 15px;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-1px); }

.footer-legal {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255,255,255,0.06);
	display: flex;
	align-items: center;
	gap: 0.9rem;
	font-size: 0.75rem;
	color: #64748b;
	line-height: 1.5;
	flex-wrap: wrap;
}
.footer-legal-logo {
	height: 26px;
	width: auto;
	opacity: 0.85;
	border-radius: 4px;
	flex-shrink: 0;
}
.footer-legal p { margin: 0; }

/* ==========================================================================
   Nosotros (page-nosotros.php)
   ========================================================================== */

.about-hero {
	padding-block: clamp(4rem, 8vw, 6.5rem) clamp(3rem, 6vw, 5rem);
}
.about-hero .lede { margin-top: 1.5rem; max-width: 64ch; }

.about-company-logo {
	margin: 2.5rem 0 0;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-alt);
	max-width: 360px;
}
.about-company-logo img {
	max-width: 220px;
	height: auto;
	display: block;
}
.about-company-logo figcaption {
	font-size: var(--fs-xs);
	color: var(--fg-subtle);
	letter-spacing: 0.02em;
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.story-text p { color: var(--fg-muted); font-size: var(--fs-lg); }
.story-text p + p { margin-top: 1em; }

.about-mission { background: var(--bg-alt); }
.mission-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.mission-card {
	padding: 2rem 1.75rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.mission-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.mission-card h3 {
	font-size: var(--fs-xl); font-weight: 600;
	margin-bottom: 0.6rem; letter-spacing: -0.01em;
	color: var(--brand-dark);
}
.mission-card p { color: var(--fg-muted); font-size: var(--fs-sm); }

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.value {
	padding: 2rem 1.75rem;
	background: var(--bg);
	transition: background 0.2s var(--ease);
}
.value:hover { background: var(--bg-alt); }
.value-num {
	display: block;
	font-family: var(--font-serif);
	font-size: var(--fs-lg);
	color: var(--brand);
	font-weight: 500;
	margin-bottom: 0.75rem;
}
.value h3 { font-size: var(--fs-lg); font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.value p  { color: var(--fg-muted); font-size: var(--fs-sm); }

.about-stats { background: var(--bg-dark); color: #fff; }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.stat {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	text-align: left;
}
.stat strong {
	display: block;
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #fff;
	margin-bottom: 0.5rem;
}
.stat span { font-size: var(--fs-sm); color: #94a3b8; }
.stats-note {
	margin-top: 2rem;
	font-size: var(--fs-xs);
	color: #64748b;
	text-align: center;
}

.allies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.ally {
	padding: 2rem 1.75rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.ally h3 {
	font-family: var(--font-serif); font-weight: 500;
	font-size: var(--fs-xl);
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}
.ally p { color: var(--fg-muted); font-size: var(--fs-sm); }

.about-cta { padding-block: clamp(4rem, 8vw, 6rem) !important; }

/* Utility */
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Responsive — Nosotros */
@media (max-width: 960px) {
	.story-grid { grid-template-columns: 1fr; }
	.mission-grid { grid-template-columns: 1fr 1fr; }
	.values-grid  { grid-template-columns: 1fr 1fr; }
	.stats-grid   { grid-template-columns: 1fr 1fr; }
	.allies-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.mission-grid { grid-template-columns: 1fr; }
	.values-grid  { grid-template-columns: 1fr; }
	.stats-grid   { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal animations ---------- */
.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-visual { order: -1; }
	.mockup { max-width: 380px; }

	.audience-grid { grid-template-columns: 1fr 1fr; }
	.features-grid { grid-template-columns: 1fr 1fr; }
	.steps { grid-template-columns: 1fr; gap: 1.5rem; }

	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
	.primary-nav { display: none; }
	.nav-cta .btn { display: none; }
	.nav-toggle { display: flex; }

	.audience-grid { grid-template-columns: 1fr; }
	.features-grid { grid-template-columns: 1fr; }
	.contrast-grid { grid-template-columns: 1fr; }

	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
	.hero-ctas .btn { width: 100%; justify-content: center; }
	.cta-box .hero-ctas .btn { width: auto; }
}
