/* ==========================================================================
   BlueOcean360 – main stylesheet
   ========================================================================== */

:root {
	--navy: #0b1f4b;
	--ink: #1d2b4a;
	--muted: #5a6a86;
	--blue: #0b5ce6;
	--blue-dark: #0847b8;
	--cyan: #19b4e6;
	--teal: #0e9f8e;
	--sky: #eaf3ff;
	--sky-soft: #f4f8ff;
	--line: #e2e9f5;
	--night: #0a1a36;
	--cream: #fff5e3;
	--white: #fff;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow: 0 10px 30px rgba(11, 31, 75, 0.08);
	--shadow-sm: 0 2px 10px rgba(11, 31, 75, 0.06);
	--font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--hand: "Caveat", "Segoe Script", "Bradley Hand", cursive;
	--header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-family: var(--font); color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

.icon { width: 1.25em; height: 1.25em; flex: none; vertical-align: middle; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
	clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { left: 8px; color: #fff; }
.hp { position: absolute !important; left: -9999px; height: 0; overflow: hidden; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: 9px; border: 1.5px solid transparent;
	font-weight: 600; font-size: 0.95rem; line-height: 1.2; text-align: center;
	transition: background-color .15s, border-color .15s, color .15s, box-shadow .15s;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: #fff; border-color: var(--line); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--sky); color: var(--navy); }
.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg { padding: 14px 26px; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 0; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.92rem; color: var(--blue); }
.link-arrow .icon { width: 1em; height: 1em; transition: transform .15s; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand-wrap { flex: none; }
.brand img, .custom-logo { display: block; height: 40px; width: auto; }
.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a { display: block; padding: 8px 12px; font-size: 0.875rem; font-weight: 600; color: var(--navy); border-radius: 8px; position: relative; }
.nav-list a:hover { color: var(--blue); }
.nav-list .current-menu-item > a,
.nav-list .current-menu-ancestor > a,
.nav-list .current_page_item > a { color: var(--blue); }
.nav-list .current-menu-item > a::after,
.nav-list .current_page_item > a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 0; background: transparent; color: var(--navy); border-radius: 10px; }
.icon-btn:hover { background: var(--sky); color: var(--blue); }
.icon-btn.round { border: 1px solid var(--line); background: #fff; border-radius: 50%; width: 38px; height: 38px; }
.nav-toggle { display: none; }
.header-search { border-top: 1px solid var(--line); background: #fff; padding: 14px 0; }
.header-search[hidden] { display: none; }

.search-form { display: flex; gap: 10px; }
.search-field { flex: 1; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 9px; font: inherit; color: var(--ink); }
.search-field:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(11, 92, 230, .15); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #edf4ff 0%, #f7faff 65%, #fff 100%); padding: 64px 0 56px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent, .hero h1 .line.accent { color: var(--blue); }
.hero-courses h1 .line { display: block; }
.hero-courses h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
.pill { display: inline-block; padding: 6px 12px; margin-bottom: 20px; border-radius: 999px; background: #dfeafc; color: var(--navy); font-size: 0.75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.eyebrow { margin: 0 0 10px; font-size: 0.78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.eyebrow-light { color: #9fc0ff; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 34em; }
.lead-strong { color: var(--navy); font-weight: 600; font-size: 1.15rem; margin-bottom: 8px; }
.subhead { color: var(--muted); font-size: 1rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: 4px; padding: 5px 12px; margin-bottom: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb .icon { width: 14px; height: 14px; }
.breadcrumb [aria-current] { color: var(--navy); font-weight: 600; }

.mini-features { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 36px; }
.mini-features li { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 600; line-height: 1.3; color: var(--navy); }
.mini-features .icon { width: 30px; height: 30px; color: var(--blue); stroke-width: 1.6; }

.hero-visual { position: relative; }
.hero-img { display: block; width: 100%; height: auto; aspect-ratio: 640 / 520; object-fit: cover; object-position: 50% 22%; border-radius: 28px; }
.chip { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 12px 16px; font-size: 0.85rem; line-height: 1.3; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.chip strong { font-weight: 700; }
.chip .icon { color: var(--blue); width: 24px; height: 24px; }
.chip-traffic { top: 8%; left: -4%; }
.chip-skills { top: 6%; right: 0; flex-direction: column; align-items: flex-start; gap: 8px; }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 34px; align-self: flex-end; }
.mini-bars i { display: block; width: 8px; background: var(--blue); border-radius: 2px; }
.mini-bars i:nth-child(1) { height: 10px; opacity: .45; } .mini-bars i:nth-child(2) { height: 18px; opacity: .65; }
.mini-bars i:nth-child(3) { height: 26px; opacity: .85; } .mini-bars i:nth-child(4) { height: 34px; }
.chip-roi { top: 38%; left: -3%; }
.chip-learn { top: 10%; left: -4%; }
.chip-checks { top: 6%; right: 0; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 0.8rem; font-weight: 600; }
.chip-checks li { display: flex; align-items: center; gap: 8px; }
.chip-checks .icon { width: 16px; height: 16px; padding: 2px; background: var(--blue); color: #fff; border-radius: 4px; stroke-width: 3; }
.chip-checks-tall { top: 4%; }
.chip-students { top: 24%; left: -2%; flex-direction: column; align-items: flex-start; gap: 0; }
.chip-students strong, .chip-placement strong { font-size: 1.5rem; line-height: 1.1; }
.chip-students span, .chip-placement span { font-size: 0.75rem; color: var(--muted); }
.chip-placement { bottom: 26%; left: 34%; flex-direction: column; align-items: flex-start; gap: 0; }
.chip-placement strong { color: var(--navy); }
.hand { font-family: var(--hand); font-weight: 600; color: var(--blue); line-height: 1.05; margin: 0; }
.hand-note { position: absolute; right: 1%; top: 30%; font-size: 1.7rem; transform: rotate(-6deg); text-align: left; }
.chip-sticky { position: absolute; right: 2%; bottom: 8%; padding: 14px 18px; background: #fff0c2; border-radius: 12px; box-shadow: var(--shadow); font-size: 1.5rem; color: var(--navy); transform: rotate(-5deg); }
/* Photo layouts: the student sits on the right, so the chips go on the free space at the left. */
.hero-courses .chip-checks { top: 4%; left: -3%; right: auto; }
.hero-courses .chip-students { top: 47%; left: -3%; }
.hero-courses .chip-placement { left: -3%; bottom: 6%; }
.hero-courses .chip-sticky { right: -2%; bottom: 20%; }
.course-teaser .chip-learn { top: 4%; left: -3%; }
.course-teaser .chip-checks { top: 30%; left: -3%; right: auto; }
.course-teaser .chip-sticky { right: -2%; bottom: 12%; }

.icon-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.icon-row li { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 96px; text-align: center; font-size: 0.72rem; font-weight: 500; line-height: 1.3; color: var(--navy); }
.tile { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 48px; height: 48px; border-radius: 12px; background: #e6f0ff; color: #1b6ef3; }
.tile .icon { width: 24px; height: 24px; }
.tile-round { border-radius: 50%; width: 46px; height: 46px; border: 1px solid #cfe0fb; background: #fff; }
.tint-blue { background: #e6f0ff; color: #1b6ef3; }
.tint-pink { background: #fde8f0; color: #e5306b; }
.tint-green { background: #dff6ec; color: #12a26b; }
.tint-orange { background: #fdebdc; color: #ef7a26; }
.tint-purple { background: #f0e8fd; color: #8b4be8; }
.tint-yellow { background: #fff1c9; color: #d99205; }

/* ---------- Brand strip ---------- */
.brand-strip { background: #fff; border-bottom: 1px solid var(--line); }
.brand-strip-inner { display: flex; align-items: center; gap: 32px; padding-top: 22px; padding-bottom: 22px; }
.brand-strip-label { flex: none; max-width: 150px; margin: 0; font-size: 0.68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.brand-list { flex: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 28px; }
.wordmark { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: #444; white-space: nowrap; }
.wm-tata { color: #1f4e9c; font-size: 1rem; letter-spacing: .12em; }
.wm-infosys { color: #1a73c9; font-weight: 400; }
.wm-paytm { color: #0b2a5e; }
.wm-pharmeasy { color: #0f9d8a; font-weight: 700; font-size: 1.05rem; }
.wm-swiggy { color: #fc8019; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; }
.wm-boat { color: #111; font-weight: 500; }
.wm-oyo { color: #ee2e24; font-weight: 900; font-size: 1.4rem; }
.wm-zomato { color: #e23744; font-style: italic; }
.wm-google { color: #4285f4; font-weight: 600; }
.wm-meta { color: #0668e1; font-weight: 600; }
.wm-amazon { color: #111; font-weight: 700; }
.wm-accenture { color: #111; font-weight: 700; font-size: 1.1rem; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-sky { background: var(--sky); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head h2 { margin-bottom: 8px; }
.section-head .subhead { margin: 0; }
.split { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 40px; align-items: center; }
.split-intro h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.split-intro p { color: var(--muted); }

.card-grid { display: grid; gap: 18px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.service-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.service-card .tile { margin-bottom: 18px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.875rem; margin-bottom: 16px; }
.service-card .link-arrow { margin-top: auto; }
.service-card-compact { color: inherit; transition: box-shadow .15s, border-color .15s; }
.service-card-compact:hover { box-shadow: var(--shadow); border-color: #c9dcfa; color: inherit; }
.service-card-compact p { margin: 0; font-size: 0.8rem; }
.service-card-compact .tile { width: 42px; height: 42px; margin-bottom: 14px; }
.card-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px; box-shadow: none; }
.card-row h3 { font-size: 0.9rem; margin-bottom: 4px; }
.card-row p { margin: 0; font-size: 0.8rem; color: var(--muted); }
.card-row .tile { width: 44px; height: 44px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; counter-reset: none; }
.steps::before { content: ""; position: absolute; top: 18px; left: 18px; right: 18px; height: 2px; background: #c9dcfa; }
.steps li { position: relative; padding-top: 0; }
.step-num { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 0.8rem; font-weight: 700; box-shadow: 0 0 0 6px var(--sky); margin-bottom: 16px; }
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; font-size: 0.85rem; color: var(--muted); max-width: 20em; }

/* Why / features */
.feature-row { display: grid; gap: 22px; }
.feature-row li { display: flex; align-items: center; gap: 14px; }
.feature-row strong { display: block; font-size: 0.9rem; color: var(--navy); }
.feature-row .muted { display: block; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.feature-row .tile { width: 52px; height: 52px; border-radius: 50%; }

/* Industries */
.industry-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; margin-top: 28px; }
.industry-row li { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; font-size: 0.8rem; font-weight: 500; color: var(--navy); }
.industry-row .icon { width: 28px; height: 28px; color: var(--blue); stroke-width: 1.6; }

/* Case studies */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { display: grid; grid-template-columns: 1fr 42%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.case-body { padding: 20px; display: flex; flex-direction: column; align-items: flex-start; }
.tag { display: inline-block; padding: 3px 10px; margin-bottom: 12px; border-radius: 6px; background: #e6f0ff; color: var(--blue); font-size: 0.7rem; font-weight: 600; }
.case-body h3 { font-size: 1rem; margin-bottom: 6px; }
.case-body p { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.metrics { display: flex; gap: 22px; margin: 0 0 16px; }
.metrics div { display: flex; flex-direction: column-reverse; }
.metrics dd { margin: 0; font-size: 1.3rem; font-weight: 800; color: var(--teal); line-height: 1.1; }
.metrics dt { font-size: 0.72rem; color: var(--muted); }
.case-body .btn { margin-top: auto; }
.case-media { position: relative; min-height: 220px; background: linear-gradient(160deg, #dcebff, #f2f7ff); }
.case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.case-art .icon { width: 64px; height: 64px; stroke-width: 1.4; opacity: .55; }

/* Testimonials */
.testimonial { height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.avatar-initials { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-size: 0.85rem; font-weight: 700; }
.who { display: flex; flex-direction: column; font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.who strong { color: var(--navy); font-size: 0.88rem; }
.stars { display: inline-flex; gap: 2px; margin-top: 4px; color: #f5a623; }
.stars .icon { width: 14px; height: 14px; }

.carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 8px; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 calc(50% - 9px); scroll-snap-align: start; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #c9d6ec; }
.carousel-dots button[aria-current="true"] { background: var(--navy); }
.carousel-arrows { display: flex; gap: 8px; }
.testimonial-grid .carousel-item { flex-basis: calc(33.333% - 12px); }
.carousel-static .carousel-controls { display: none; }

.split-testimonials { grid-template-columns: 1.25fr 0.75fr; align-items: stretch; gap: 32px; }
.split-testimonials .split-main { min-width: 0; }
.split-testimonials h2 { margin-bottom: 4px; }
.split-testimonials .subhead { font-weight: 600; color: var(--navy); margin-bottom: 22px; }
.grow-card { align-self: center; padding: 34px; background: var(--cream); border-radius: var(--radius-lg); }
.grow-card h2 { font-size: 1.7rem; }
.grow-card p { color: var(--muted); }
.grow-card .btn-row { margin-top: 20px; }
.grow-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.grow-steps li { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.grow-steps li + li { border-left: 1px solid #ead9b8; }
.grow-steps .icon { width: 26px; height: 26px; color: var(--blue); stroke-width: 1.6; }

/* Stats band */
.stats-band { background: var(--night); color: #fff; padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { display: flex; align-items: center; gap: 16px; padding: 4px 24px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .12); }
.stat-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #cfe0ff; flex: none; }
.stat-icon .icon { width: 24px; height: 24px; }
.stat strong { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1.1; }
.stat-label { display: block; font-size: 0.85rem; color: #b8c6e3; }

/* CTA band */
.cta-band { background: linear-gradient(110deg, var(--night) 0%, #0d2c63 60%, #0b3a86 100%); color: #fff; padding: 52px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-band p { margin: 0; color: #c6d4ee; }
.cta-band .eyebrow { margin-bottom: 8px; }
.cta-action { display: flex; align-items: center; gap: 22px; flex: none; }
.cta-note { font-size: 1.6rem; color: #fff; transform: rotate(-5deg); }

/* ---------- Courses page ---------- */
.split-why { grid-template-columns: 0.55fr 1.45fr; align-items: center; }
.split-why .split-intro h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.module-grid { counter-reset: none; }
.module { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 18px; }
.module-head { display: flex; align-items: flex-start; gap: 12px; }
.module-num { display: block; font-size: 0.72rem; font-weight: 700; color: var(--blue); }
.module h3 { font-size: 0.95rem; margin: 2px 0 0; }
.dot-list { display: grid; gap: 6px; }
.dot-list li { position: relative; padding-left: 14px; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.split-details { grid-template-columns: 1.4fr 0.9fr; align-items: start; }
.audience-grid { margin-top: 22px; }
.audience { padding: 18px; box-shadow: none; }
.audience .tile { margin-bottom: 14px; }
.audience h3 { font-size: 0.92rem; margin-bottom: 6px; }
.audience p { margin: 0; font-size: 0.8rem; color: var(--muted); }
.details-card { background: var(--sky); border-radius: var(--radius-lg); padding: 26px; }
.details-card h2 { font-size: 1.15rem; margin-bottom: 18px; }
.details-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-bottom: 22px; }
.details-list li { display: flex; align-items: flex-start; gap: 10px; }
.detail-icon { color: var(--blue); }
.detail-icon .icon { width: 20px; height: 20px; }
.detail-text { display: flex; flex-direction: column; font-size: 0.8rem; line-height: 1.35; }
.detail-label { font-weight: 700; color: var(--navy); }
.detail-text strong { font-weight: 400; color: var(--muted); }

.student-grid { display: grid; grid-template-columns: 0.7fr 1.15fr 0.95fr; gap: 28px; align-items: center; }
.student-photo img { display: block; width: 100%; max-width: 320px; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); }
.photo-panel { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 8px; min-height: 260px; max-width: 320px; padding: 26px; border-radius: var(--radius-lg); background: linear-gradient(150deg, #dcebff, #f5f9ff); }
.photo-panel .icon { width: 44px; height: 44px; color: var(--blue); opacity: .5; }
.photo-panel .hand { font-size: 2rem; }
.student-story h2 { font-size: 1.5rem; }
.results-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.results-card h2 { font-size: 1.15rem; margin-bottom: 18px; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; }
.results-grid > div { display: flex; flex-direction: column-reverse; padding: 14px 16px; }
.results-grid > div:nth-child(odd) { border-right: 1px solid var(--line); padding-left: 0; }
.results-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.results-grid dd { margin: 0; font-size: 1.7rem; font-weight: 800; color: var(--teal); line-height: 1.15; }
.results-grid dt { font-size: 0.8rem; color: var(--muted); }

/* ---------- Generic pages / blog ---------- */
.page-hero { padding: 56px 0 40px; background: linear-gradient(180deg, #edf4ff 0%, #f8fbff 100%); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 10px; }
.page-hero .lead { margin: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-thumb img { display: block; width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card h2 { font-size: 1.15rem; }
.post-card h2 a { color: var(--navy); }
.post-card p { color: var(--muted); font-size: 0.9rem; }
.post-card .link-arrow { margin-top: auto; }
.post-meta { margin: 0 0 8px; font-size: 0.78rem; color: var(--muted); }
.navigation.pagination { margin-top: 40px; }
.nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.page-numbers { display: inline-block; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.entry-content { font-size: 1.05rem; }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); }
.entry-content ul { list-style: disc; padding-left: 1.3em; }
.entry-content ol { list-style: decimal; padding-left: 1.3em; }
.entry-thumb { margin-bottom: 28px; }
.entry-thumb img { width: 100%; border-radius: var(--radius-lg); }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; font-weight: 600; }
.empty-state { text-align: center; padding: 40px 0; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: start; }
.contact-form-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.enquiry-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px; font: inherit; color: var(--ink); background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(11, 92, 230, .15); }
.enquiry-form .btn { justify-self: start; }
.contact-info h2 { font-size: 1.3rem; }
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list a { color: var(--navy); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: #b8c6e3; padding-top: 56px; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.9fr 1.2fr 1.2fr 1.5fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { margin: 16px 0; max-width: 26em; line-height: 1.6; }
.footer-brand img { display: block; height: 40px; width: auto; }
.social-list { display: flex; gap: 12px; }
.social-list a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; }
.social-list a:hover { background: var(--blue); color: #fff; }
.social-list .icon { width: 18px; height: 18px; }
.footer-col h2 { font-size: 0.95rem; color: #fff; margin-bottom: 16px; letter-spacing: 0; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { color: #b8c6e3; }
.footer-col a:hover { color: #fff; }
.footer-news p { margin-bottom: 14px; }
.newsletter-form { display: grid; gap: 10px; }
.newsletter-form input[type="email"] { width: 100%; padding: 11px 14px; border: 0; border-radius: 8px; font: inherit; font-size: 0.85rem; background: #fff; color: var(--ink); }
.newsletter-form .btn { width: 100%; }
.footer-contact { margin-top: 18px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact .icon { width: 16px; height: 16px; color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 20px; padding-bottom: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.legal-links { display: flex; gap: 12px; }
.legal-links a { color: #b8c6e3; }
.legal-links a:hover { color: #fff; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 100; display: flex; align-items: center; gap: 14px; max-width: calc(100% - 32px); padding: 14px 16px 14px 20px; border-radius: 12px; color: #fff; font-weight: 500; box-shadow: 0 12px 34px rgba(0, 0, 0, .25); }
.toast-success { background: #0e8a5f; }
.toast-error { background: #c2362f; }
.toast-close { display: inline-flex; padding: 4px; background: transparent; border: 0; color: #fff; border-radius: 6px; }
.toast-close .icon { width: 18px; height: 18px; }
.toast[hidden] { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.nav-toggle { display: inline-flex; }
	.header-cta { display: none; }
	.header-actions { margin-left: auto; }
	.primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 8px; padding: 12px 24px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
	.primary-nav.is-open { display: flex; }
	.nav-list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav-list a { padding: 14px 4px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
	.nav-list .current-menu-item > a::after, .nav-list .current_page_item > a::after { display: none; }
	.nav-cta { display: inline-flex; margin-top: 12px; }
	.cols-4 { grid-template-columns: repeat(2, 1fr); }
	.industry-row { grid-template-columns: repeat(4, 1fr); row-gap: 24px; }
	.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-news { grid-column: span 3; }
	.case-grid { grid-template-columns: 1fr; }
	.split-testimonials, .split-details, .split-why { grid-template-columns: 1fr; }
	.student-grid { grid-template-columns: 220px 1fr; }
	.results-card { grid-column: 1 / -1; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
	.stat:nth-child(3) { border-left: 0; }
}

@media (max-width: 980px) {
	.hero { padding: 40px 0; }
	.hero-grid { grid-template-columns: 1fr; gap: 36px; }
	.hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
	.split { grid-template-columns: 1fr; }
	.brand-strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
	.brand-strip-label { max-width: none; }
	.brand-list { justify-content: flex-start; gap: 12px 26px; }
	.steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
	.steps::before { display: none; }
	.feature-row.cols-4 { grid-template-columns: repeat(2, 1fr); }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-grid { grid-template-columns: 1fr; }
	.cta-band-inner { flex-direction: column; align-items: flex-start; }
	.testimonial-grid .carousel-item { flex-basis: calc(50% - 9px); }
}

@media (max-width: 640px) {
	.section { padding: 56px 0; }
	.container { padding: 0 18px; }
	.section-head { flex-direction: column; align-items: flex-start; }
	.cols-3, .cols-4 { grid-template-columns: 1fr; }
	.service-card-compact { flex-direction: row; flex-wrap: wrap; }
	.industry-row { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: 1fr; }
	.feature-row.cols-4 { grid-template-columns: 1fr; }
	.case-card { grid-template-columns: 1fr; }
	.case-media { order: -1; min-height: 150px; }
	.carousel-item, .testimonial-grid .carousel-item { flex-basis: 88%; }
	.carousel-static .carousel-controls { display: none; }
	.post-grid { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; }
	.contact-form-card { padding: 22px; }
	.student-grid { grid-template-columns: 1fr; }
	.student-photo img { max-width: 240px; }
	.stats-grid { grid-template-columns: 1fr 1fr; gap: 20px 0; }
	.stat { padding: 4px 12px; flex-direction: column; align-items: flex-start; gap: 10px; }
	.stat strong { font-size: 1.5rem; }
	.stat + .stat { border-left: 0; }
	.stat:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .12); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand, .footer-news { grid-column: 1 / -1; }
	.footer-bottom { flex-direction: column; }
	.btn-row .btn { flex: 1 1 100%; }
	.chip { font-size: 0.72rem; padding: 8px 10px; border-radius: 10px; }
	.chip-traffic, .chip-learn { left: 0; }
	.chip-students, .chip-checks { display: none; }
	.chip-placement { left: 4%; bottom: 8%; }
	.hand-note { font-size: 1.3rem; }
	.chip-sticky { font-size: 1.1rem; padding: 10px 12px; }
	.icon-row { gap: 12px; }
	.icon-row li { width: 72px; }
	.cta-action { flex-wrap: wrap; }
	.grow-card { padding: 24px; }
	.brand-list { gap: 10px 20px; }
	.wordmark { font-size: 1.05rem; }
}

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