/* =========================================================================
   CargoLine — main.css
   Design system: ink navy + steel paper + hi-vis amber + teal container.
   Display: Archivo · Body: IBM Plex Sans · Utility/codes: IBM Plex Mono
   Colors also exposed as --color-primary / --color-secondary via Customizer.
   ========================================================================= */

:root {
	--ink:        #0B1A2E;
	--ink-2:      #12263F;
	--ink-3:      #1B3555;
	--paper:      #EDF1F4;
	--paper-2:    #FFF;
	--amber:      #F5A623;
	--amber-deep: #E08A00;
	--teal:       #1E7A74;
	--muted:      #5A6B7B;
	--muted-2:    #5E6B78;
	--line:       rgba(11, 26, 46, .12);
	--line-light: rgba(255, 255, 255, .14);
	--font-display: "Archivo", system-ui, sans-serif;
	--font-body:    "IBM Plex Sans", system-ui, sans-serif;
	--font-mono:    "IBM Plex Mono", ui-monospace, monospace;
	--wrap: 1180px;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 18px 50px -24px rgba(11, 26, 46, .35);
	--shadow-sm: 0 8px 24px -14px rgba(11, 26, 46, .3);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ligero --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: 760px; }

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

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* --- Tipografía de apoyo -------------------------------------------------- */
.eyebrow {
	font-family: var(--font-mono);
	font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
	color: var(--teal); font-weight: 600; margin-bottom: 14px;
}
.eyebrow--light { color: var(--amber); }

.section { padding: 92px 0; }
.section__head { max-width: 640px; margin-bottom: 46px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.section__title--light { color: #fff; }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section__head--center .section__sub { color: var(--muted-2); }

/* --- Botones -------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--font-mono); font-weight: 600; font-size: .82rem;
	letter-spacing: .04em; text-transform: uppercase;
	padding: 13px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
	transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 28px; font-size: .88rem; }
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber:hover { background: var(--amber-deep); box-shadow: 0 12px 26px -12px var(--amber-deep); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); }
.btn--track { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--track:hover { border-color: var(--ink); }

.link-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
	color: var(--teal); letter-spacing: .03em;
}
.link-arrow .icon { transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

.icon { width: 22px; height: 22px; flex: none; }
.icon--sm { width: 16px; height: 16px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.topbar {
	background: var(--ink); color: rgba(255, 255, 255, .82);
	font-size: .8rem; border-bottom: 1px solid var(--line-light);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar__hours { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); }
.topbar__hours .icon { color: var(--amber); }
.topbar__contact { list-style: none; display: flex; align-items: center; gap: 22px; padding: 0; font-family: var(--font-mono); }
.topbar__contact a:hover { color: #fff; }
.topbar__code { color: var(--amber); letter-spacing: .06em; }

.navbar {
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	position: relative;
	z-index: 100;
}

/* ── Sticky header ─────────────────────────────────────────────────────────
   Class added by JS to <header class="site-header"> after 100px of scroll.
   Mirrors the Logiland reference: full header fixed, topbar hidden, slide-in.
   Only activates when the header has data-sticky="true".
   ───────────────────────────────────────────────────────────────────────── */
.site-header.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	background: #fff;
	box-shadow: 0 7px 18px rgba(11,26,46,.08);
	animation: cl-sticky .5s ease forwards;
}
/* Hide topbar when sticky — only the navbar is shown */
.site-header.header-sticky .topbar { display: none !important; }

/* Push page content down so it doesn't jump under the fixed header.
   The CSS var is set dynamically by JS to match the navbar's actual height. */
body.has-sticky-header { padding-top: var(--sticky-header-height, 74px); }

@keyframes cl-sticky {
	0%   { transform: translateY(-100%); }
	100% { transform: translateY(0); }
}

/* Admin bar offsets */
.admin-bar .site-header.header-sticky { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header.header-sticky { top: 46px; }
}
@media screen and (max-width: 600px) {
	.admin-bar .site-header.header-sticky { top: 0; }
}

.navbar__inner { display: flex; align-items: center; gap: 28px; min-height: 74px; }

.brand__text { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
	width: 40px; height: 40px; display: grid; place-items: center;
	background: var(--ink); color: var(--amber); border-radius: 10px;
}
.brand__mark .icon { width: 24px; height: 24px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; }

.nav { margin-inline: auto; }
.nav__list { list-style: none; display: flex; gap: 4px; padding: 0; margin: 0; }
.nav__list a {
	display: block; padding: 10px 15px; border-radius: 8px; font-weight: 500; font-size: .95rem;
	transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__list a:hover { background: rgba(11,26,46,.06); color: var(--ink); }

/* Item activo: texto en color acento */
.nav__list .current-menu-item > a,
.nav__list .current-menu-ancestor > a,
.nav__list .current-page-ancestor > a {
	color: var(--amber);
	background: transparent;
	font-weight: 600;
}
.nav__list .current-menu-item > a::after,
.nav__list .current-menu-ancestor > a::after {
	border-top-color: var(--amber);
}

/* ── Dropdown submenú ── */
.nav__list > li { position: relative; }
.nav__list > li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentcolor;
	margin-left: 5px;
	vertical-align: middle;
	opacity: .55;
	transition: transform .2s var(--ease);
}
.nav__list > li.menu-item-has-children:hover > a::after,
.nav__list > li.menu-item-has-children.is-open > a::after { transform: rotate(180deg); }

.nav__list .sub-menu {
	list-style: none; margin: 0; padding: 6px 0;
	position: absolute; top: calc(100% + 4px); left: 0;
	min-width: 210px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: 0 8px 24px rgba(0,0,0,.10);
	opacity: 0; visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
	z-index: 200;
}
.nav__list > li:hover > .sub-menu,
.nav__list > li:focus-within > .sub-menu,
.nav__list > li.is-open > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__list .sub-menu a {
	display: block; padding: 9px 18px;
	border-radius: 0; white-space: nowrap; font-size: .9rem;
}
.nav__list .sub-menu a:hover { background: var(--paper-2); }

.navbar__actions { display: flex; align-items: center; gap: 12px; }

/* =========================================================================
   LANGUAGE SWITCHER (navbar)
   ========================================================================= */
.lang-switcher { position: relative; }

/* Toggle button — light context (navbar fondo blanco) */
.lang-switcher__toggle {
	display: inline-flex; align-items: center; gap: 6px;
	background: transparent; border: 1px solid var(--line);
	border-radius: 8px; padding: 7px 12px;
	color: var(--ink); font-family: var(--font-mono); font-size: .76rem;
	font-weight: 600; letter-spacing: .06em; cursor: pointer;
	transition: background .15s var(--ease), border-color .15s var(--ease);
}
.lang-switcher__toggle:hover,
.lang-switcher__toggle[aria-expanded="true"] {
	background: rgba(11,26,46,.06); border-color: var(--ink);
}
.lang-switcher__code { line-height: 1; }
.lang-switcher__chevron {
	width: 11px; height: 11px; flex-shrink: 0;
	transition: transform .2s var(--ease);
}
.lang-switcher__toggle[aria-expanded="true"] .lang-switcher__chevron {
	transform: rotate(180deg);
}

/* Dropdown panel */
.lang-switcher__dropdown {
	position: absolute; top: calc(100% + 8px); right: 0;
	background: var(--paper-2); border: 1px solid var(--line);
	border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
	min-width: 148px; padding: 5px 0; list-style: none; margin: 0; z-index: 200;
}

/* Items */
.lang-switcher__item {
	display: flex; align-items: center; gap: 10px;
	padding: 9px 14px; font-size: .9rem; color: var(--ink);
	transition: background .12s var(--ease); white-space: nowrap;
}
a.lang-switcher__item:hover,
a.lang-switcher__item:focus { background: var(--paper); outline: none; }
.lang-switcher__item--active {
	font-weight: 600; color: var(--teal); cursor: default;
	background: rgba(30,122,116,.07);
}

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { border-bottom: 1px solid var(--line); background: #fff; padding: 8px 22px 16px; }
.mobile-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .current-menu-item > a,
.mobile-nav__link.current-menu-item { color: var(--amber); font-weight: 600; }

/* Móvil: fila padre con link + botón expandir */
.mobile-nav__parent {
	display: flex; align-items: center;
	border-bottom: 1px solid var(--line);
}
.mobile-nav__parent .mobile-nav__link { flex: 1; border-bottom: 0; }
.mobile-nav__toggle {
	flex-shrink: 0; background: none; border: none; cursor: pointer;
	padding: 12px 4px 12px 8px; color: var(--ink);
	transition: transform .2s var(--ease);
}
.mobile-nav__toggle[aria-expanded="true"] { transform: rotate(180deg); }
.mobile-nav__sub { background: var(--paper-2); }
.mobile-nav__child {
	display: block; padding: 10px 28px;
	font-size: .9rem; color: var(--muted);
	border-bottom: 1px solid var(--line);
}
.mobile-nav__child:last-child { border-bottom: 0; }
.mobile-nav__child:hover { color: var(--ink); }

/* =========================================================================
   HERO (Swiper 11)
   ========================================================================= */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: radial-gradient(120% 80% at 20% 0%, #000 40%, transparent 85%);
}
.hero__glow { position: absolute; top: -20%; right: -10%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.22), transparent 60%); }

/* ---- Swiper: en flujo (determina la altura de .hero), imagen full-bleed --- */
.hero-swiper {
	position: relative;
	width: 100%;
	min-height: 560px;
	/* Swiper CSS custom properties */
	--swiper-navigation-color: #fff;
	--swiper-pagination-color: var(--amber);
	--swiper-pagination-bullet-inactive-color: rgba(255,255,255,.35);
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-size: 10px;
	--swiper-navigation-size: 22px;
}

/* Cada slide tiene altura explícita para que .hero-slide__bg pueda llenarlo */
.hero-slide { min-height: 560px; position: relative; }
.hero-slide__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
}
.hero-slide__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(to right, rgba(11,26,46,.85) 40%, rgba(11,26,46,.28) 100%);
}

/* ---- Content overlay: se posiciona encima del Swiper (capa superior) ----- */
.hero__inner {
	position: absolute;
	top: 0; bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: grid;
	grid-template-columns: 1.25fr .85fr;
	gap: 54px;
	align-items: center;
	padding-block: 96px 104px;
	/* width, max-width y padding-inline vienen de la clase .container */
	pointer-events: none; /* pasa eventos al Swiper para que funcionen sus controles */
}
/* Re-activar eventos en los elementos interactivos del overlay */
.hero-text,
.track-card { pointer-events: auto; }

/* ---- Hero text (columna izquierda del grid) ----------------------------- */
.hero-text {
	position: relative;
	transition: opacity .25s ease;
}
.hero-text.is-changing { opacity: 0; }

.hero-slide__title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 18px; max-width: 15ch; }
.hero-slide__text { color: rgba(255,255,255,.76); font-size: 1.1rem; max-width: 46ch; margin-bottom: 30px; }

/* Pagination dots positioned at bottom */
.hero-swiper .swiper-pagination { bottom: 16px; text-align: left; padding-left: 2px; }
.hero-swiper .swiper-pagination-bullet { border-radius: 3px; width: 28px; height: 4px; transition: background .2s var(--ease), width .2s var(--ease); }
.hero-swiper .swiper-pagination-bullet-active { width: 38px; }

/* Ocultar cualquier botón de control del slider */
.hero-swiper__pause,
.swiper-button-prev,
.swiper-button-next { display: none !important; }

/* ── Estilo "lines" (tipo Glamec) — indicadores de progreso ── */
.hero--nav-lines .swiper-pagination {
	display: flex; gap: 8px; align-items: center;
	bottom: 22px; left: 0; width: auto;
	padding: 0 calc(var(--container-pad, 24px) + 4px);
	transform: none;
}
.hero--nav-lines .swiper-pagination-bullet {
	width: 36px; height: 3px; border-radius: 2px;
	background: rgba(255,255,255,.35);
	opacity: 1; margin: 0; flex-shrink: 0;
	position: relative; overflow: hidden;
	transition: width .2s var(--ease);
}
.hero--nav-lines .swiper-pagination-bullet-active { width: 64px; background: rgba(255,255,255,.35); }
.hero--nav-lines .swiper-pagination-bullet-active::after {
	content: '';
	position: absolute; inset: 0;
	background: var(--amber);
	transform: scaleX(0); transform-origin: left;
	animation: cl-hero-progress var(--slide-autoplay, 6s) linear forwards;
}
@keyframes cl-hero-progress { to { transform: scaleX(1); } }

/* ── Estilo "none" — sin indicadores ── */
.hero--nav-none .swiper-pagination { display: none; }

/* ── Video de fondo en slide ── */
.hero-slide__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	pointer-events: none;
}

/* Tarjeta de tracking */
.track-card { background: var(--paper-2); color: var(--ink); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.track-card__title { font-size: 1.5rem; margin-bottom: 18px; }
.track-card__field { display: flex; gap: 8px; }
.track-card__field input {
	flex: 1; min-width: 0; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
	font-family: var(--font-mono); font-size: .92rem; letter-spacing: .04em;
}
.track-card__field input:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.track-card__hint { font-size: .86rem; color: var(--muted); margin-top: 12px; min-height: 2.6em; }
.track-card__hint.is-found { color: var(--teal); font-weight: 600; }
.track-card__modes { list-style: none; display: flex; gap: 10px; padding: 16px 0 0; margin-top: 16px; border-top: 1px solid var(--line); }
.track-card__modes li { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.track-card__modes .icon { color: var(--teal); }
.track-card__modes i[class^="flaticon-"],
.track-card__modes i[class*=" flaticon-"] { font-size: 22px; color: var(--teal); }

/* =========================================================================
   SERVICIOS
   ========================================================================= */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Base card (no photo / fallback) ── */
.service-card {
	position: relative;
	background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 30px; overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--ink); color: var(--amber); border-radius: 12px; }
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card__icon i[class^="flaticon-"],
.service-card__icon i[class*=" flaticon-"] { font-size: 28px; line-height: 1; }
.service-card__code { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--muted-2); }
.service-card__title { font-size: 1.28rem; margin-bottom: 10px; }
.service-card__text  { color: var(--muted); font-size: .96rem; margin-bottom: 20px; }

/* ── Photo card — glamec style ── */
.service-card--photo {
	padding: 0;
	border: none;
	background: var(--ink);
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.service-card--photo:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.28); }

.service-card__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.service-card__bg img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
	transition: transform .45s ease;
}
.service-card--photo:hover .service-card__bg img { transform: scale(1.07); }

/* icon bubble — top-right */
.service-card__icon-wrap {
	position: absolute;
	top: 20px; right: 20px;
	z-index: 2;
	width: 54px; height: 54px;
	background: #fff;
	border-radius: 50%;
	display: grid; place-items: center;
	color: var(--amber);
	box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.service-card__icon-wrap i[class^="flaticon-"],
.service-card__icon-wrap i[class*=" flaticon-"] { font-size: 24px; line-height: 1; }
.service-card__icon-wrap .icon { width: 24px; height: 24px; }

/* content box — bottom-left, diagonal cut on the right */
.service-card__body {
	position: relative;
	z-index: 2;
	background: #fff;
	width: 78%;
	padding: 22px 48px 20px 24px;
	border-radius: 0 var(--radius) 0 0;
	clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 100%, 0 100%);
}

/* reset body when no photo */
.service-card:not(.service-card--photo) .service-card__body {
	position: static;
	width: auto;
	clip-path: none;
	padding: 0;
	background: transparent;
}

.service-card--photo .service-card__code  { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--teal); display: block; margin-bottom: 4px; }
.service-card--photo .service-card__title { font-size: 1.1rem; margin-bottom: 6px; color: var(--ink); }
.service-card--photo .service-card__text  { color: var(--muted); font-size: .86rem; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-card--photo .link-arrow          { font-size: .86rem; }

/* =========================================================================
   NOSOTROS / STATS
   ========================================================================= */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__lead { color: var(--muted); font-size: 1.08rem; margin: 6px 0 26px; }
.about__points { list-style: none; padding: 0; display: grid; gap: 18px; margin-bottom: 30px; }
.about__points li { display: flex; gap: 14px; align-items: flex-start; }
.about__points .icon { color: var(--teal); width: 26px; height: 26px; margin-top: 2px; }
.about__point-icon { display: grid; place-items: center; width: 30px; height: 30px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.about__point-icon i[class^="flaticon-"],
.about__point-icon i[class*=" flaticon-"] { font-size: 22px; line-height: 1; }
.about__points strong { display: block; font-family: var(--font-display); }
.about__points span { color: var(--muted); font-size: .94rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 30px 26px; position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; top: 0; right: 0; width: 70px; height: 70px; background: radial-gradient(circle at top right, rgba(245,166,35,.4), transparent 70%); }
.stat__num { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 600; color: var(--amber); line-height: 1; display: block; }
.stat__label { color: rgba(255,255,255,.72); font-size: .9rem; margin-top: 10px; display: block; }

/* =========================================================================
   POR QUÉ ELEGIRNOS
   ========================================================================= */
.why-us { background: var(--ink-2); color: #fff; position: relative; overflow: hidden; }
.why-us::before {
	content: ""; position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 100% 46px; opacity: .6;
}
.why-us > .container { position: relative; }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason { border: 1px solid var(--line-light); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: background .2s var(--ease); }
.reason:hover { background: rgba(255,255,255,.04); }
.reason__index { font-family: var(--font-mono); font-size: .8rem; color: var(--amber); letter-spacing: .1em; }
.reason__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 12px; background: rgba(245,166,35,.14); color: var(--amber); margin: 18px 0 18px; }
.reason__icon .icon { width: 28px; height: 28px; }
.reason__title { font-size: 1.24rem; margin-bottom: 8px; }
.reason__text { color: rgba(255,255,255,.7); font-size: .95rem; }

/* =========================================================================
   COTIZADOR
   ========================================================================= */
.calculator { background: var(--paper); }
.calculator__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.calculator__text { color: var(--muted); margin-top: 6px; font-size: 1.05rem; }
.calculator__badges { list-style: none; padding: 0; display: flex; gap: 20px; margin-top: 22px; font-family: var(--font-mono); font-size: .82rem; color: var(--ink); }
.calculator__badges li { display: inline-flex; align-items: center; gap: 8px; }
.calculator__badges .icon { color: var(--teal); }

.quote-form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.field input, .field select {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
	font-family: var(--font-body); font-size: .95rem; background: #fff; color: var(--ink);
}
.field input[type="range"] { padding: 0; accent-color: var(--amber); }
.field input:focus, .field select:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.field b { color: var(--teal); font-family: var(--font-mono); }

.quote-form__result { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; margin-top: 4px; border-top: 1px dashed var(--line); }
.quote-form__label { display: block; font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.quote-form__amount { font-family: var(--font-mono); font-size: 2rem; font-weight: 600; color: var(--ink); }
.quote-form__note { font-size: .84rem; color: var(--teal); margin-top: 14px; min-height: 1.2em; font-weight: 600; }

/* =========================================================================
   TESTIMONIOS
   ========================================================================= */
.testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.review { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.review__stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 16px; }
.review__text { font-size: 1.08rem; color: var(--ink-2); font-style: normal; }
.review__author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review__author strong { display: block; font-family: var(--font-display); }
.review__author em { color: var(--muted); font-style: normal; font-size: .88rem; }

/* =========================================================================
   BLOG
   ========================================================================= */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { position: relative; display: block; aspect-ratio: 16 / 10; background: var(--ink-2); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.3); }
.post-card__placeholder .icon { width: 54px; height: 54px; }
.post-card__date { position: absolute; left: 16px; bottom: 16px; background: var(--amber); color: var(--ink); border-radius: 8px; padding: 8px 12px; text-align: center; font-family: var(--font-mono); line-height: 1; }
.post-card__date b { font-size: 1.15rem; display: block; }
.post-card__date i { font-size: .68rem; text-transform: uppercase; font-style: normal; }
.post-card__body { padding: 24px; }
.post-card__title { font-size: 1.16rem; margin-bottom: 10px; }
.post-card__title a:hover { color: var(--teal); }
.post-card__excerpt { color: var(--muted); font-size: .93rem; margin-bottom: 16px; }
.blog__empty { text-align: center; color: var(--muted); padding: 40px; border: 1px dashed var(--line); border-radius: var(--radius); }

/* =========================================================================
   NETWORK / COVERAGE
   ========================================================================= */
.network { background: var(--ink-2); color: #fff; position: relative; overflow: hidden; }
.network::before {
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 28px 28px;
}
.network > .container { position: relative; }
.network .section__sub { color: rgba(255,255,255,.62); }

.network__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
	margin-bottom: 54px;
}
.region-card {
	border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
	padding: 26px 22px;
	transition: background .2s var(--ease), border-color .2s var(--ease);
}
.region-card:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18); }
.region-card__head { margin-bottom: 18px; }
.region-card__code {
	font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em;
	color: var(--amber); display: block; margin-bottom: 6px;
}
.region-card__name { font-size: 1.08rem; font-weight: 700; }
.region-card__hubs {
	list-style: none; padding: 0; display: grid; gap: 9px;
	font-size: .88rem; color: rgba(255,255,255,.72); margin-bottom: 16px;
}
.region-card__hubs li { display: flex; align-items: center; gap: 7px; }
.region-card__hubs .icon { color: var(--amber); flex-shrink: 0; }
.region-card__hubs i[class^="flaticon-"],
.region-card__hubs i[class*=" flaticon-"] { font-size: 13px; color: var(--amber); flex-shrink: 0; }
.region-card__modes {
	list-style: none; padding: 0; display: flex; gap: 6px; flex-wrap: wrap;
	padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
}
.region-card__modes li {
	font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
	text-transform: uppercase; background: rgba(245,166,35,.14); color: var(--amber);
	border-radius: 4px; padding: 3px 9px;
}

.network__stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden;
}
.network-stat {
	background: rgba(255,255,255,.03); padding: 28px 24px; text-align: center;
}
.network-stat__num {
	font-family: var(--font-mono); font-size: 2.2rem; font-weight: 600;
	color: var(--amber); display: block; line-height: 1;
}
.network-stat__label {
	font-size: .84rem; color: rgba(255,255,255,.6); margin-top: 8px; display: block;
}

/* =========================================================================
   CTA BANNER
   ========================================================================= */
.cta-section {
	background: var(--ink); position: relative; overflow: hidden;
	padding: 80px 0;
}
.cta-section__bg {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(ellipse 60% 80% at 100% 50%, rgba(245,166,35,.18), transparent),
		linear-gradient(135deg, rgba(255,255,255,.03) 0%, transparent 60%);
}
.cta-section__inner {
	position: relative; display: flex; align-items: center;
	justify-content: space-between; gap: 48px;
}
.cta-section__copy { flex: 1; color: #fff; }
.cta-section__title {
	font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; margin-bottom: 12px;
}
.cta-section__text { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 54ch; }
.cta-section__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

.btn--outline-white {
	background: transparent; border-color: rgba(255,255,255,.35); color: #fff;
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-section { background: var(--paper); }
.contact-section__inner {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start;
}

/* Form column */
.contact-form { margin-top: 32px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form__privacy { font-size: .84rem; color: var(--muted); margin: 4px 0 20px; }
.contact-form__privacy a { color: var(--teal); text-decoration: underline; }

/* Notices */
.contact-notice {
	display: flex; align-items: flex-start; gap: 12px;
	padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px;
	font-weight: 500;
}
.contact-notice--success { background: rgba(30,122,116,.1); color: var(--teal); border: 1px solid rgba(30,122,116,.25); }
.contact-notice--error   { background: rgba(220,53,69,.08);  color: #c82333;   border: 1px solid rgba(220,53,69,.2); }
.contact-notice .icon { flex-shrink: 0; margin-top: 2px; }

/* Info column */
.contact-info { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 38px 34px; }
.contact-info__title { font-size: 1.3rem; margin-bottom: 28px; color: #fff; }
.contact-info__list { list-style: none; padding: 0; display: grid; gap: 22px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon {
	width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center;
	background: rgba(245,166,35,.14); color: var(--amber); border-radius: 10px;
}
.contact-info__label {
	display: block; font-family: var(--font-mono); font-size: .72rem;
	letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px;
}
.contact-info__value { font-size: .96rem; color: rgba(255,255,255,.88); }
a.contact-info__value:hover { color: var(--amber); }

.contact-map-placeholder {
	margin-top: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
	display: flex; align-items: center; gap: 12px;
	color: rgba(255,255,255,.4); font-size: .88rem;
}
.contact-map-placeholder .icon { width: 32px; height: 32px; color: rgba(245,166,35,.5); flex-shrink: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
	position: relative;
	background: var(--ink) url('../images/footer-bg.jpg') center/cover no-repeat;
	color: rgba(255,255,255,.72);
	padding: 70px 0 30px;
	overflow: hidden;
}
/* Dark overlay — opacity controlled by --footer-overlay CSS var (set inline by PHP) */
.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11,26,46, var(--footer-overlay, .84));
	z-index: 0;
}
/* All direct children sit above the overlay */
.site-footer > * { position: relative; z-index: 1; }
.route-strip { display: flex; align-items: center; gap: 14px; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line-light); }
.route-strip__node { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .14em; color: var(--amber); }
.route-strip__line { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 8px, transparent 8px 16px); }
.route-strip__mid { color: rgba(255,255,255,.6); }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; align-items: start; }

/* Brand column */
.brand__text--footer { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 4px; }
.brand__text--footer .brand__name { color: #fff; font-size: 1.24rem; }
.footer-col__desc { margin: 14px 0 10px; font-size: .94rem; line-height: 1.65; max-width: 32ch; color: rgba(255,255,255,.65); }
.footer-col__code { font-family: var(--font-mono); font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .06em; margin-bottom: 18px; }

/* Social icon buttons */
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social__btn {
	display: grid; place-items: center;
	width: 36px; height: 36px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 6px;
	color: rgba(255,255,255,.7);
	transition: background .15s, color .15s, border-color .15s;
}
.footer-social__btn:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }

/* Section headings with amber underline */
.footer-widget__title, .footer-col h4 {
	color: #fff;
	font-size: 1.08rem;
	font-weight: 700;
	margin-bottom: 22px;
	letter-spacing: .02em;
	position: relative;
	padding-bottom: 14px;
}
.footer-widget__title::after, .footer-col h4::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 36px; height: 2px;
	background: var(--amber);
	border-radius: 2px;
}

/* Links with + prefix */
.footer-list { list-style: none; padding: 0; display: grid; gap: 11px; font-size: .93rem; }
.footer-list a { color: rgba(255,255,255,.7); transition: color .15s, padding-left .15s; }
.footer-list a:hover { color: var(--amber); }
.footer-list--plus a::before { content: '+ '; color: var(--amber); font-weight: 700; }

/* Contact list with icon circles */
.footer-contact { list-style: none; padding: 0; display: grid; gap: 16px; font-size: .92rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 13px; color: rgba(255,255,255,.72); }
.footer-contact a { color: rgba(255,255,255,.72); transition: color .15s; }
.footer-contact a:hover { color: var(--amber); }
.footer-contact__icon {
	display: grid; place-items: center; flex-shrink: 0;
	width: 34px; height: 34px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
	color: var(--amber);
	margin-top: 1px;
}

/* Bottom bar */
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-light); font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-bottom__menu { list-style: none; display: flex; gap: 20px; padding: 0; margin: 0; }
.footer-bottom__menu a { color: rgba(255,255,255,.45); }
.footer-bottom__menu a:hover { color: var(--amber); }

/* =========================================================================
   PÁGINAS INTERNAS
   ========================================================================= */
.page-wrap { padding: 60px 22px 90px; }
.page-hero { margin-bottom: 40px; }
.page-hero__title { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.single__hero { background: var(--ink); color: #fff; padding: 70px 0 46px; }
.single__title { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; max-width: 22ch; }
.single__thumb { margin: -40px 0 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.single__content { padding: 46px 0 20px; font-size: 1.06rem; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { font-size: 1.7rem; margin-top: 1.6em; }
.entry-content h3 { font-size: 1.35rem; margin-top: 1.4em; }
.entry-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { border-left: 3px solid var(--amber); padding-left: 20px; color: var(--muted); font-style: italic; }

.pagination { margin-top: 46px; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span {
	min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px;
	border: 1px solid var(--line); border-radius: 8px; font-family: var(--font-mono); font-weight: 500;
}
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination a:hover { border-color: var(--ink); }

.error-404 { text-align: center; padding: 90px 22px 110px; }
.error-404__code { font-family: var(--font-mono); font-size: 5rem; font-weight: 600; color: var(--amber); line-height: 1; }
.error-404__title { font-size: 2rem; margin: 10px 0 12px; }
.error-404__text { color: var(--muted); max-width: 44ch; margin: 0 auto 28px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
	.section { padding: 72px 0; }
	.hero__inner { grid-template-columns: 1fr; gap: 40px; padding-block: 70px 80px; }
	.hero-swiper { min-height: 0; }
	.hero-slide { min-height: 480px; }
	.about__inner, .calculator__inner { grid-template-columns: 1fr; gap: 40px; }
	.services__grid, .why-us__grid, .blog__grid { grid-template-columns: 1fr 1fr; }
	.network__grid { grid-template-columns: 1fr 1fr; }
	.network__stats { grid-template-columns: 1fr 1fr; }
	.cta-section__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
	.contact-section__inner { grid-template-columns: 1fr; gap: 40px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.nav, .navbar__actions .btn--track { display: none; }
	.nav-toggle { display: block; }
	.topbar__hours { display: none; }
	.topbar__inner { justify-content: center; }
	.lang-switcher { margin-left: 0; }
	.services__grid, .why-us__grid, .blog__grid, .testimonials__grid, .stats,
	.quote-form__row, .footer-grid,
	.network__grid, .network__stats,
	.contact-form__row { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.route-strip { flex-wrap: wrap; }
}

/* Accesibilidad: respeta reduce-motion */
@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Foco visible global */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
	outline: 2px solid var(--amber); outline-offset: 2px;
}

/* =========================================================================
   SCROLL-TO-TOP
   ========================================================================= */
.cl-scroll-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	z-index: 800;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .25s var(--ease);
}
.cl-scroll-top[hidden] { display: grid; } /* override HTML hidden until JS removes it */
.cl-scroll-top--visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* SVG ring — rotated so progress starts at the top */
.cl-scroll-top__svg {
	position: absolute;
	inset: 0;
	transform: rotate(-90deg);
	width: 100%;
	height: 100%;
}
.cl-scroll-top__track { stroke: rgba(11,26,46,.14); }
.cl-scroll-top__ring  {
	stroke: var(--amber);
	stroke-linecap: round;
	transition: stroke-dashoffset 80ms linear;
}

/* Inner icon disc */
.cl-scroll-top__icon {
	position: relative;
	z-index: 1;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	background: var(--ink);
	border-radius: 50%;
	color: #fff;
	transition: background .15s, color .15s;
	box-shadow: 0 4px 14px rgba(11,26,46,.25);
}
.cl-scroll-top:hover .cl-scroll-top__icon,
.cl-scroll-top:focus-visible .cl-scroll-top__icon {
	background: var(--amber);
	color: var(--ink);
}

@media (max-width: 600px) {
	.cl-scroll-top { right: 14px; bottom: 14px; }
}

/* =========================================================================
   WHATSAPP FLOATING BUTTON — join.chat style
   ========================================================================= */

/* Wrapper: stacks bubble above button, anchored bottom-right */
.cl-wa-wrap {
	position: fixed;
	right: 26px;
	bottom: 84px;
	z-index: 900;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

/* ---- FAB button ---- */
.cl-wa-btn {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	border: none;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 4px 20px rgba(37,211,102,.45);
	transition: transform .2s, background .2s, box-shadow .2s;
	flex-shrink: 0;
}
.cl-wa-btn:hover,
.cl-wa-btn:focus-visible {
	transform: scale(1.08);
	box-shadow: 0 6px 26px rgba(37,211,102,.55);
	outline: none;
}
.cl-wa-btn[aria-expanded="true"] {
	background: #128C7E;
	box-shadow: 0 4px 16px rgba(18,140,126,.4);
}
.cl-wa-btn[aria-expanded="true"]::before,
.cl-wa-btn[aria-expanded="true"]::after { animation: none; }

/* Pulse rings */
.cl-wa-btn::before,
.cl-wa-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25D366;
	opacity: .3;
	animation: cl-wa-pulse 2.4s ease-out infinite;
}
.cl-wa-btn::after { animation-delay: 1.2s; }

@keyframes cl-wa-pulse {
	0%   { transform: scale(1);   opacity: .3; }
	100% { transform: scale(1.9); opacity: 0;  }
}

/* Icons inside button */
.cl-wa-btn__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	color: #fff;
}
.cl-wa-btn__icon--close { display: none; }
.cl-wa-btn[aria-expanded="true"] .cl-wa-btn__icon--wa   { display: none; }
.cl-wa-btn[aria-expanded="true"] .cl-wa-btn__icon--close { display: grid; }

/* ---- Chat bubble popup ---- */
.cl-wa-bubble {
	width: 300px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(11,26,46,.18);
	overflow: hidden;
	transform-origin: bottom right;
	transform: scale(.85) translateY(8px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		transform .28s cubic-bezier(.34,1.56,.64,1),
		opacity   .2s ease,
		visibility 0s .22s;
}
.cl-wa-bubble.is-open {
	transform: scale(1) translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition:
		transform .28s cubic-bezier(.34,1.56,.64,1),
		opacity   .2s ease,
		visibility 0s 0s;
}

/* Header */
.cl-wa-bubble__header {
	background: #25D366;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.cl-wa-bubble__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.25);
	display: grid;
	place-items: center;
	color: #fff;
	flex-shrink: 0;
}
.cl-wa-bubble__info { flex: 1; min-width: 0; }
.cl-wa-bubble__name {
	display: block;
	color: #fff;
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.2;
}
.cl-wa-bubble__status {
	display: flex;
	align-items: center;
	gap: 5px;
	color: rgba(255,255,255,.85);
	font-size: .72rem;
	margin-top: 2px;
}
.cl-wa-bubble__status::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #90EE90;
	flex-shrink: 0;
}
.cl-wa-bubble__close {
	background: transparent;
	border: none;
	cursor: pointer;
	color: rgba(255,255,255,.75);
	padding: 6px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	transition: background .15s, color .15s;
}
.cl-wa-bubble__close:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Body — WhatsApp chat background */
.cl-wa-bubble__body {
	padding: 16px;
	background: #E5DDD5;
}
.cl-wa-bubble__msg {
	background: #fff;
	border-radius: 0 12px 12px 12px;
	padding: 10px 14px;
	font-size: .875rem;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	position: relative;
}
.cl-wa-bubble__msg::before {
	content: '';
	position: absolute;
	top: 0;
	left: -8px;
	width: 0;
	height: 0;
	border-right: 8px solid #fff;
	border-bottom: 8px solid transparent;
}

/* CTA */
.cl-wa-bubble__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 16px;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	font-size: .875rem;
	font-weight: 600;
	transition: background .15s;
}
.cl-wa-bubble__cta:hover { background: #1ebe5d; color: #fff; }

@media (max-width: 600px) {
	.cl-wa-wrap { right: 14px; bottom: 72px; }
	.cl-wa-bubble { width: calc(100vw - 28px); }
}

/* =========================================================================
   COMMENTS
   ========================================================================= */

.comments-area { margin-top: 56px; }

/* Title */
.cl-comments-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 28px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--amber);
}
.cl-comments-title span { color: var(--amber); }

/* Comment list */
.cl-comment-list,
.cl-comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cl-comment-list > li + li { margin-top: 24px; }
.cl-comment-list .children {
	margin-top: 16px;
	margin-left: 56px;
	padding-left: 16px;
	border-left: 2px solid rgba(11,26,46,.08);
}

/* Individual comment */
.cl-comment__inner {
	display: flex;
	gap: 14px;
	background: #fff;
	border: 1px solid rgba(11,26,46,.07);
	border-radius: 12px;
	padding: 18px;
}
.cl-comment__img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
	object-fit: cover;
}
.cl-comment__body { flex: 1; min-width: 0; }
.cl-comment__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.cl-comment__author { font-weight: 700; font-size: .9375rem; }
.cl-comment__date   { font-size: .8rem; color: var(--muted); }
.cl-comment__reply-wrap a {
	font-size: .8rem;
	font-weight: 600;
	color: var(--amber);
	text-decoration: none;
}
.cl-comment__reply-wrap a:hover { text-decoration: underline; }
.cl-comment__moderation {
	font-size: .8125rem;
	color: #9a6700;
	background: #FFF8E1;
	border-radius: 6px;
	padding: 6px 10px;
	margin-bottom: 8px;
}
.cl-comment__text p       { margin: 0 0 .5em; font-size: .9375rem; line-height: 1.6; }
.cl-comment__text p:last-child { margin-bottom: 0; }

/* Moderated state */
.cl-comment.unapproved .cl-comment__inner { opacity: .65; }

/* Comment nav */
.comments-area .comment-navigation {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	font-size: .875rem;
}
.comments-area .comment-navigation a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
}
.comments-area .comment-navigation a:hover { color: var(--amber); }

/* ---- Comment Form ---- */
.cl-cf-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 40px 0 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--amber);
}
.cl-cf-title small a { font-size: .8rem; font-weight: 400; color: var(--muted); }

.cl-cf-note {
	font-size: .8125rem;
	color: var(--muted);
	margin-bottom: 20px;
}

.cl-comment-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
}

.cl-cf-field { display: flex; flex-direction: column; gap: 6px; }
.cl-cf-field--full { grid-column: 1 / -1; }

/* Logged-in notice */
.cl-comment-form .logged-in-as {
	grid-column: 1 / -1;
	font-size: .875rem;
	color: var(--muted);
	margin: 0;
}
.cl-comment-form .logged-in-as a { color: var(--ink); font-weight: 600; }

/* Submit row */
.cl-cf-submit {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-end;
	padding-top: 4px;
}

@media (max-width: 600px) {
	.cl-comment-form   { grid-template-columns: 1fr; }
	.cl-cf-field--full { grid-column: 1; }
	.cl-cf-submit      { justify-content: stretch; }
	.cl-cf-submit .btn { width: 100%; justify-content: center; }
	.cl-comment-list .children { margin-left: 20px; }
}

/* =========================================================================
   LIBRO DE RECLAMACIONES
   ========================================================================= */

/* Hero — reuses .nos-hero base, just overrides min-height */
.lr-hero.nos-hero { min-height: 340px; }

/* Notice bar */
.lr-notice-bar {
	background: #FFF8E1;
	border-bottom: 2px solid var(--amber);
	padding: 12px 0;
}
.lr-notice-bar__inner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #5a3e00;
	font-size: .875rem;
	line-height: 1.5;
}
.lr-notice-bar__inner svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.lr-notice-bar__inner p { margin: 0; }

/* Section container */
.lr-section { padding-block: 56px 80px; background: var(--surface, #F7F8FA); }
.lr-container { max-width: 800px; margin-inline: auto; }

/* Disabled card */
.lr-disabled-card {
	text-align: center;
	padding: 64px 32px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 20px rgba(11,26,46,.07);
}
.lr-disabled-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px; height: 80px;
	border-radius: 50%;
	background: rgba(11,26,46,.06);
	color: var(--ink);
	margin-bottom: 20px;
}
.lr-disabled-card h2 { font-size: 1.375rem; margin-bottom: 10px; }
.lr-disabled-card p  { color: var(--muted); max-width: 440px; margin-inline: auto; }
.lr-disabled-card__contacts { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Intro */
.lr-intro { margin-bottom: 36px; }
.lr-intro__title { font-size: 1.5rem; margin-bottom: 8px; }
.lr-intro__sub    { color: var(--muted); line-height: 1.6; margin: 0; }

/* Success card */
.lr-success {
	text-align: center;
	padding: 56px 32px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 20px rgba(11,26,46,.07);
}
.lr-success__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: #E8F5E9;
	color: #2e7d32;
	margin-bottom: 20px;
}
.lr-success h2       { font-size: 1.375rem; margin-bottom: 8px; }
.lr-success p        { color: var(--muted); margin-bottom: 0; }
.lr-success__code    { font-size: 2rem; font-weight: 800; letter-spacing: .06em; color: var(--ink); margin: 16px 0; font-family: monospace; }
.lr-success__hint    { font-size: .875rem; max-width: 440px; margin-inline: auto; margin-top: 12px !important; }

/* Error bar */
.lr-error-bar {
	background: #FFEBEE;
	border: 1px solid #FFCDD2;
	color: #b71c1c;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: .875rem;
	margin-bottom: 20px;
}

/* Form */
.lr-form { display: flex; flex-direction: column; gap: 0; }

/* Fieldset */
.lr-fieldset {
	border: none;
	padding: 0;
	margin: 0 0 6px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 1px 8px rgba(11,26,46,.06);
	overflow: hidden;
}
.lr-fieldset--last { margin-bottom: 0; }

.lr-fieldset__legend {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 18px 24px;
	background: var(--ink);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	float: left; /* required for full-width legend in all browsers */
}

/* Section number badge */
.lr-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--amber);
	color: var(--ink);
	font-size: .8rem;
	font-weight: 800;
	flex-shrink: 0;
}

/* Grid */
.lr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 20px;
	padding: 24px;
}
.lr-field--full { grid-column: 1 / -1; }

/* Labels */
.lr-label {
	display: block;
	font-size: .8125rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px;
}
.lr-label--group { margin-bottom: 10px; }
.lr-req { color: var(--amber); }

/* Inputs */
.lr-input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #D1D5DB;
	border-radius: 8px;
	font-size: .9375rem;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
	appearance: none;
}
.lr-input:focus {
	outline: none;
	border-color: var(--ink);
	box-shadow: 0 0 0 3px rgba(11,26,46,.1);
}
.lr-input.is-invalid {
	border-color: #b71c1c;
	box-shadow: 0 0 0 3px rgba(183,28,28,.1);
}
.lr-textarea { resize: vertical; min-height: 96px; }

/* Radio row */
.lr-radio-row { display: flex; gap: 16px; flex-wrap: wrap; }
.lr-radio-opt {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .9375rem;
	cursor: pointer;
	padding: 10px 18px;
	border: 1.5px solid #D1D5DB;
	border-radius: 8px;
	transition: border-color .15s, background .15s;
}
.lr-radio-opt:has(input:checked) {
	border-color: var(--ink);
	background: rgba(11,26,46,.04);
}
.lr-radio { accent-color: var(--ink); }

/* Tipo cards */
.lr-tipo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lr-tipo-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	border: 1.5px solid #D1D5DB;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color .15s, background .15s, box-shadow .15s;
}
.lr-tipo-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.lr-tipo-card.is-selected,
.lr-tipo-card:has(input:checked) {
	border-color: var(--amber);
	background: rgba(245,166,35,.05);
	box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.lr-tipo-card__icon {
	width: 42px; height: 42px;
	border-radius: 8px;
	background: rgba(11,26,46,.07);
	display: grid;
	place-items: center;
	color: var(--ink);
	flex-shrink: 0;
}
.lr-tipo-card.is-selected .lr-tipo-card__icon,
.lr-tipo-card:has(input:checked) .lr-tipo-card__icon {
	background: var(--amber);
	color: var(--ink);
}
.lr-tipo-card__body strong { display: block; font-size: .9375rem; margin-bottom: 4px; }
.lr-tipo-card__body p { margin: 0; font-size: .8125rem; color: var(--muted); line-height: 1.4; }

/* Checkbox */
.lr-check-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .875rem;
	line-height: 1.5;
	cursor: pointer;
	padding: 18px 24px;
}
.lr-check-label--terms { align-items: flex-start; }
.lr-check {
	width: 18px; height: 18px;
	border-radius: 4px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--amber);
	cursor: pointer;
}
.lr-check.is-invalid { outline: 2px solid #b71c1c; }

/* Form footer */
.lr-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 28px;
	flex-wrap: wrap;
}
.lr-req-note { font-size: .8125rem; color: var(--muted); margin: 0; }
.lr-req-note span { color: var(--amber); }

/* Responsive */
@media (max-width: 680px) {
	.lr-grid { grid-template-columns: 1fr; }
	.lr-field--full { grid-column: 1; }
	.lr-tipo-cards { grid-template-columns: 1fr; }
	.lr-form-footer { flex-direction: column; align-items: stretch; }
	.lr-form-footer .btn { width: 100%; justify-content: center; }
}

/* =========================================================================
   PRELOADER
   ========================================================================= */
.cl-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--ink);
	transition: opacity .55s ease, visibility .55s ease;
}
.cl-preloader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Spinning ring */
.cl-preloader__ring {
	width: 90px;
	height: 90px;
	border: 3px solid rgba(255,255,255,.12);
	border-top-color: var(--amber);
	border-radius: 50%;
	animation: cl-spin 1.1s linear infinite;
	margin-bottom: 44px;
	flex-shrink: 0;
}
@keyframes cl-spin { to { transform: rotate(360deg); } }

/* Brand text with staggered letter flip */
.cl-preloader__text {
	display: flex;
	gap: 3px;
	font-family: var(--font-display);
	font-size: clamp(2rem, 7vw, 4.2rem);
	font-weight: 800;
	letter-spacing: .14em;
	user-select: none;
	margin-bottom: 16px;
}
.cl-preloader__letter {
	display: inline-block;
	position: relative;
	color: rgba(255,255,255,.25);
	animation: cl-letter-base 2.6s infinite;
	animation-delay: var(--cl-letter-delay, 0s);
}
.cl-preloader__letter::before {
	content: attr(data-char);
	position: absolute;
	inset: 0;
	color: var(--amber);
	opacity: 0;
	transform: rotateY(-90deg);
	animation: cl-letter-glow 2.6s infinite;
	animation-delay: var(--cl-letter-delay, 0s);
}
@keyframes cl-letter-base {
	0%, 20%       { color: rgba(255,255,255,.25); }
	35%, 55%      { color: rgba(255,255,255,.08); }
	70%, 100%     { color: rgba(255,255,255,.25); }
}
@keyframes cl-letter-glow {
	0%, 20%       { opacity: 0; transform: rotateY(-90deg); }
	35%, 55%      { opacity: 1; transform: rotateY(0deg); }
	70%, 100%     { opacity: 0; transform: rotateY(90deg); }
}

/* Sub-label */
.cl-preloader__sub {
	font-family: var(--font-mono);
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
	margin: 0;
}

/* Skip button */
.cl-preloader__skip {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.15);
	color: rgba(255,255,255,.4);
	font-size: .72rem;
	font-family: var(--font-mono);
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 4px;
	cursor: pointer;
	transition: color .15s, border-color .15s;
}
.cl-preloader__skip:hover { color: #fff; border-color: rgba(255,255,255,.45); }

@media (max-width: 600px) {
	.cl-preloader__ring { width: 64px; height: 64px; margin-bottom: 32px; }
	.cl-preloader__text { gap: 1px; }
}

/* =========================================================================
   ELEMENTOR OVERRIDES
   ========================================================================= */

/* Hero: remove column/widget-container padding so the hero bleeds edge-to-edge */
.elementor-widget-cl-hero-slider .elementor-widget-container { padding: 0; }
.elementor-section.section-hero > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.elementor-section.section-hero > .elementor-container > .elementor-column > .elementor-widget-wrap { padding: 0; }

/* CTA section: same treatment for full-bleed background */
.elementor-widget-cl-cta .elementor-widget-container { padding: 0; }
.elementor-section.section-cta > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.elementor-section.section-cta > .elementor-container > .elementor-column > .elementor-widget-wrap { padding: 0; }

/* Btn flaticon icons: align vertically inside button text */
.btn i[class^="flaticon-"],
.btn i[class*=" flaticon-"] { font-size: 1em; vertical-align: middle; margin-left: 5px; line-height: 1; }

/* =========================================================================
   TEAM GRID  (.cl-team widget)
   ========================================================================= */

.team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 48px;
}

/* Card */
.member-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(11,26,46,.08);
	transition: box-shadow .2s, transform .2s;
	display: flex;
	flex-direction: column;
}
.member-card:hover {
	box-shadow: 0 8px 32px rgba(11,26,46,.14);
	transform: translateY(-4px);
}

/* Avatar area */
.member-card__avatar {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
}
.member-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Initials fallback */
.member-card__initials {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .04em;
	line-height: 1;
}

/* Info block */
.member-card__info {
	padding: 18px 20px 12px;
	flex: 1;
}
.member__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 4px;
	line-height: 1.25;
}
.member__role {
	font-size: .82rem;
	color: var(--teal);
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* Social links */
.member-card__social {
	list-style: none;
	margin: 0;
	padding: 0 20px 16px;
	display: flex;
	gap: 8px;
}
.member-card__social a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	background: var(--pale);
	border-radius: 6px;
	color: var(--ink);
	transition: background .15s, color .15s;
}
.member-card__social a:hover {
	background: var(--amber);
	color: var(--ink);
}

/* Responsive */
@media (max-width: 1024px) {
	.team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.team__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================================================
   SINGLE SERVICIO  (single-servicio.php)
   ========================================================================= */

/* ── 1. Hero ── */
.svc-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	background: var(--ink) var(--svc-hero-bg, none) center / cover no-repeat;
	padding-bottom: 60px;
}
.svc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11,26,46,.88) 40%, rgba(11,26,46,.45));
}
.svc-hero__inner {
	position: relative;
	z-index: 1;
	color: #fff;
}
.svc-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .8rem;
	color: rgba(255,255,255,.55);
	margin-bottom: 18px;
}
.svc-hero__breadcrumb a { color: rgba(255,255,255,.55); transition: color .15s; }
.svc-hero__breadcrumb a:hover { color: var(--amber); }
.svc-hero__breadcrumb span[aria-hidden] { color: rgba(255,255,255,.25); }
.svc-hero__code { color: var(--amber); margin-bottom: 10px; }
.svc-hero__title { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 14px; max-width: 720px; }
.svc-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.72); max-width: 560px; margin-bottom: 28px; }
.svc-hero__cta { align-self: flex-start; }

/* ── 2. Body ── */
.svc-body__inner {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 56px;
	align-items: start;
}
.svc-body__content { line-height: 1.8; color: var(--muted); font-size: 1.02rem; }
.svc-body__content h2,
.svc-body__content h3 { color: var(--ink); margin-top: 2em; }
.svc-body__content img { max-width: 100%; border-radius: var(--radius); }

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 20px; }

.svc-sidebar__icon-wrap {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	background: var(--ink);
	color: var(--amber);
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(11,26,46,.15);
}
.svc-sidebar__icon-wrap i[class^="flaticon-"],
.svc-sidebar__icon-wrap i[class*=" flaticon-"] { font-size: 34px; line-height: 1; }

.svc-sidebar__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: 0 2px 14px rgba(11,26,46,.06);
}
.svc-sidebar__card--cta { border-top: 3px solid var(--amber); }
.svc-sidebar__heading {
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--ink);
	margin-bottom: 16px;
}
.svc-sidebar__cta-label {
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 14px;
}
.btn--block { width: 100%; justify-content: center; }
.svc-sidebar__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: .9rem;
	color: var(--muted);
	transition: color .15s;
}
.svc-sidebar__phone:hover { color: var(--teal); }
.svc-sidebar__phone svg { flex-shrink: 0; }

/* Features list */
.svc-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.svc-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .94rem;
	color: var(--muted);
	line-height: 1.5;
}
.svc-features__bullet {
	display: grid;
	place-items: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: rgba(245,166,35,.12);
	color: var(--amber);
	border-radius: 50%;
	margin-top: 1px;
}

/* ── 3. Related ── */
.svc-related { background: var(--pale); }
.svc-related__grid { margin-top: 40px; }

/* ── Responsive ── */
@media (max-width: 900px) {
	.svc-body__inner { grid-template-columns: 1fr; gap: 36px; }
	.svc-hero { min-height: 360px; padding-bottom: 44px; }
	.svc-hero__title { font-size: 2rem; }
}
@media (max-width: 600px) {
	.svc-hero { min-height: 300px; }
	.svc-related__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   ARCHIVE SERVICIO  (archive-servicio.php)
   ========================================================================= */

.archive-hero {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: flex-end;
	background: var(--ink) center / cover no-repeat;
	padding-bottom: 56px;
}
.archive-hero--services {
	background-image: url('images/footer-bg.jpg'); /* reuse logistics photo */
}
.archive-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11,26,46,.9) 30%, rgba(11,26,46,.55));
}
.archive-hero__inner {
	position: relative;
	z-index: 1;
	color: #fff;
}
.archive-hero__eyebrow { color: var(--amber); margin-bottom: 10px; }
.archive-hero__title   { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 12px; }
.archive-hero__sub     { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0; }

.svc-archive__grid  { margin-top: 0; }
.svc-archive__empty { text-align: center; color: var(--muted); padding: 60px 0; }

@media (max-width: 900px) {
	.archive-hero { min-height: 260px; padding-bottom: 40px; }
}

/* =========================================================================
   PAGE CONTACTO  (page-contacto.php) — enhanced design
   ========================================================================= */

/* ── Hero tweak ── */
.ct-hero { min-height: 340px; }
.ct-hero__sub {
	color: rgba(255,255,255,.75);
	font-size: 1.05rem;
	margin-top: 14px;
	letter-spacing: .02em;
}

/* ── Floating cards (overlap hero bottom) ── */
.ct-cards-wrap {
	margin-top: -56px;
	position: relative;
	z-index: 10;
	padding-bottom: 0;
}
.ct-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ct-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border-radius: var(--radius);
	padding: 24px 20px;
	box-shadow: 0 8px 40px rgba(11,26,46,.14);
	transition: box-shadow .2s, transform .2s;
}
.ct-card:hover { box-shadow: 0 16px 48px rgba(11,26,46,.18); transform: translateY(-3px); }
.ct-card__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	border-radius: 10px;
}
.ct-card__icon--amber { background: var(--amber);       color: var(--ink); }
.ct-card__icon--teal  { background: var(--teal);        color: #fff; }
.ct-card__icon--ink   { background: var(--ink);         color: #fff; }
.ct-card__label {
	font-size: .78rem; text-transform: uppercase; letter-spacing: .09em;
	color: var(--muted); margin: 0 0 4px;
}
.ct-card__value { font-size: .94rem; font-weight: 600; color: var(--ink); margin: 0; }
.ct-card__value--link { color: var(--ink); transition: color .15s; }
.ct-card__value--link:hover { color: var(--teal); }

/* ── Contact body: dark panel + form card ── */
.ct-body { padding: 72px 0 80px; background: var(--pale); }
.ct-body__inner {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 32px;
	align-items: start;
}

/* Left: dark contact panel */
.ct-panel {
	position: relative;
	background: var(--ink);
	border-radius: var(--radius);
	padding: 52px 44px 48px;
	overflow: hidden;
	color: #fff;
}
.ct-panel__dots {
	position: absolute;
	top: -20px; right: -20px;
	width: 120px; height: 120px;
	background-image: radial-gradient(circle, rgba(245,166,35,.4) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
	pointer-events: none;
}
.ct-panel__circle {
	position: absolute;
	bottom: -60px; left: -60px;
	width: 200px; height: 200px;
	border-radius: 50%;
	background: rgba(0,112,127,.18);
	pointer-events: none;
}
.ct-panel__eyebrow { color: var(--amber); margin-bottom: 14px; }
.ct-panel__title {
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3vw, 2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 18px;
}
.ct-panel__text { color: rgba(255,255,255,.7); line-height: 1.75; font-size: .95rem; margin-bottom: 32px; }
.ct-panel__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.ct-panel__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.btn--outline-white {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,.4);
}
.btn--outline-white:hover {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.7);
}
.ct-panel__social { margin-bottom: 28px; }
.ct-panel__social-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.ct-panel__social-links { display: flex; gap: 10px; }
.ct-panel__social-btn {
	display: grid; place-items: center;
	width: 36px; height: 36px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.18);
	color: rgba(255,255,255,.7);
	transition: background .15s, border-color .15s, color .15s;
}
.ct-panel__social-btn:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.ct-panel__hours {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .88rem;
	color: rgba(255,255,255,.55);
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 24px;
}

/* Right: form card */
.ct-form-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 4px 28px rgba(11,26,46,.08);
	overflow: hidden;
}
.ct-form-card__header {
	background: var(--ink);
	padding: 28px 40px;
	border-bottom: 3px solid var(--amber);
}
.ct-form-card__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 0 6px; }
.ct-form-card__sub { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; }
.ct-form-card__body { padding: 36px 40px; }

/* Form field styles (CF7 + native fallback) */
.ct-form-card__body .cl-cf7-row,
.cl-cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.ct-form-card__body .wpcf7-form,
.cl-native-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form-card__body label,
.cl-native-form label { font-size: .83rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 5px; }
.ct-form-card__body input,
.ct-form-card__body select,
.ct-form-card__body textarea,
.cl-native-form input,
.cl-native-form select,
.cl-native-form textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--line);
	border-radius: 8px;
	font-size: .95rem;
	font-family: var(--font-body);
	background: var(--pale);
	color: var(--ink);
	transition: border-color .15s, box-shadow .15s;
}
.ct-form-card__body input:focus,
.ct-form-card__body select:focus,
.ct-form-card__body textarea:focus,
.cl-native-form input:focus,
.cl-native-form select:focus,
.cl-native-form textarea:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(0,112,127,.12);
	background: #fff;
}
.ct-form-card__body textarea,
.cl-native-form textarea { resize: vertical; min-height: 120px; }
.ct-form-card__body .wpcf7-submit,
.ct-form-card__body button[type="submit"],
.cl-native-form button[type="submit"] {
	align-self: flex-start;
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

/* CF7 wrapper spans — must be block so textarea/select fill 100% width */
.wpcf7-form-control-wrap { display: block; }

/* CF7 validation states */
.wpcf7-not-valid-tip { font-size: .8rem; color: #e53e3e; margin-top: 4px; display: block; }
.wpcf7-response-output {
	border: none !important;
	border-radius: 8px;
	padding: 12px 16px !important;
	font-size: .9rem;
	margin: 8px 0 0 !important;
}
.wpcf7-mail-sent-ok  { background: rgba(56,161,105,.1); color: #276749; }
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng  { background: rgba(229,62,62,.08); color: #c53030; }

/* ── Full-width map ── */
.ct-map-wrap {
	position: relative;
	line-height: 0;
}
.ct-map-wrap iframe { display: block; }
.ct-map-card {
	position: absolute;
	bottom: 32px; right: 32px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 8px 40px rgba(11,26,46,.18);
	padding: 32px 36px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	min-width: 360px;
	max-width: 440px;
	border-left: 5px solid var(--amber);
}
.ct-map-card__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	background: var(--amber);
	color: var(--ink);
	border-radius: 50%;
}
.ct-map-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); display: block; margin-bottom: 6px; }
.ct-map-card__address { font-size: .95rem; color: var(--muted); margin: 0 0 16px; line-height: 1.5; }
.ct-map-card__link { font-size: .9rem; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 1100px) {
	.ct-body__inner { grid-template-columns: 340px 1fr; }
}
@media (max-width: 1024px) {
	.ct-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.ct-body__inner { grid-template-columns: 1fr; }
	.ct-panel { padding: 40px 32px; }
	.ct-form-card__body { padding: 28px 28px; }
	.ct-form-card__header { padding: 22px 28px; }
	.cl-cf7-row { grid-template-columns: 1fr; }
	.ct-map-card { position: static; max-width: 100%; border-radius: 0; box-shadow: none; border-left: none; border-top: 4px solid var(--amber); }
	.ct-map-wrap { display: flex; flex-direction: column; }
}
@media (max-width: 600px) {
	.ct-cards { grid-template-columns: 1fr; }
	.ct-cards-wrap { margin-top: -32px; }
	.ct-form-card__body { padding: 24px 20px; }
}

/* =========================================================================
   PAGE NOSOTROS — glamec style  (page-nosotros.php)
   ========================================================================= */

/* ── 1. Hero ── */
.nos-hero {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ink) var(--nos-hero-bg, none) center / cover no-repeat;
	overflow: hidden;
}
.nos-hero__overlay {
	position: absolute; inset: 0;
	background: rgba(11,26,46,.52);
}
/* Centered title */
.nos-hero__center {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 80px 20px;
}
.nos-hero__title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	color: #fff;
	margin: 0;
	line-height: 1.15;
	text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
/* Breadcrumb — bottom-left, amber parallelogram */
.nos-hero__breadcrumb {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--amber);
	color: var(--ink);
	font-size: .9rem;
	font-weight: 600;
	padding: 12px 52px 12px 28px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
}
.nos-hero__breadcrumb a      { color: var(--ink); }
.nos-hero__breadcrumb a:hover { text-decoration: underline; }
.nos-hero__breadcrumb span[aria-hidden] { color: rgba(11,26,46,.5); }

.btn--ghost {
	background: transparent;
	border: 2px solid rgba(255,255,255,.45);
	color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ── 2. Quiénes somos ── */
.nos-about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

/* Overlapping image group */
.nos-img-group {
	position: relative;
	padding-bottom: 60px;
	padding-left: 40px;
}
.nos-img-group__main {
	position: relative;
	margin-left: auto;
	width: 85%;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 48px rgba(11,26,46,.18);
	z-index: 1;
}
.nos-img-group__main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.nos-img-group__secondary {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 55%;
	border-radius: var(--radius);
	overflow: hidden;
	border: 5px solid #fff;
	box-shadow: 0 8px 32px rgba(11,26,46,.16);
	z-index: 2;
}
.nos-img-group__secondary img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }

/* Experience badge */
.nos-img-group__badge {
	position: absolute;
	top: 32px;
	left: 0;
	z-index: 3;
	background: var(--amber);
	color: var(--ink);
	border-radius: var(--radius);
	padding: 20px 22px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(245,166,35,.35);
	min-width: 120px;
}
.nos-img-group__badge-num {
	display: block;
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
}
.nos-img-group__badge-num sup { font-size: 1.2rem; }
.nos-img-group__badge-label {
	display: block;
	font-size: .74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 4px;
}

/* Dot grid decoration */
.nos-img-group__dots {
	position: absolute;
	bottom: 30px;
	right: -16px;
	width: 80px;
	height: 80px;
	background-image: radial-gradient(circle, var(--amber) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
	opacity: .45;
	z-index: 0;
}

/* Feature list */
.nos-about__lead { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 28px; }
.nos-features { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 20px; }
.nos-features__item { display: flex; gap: 16px; align-items: flex-start; }
.nos-features__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	background: rgba(245,166,35,.1);
	border-radius: 10px;
	color: var(--amber);
	margin-top: 2px;
}
.nos-features__icon i[class^="flaticon-"],
.nos-features__icon i[class*=" flaticon-"] { font-size: 22px; line-height: 1; }
.nos-features__title { display: block; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.nos-features__desc  { display: block; font-size: .9rem; color: var(--muted); }

/* Phone CTA */
.nos-about__footer { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nos-about__phone {
	display: flex; align-items: center; gap: 12px;
	color: var(--ink); font-weight: 600;
	transition: color .15s;
}
.nos-about__phone:hover { color: var(--teal); }
.nos-about__phone-icon {
	display: grid; place-items: center;
	width: 44px; height: 44px;
	background: var(--teal);
	border-radius: 50%;
	color: #fff;
	flex-shrink: 0;
}
.nos-about__phone small { display: block; font-size: .75rem; font-weight: 400; color: var(--muted); }

/* ── 3. Counters ── */
.nos-counters {
	background: var(--ink);
	padding: 60px 0;
}
.nos-counters__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	divide: x;
}
.nos-counter {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0 32px;
	border-right: 1px solid rgba(255,255,255,.1);
}
.nos-counter:last-child { border-right: none; }
.nos-counter__icon {
	flex-shrink: 0;
	color: var(--amber);
}
.nos-counter__icon i[class^="flaticon-"],
.nos-counter__icon i[class*=" flaticon-"] { font-size: 46px; line-height: 1; }
.nos-counter__num {
	display: block;
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--amber);
	line-height: 1;
}
.nos-counter__label { display: block; color: rgba(255,255,255,.65); font-size: .88rem; margin-top: 6px; }

/* ── 4. Services section ── */
.nos-services .services__grid { margin-top: 48px; }

/* ── 5. Testimonials ── */
.nos-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 64px; /* space for overflowing avatar */
}
.nos-tcard {
	background: #fff;
	border-radius: var(--radius);
	padding: 0 28px 28px;
	box-shadow: 0 4px 24px rgba(11,26,46,.08);
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Avatar — overlaps top edge of card */
.nos-tcard__avatar {
	width: 80px; height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 4px 14px rgba(11,26,46,.14);
	margin: -40px 0 16px;
	background: var(--teal);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.nos-tcard__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nos-tcard__initials { font-weight: 800; font-size: 1.5rem; color: #fff; }

/* Rating */
.nos-tcard__rating {
	display: flex; gap: 3px;
	color: var(--amber);
	margin-bottom: 14px;
}

/* Quote text */
.nos-tcard__text {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: .94rem;
	line-height: 1.7;
	flex: 1;
	font-style: italic;
}

/* Client info */
.nos-tcard__client { border-top: 1px solid var(--line); padding-top: 16px; }
.nos-tcard__name   { display: block; font-weight: 700; color: var(--ink); }
.nos-tcard__role   { display: block; font-size: .82rem; color: var(--teal); margin-top: 2px; }

/* ── 6. CTA strip ── */
.nos-cta {
	background: var(--teal);
	padding: 60px 0;
}
.nos-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.nos-cta__title { font-size: 1.8rem; color: #fff; margin-bottom: 6px; }
.nos-cta__sub   { color: rgba(255,255,255,.8); margin: 0; }
.nos-cta__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn--ghost-dark {
	background: transparent;
	border: 2px solid rgba(255,255,255,.4);
	color: #fff;
}
.btn--ghost-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.nos-counters__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.nos-counter { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 0 0 24px; }
	.nos-counter:nth-child(2n) { border-bottom: none; }
}
@media (max-width: 900px) {
	.nos-hero { min-height: 380px; padding-bottom: 56px; }
	.nos-about__inner { grid-template-columns: 1fr; gap: 80px; }
	.nos-img-group { max-width: 500px; }
	.nos-testimonials__grid { grid-template-columns: 1fr 1fr; }
	.nos-cta__inner { flex-direction: column; text-align: center; }
	.nos-cta__actions { justify-content: center; }
}
@media (max-width: 600px) {
	.nos-hero { min-height: 300px; }
	.nos-counters__grid { grid-template-columns: 1fr 1fr; }
	.nos-counter { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
	.nos-testimonials__grid { grid-template-columns: 1fr; }
	.nos-img-group__badge { top: auto; bottom: 100px; left: 10px; }
}

/* ── Page hero ── */
.page-hero-banner {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 60px;
	background: var(--ink) url('images/footer-bg.jpg') center / cover no-repeat;
}
.page-hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11,26,46,.92) 35%, rgba(11,26,46,.5));
}
.page-hero-banner__inner  { position: relative; z-index: 1; color: #fff; }
.page-hero-banner__eyebrow { color: var(--amber); margin-bottom: 10px; }
.page-hero-banner__title  { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 14px; }
.page-hero-banner__sub    { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 580px; margin: 0; }

/* ── About image + badge ── */
.about__media { position: relative; }
.about__img-wrap {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(11,26,46,.15);
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.about__badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--amber);
	color: var(--ink);
	border-radius: var(--radius);
	padding: 18px 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
	text-align: center;
	min-width: 130px;
}
.about__badge-num   { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about__badge-label { display: block; font-size: .78rem; font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ── Why-Us cards on light bg ── */
.why-us { background: var(--ink); }
.why-card {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: background .2s, border-color .2s, transform .2s;
}
.why-card:hover { background: rgba(255,255,255,.09); border-color: var(--amber); transform: translateY(-4px); }
.why-card__icon {
	width: 52px; height: 52px;
	display: grid; place-items: center;
	background: rgba(245,166,35,.12);
	color: var(--amber);
	border-radius: 12px;
	margin-bottom: 18px;
}
.why-card__icon i[class^="flaticon-"],
.why-card__icon i[class*=" flaticon-"] { font-size: 26px; line-height: 1; }
.why-card__title { font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.why-card__text  { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.65; margin: 0; }

/* ── CTA strip ── */
.about-cta { background: var(--teal); color: #fff; }
.about-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.about-cta__title { font-size: 1.7rem; color: #fff; margin-bottom: 6px; }
.about-cta__sub   { color: rgba(255,255,255,.8); margin: 0; }
.about-cta__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn--outline {
	background: transparent;
	border: 2px solid rgba(255,255,255,.5);
	color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
	.page-hero-banner { min-height: 280px; padding-bottom: 44px; }
	.about__badge { bottom: -16px; left: 16px; }
	.about-cta__inner { flex-direction: column; text-align: center; }
	.about-cta__actions { justify-content: center; }
	.why-us__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.why-us__grid { grid-template-columns: 1fr; }
	.about__badge { position: static; margin-top: 16px; display: inline-flex; gap: 12px; align-items: center; border-radius: var(--radius); }
}

/* =========================================================================
   WordPress — Required Classes
   Required by Theme Check — alignment, captions, accessibility, sticky posts.
   ========================================================================= */

/* ── Accessibility ── */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: var(--pale);
	border-radius: 4px;
	box-shadow: 0 0 0 2px var(--amber);
	clip: auto !important;
	clip-path: none;
	color: var(--ink);
	display: block;
	font-size: .9rem;
	font-weight: 700;
	height: auto;
	left: 6px;
	line-height: normal;
	padding: 12px 18px;
	position: fixed;
	top: 6px;
	width: auto;
	z-index: 100000;
}

/* ── Block / classic editor alignment ── */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em;  }
.aligncenter { display: block; margin-left: auto; margin-right: auto; clear: both; }
.alignwide   { margin-left:  calc(-1 * var(--gutter, 24px)); margin-right: calc(-1 * var(--gutter, 24px)); }
.alignfull   { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; width: 100vw; }

/* ── Image captions (Classic Editor / [caption] shortcode) ── */
.wp-caption       { max-width: 100%; }
.wp-caption img   { display: block; }
.wp-caption-text  { font-size: .84rem; color: var(--muted); text-align: center; margin-top: 6px; }
.gallery-caption  { font-size: .84rem; color: var(--muted); }

/* ── Sticky posts ── */
.sticky { /* mark sticky posts however design dictates; placeholder required by Theme Check */ }

/* ── Comment author highlight ── */
.bypostauthor > .comment-body { border-left: 3px solid var(--amber); padding-left: 12px; }

/* ── WordPress tag cloud ── */
.tag-cloud-link { display: inline-block; margin: 3px; }
