/* ==========================================================================
   JUVENCIA — Design system
   "Quiet Premium / Soft Structuralism". Brand palette + Montserrat.
   Authored as vanilla CSS (no framework). Motion in juvencia.js.
   ========================================================================== */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
	--cyan: #00aaaa;
	--cyan-deep: #057f7f;          /* accessible cyan for small text/links */
	--cyan-ink: #044f4f;           /* darkest cyan for headings on light */
	--sage: #c6e2d0;
	--sage-soft: #ddeee4;
	--palo: #f29e9f;
	--palo-deep: #e07e80;
	--nude: #fbe0d4;
	--bg: #ffffff;
	--bg-2: #f5f5f3;
	--ink: #383838;
	--ink-soft: #5d6664;
	--white: #ffffff;

	--hair: rgba(0, 0, 0, 0.08);
	--hair-strong: rgba(0, 0, 0, 0.13);

	--shadow: 0 28px 70px -34px rgba(0, 30, 30, 0.13);
	--shadow-soft: 0 18px 44px -26px rgba(0, 30, 30, 0.09);
	--shadow-card: 0 22px 50px -30px rgba(0, 30, 30, 0.10);

	--r: 2rem;
	--r-lg: 2.5rem;
	--r-sm: 1.1rem;
	--r-pill: 999px;

	--container: 1200px;
	--container-wide: 1360px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section-y: clamp(5rem, 9vw, 9rem);

	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);

	--ff: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- 2. Reset / base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.juv {
	margin: 0;
	font-family: var(--ff);
	font-weight: 300;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.juv img { max-width: 100%; height: auto; display: block; }
body.juv a { color: var(--cyan-deep); text-decoration: none; transition: color 0.3s var(--ease); }
body.juv a:hover { color: var(--palo-deep); }

body.juv h1, body.juv h2, body.juv h3, body.juv h4 {
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--cyan-ink);
	margin: 0 0 0.6em;
	overflow-wrap: break-word;
}
body.juv p { margin: 0 0 1.1em; }
body.juv p:last-child { margin-bottom: 0; }

body.juv ul, body.juv ol { margin: 0 0 1.1em; padding-left: 1.2em; }

:where(body.juv) :focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
	border-radius: 4px;
}

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

/* ---- 3. Layout ---------------------------------------------------------- */
.juv-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.juv-container--wide { max-width: var(--container-wide); }
.juv-section { padding-block: var(--section-y); position: relative; }
.juv-section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.juv-bg-sage { background: linear-gradient(160deg, #ffffff 0%, #f3f8f5 100%); border-bottom: 1px solid var(--hair); }
.juv-bg-nude { background: linear-gradient(160deg, #ffffff 0%, #fdf0ea 100%); border-bottom: 1px solid var(--hair); }
.juv-bg-white { background: #f9faf8; }

/* Type scale */
.juv-display { font-size: clamp(2.4rem, 5.4vw, 4.3rem); font-weight: 500; line-height: 1.04; letter-spacing: -0.025em; }
.juv-h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.juv-h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
.juv-h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.juv-lead { font-size: clamp(1.075rem, 1.5vw, 1.25rem); font-weight: 300; color: var(--ink-soft); max-width: 56ch; }
.juv-measure { max-width: 65ch; }
.juv-accent { color: var(--cyan); }
.juv-accent-rose { color: var(--palo-deep); }

/* ---- 4. Eyebrow + heading ---------------------------------------------- */
.juv-eyebrow {
	display: inline-flex; align-items: center; gap: 0.5em;
	font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.22em; color: var(--cyan-deep);
	padding: 0.45em 1em; border-radius: var(--r-pill);
	background: rgba(0, 170, 170, 0.08);
	border: 1px solid var(--hair);
	margin-bottom: 1.2rem;
}
.juv-heading { margin-bottom: clamp(2rem, 4vw, 3rem); }
.juv-heading--center { text-align: center; margin-inline: auto; }
.juv-heading--center .juv-heading__text { margin-inline: auto; }
.juv-heading__title { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
.juv-heading__text { color: var(--ink-soft); font-weight: 300; max-width: 60ch; font-size: 1.1rem; }

/* ---- 5. Buttons --------------------------------------------------------- */
.juv-btn {
	display: inline-flex; align-items: center; gap: 0.65rem;
	font-family: var(--ff); font-weight: 500; font-size: 0.94rem; line-height: 1;
	padding: 0.85rem 1.6rem;
	border-radius: var(--r-pill); border: 1px solid transparent;
	cursor: pointer; text-decoration: none;
	transition: background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.juv-btn__icon {
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 1.1rem; flex: none;
}
.juv-btn:active { transform: scale(0.97); }

body.juv .juv-btn--primary { background: var(--cyan-deep); color: #fff; }
body.juv .juv-btn--primary .juv-btn__icon { color: rgba(255,255,255,0.85); }
body.juv .juv-btn--primary:hover { background: var(--cyan-ink); color: #fff; }

body.juv .juv-btn--secondary { background: var(--palo); color: #4a2a2a; }
body.juv .juv-btn--secondary .juv-btn__icon { color: rgba(74,42,42,0.7); }
body.juv .juv-btn--secondary:hover { background: var(--palo-deep); color: #fff; }

body.juv .juv-btn--ghost { background: transparent; color: var(--cyan-deep); border-color: var(--hair-strong); }
body.juv .juv-btn--ghost .juv-btn__icon { color: var(--cyan-deep); }
body.juv .juv-btn--ghost:hover { background: rgba(0,170,170,0.07); color: var(--cyan-ink); }

body.juv .juv-btn--light { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
body.juv .juv-btn--light .juv-btn__icon { color: rgba(255,255,255,0.85); }
body.juv .juv-btn--light:hover { background: rgba(255,255,255,0.3); color: #fff; }

.juv-link-arrow {
	display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500;
	color: var(--cyan-deep);
}
.juv-link-arrow i { transition: transform 0.4s var(--ease); }
.juv-link-arrow:hover i { transform: translateX(4px); }

/* ---- 6. Decorative concentric waves (hero / banner signature) ----------- */
.juv-waves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.juv-waves::before {
	content: ""; position: absolute;
	width: 120vh; height: 120vh; right: -28vh; top: 50%; translate: 0 -50%;
	border-radius: 50%;
	background:
		repeating-radial-gradient(circle at center,
			transparent 0 38px,
			rgba(0, 170, 170, 0.10) 38px 39px);
	-webkit-mask-image: radial-gradient(circle at center, #000 60%, transparent 72%);
	mask-image: radial-gradient(circle at center, #000 60%, transparent 72%);
}
.juv-blob {
	position: absolute; border-radius: 50%; filter: blur(8px);
	background: radial-gradient(circle at 30% 30%, rgba(198, 226, 208, 0.7), rgba(198, 226, 208, 0) 70%);
	pointer-events: none; z-index: 0;
}

/* ---- 7. Header / top bar / nav ----------------------------------------- */
.juv-topbar {
	background: var(--cyan); color: #fff;
	font-size: 0.8rem; font-weight: 400;
}
.juv-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.juv-topbar__group { display: flex; align-items: center; gap: 1.4rem; }
.juv-topbar__group--meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
body.juv .juv-topbar a { color: #fff; display: inline-flex; align-items: center; gap: 0.4rem; }
body.juv .juv-topbar a:hover { color: rgba(255,255,255,0.7); }
.juv-topbar i { font-size: 1.05rem; }
.juv-topbar__socials { display: flex; align-items: center; gap: 0.9rem; }
body.juv .juv-topbar__socials a { font-size: 1.2rem; width: auto; height: auto; background: none; border-radius: 0; padding: 0; }
body.juv .juv-topbar__socials a:hover { background: none; color: rgba(255,255,255,0.7); }

.juv-header { position: sticky; top: 0; z-index: 60; transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.juv-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }
.juv-header.is-stuck { background: rgba(255, 255, 255, 0.90); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--hair), var(--shadow-soft); }

.juv-logo { display: inline-flex; align-items: center; gap: 0.7rem; flex: none; }
.juv-logo img { height: 40px; width: auto; }
.juv-logo__text { display: flex; flex-direction: column; line-height: 1; }
.juv-logo__name { font-size: 1.45rem; font-weight: 600; color: var(--cyan-ink); letter-spacing: -0.01em; }
.juv-logo__slogan { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cyan-deep); margin-top: 4px; }

.juv-nav { display: flex; align-items: center; gap: 0.4rem; }
.juv-nav__list { display: flex; align-items: center; gap: 0.2rem; list-style: none; margin: 0; padding: 0; }
.juv-nav__list a, .juv-nav__toggle {
	display: inline-flex; align-items: center; gap: 0.35rem;
	font-weight: 500; font-size: 0.95rem; color: var(--ink);
	padding: 0.6rem 0.95rem; border-radius: var(--r-pill);
	background: none; border: 0; cursor: pointer; font-family: var(--ff);
	transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.juv-nav__list a:hover, .juv-nav__toggle:hover,
.juv-nav__item.is-current > a { color: var(--cyan-deep); background: rgba(0,170,170,0.07); }
.juv-nav__item--has-mega { position: static; }
.juv-nav__toggle i { font-size: 0.9rem; transition: transform 0.4s var(--ease); }
.juv-nav__item--has-mega:hover .juv-nav__toggle i,
.juv-nav__item--has-mega:focus-within .juv-nav__toggle i { transform: rotate(180deg); }

.juv-header__cta { display: flex; align-items: center; gap: 0.75rem; }

/* Mega menu */
.juv-megamenu {
	position: absolute; left: 0; right: 0; top: 100%;
	background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(18px);
	border-top: 1px solid var(--hair); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
	z-index: 59;
}
.juv-nav__item--has-mega:hover .juv-megamenu,
.juv-nav__item--has-mega:focus-within .juv-megamenu { opacity: 1; visibility: visible; transform: translateY(0); }
.juv-megamenu__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; padding-block: 2.5rem; }
.juv-megacol__head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.juv-megacol__head i { font-size: 1.4rem; color: var(--cyan); }
.juv-megacol__title { font-weight: 600; font-size: 0.92rem; color: var(--cyan-ink); }
.juv-megacol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem; }
.juv-megacol li a { display: block; padding: 0.4rem 0.5rem; border-radius: 0.6rem; font-size: 0.9rem; font-weight: 400; color: var(--ink-soft); }
.juv-megacol li a:hover { background: rgba(0,170,170,0.07); color: var(--cyan-deep); }

/* Hamburger */
.juv-burger { display: none; width: 46px; height: 46px; border: 1px solid var(--hair-strong); border-radius: var(--r-pill); background: none; cursor: pointer; position: relative; flex: none; }
.juv-burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--cyan-ink); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.juv-burger span:nth-child(1) { top: 17px; }
.juv-burger span:nth-child(2) { top: 23px; }
.juv-burger span:nth-child(3) { top: 29px; }
body.juv-nav-open .juv-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.juv-nav-open .juv-burger span:nth-child(2) { opacity: 0; }
body.juv-nav-open .juv-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.juv-mobile { position: fixed; inset: 0; z-index: 55; background: rgba(255,255,255,0.96); backdrop-filter: blur(22px); padding: 110px var(--gutter) 3rem; overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s; }
body.juv-nav-open .juv-mobile { opacity: 1; visibility: visible; }
.juv-mobile__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.juv-mobile__list > li > a, .juv-mobile__acc-btn {
	font-size: 1.5rem; font-weight: 500; color: var(--cyan-ink); padding: 0.6rem 0;
	display: flex; align-items: center; justify-content: space-between; width: 100%;
	background: none; border: 0; font-family: var(--ff); cursor: pointer;
	border-bottom: 1px solid var(--hair);
	opacity: 0; transform: translateY(18px);
}
body.juv-nav-open .juv-mobile__list > li > a,
body.juv-nav-open .juv-mobile__acc-btn { animation: juvRevealUp 0.6s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 70ms + 150ms); }
.juv-mobile__sub { list-style: none; margin: 0; padding: 0.4rem 0 0.8rem 0.6rem; display: none; }
.juv-mobile__sub.is-open { display: grid; gap: 0.2rem; }
.juv-mobile__sub a { font-size: 1.02rem; color: var(--ink-soft); padding: 0.35rem 0; display: block; }
.juv-mobile__acc-btn i { transition: transform 0.4s var(--ease); }
.juv-mobile__acc-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.juv-mobile__cta { margin-top: 2rem; }

@keyframes juvRevealUp { to { opacity: 1; transform: translateY(0); } }

/* ---- 8. Hero carousel --------------------------------------------------- */
.juv-hero { position: relative; overflow: hidden; }
.juv-hero__slides { position: relative; width: 100%; }
.juv-hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.9s var(--ease), visibility 0.9s; }
.juv-hero__slide.is-active { position: relative; opacity: 1; visibility: visible; }
.juv-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: clamp(680px, 92vh, 960px);
	align-items: center;
	gap: clamp(2rem, 4vw, 5rem);
}
.juv-hero__grid > * { min-width: 0; }
.juv-hero__text {
	position: relative; z-index: 2;
	padding-block: clamp(3rem, 8vh, 6rem);
	padding-right: clamp(1rem, 3vw, 3rem);
	display: flex; flex-direction: column; justify-content: center;
	height: 100%;
}
.juv-hero__title { font-size: clamp(2.2rem, 5.5vw, 4.6rem); font-weight: 500; line-height: 1.04; letter-spacing: -0.028em; color: var(--cyan-ink); margin-bottom: 1.3rem; overflow-wrap: break-word; }
.juv-hero__title b, .juv-hero__title .hl { color: var(--cyan); font-weight: 600; }
.juv-hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); font-weight: 300; color: var(--ink-soft); max-width: 46ch; margin-bottom: 2.2rem; }
.juv-hero__media {
	position: relative; z-index: 1;
	align-self: stretch;
	overflow: hidden;
	border-radius: var(--r-lg);
	margin-block: clamp(1.5rem, 3vh, 3rem);
	box-shadow: var(--shadow);
}
.juv-hero__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: 50% 15%;
	display: block;
}

.juv-hero__dots { position: absolute; bottom: 2rem; left: 50%; translate: -50% 0; display: flex; gap: 0.6rem; z-index: 5; }
.juv-hero__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--hair-strong); cursor: pointer; padding: 0; transition: width 0.4s var(--ease), background-color 0.4s var(--ease); }
.juv-hero__dot.is-active { width: 30px; border-radius: var(--r-pill); background: var(--cyan); }
.juv-hero__arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 var(--gutter); pointer-events: none; z-index: 5; }
.juv-hero__arrow { pointer-events: all; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--hair-strong); background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); color: var(--cyan-ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: var(--shadow-soft); transition: background-color 0.3s var(--ease), transform 0.3s var(--ease); }
.juv-hero__arrow:hover { background: #fff; transform: scale(1.08); }

/* ---- 9. Cards (double-bezel) ------------------------------------------- */
.juv-grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.juv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.juv-grid--2 { grid-template-columns: repeat(2, 1fr); }
.juv-grid--4 { grid-template-columns: repeat(4, 1fr); }

.juv-card {
	position: relative; padding: 0.55rem; border-radius: var(--r-lg);
	background: rgba(255,255,255,0.5); border: 1px solid var(--hair);
	box-shadow: var(--shadow-card);
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
	height: 100%;
}
.juv-card:hover { transform: translateY(-6px); box-shadow: 0 34px 64px -30px rgba(0,0,0,0.14); }
.juv-card__inner {
	position: relative; height: 100%; background: var(--white);
	border-radius: calc(var(--r-lg) - 0.55rem); overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
	display: flex; flex-direction: column;
}
.juv-card__media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.juv-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.juv-card:hover .juv-card__media img { transform: scale(1.05); }
.juv-card__icon {
	position: absolute; top: 1rem; left: 1rem; width: 3rem; height: 3rem; border-radius: var(--r-pill);
	background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); color: var(--cyan);
	display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem;
	box-shadow: var(--shadow-soft);
}
.juv-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.juv-card__title { font-size: 1.2rem; font-weight: 600; color: var(--cyan-ink); margin: 0; }
.juv-card__text { font-size: 0.96rem; font-weight: 300; color: var(--ink-soft); margin: 0; flex: 1; }
.juv-card__foot { margin-top: 0.4rem; }
.juv-card__count { font-size: 0.78rem; color: var(--cyan-deep); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* icon-only feature card (no image) */
.juv-feature { padding: 2rem 1.8rem; border-radius: var(--r); background: var(--white); border: 1px solid var(--hair); box-shadow: var(--shadow-soft); height: 100%; transition: transform 0.5s var(--ease); }
.juv-feature:hover { transform: translateY(-5px); }
.juv-feature__icon { width: 3.2rem; height: 3.2rem; border-radius: var(--r-pill); background: rgba(0,170,170,0.08); color: var(--cyan); display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 1.1rem; }
.juv-feature h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.juv-feature p { font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; margin: 0; }

/* ---- 10. Stats ---------------------------------------------------------- */
.juv-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.juv-stat { text-align: left; padding: 1.6rem 1.4rem; border-radius: var(--r); background: var(--white); border: 1px solid var(--hair); box-shadow: var(--shadow-soft); }
.juv-stat__icon { font-size: 1.9rem; color: var(--cyan); margin-bottom: 0.6rem; display: block; }
.juv-stat__num { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; color: var(--cyan-ink); line-height: 1.05; letter-spacing: -0.02em; }
.juv-stat__label { font-size: 0.92rem; color: var(--ink-soft); font-weight: 300; margin-top: 0.3rem; }

/* ---- 11. Split / editorial blocks -------------------------------------- */
.juv-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.juv-split > *, .juv-svc-hero__grid > * { min-width: 0; }
.juv-split--media-left { direction: rtl; }
.juv-split--media-left > * { direction: ltr; }
.juv-split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.juv-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.juv-duo img { border-radius: var(--r); box-shadow: var(--shadow-soft); width: 100%; height: 100%; object-fit: cover; }
.juv-duo > *:first-child { margin-top: 2.5rem; }
.juv-richtext { font-weight: 300; color: var(--ink-soft); }
.juv-richtext h3 { color: var(--cyan-ink); }
.juv-richtext strong { color: var(--ink); font-weight: 500; }

/* ---- 12. Testimonials --------------------------------------------------- */
.juv-testi { padding: 1.9rem 1.8rem; border-radius: var(--r); background: var(--white); border: 1px solid var(--hair); box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.juv-testi__quote { color: var(--palo); font-size: 2rem; line-height: 1; }
.juv-testi__text { font-weight: 300; color: var(--ink); font-size: 1rem; flex: 1; }
.juv-testi__foot { display: flex; align-items: center; gap: 0.8rem; }
.juv-testi__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.juv-testi__name { font-weight: 600; color: var(--cyan-ink); font-size: 0.95rem; }
.juv-stars { color: var(--palo); font-size: 0.95rem; display: inline-flex; gap: 1px; }

/* ---- 13. Banner cita full-bleed ---------------------------------------- */
.juv-cta-banner { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--cyan) 0%, #00bdbd 55%, #4fd0c4 100%); color: #fff; border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4.5rem); }
.juv-cta-banner--flat { border-radius: 0; }
.juv-cta-banner__inner { position: relative; z-index: 2; max-width: 720px; }
.juv-cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.juv-cta-banner p { color: rgba(255,255,255,0.9); font-weight: 300; font-size: 1.1rem; margin-bottom: 2rem; }
.juv-cta-banner__waves { position: absolute; inset: 0; z-index: 1; opacity: 0.5; }
.juv-cta-banner__waves::before { content: ""; position: absolute; width: 80vh; height: 80vh; right: -10vh; top: -20vh; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 34px, rgba(255,255,255,0.12) 34px 35px); }
.juv-cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- 14. Sedes ---------------------------------------------------------- */
.juv-sede { padding: 1.8rem; border-radius: var(--r); background: var(--white); border: 1px solid var(--hair); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 0.7rem; }
.juv-sede__name { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--cyan-ink); font-size: 1.15rem; }
.juv-sede__name i { color: var(--cyan); font-size: 1.4rem; }
.juv-sede iframe, .juv-sede__map { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--r-sm); margin-top: 0.5rem; }

/* ---- 15. Service single page ------------------------------------------- */
.juv-breadcrumbs { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.juv-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 0; padding: 0; }
.juv-breadcrumbs a { color: var(--cyan-deep); }
.juv-breadcrumbs__sep { color: var(--hair-strong); display: inline-flex; }
.juv-breadcrumbs [aria-current="page"] { color: var(--ink); }

.juv-svc-hero { position: relative; overflow: hidden; }
.juv-svc-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.juv-svc-hero__icon { width: 3.6rem; height: 3.6rem; border-radius: var(--r-pill); background: rgba(0,170,170,0.1); color: var(--cyan); display: inline-flex; align-items: center; justify-content: center; font-size: 1.9rem; margin-bottom: 1.2rem; }
.juv-svc-hero__cat { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--cyan-deep); font-weight: 600; }
.juv-svc-hero__title { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 500; color: var(--cyan-ink); margin: 0.6rem 0 1rem; letter-spacing: -0.02em; }
.juv-svc-hero__sub { font-size: 1.15rem; font-weight: 300; color: var(--ink-soft); max-width: 48ch; margin-bottom: 2rem; }
.juv-svc-hero__media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.juv-aviso { font-style: italic; font-size: 0.92rem; color: var(--ink-soft); background: rgba(198,226,208,0.35); border-left: 3px solid var(--cyan); padding: 1rem 1.3rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 0; }

.juv-benefit { display: flex; gap: 1rem; padding: 1.5rem; border-radius: var(--r); background: var(--white); border: 1px solid var(--hair); box-shadow: var(--shadow-soft); height: 100%; }
.juv-benefit__icon { color: var(--cyan); font-size: 1.6rem; flex: none; }
.juv-benefit h3 { font-size: 1.05rem; margin: 0 0 0.3rem; color: var(--cyan-ink); }
.juv-benefit p { font-size: 0.93rem; font-weight: 300; color: var(--ink-soft); margin: 0; }

.juv-checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.6rem; }
.juv-checklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 300; }
.juv-checklist li i { color: var(--cyan); font-size: 1.25rem; flex: none; margin-top: 2px; }

/* FAQ accordion */
.juv-faq { border-top: 1px solid var(--hair); }
.juv-faq__item { border-bottom: 1px solid var(--hair); }
.juv-faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--ff); font-weight: 500; font-size: 1.08rem; color: var(--cyan-ink); padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.juv-faq__q i { color: var(--cyan); transition: transform 0.4s var(--ease); flex: none; }
.juv-faq__q[aria-expanded="true"] i { transform: rotate(45deg); }
.juv-faq__a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.juv-faq__a-inner { padding: 0 0 1.4rem; color: var(--ink-soft); font-weight: 300; max-width: 70ch; }

/* ---- 16. Forms ---------------------------------------------------------- */
.juv-form { display: grid; gap: 1.2rem; }
.juv-field { display: grid; gap: 0.45rem; }
.juv-field label { font-size: 0.85rem; font-weight: 500; color: var(--cyan-ink); }
.juv-field input, .juv-field select, .juv-field textarea {
	font-family: var(--ff); font-size: 1rem; font-weight: 300; color: var(--ink);
	padding: 0.85rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--hair-strong);
	background: var(--white); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.juv-field input:focus, .juv-field select:focus, .juv-field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,170,170,0.12); }
.juv-field textarea { resize: vertical; min-height: 130px; }
.juv-field--hp { position: absolute; left: -9999px; }
.juv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.juv-notice { padding: 0.9rem 1.2rem; border-radius: var(--r-sm); font-size: 0.95rem; }
.juv-notice--ok { background: rgba(198,226,208,0.5); color: #1f5d3e; border: 1px solid #9cc9ad; }
.juv-notice--err { background: var(--nude); color: #8a3b3d; border: 1px solid var(--palo); }

/* ---- 17. Footer --------------------------------------------------------- */
.juv-footer { background: linear-gradient(180deg, #06595a 0%, #044546 100%); color: rgba(255,255,255,0.88); padding-top: clamp(3.5rem, 7vw, 6rem); margin-top: 0; }
body.juv .juv-footer a { color: rgba(255,255,255,0.88); }
body.juv .juv-footer a:hover { color: #fff; }
.juv-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 3rem; }
.juv-footer__brand img { height: 56px; margin-bottom: 1rem; }
.juv-footer__name { font-size: 1.5rem; font-weight: 600; color: #fff; }
.juv-footer__slogan { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.60); margin: 4px 0 1rem; }
.juv-footer__bio { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.75); max-width: 34ch; }
.juv-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 1.1rem; }
.juv-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.juv-footer__contact li { display: flex; gap: 0.6rem; font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.75); }
.juv-footer__contact i { color: rgba(255,255,255,0.55); font-size: 1.2rem; flex: none; }
.juv-footer__socials { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.juv-footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: background-color 0.3s var(--ease); }
.juv-footer__socials a:hover { background: rgba(255,255,255,0.14); }
.juv-footer__bar { border-top: 1px solid rgba(255,255,255,0.14); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.50); }
.juv-footer__bar nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
body.juv .juv-footer__bar a { color: rgba(255,255,255,0.55); }
body.juv .juv-footer__bar a:hover { color: #fff; }

/* WhatsApp float */
.juv-wa { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); transition: transform 0.4s var(--ease); }
.juv-wa:hover { transform: scale(1.08); color: #fff; }
.juv-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: juvPulse 2.4s var(--ease) infinite; }
@keyframes juvPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---- 18. Reveal animation ---------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease); transition-delay: calc(var(--d, 0) * 1ms); }
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }

/* ---- 19. Responsive ----------------------------------------------------- */
@media (max-width: 1024px) {
	.juv-megamenu__grid { grid-template-columns: repeat(2, 1fr); }
	.juv-stats { grid-template-columns: repeat(2, 1fr); }
	.juv-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.juv-nav, .juv-header__cta .juv-btn { display: none; }
	.juv-burger { display: block; }
	.juv-header__cta { display: none; }
	.juv-hero__grid, .juv-svc-hero__grid, .juv-split { grid-template-columns: 1fr; }
	.juv-split--media-left { direction: ltr; }
	.juv-hero { padding-block: 2rem 5rem; }
	.juv-hero__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
	.juv-hero__media { order: -1; height: 280px; margin-block: 0; border-radius: var(--r); }
	.juv-hero__media img { border-radius: var(--r); }
	.juv-hero__text { padding-block: 1.5rem 1rem; height: auto; }
	.juv-hero__arrows { top: auto; bottom: 1.2rem; transform: none; padding: 0 var(--gutter); }
	.juv-hero__arrow { width: 44px; height: 44px; font-size: 1.1rem; }
	.juv-grid--3, .juv-grid--2 { grid-template-columns: 1fr; }
	.juv-checklist { grid-template-columns: 1fr; }
	.juv-footer__grid { grid-template-columns: 1fr 1fr; }
	.juv-form__row { grid-template-columns: 1fr; }
	.juv-duo > *:first-child { margin-top: 0; }
}
@media (max-width: 560px) {
	.juv-stats, .juv-footer__grid { grid-template-columns: 1fr; }
	.juv-topbar__group--meta { display: none; }
	.juv-logo__slogan { display: none; }
}

/* ---- 20. Reduced motion ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; filter: none; }
}
