/**
 * Landing Page — Local SEO. Flat, mockup-faithful design system.
 *
 * Self-contained: does NOT reuse the parent theme's skeuomorphic .btn or card
 * styles (those caused the puffy buttons / uneven spacing). Everything is
 * namespaced under .acme-llp / .acme-llp-page so it can never leak.
 * Colours reuse parent design tokens; layout/spacing are defined here.
 *
 * @package acme-theme-child
 */

/* ============================================================
   TOKENS (scoped)
   ============================================================ */
.acme-llp-page {
	--llp-blue: #1d4ed8;
	--llp-blue-dark: #1e3a8a;
	--llp-navy: #0e2140;
	--llp-green: #16a34a;
	--llp-ink: #16223a;
	--llp-muted: #5a6b86;
	--llp-line: #e6eaf1;
	--llp-chip: #eaf1ff;
	--llp-bg: #f6f8fc;
	--llp-radius: 12px;
	--llp-radius-sm: 9px;
	--llp-gap: 16px;
	--llp-pad: clamp(2.25rem, 5.5vw, 4rem);
	--llp-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 16px rgba(16,24,40,.06);

	/* ---- Fluid type scale (min ≈360px → max ≈1440px), 100% fluid ---- */
	--fz-xs:    clamp(0.8125rem, 0.78rem + 0.18vw, 0.9rem);    /* 13 → 14.4  captions / trust sub */
	--fz-sm:    clamp(0.9375rem, 0.89rem + 0.22vw, 1rem);      /* 15 → 16    descriptions / body */
	--fz-base:  clamp(1rem, 0.95rem + 0.22vw, 1.0625rem);      /* 16 → 17    section subcopy / FAQ answer */
	--fz-lead:  clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);     /* 17 → 19    hero subcopy */
	--fz-title: clamp(1.0625rem, 1rem + 0.28vw, 1.1875rem);    /* 17 → 19    card / course titles */
}

/* ============================================================
   BUTTONS — flat, consistent, proper icon gap
   ============================================================ */
.acme-llp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	font-family: inherit;
	font-size: .98rem;
	font-weight: 600;
	line-height: 1.1;
	padding: .8em 1.25em;
	min-height: 46px;
	border-radius: var(--llp-radius-sm);
	border: 1.5px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .05s ease;
	white-space: nowrap;
}
.acme-llp-btn:active { transform: translateY(1px); }
.acme-llp-btn i { font-size: 1em; line-height: 0; }

.acme-llp-btn--primary { background: var(--llp-blue); color: #fff; }
.acme-llp-btn--primary:hover { background: var(--llp-blue-dark); color: #fff; }

.acme-llp-btn--wa { background: var(--llp-green); color: #fff; }
.acme-llp-btn--wa:hover { background: #12813b; color: #fff; }

.acme-llp-btn--outline { background: #fff; color: var(--llp-blue); border-color: #c9d6f0; }
.acme-llp-btn--outline:hover { border-color: var(--llp-blue); background: #f5f8ff; color: var(--llp-blue); }

.acme-llp-btn--ghost { background: var(--llp-chip); color: var(--llp-blue); }
.acme-llp-btn--ghost:hover { background: #dbe6ff; }

.acme-llp-btn--sm { min-height: 38px; padding: .5em .9em; font-size: .85rem; }
.acme-llp-btn--block { width: 100%; }
.acme-llp-btn--icon { padding: 0; width: 46px; min-width: 46px; }

/* On-navy variants (final CTA) */
.acme-llp-btn--on-navy { background: #fff; color: var(--llp-navy); }
.acme-llp-btn--on-navy:hover { background: #eef2fb; color: var(--llp-navy); }

/* ============================================================
   SECTIONS & HEADINGS
   ============================================================ */
.acme-llp .container--narrow { max-width: 860px; margin-inline: auto; }
.acme-llp-section { padding-block: var(--llp-pad); }
.acme-llp-section--tint { background: var(--llp-bg); }

.acme-llp-head { text-align: center; max-width: 720px; margin: 0 auto clamp(1.75rem, 4vw, 2.5rem); }
.acme-llp-eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--llp-blue);
	background: var(--llp-chip);
	padding: .35em .9em;
	border-radius: 999px;
	margin-bottom: .85rem;
}
.acme-llp-h2 {
	font-size: clamp(1.5rem, 3.4vw, 2.1rem);
	line-height: 1.2;
	font-weight: 800;
	color: #1e40af; /* royal blue section headings (matches mockup) */
	margin: 0 0 .6rem;
}
.acme-llp-sub { font-size: 1rem; line-height: 1.6; color: var(--llp-muted); margin: 0; }

/* Cards */
.acme-llp-card {
	background: #fff;
	border: 1px solid var(--llp-line);
	border-radius: var(--llp-radius);
	padding: clamp(1.1rem, 2.6vw, 1.5rem);
	box-shadow: var(--llp-shadow);
}
.acme-llp-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 11px;
	font-size: 1.2rem;
	color: var(--llp-blue);
	background: var(--llp-chip);
	margin-bottom: .85rem;
}
.acme-llp-card__title { font-size: 1.02rem; font-weight: 700; color: var(--llp-ink); margin: 0 0 .3rem; line-height: 1.25; }
.acme-llp-card__desc { font-size: .9rem; line-height: 1.55; color: var(--llp-muted); margin: 0; }

.acme-llp-grid { display: grid; gap: var(--llp-gap); grid-template-columns: 1fr; }

/* ============================================================
   HEADER — own styles, solid, no overlap
   ============================================================ */
/* The parent theme adds ~104px top padding to .site-content to clear its
   FIXED global header. Our landing header is in-flow, so that padding just
   creates a blank white band above the hero. Remove it (landing page only). */
.acme-llp-page #content.site-content { padding-top: 0; }

/* The 1350px container that started here is now the SITE-WIDE default, set
   once in assets/css/global.css — this landing-only override was an exact
   duplicate of it and has been removed. Only the narrow variant stays: the
   enquiry form still needs to sit tighter than a full-width section so its
   fields don't stretch. */
.acme-llp-page .container.container--narrow { max-width: 820px; }

.acme-llp-header {
	position: sticky; top: 0; z-index: 900;
	background: #fff;
	border-bottom: 1px solid var(--llp-line);
	box-shadow: 0 1px 6px rgba(16,24,40,.05);
}
.acme-llp-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px; min-height: 62px;
}
.acme-llp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.acme-llp-brand__img { width: 38px; height: 38px; display: block; }
.acme-llp-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.acme-llp-brand__text b { font-size: 1.05rem; font-weight: 800; color: var(--llp-ink); }
.acme-llp-brand__text span { font-size: .95rem; font-weight: 700; color: var(--llp-blue); }
.acme-llp-header__actions { display: flex; align-items: center; gap: 8px; }
.acme-llp-header__call-label { display: inline; }

/* ============================================================
   HERO
   ============================================================ */
.acme-llp-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(180deg, #e9f1ff 0%, #f3f8ff 45%, #ffffff 100%);
	/* balanced, device-aware top/bottom spacing (overrides .acme-llp-section) */
	padding-top: clamp(1.75rem, 4.5vw, 3.25rem);
	padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
/* Glassmorphic background blobs */
.acme-llp-hero::before,
.acme-llp-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	z-index: -2;
	pointer-events: none;
}
.acme-llp-hero::before {
	top: -140px; right: -70px;
	width: clamp(260px, 34vw, 460px); height: clamp(260px, 34vw, 460px);
	background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, .35), rgba(37, 99, 235, 0) 70%);
	filter: blur(64px);
}
.acme-llp-hero::after {
	bottom: -170px; left: -90px;
	width: clamp(240px, 30vw, 420px); height: clamp(240px, 30vw, 420px);
	background: radial-gradient(circle at 30% 30%, rgba(22, 163, 74, .20), rgba(22, 163, 74, 0) 70%);
	filter: blur(72px);
}
.acme-llp-hero__inner {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}
.acme-llp-hero__title { font-size: clamp(2rem, 5.6vw, 3.3rem); line-height: 1.12; font-weight: 800; color: var(--llp-ink); margin: 0 0 1rem; }
.acme-llp-hero__title .accent { color: var(--llp-blue); }
.acme-llp-hero__sub { font-size: 1.06rem; line-height: 1.65; color: var(--llp-muted); max-width: 52ch; margin: 0 0 1.6rem; }
.acme-llp-hero__cta { display: flex; flex-direction: column; gap: .7rem; }
.acme-llp-hero__row { display: flex; gap: .7rem; }
.acme-llp-hero__row .acme-llp-btn { flex: 1 1 0; min-width: 0; }
/* keep both secondary buttons inside the screen on phones */
@media (max-width: 480px) {
	.acme-llp-hero__row { gap: 8px; }
	.acme-llp-hero__row .acme-llp-btn { padding-left: .55em; padding-right: .55em; font-size: .875rem; gap: .35em; }
	.acme-llp-hero__row .acme-llp-btn i { flex: 0 0 auto; }
}
.acme-llp-hero__media { order: 2; position: relative; }
/* Frosted-glass frame behind the hero image */
.acme-llp-hero__media::before {
	content: "";
	position: absolute; inset: -13px;
	border-radius: 24px;
	background: rgba(255, 255, 255, .35);
	backdrop-filter: blur(14px) saturate(125%);
	-webkit-backdrop-filter: blur(14px) saturate(125%);
	border: 1px solid rgba(255, 255, 255, .7);
	box-shadow: 0 22px 55px rgba(16, 24, 40, .16);
	z-index: 0;
}
.acme-llp-hero__img {
	position: relative; z-index: 1;
	width: 100%; height: auto;
	border-radius: 16px; display: block;
	box-shadow: 0 12px 34px rgba(16, 24, 40, .18);
}
.acme-llp-hero__ph {
	position: relative; z-index: 1;
	aspect-ratio: 16/10; border-radius: 16px; display: grid; place-items: center;
	background: var(--llp-chip); color: #9db8f0; font-size: 2.6rem;
}

/* ============================================================
   FEATURED COURSES — compact list, NO fees
   ============================================================ */
.acme-llp-courses__list { display: grid; gap: 12px; }
.acme-llp-course {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--llp-line);
	border-radius: var(--llp-radius);
	padding: 14px 16px;
	box-shadow: var(--llp-shadow);
}
.acme-llp-course__ico {
	width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto;
	display: grid; place-items: center; font-size: 1.25rem;
	background: var(--llp-chip); color: var(--llp-blue);
}
.acme-llp-course__ico img { width: 30px; height: 30px; object-fit: contain; }
.acme-llp-course__body { min-width: 0; }
.acme-llp-course__name { font-size: 1rem; font-weight: 700; color: var(--llp-ink); margin: 0 0 2px; }
.acme-llp-course__desc { font-size: .85rem; color: var(--llp-muted); margin: 0; line-height: 1.45;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.acme-llp-courses__more { text-align: center; margin-top: 1.5rem; }

/* ============================================================
   PROCESS — vertical numbered
   ============================================================ */
.acme-llp-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; max-width: 640px; margin-inline: auto; }
.acme-llp-step { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.acme-llp-step__n { width: 30px; height: 30px; border-radius: 50%; background: var(--llp-blue); color: #fff; font-weight: 700; font-size: .9rem; display: grid; place-items: center; }
.acme-llp-step__t { font-size: 1rem; font-weight: 700; color: var(--llp-ink); margin: 3px 0 2px; }
.acme-llp-step__d { font-size: .9rem; color: var(--llp-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   TRAINER
   ============================================================ */
.acme-llp-trainer__card { max-width: 720px; margin-inline: auto; display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; }
.acme-llp-trainer__photo { width: 100%; max-width: 220px; border-radius: 14px; margin-inline: auto; display: block; }
.acme-llp-trainer__name { font-size: 1.2rem; font-weight: 800; color: var(--llp-ink); margin: 0 0 .2rem; }
.acme-llp-trainer__role { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--llp-blue); margin: 0 0 .5rem; }
.acme-llp-trainer__bio { font-size: .95rem; color: var(--llp-muted); line-height: 1.55; margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.acme-llp-reviews__grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.acme-llp-rev { background: #fff; border: 1px solid var(--llp-line); border-radius: var(--llp-radius); padding: 16px; box-shadow: var(--llp-shadow); }
.acme-llp-rev__top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.acme-llp-rev__av { width: 40px; height: 40px; border-radius: 50%; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; font-weight: 700; overflow: hidden; }
.acme-llp-rev__av img { width: 100%; height: 100%; object-fit: cover; }
.acme-llp-rev__name { font-weight: 700; color: var(--llp-ink); font-size: .95rem; }
.acme-llp-rev__stars { color: #f5a623; font-size: .8rem; letter-spacing: 1px; }
.acme-llp-rev__text { font-size: var(--fz-sm); color: var(--llp-muted); line-height: 1.6; margin: 0; }
.acme-llp-rev__meta { font-size: .78rem; color: #9aa7bd; margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.acme-llp-reviews__more { text-align: center; margin-top: 1.4rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.acme-llp-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.acme-llp-gallery__item { border-radius: var(--llp-radius); overflow: hidden; border: 1px solid var(--llp-line); background: #fff; }
.acme-llp-gallery__item img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.acme-llp-gallery__cap { font-size: .82rem; font-weight: 600; color: var(--llp-ink); text-align: center; padding: 8px 6px; }

/* ============================================================
   LOCATION
   ============================================================ */
.acme-llp-loc__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.acme-llp-loc__row { display: flex; gap: 12px; align-items: flex-start; }
.acme-llp-loc__row h3 { font-size: 1rem; font-weight: 700; margin: 0 0 3px; color: var(--llp-ink); }
.acme-llp-loc__row p { margin: 0; font-size: .92rem; color: var(--llp-muted); line-height: 1.5; }
.acme-llp-loc__ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; }
.acme-llp-loc__map iframe { width: 100%; min-height: 260px; border: 0; border-radius: var(--llp-radius); display: block; }
.acme-llp-loc__cards { display: grid; gap: 12px; }

/* ============================================================
   BATCHES
   ============================================================ */
.acme-llp-batches__grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
.acme-llp-batch { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--llp-line); border-radius: var(--llp-radius); padding: 14px 16px; box-shadow: var(--llp-shadow); }
.acme-llp-batch__ico { width: 44px; height: 44px; border-radius: 10px; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; font-size: 1.2rem; }
.acme-llp-batch__name { font-weight: 700; color: var(--llp-ink); margin: 0 0 4px; }
.acme-llp-batch__meta { font-size: .82rem; color: var(--llp-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.acme-llp-faq__list { display: grid; gap: 10px; }
.acme-llp-faq__item { border: 1px solid var(--llp-line); border-radius: var(--llp-radius); background: #fff; overflow: hidden; }
.acme-llp-faq__q { cursor: pointer; list-style: none; padding: 15px 18px; font-weight: 600; font-size: .98rem; color: var(--llp-ink); display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 46px; }
.acme-llp-faq__q::-webkit-details-marker { display: none; }
.acme-llp-faq__q::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .8rem; color: var(--llp-blue); transition: transform .2s ease; }
.acme-llp-faq__item[open] .acme-llp-faq__q::after { transform: rotate(180deg); }
.acme-llp-faq__a { padding: 0 18px 16px; color: var(--llp-muted); line-height: 1.6; font-size: .92rem; }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.acme-llp-form { max-width: 620px; margin-inline: auto; }
.acme-llp-form__row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
.acme-llp-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--llp-ink); margin-bottom: 5px; }
.acme-llp-field input, .acme-llp-field select, .acme-llp-field textarea {
	width: 100%; font-family: inherit; font-size: .95rem; color: var(--llp-ink);
	padding: 11px 13px; border: 1.5px solid var(--llp-line); border-radius: var(--llp-radius-sm);
	background: #fff; min-height: 46px;
}
.acme-llp-field textarea { min-height: 110px; resize: vertical; }
.acme-llp-field input:focus, .acme-llp-field select:focus, .acme-llp-field textarea:focus { outline: none; border-color: var(--llp-blue); box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.acme-llp-form__msg { margin-top: 12px; padding: 12px 14px; border-radius: var(--llp-radius-sm); font-size: .9rem; display: none; }
.acme-llp-form__msg--ok { display: block; background: #e7f6ec; color: #12813b; border: 1px solid #b6e2c4; }
.acme-llp-form__msg--err { display: block; background: #fdeaea; color: #b32d2e; border: 1px solid #f3c2c2; }
.acme-llp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   FINAL CTA — dark navy
   ============================================================ */
/* Final CTA — rounded blue card floating in a light band above the footer */
.acme-llp-final { background: var(--llp-bg); padding-block: clamp(18px, 2.8vw, 34px); }
.acme-llp-final__card {
	--cta-pad-y: clamp(16px, 2.1vw, 22px);
	--cta-img-h: clamp(150px, 15.5vw, 205px);
	background: var(--llp-blue);
	color: #fff;
	border-radius: 14px;
	padding: var(--cta-pad-y) clamp(20px, 3vw, 36px);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	overflow: hidden; /* clip the bottom-flush illustration to the rounded corners */
	box-shadow: 0 14px 40px rgba(29, 78, 216, .22);
}
.acme-llp-final__media { display: flex; align-items: flex-end; gap: 10px; flex: 0 0 auto; }
.acme-llp-final__q { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; font-size: 1.15rem; }
.acme-llp-final__media { position: relative; }
.acme-llp-final__img { flex: 0 0 auto; position: relative; z-index: 1; width: auto; height: var(--cta-img-h); object-fit: contain; object-position: bottom; display: block; }

/* Mobile: illustration sizing only (no backdrop — the artwork is clean). */
@media (max-width: 859px) {
	.acme-llp-final__img { height: clamp(150px, 42vw, 190px); }
}
.acme-llp-final__text { flex: 1 1 auto; }
.acme-llp-final__title { font-size: clamp(1.15rem, 2.1vw, 1.5rem); font-weight: 800; margin: 0 0 .3rem; color: #fff; line-height: 1.2; }
.acme-llp-final__sub { margin: 0; opacity: .9; line-height: 1.5; font-size: .92rem; }
.acme-llp-final__actions { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; width: 100%; max-width: 280px; }
.acme-llp-final__actions .acme-llp-btn { width: 100%; }
@media (min-width: 860px) {
	.acme-llp-final__card { flex-direction: row; align-items: center; text-align: left; gap: clamp(20px, 2.5vw, 36px); }
	.acme-llp-final__text { text-align: left; }
	.acme-llp-final__actions { width: auto; max-width: none; min-width: 200px; }
	/* Illustration flush to card bottom, ~22px visual gap at top.
	   Pull up by the top padding (so the image's own ~10.5% transparent top
	   becomes the top gap), and down by bottom padding + ~9% transparent bottom. */
	.acme-llp-final__media { align-self: flex-end; margin-top: calc(-1 * var(--cta-pad-y)); margin-bottom: calc(-1 * var(--cta-pad-y) - var(--cta-img-h) * 0.1); }
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.acme-llp-sticky { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
	.acme-llp-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.acme-llp-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.acme-llp-reviews__grid { grid-template-columns: repeat(2, 1fr); }
	.acme-llp-courses__list { grid-template-columns: repeat(2, 1fr); }
	.acme-llp-batches__grid { grid-template-columns: repeat(2, 1fr); }
	.acme-llp-loc__grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
	.acme-llp-loc__map iframe { min-height: 100%; height: 100%; }
	.acme-llp-form__row--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
	.acme-llp-grid--4 { grid-template-columns: repeat(4, 1fr); }
	.acme-llp-grid--5 { grid-template-columns: repeat(5, 1fr); }
	.acme-llp-reviews__grid { grid-template-columns: repeat(3, 1fr); }
	.acme-llp-gallery__grid { grid-template-columns: repeat(4, 1fr); }
	.acme-llp-trainer__card { grid-template-columns: 220px 1fr; text-align: left; }
	.acme-llp-trainer__photo { margin: 0; }
}
@media (min-width: 1024px) {
	.acme-llp-hero__inner { grid-template-columns: 1.05fr .95fr; }
	.acme-llp-hero__media { order: 0; }
	.acme-llp-courses__list { grid-template-columns: repeat(3, 1fr); }
}

/* Course rows: stack the button full-width below on small phones so long
   course names don't get squeezed. */
@media (max-width: 599px) {
	.acme-llp-course { grid-template-columns: auto 1fr; }
	.acme-llp-course .acme-llp-btn { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
	.acme-llp-course__name { line-height: 1.25; }
}

/* Mobile sticky action bar */
@media (max-width: 767px) {
	.acme-llp-header { position: static; }
	.acme-llp-header__call-label { display: none; }   /* header call becomes icon-only */
	.acme-llp-sticky {
		display: flex; gap: 8px;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
		background: #fff; border-top: 1px solid var(--llp-line);
		box-shadow: 0 -2px 12px rgba(16,24,40,.12);
		padding: 8px calc(8px + env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) calc(8px + env(safe-area-inset-left));
	}
	.acme-llp-sticky .acme-llp-btn { flex: 1 1 0; min-height: 44px; padding: .5em; font-size: .82rem; }
	body.acme-llp-page { padding-bottom: 76px; }
}

/* ============================================================
   MOCKUP-MATCH COMPONENTS (desktop-faithful)
   ============================================================ */

/* Audience cards — centered */
.acme-llp-audience .acme-llp-card { text-align: center; }
.acme-llp-audience .acme-llp-ico { margin-left: auto; margin-right: auto; }
.acme-llp-audience .acme-llp-card__title { color: #1e40af; }

/* Trust bar (horizontal) */
.acme-llp-trust-wrap { padding-block: 22px; }
.acme-llp-trust {
	list-style: none; margin: 0;
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
	background: #fff; border: 1px solid var(--llp-line); border-radius: 14px;
	box-shadow: var(--llp-shadow); padding: 10px;
}
.acme-llp-trust__item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; }
.acme-llp-trust__ico { width: 36px; height: 36px; border-radius: 9px; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; font-size: .95rem; flex: 0 0 auto; }
.acme-llp-trust__text { display: flex; flex-direction: column; line-height: 1.2; }
.acme-llp-trust__text strong { font-size: .88rem; color: var(--llp-ink); font-weight: 700; }
.acme-llp-trust__text small { font-size: .72rem; color: var(--llp-muted); }
@media (min-width: 900px) {
	.acme-llp-trust { grid-template-columns: repeat(5, 1fr); }
	.acme-llp-trust__item + .acme-llp-trust__item { border-left: 1px solid var(--llp-line); }
}

/* Featured course cards */
.acme-llp-courses { display: grid; grid-template-columns: 1fr; gap: 14px; }
.acme-llp-ccard { text-align: center; background: #fff; border: 1px solid var(--llp-line); border-radius: 14px; padding: 20px 14px; box-shadow: var(--llp-shadow); display: flex; flex-direction: column; align-items: center; }
.acme-llp-ccard__ico { width: 56px; height: 56px; border-radius: 12px; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 12px; }
.acme-llp-ccard__ico img { width: 38px; height: 38px; object-fit: contain; }
.acme-llp-ccard__name { font-size: .98rem; font-weight: 700; color: var(--llp-ink); margin: 0 0 6px; line-height: 1.25; }
.acme-llp-ccard__desc { font-size: .8rem; color: var(--llp-muted); margin: 0 0 14px; line-height: 1.5; flex: 1 1 auto; }
.acme-llp-ccard__actions { display: flex; flex-direction: column; gap: 8px; width: 100%; }
@media (min-width: 600px) { .acme-llp-courses { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .acme-llp-courses { grid-template-columns: repeat(6, 1fr); } }

/* Why choose (horizontal icon + text) */
.acme-llp-why { display: grid; grid-template-columns: 1fr; gap: 18px; }
.acme-llp-why__item { display: flex; gap: 12px; align-items: flex-start; }
.acme-llp-why__ico { width: 44px; height: 44px; border-radius: 11px; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; font-size: 1.05rem; flex: 0 0 auto; }
.acme-llp-why__title { font-size: .95rem; font-weight: 700; color: var(--llp-ink); margin: 0 0 3px; }
.acme-llp-why__desc { font-size: .84rem; color: var(--llp-muted); margin: 0; line-height: 1.5; }
@media (min-width: 600px) { .acme-llp-why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .acme-llp-why { grid-template-columns: repeat(4, 1fr); } }

/* Process timeline */
.acme-llp-proc { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.acme-llp-proc__step { position: relative; padding-left: 50px; }
.acme-llp-proc__n { position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--llp-blue); color: #fff; font-weight: 700; font-size: .85rem; display: grid; place-items: center; z-index: 1; }
.acme-llp-proc__t { font-size: .96rem; font-weight: 700; color: var(--llp-ink); margin: 4px 0 2px; }
.acme-llp-proc__d { font-size: .84rem; color: var(--llp-muted); margin: 0; line-height: 1.5; }
@media (min-width: 900px) {
	.acme-llp-proc { grid-template-columns: repeat(5, 1fr); gap: 14px; text-align: center; position: relative; }
	.acme-llp-proc::before { content: ""; position: absolute; top: 17px; left: 12%; right: 12%; height: 2px; background: var(--llp-line); z-index: 0; }
	.acme-llp-proc__step { padding-left: 0; padding-top: 48px; }
	.acme-llp-proc__n { left: 50%; transform: translateX(-50%); }
}

/* Trainer + reviews */
.acme-llp-tr { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .acme-llp-tr { grid-template-columns: 37% 1fr; align-items: stretch; } }
.acme-llp-expert__kicker { font-size: var(--fz-base); font-weight: 700; color: var(--llp-ink); margin: 0 0 14px; }
.acme-llp-expert__row { display: flex; gap: 16px; align-items: stretch; }
.acme-llp-expert__photo { width: clamp(140px, 42%, 190px); align-self: stretch; height: auto; min-height: 210px; border-radius: 14px; object-fit: cover; object-position: top; flex: 0 0 auto; }
.acme-llp-expert__name { font-size: var(--fz-title); font-weight: 800; color: var(--llp-ink); margin: 0; }
.acme-llp-expert__role { font-size: var(--fz-xs); color: var(--llp-blue); font-weight: 600; margin: 2px 0 10px; }
.acme-llp-expert__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.acme-llp-expert__list li { font-size: var(--fz-sm); color: var(--llp-muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.acme-llp-expert__list i { color: var(--llp-blue); margin-top: 2px; flex: 0 0 auto; }
.acme-llp-revs__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 10px; }
.acme-llp-revs__title { font-size: var(--fz-base); font-weight: 700; color: var(--llp-ink); margin: 0; }
.acme-llp-revs__badge { font-size: .9rem; font-weight: 700; color: var(--llp-ink); display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.acme-llp-revs__badge i.fa-google { color: #4285F4; }
.acme-llp-revs__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .acme-llp-revs__grid { grid-template-columns: repeat(3, 1fr); } }
.acme-llp-rev__g { color: #4285F4; margin-top: 8px; }
.acme-llp-revs__more { text-align: center; margin-top: 14px; }
.acme-llp-revs__more a { color: var(--llp-blue); font-weight: 600; font-size: .88rem; text-decoration: none; }

/* Visit us (3 columns) */
.acme-llp-visit { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .acme-llp-visit { grid-template-columns: 1fr 1.3fr 1fr; align-items: start; } }
.acme-llp-visit__block { margin-bottom: 16px; }
.acme-llp-visit__block h3 { display: flex; align-items: center; gap: 10px; font-size: .98rem; color: var(--llp-ink); margin: 0 0 6px; font-weight: 700; }
.acme-llp-visit__block p { margin: 0 0 0 50px; color: var(--llp-muted); font-size: .88rem; line-height: 1.5; }
.acme-llp-visit__map iframe { width: 100%; min-height: 260px; border: 0; border-radius: 14px; display: block; }

/* Batches */
.acme-llp-batches { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .acme-llp-batches { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .acme-llp-batches { grid-template-columns: repeat(4, 1fr); } }
.acme-llp-bcard { background: #fff; border: 1px solid var(--llp-line); border-radius: 14px; padding: 16px; box-shadow: var(--llp-shadow); display: flex; flex-direction: column; }
.acme-llp-bcard__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.acme-llp-bcard__ico { width: 40px; height: 40px; border-radius: 9px; background: var(--llp-chip); color: var(--llp-blue); display: grid; place-items: center; flex: 0 0 auto; }
.acme-llp-bcard__name { font-weight: 700; color: var(--llp-ink); font-size: .9rem; }
.acme-llp-bcard__meta { margin: 0 0 14px; display: grid; gap: 6px; flex: 1 1 auto; }
.acme-llp-bcard__meta > div { display: flex; justify-content: space-between; gap: 8px; font-size: .8rem; }
.acme-llp-bcard__meta dt { color: var(--llp-muted); margin: 0; }
.acme-llp-bcard__meta dd { color: var(--llp-ink); font-weight: 600; margin: 0; text-align: right; }
.acme-llp-bcta { background: var(--llp-blue); color: #fff; border-radius: 14px; padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 12px; text-align: center; }
.acme-llp-bcta__line { font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; justify-content: center; }
.acme-llp-bcta__link { display: inline-flex; align-items: center; gap: 8px; background: var(--llp-green); color: #fff; padding: 10px 14px; border-radius: 9px; font-weight: 600; text-decoration: none; font-size: .86rem; justify-content: center; }

/* FAQ 2-column */
@media (min-width: 768px) { .acme-llp-faq__list { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* (Final CTA styles consolidated near the top of this file.) */

/* Footer (navy) */
.acme-llp-footer { background: var(--llp-navy); color: #cdd7e6; }
.acme-llp-footer__grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding-block: 40px; }
@media (min-width: 600px) { .acme-llp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .acme-llp-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr 1fr; } }
.acme-llp-footer__logo { margin-bottom: 12px; }
.acme-llp-footer__logo .acme-llp-brand__text b { color: #fff; }
.acme-llp-footer__logo .acme-llp-brand__text span { color: #6ea8ff; }
.acme-llp-footer__tag { font-size: .85rem; color: #9fb0c8; margin: 0 0 14px; line-height: 1.5; }
.acme-llp-footer__social { display: flex; gap: 10px; }
.acme-llp-footer__social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08); color: #cdd7e6; display: grid; place-items: center; text-decoration: none; transition: background .15s ease; }
.acme-llp-footer__social a:hover { background: var(--llp-blue); color: #fff; }
.acme-llp-footer__col h3 { font-size: .95rem; color: #fff; font-weight: 700; margin: 0 0 14px; }
.acme-llp-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.acme-llp-footer__col a { color: #9fb0c8; text-decoration: none; font-size: .85rem; transition: color .15s ease; }
.acme-llp-footer__col a:hover { color: #fff; }
.acme-llp-footer__contact li { font-size: .83rem; color: #9fb0c8; display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; line-height: 1.5; }
.acme-llp-footer__contact i { margin-top: 3px; color: #6ea8ff; flex: 0 0 auto; }
.acme-llp-footer__contact a { color: #9fb0c8; text-decoration: none; }
.acme-llp-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.acme-llp-footer__bar-inner { display: flex; flex-direction: column; gap: 6px; padding-block: 16px; font-size: .8rem; color: #8497b3; text-align: center; }
@media (min-width: 600px) { .acme-llp-footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; } }

@media (prefers-reduced-motion: reduce) {
	.acme-llp-faq__item[open] .acme-llp-faq__q::after { transition: none; }
	.acme-llp-btn { transition: none; }
}

/* ============================================================
   FLUID TYPOGRAPHY — larger, readable, 100% fluid (clamp)
   Applied last so it takes precedence. Improves legibility &
   accessibility across every breakpoint.
   ============================================================ */

/* Descriptions / body copy: 15 → 16px */
.acme-llp-card__desc,
.acme-llp-ccard__desc,
.acme-llp-why__desc,
.acme-llp-proc__d,
.acme-llp-rev__text,
.acme-llp-audience .acme-llp-card__desc,
.acme-llp-loc__row p,
.acme-llp-visit__block p,
.acme-llp-bcard__meta > div { font-size: var(--fz-sm); line-height: 1.6; }

/* Card / course / feature titles: 17 → 19px */
.acme-llp-card__title,
.acme-llp-ccard__name,
.acme-llp-why__title,
.acme-llp-proc__t,
.acme-llp-batch__name,
.acme-llp-loc__row h3,
.acme-llp-visit__block h3 { font-size: var(--fz-title); line-height: 1.3; }

/* Section subcopy + FAQ answer: 16 → 17px */
.acme-llp-sub,
.acme-llp-faq__a { font-size: var(--fz-base); line-height: 1.65; }

/* FAQ question a touch larger */
.acme-llp-faq__q { font-size: var(--fz-base); }

/* Hero subcopy: 17 → 19px */
.acme-llp-hero__sub { font-size: var(--fz-lead); }

/* Small labels / captions / trust subtitle: 13 → 14.4px (off the 12px floor) */
.acme-llp-trust__text small,
.acme-llp-gallery__cap,
.acme-llp-rev__meta,
.acme-llp-footer__col a,
.acme-llp-footer__contact li { font-size: var(--fz-xs); }

/* Trust title + review name slightly up */
.acme-llp-trust__text strong,
.acme-llp-rev__name { font-size: var(--fz-sm); }

/* Sticky bar labels — keep legible on mobile */
@media (max-width: 767px) {
	.acme-llp-sticky .acme-llp-btn { font-size: 0.8125rem; }
}
